*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #D4A017;
    --gold-light: #F0B429;
    --gold-dark: #B8860B;
    --navy: #0D1B2A;
    --navy-mid: #1A2B3C;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #8A8AA0;
    --border: rgba(212, 160, 23, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.12);
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 160px;
    height: 55px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
}

.logo-icon img {
    width: 160px;
    height: 60px;
    object-fit: contain;
    transform: none;
}

.logo-text {
    display: none;
}

.logo-text span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.03em;
}

.logo-text span:last-child {
    font-size: 9px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.btn-nav {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    transition: background 0.2s, transform 0.2s !important;
}

.btn-nav:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
}

.btn-nav::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}

/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0D1B2A 0%, #1A2B3C 40%, #2C3E50 70%, #1A1A2E 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('image/banner\ \(2\).png') center/cover no-repeat;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(13, 27, 42, 0.85) 45%, rgba(13, 27, 42, 0.3) 100%); */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    max-width: 750px;
    margin-left: 60px;
    margin-right: 30px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
}


.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 800px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 44px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-stats {
    position: absolute;
    bottom: 48px;
    left: 60px;
    right: 60px;
    z-index: 2;
    display: flex;
    gap: 60px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════════════════
   ABOUT SECTION — full CSS (base + responsive)
   ══════════════════════════════════════════════ */

#about {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    background: var(--white);
}

.about-images {
    width: 100%;
}

/* image grid wrapper */
.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.about-img-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.about-img-col--offset {
    margin-top: 32px;
}

.about-img {
    border-radius: 8px;
    overflow: hidden;
    background: #ddd;
}

.about-img--tall {
    aspect-ratio: 3/4;
}

.about-img--square {
    aspect-ratio: 1/1;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.04);
}

/* text column */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-body {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.about-tagline {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.about-disclaimer {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-light);
    border-left: 3px solid var(--gold);
    padding-left: 12px;
}

.single-about-img {
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.single-about-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* buttons row */
.about-btn-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 16px;
}

.about-btn-row a {
    white-space: nowrap;
}

/* mobile-only consultation button — hidden on desktop */
.btn-book-mobile {
    display: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    #about {
        grid-template-columns: 1fr;
        padding: 72px 24px;
        gap: 44px;
        text-align: left;
    }

    .about-images {
        max-width: 560px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    #about {
        padding: 56px 20px;
        gap: 36px;
    }

    .about-images {
        max-width: 100%;
    }

    .about-img-grid {
        gap: 8px;
    }

    .about-img-col--offset {
        margin-top: 0;
    }

    .about-img--tall {
        aspect-ratio: 4/5;
    }

    .section-title {
        font-size: clamp(26px, 7vw, 36px);
    }

    .section-body {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .about-disclaimer {
        font-size: 12px;
    }

    /* buttons stack full-width on mobile */
    .about-btn-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 20px;
    }

    .about-btn-row a {
        text-align: center;
        white-space: normal;
    }

    .btn-book-mobile {
        display: inline-block;
        background: var(--gold);
        color: var(--navy);
        font-weight: 700;
        font-size: 14px;
        padding: 14px 24px;
        border-radius: 6px;
        text-decoration: none;
        text-align: center;
        width: 100%;
        transition: background 0.2s, transform 0.2s;
    }

    .btn-book-mobile:hover {
        background: var(--gold-dark);
        transform: translateY(-1px);
    }
}

@media (max-width: 768px) {
    .section-body {
        text-align: justify;
        text-justify: inter-word;
        hyphens: auto;
    }

    .about-disclaimer {
        text-align: justify;
        text-justify: inter-word;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ══════════════════════════════════════════════ */
@media (max-width: 400px) {
    #about {
        padding-left: 16px;
        padding-right: 16px;
    }

    .about-img-grid {
        gap: 6px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* ══════════════════════════════════════════════
   SERVICES SECTION — full CSS (base + responsive)
   ══════════════════════════════════════════════ */

#services {
    padding: 120px 60px;
    background: var(--off-white);
    text-align: center;
}

#services .section-label {
    justify-content: center;
}

#services .section-label::before {
    display: none;
}

#services .section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

#services .section-title {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-card-img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    /* full image show */
    display: block;
    background: #f8f8f8;
    /* empty area clean dikhega */
    padding: 8px;
}

.service-card-body {
    padding: 28px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-desc {
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-mid);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    #services {
        padding: 72px 24px;
    }

    #services .section-title {
        margin-bottom: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .service-card-img {
        height: 230px;
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════ */
@media (max-width: 768px) {
    #services {
        padding: 56px 20px;
    }

    #services .section-title {
        font-size: clamp(26px, 7vw, 36px);
        margin-bottom: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
        max-width: 480px;
        margin: 0 auto;
    }

    .service-card-img {
        height: 220px;
    }

    .service-card-body {
        padding: 24px;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-desc {
        text-align: justify;
        text-justify: inter-word;
    }

    /* remove hover lift on touch devices, keep tap feedback instead */
    .service-card:hover {
        transform: none;
    }

    .service-card:active {
        transform: scale(0.98);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ══════════════════════════════════════════════ */
@media (max-width: 400px) {
    #services {
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-card-img {
        height: 190px;
    }

    .service-card-body {
        padding: 20px;
    }

    .service-card-title {
        font-size: 18px;
    }
}


/* ── WHY CHOOSE US ── */
#why {
    padding: 120px 60px;
    background: var(--white);
    text-align: center;
}

#why .section-label {
    justify-content: center;
}

#why .section-label::before {
    display: none;
}

#why .section-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 60px auto 0;
}

.why-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: left;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.why-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.12);
}

.why-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.why-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.why-list li strong {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list li span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}


/* ── CONTACT ── */
#contact {
    padding: 120px 60px;
    background: var(--off-white);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.contact-left .section-title {
    font-size: clamp(28px, 3vw, 44px);
}

.contact-left .section-body {
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(212, 160, 23, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-item-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-item-val {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.form-label-small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid #E0E0E8;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    height: 120px;
}

.btn-submit {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    cursor: pointer;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 12px;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 72px 60px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 4px;
}

.footer-brand-sub {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.footer-brand-tagline {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.footer-info-val {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-info-val a {
    color: var(--gold);
    text-decoration: none;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-newsletter p {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-email-row {
    display: flex;
    gap: 0;
}

.footer-email-row input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
}

.footer-email-row input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-email-row button {
    padding: 12px 20px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s;
}

.footer-email-row button:hover {
    background: var(--gold-dark);
}

.footer-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom {
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
}

/* ── MOBILE NAV ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 30px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    flex-direction: column;
    gap: 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu .btn-nav-mobile {
    margin-top: 16px;
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--navy) !important;
    padding: 14px;
    border-radius: 4px;
    font-weight: 700;
    border: none;
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    nav {
        padding: 0 30px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #hero {
        padding: 0;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-stats {
        left: 30px;
        right: 30px;
        gap: 30px;
    }

    #about,
    #contact {
        grid-template-columns: 1fr;
        padding: 80px 30px;
        gap: 48px;
    }

    #services,
    #why {
        padding: 80px 30px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 60px 30px 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .about-images {
        grid-template-columns: 1fr 1fr;
    }
}