* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f0f0f;
    color: #f5f5f5;
}

nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 70px;
    background: rgba(24, 24, 24, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
}

nav h2 {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: -1px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 700;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0%;
    height: 3px;
    background: #e29a2a;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

#hero {
    min-height: 90vh;
    padding: 140px 70px;
    background:
        linear-gradient(360deg, #e29b2a23, rgba(0,0,0,0.45)),
        url("assets/bg2.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 750px;
}

#hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    margin: 0 0 25px;
    letter-spacing: -3px;
}

#hero p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: #dddddd;
    max-width: 620px;
}

.button,
button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e29a2a, #ffb347);
    color: #111;
    border: none;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 10px 25px rgba(226, 154, 42, 0.35);
}

.button:hover,
button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(226, 154, 42, 0.5);
}

section {
    padding: 90px 70px;
}

.page {
    min-height: 80vh;
    background:
        radial-gradient(circle at top left, rgba(226,154,42,0.15), transparent 35%),
        #111;
}

.page h1,
section h1,
section h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-top: 0;
    letter-spacing: -2px;
}

.page p,
section p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cards,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 350px));
    justify-content: center;
    gap: 28px;
    margin-top: 40px;
}
.contact-grid {
    max-width: 1400px;
    margin: 40px auto 0;
}

.card,
.contact-card {
    background: linear-gradient(180deg, #1d1d1d, #151515);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.4);
    transition: 0.25s;
}

.contact-card {
    text-align: center;
}

.card:hover,
.contact-card:hover {
    transform: translateY(-8px);
    border-color: rgba(226,154,42,0.6);
}

.card h3,
.contact-card h2 {
    color: #e29a2a;
    margin-top: 0;
}

.contact-card {
    min-height: 260px;
    display: content;
    flex-direction: column;
    justify-content: center;
}

.contact-card h2 {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.contact-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.contact-card a {
    margin-left: 0;
}

.contact-card A {
    color: #e29a2a;
    text-decoration: none;
    margin-left: 28px;
    font-weight: 700;
    position: relative;
}

.contact-card A::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0%;
    height: 3px;
    background: #e29a2a;
    transition: 0.3s;
}

.contact-card a:hover::after {
    width: 100%;
}

.fly-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fly-in.show {
    opacity: 1;
    transform: translateY(0);
}

form {
    margin-top: 35px;
    max-width: 700px;
    display: grid;
    gap: 18px;
}

input,
textarea,
select {
    width: 100%;
    padding: 16px 18px;
    background: #181818;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #e29a2a;
    box-shadow: 0 0 0 4px rgba(226,154,42,0.15);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

#reviews {
    background: #f4f4f4;
    color: #111;
    text-align: center;
}

#reviews p {
    color: #444;
}

#reviews .card {
    background: white;
    color: #111;
}

#reviews .card p {
    color: #333;
}

#reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

footer {
    padding: 35px 70px;
    background: #080808;
    color: #aaa;
    text-align: center;
}

@media (max-width: 800px) {
    nav {
        flex-direction: column;
        gap: 18px;
        padding: 22px;
    }

    nav a {
        margin: 0 10px;
    }

    #hero,
    section {
        padding: 70px 25px;
    }

    #hero {
        min-height: 80vh;
    }
}
