body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-inner {
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link,
.top-announcement {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.top-link {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.top-link:hover {
    opacity: 1;
}

.whatsapp-help svg {
    color: var(--color-white);
}

.divider {
    color: rgba(255, 255, 255, 0.2);
}

.top-announcement {
    color: var(--color-gold);
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    display: flex;
    height: 80px;
    padding: 0 24px;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
    height: 64px;
    flex-shrink: 0;
    aspect-ratio: 75/32;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-links li a:hover {
    opacity: 1;
}

.nav-links li a.active {
    color: #C9A961;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.15px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 12%;
    text-underline-offset: 24%;
    text-underline-position: from-font;
}

.nav-links li a.active svg {
    color: #C9A961;
}

.nav-whatsapp-btn {
    display: flex;
    padding: 13px 24px 13px 23.594px;
    justify-content: center;
    align-items: center;
    gap: 8.406px;
    border-radius: 8px;
    background: var(--color-white);
    color: var(--color-green);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.nav-whatsapp-btn:hover {
    background: #f0f0f0;
}

/* Responsiveness for Header */
@media (max-width: 1300px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links li a {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .nav-wrapper {
        height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-left {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 120px;
        height: auto;
    }

    .nav-whatsapp-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .nav-links {
        gap: 20px;
        margin-top: 8px;
    }

    .nav-links li a {
        font-size: 14px;
    }

    .top-bar-inner {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .top-link,
    .top-announcement {
        font-size: 12px;
    }
}
/* ============================================================
   Mobile / tablet navigation (Phase 3 — Task 1)
   Desktop (>=1200px) keeps the existing inline nav + mega menu.
   ============================================================ */

/* Hamburger button — hidden on desktop, shown below 1200px. */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Off-canvas drawer + overlay. */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1400;
}
.mobile-nav-overlay.is-visible { opacity: 1; }

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: min(84vw, 340px);
    background: #123524;
    color: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1401;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav-logo img { width: 130px; height: auto; display: block; }
.mobile-nav-close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    width: 44px;
    height: 44px;
}

.mobile-nav-body { padding: 8px 0 24px; }
.m-nav-list { list-style: none; margin: 0; padding: 0; }
.m-nav-list li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }

.m-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    padding: 15px 22px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
}
.m-nav-link:hover,
.m-nav-link:focus-visible { background: rgba(255, 255, 255, 0.06); color: #C9A961; }
.m-sub-toggle svg { transition: transform 0.25s ease; flex-shrink: 0; }
.m-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.m-sub { padding: 4px 0 10px; background: rgba(0, 0, 0, 0.15); }
.m-sub-heading {
    margin: 10px 22px 4px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #C9A961;
}
.m-sub-links { list-style: none; margin: 0 0 6px; padding: 0; }
.m-sub-links li { border: 0; }
.m-sub-links a {
    display: block;
    padding: 9px 22px 9px 32px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
}
.m-sub-links a:hover,
.m-sub-links a:focus-visible { color: #fff; background: rgba(255, 255, 255, 0.06); }
.m-sub-footer { color: #C9A961 !important; font-weight: 500; }

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 22px 0;
    padding: 12px 18px;
    background: #fff;
    color: #123524;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

body.mobile-nav-open { overflow: hidden; }

/* Below 1200px: swap inline desktop nav for the hamburger. */
@media (max-width: 1199.98px) {
    .nav-links,
    .navbar > .nav-whatsapp-btn { display: none !important; }
    .nav-toggle { display: flex; }
    .nav-wrapper { height: 72px; padding-top: 0; padding-bottom: 0; }
    .navbar { flex-wrap: nowrap; gap: 12px; }
}

/* Desktop keeps the drawer permanently hidden/inert. */
@media (min-width: 1200px) {
    .mobile-nav,
    .mobile-nav-overlay,
    .nav-toggle { display: none !important; }
}
