/* ============================================
   LUXURY NAVBAR - $99k Awwwards Styling
   ============================================ */

/* Import Luxury Typography */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --luxury-nav-bg: rgba(255, 255, 255, 0.95);
    /* Clean white with slight transparency */
    --luxury-nav-blur: 20px;
    --luxury-gold: #D4AF37;
    --luxury-gold-glow: rgba(212, 175, 55, 0.4);
    --luxury-text-primary: #1A365D;
    /* Deep Navy */
    /* Dark text for visibility */
    --luxury-text-muted: #555555;
    /* Gray for secondary text */
}

/* =========================================
   1. TOP BAR - Sleek & Minimal
   ========================================= */
/* =========================================
   1. TOP BAR - Sleek & Minimal
   ========================================= */
.new-top-bar {
    background-color: #1A365D !important;
    /* Navy Background Forced */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 0;
    color: #D4AF37 !important;
    /* Gold Text Forced */
    position: relative;
    z-index: 1003;
}

.top-link {
    color: var(--luxury-gold) !important;
    transition: all 0.3s ease;
}

.top-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px var(--luxury-gold-glow);
}

.top-link i {
    color: var(--luxury-gold) !important;
}

@media (max-width: 991px) {
    .new-top-bar {
        display: block !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1005 !important;
        padding: 5px 0 !important;
        height: 36px;
    }

    .new-top-bar .container {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        /* Spread out */
        align-items: center;
        gap: 5px;
        padding: 0 10px;
        height: 100%;
        width: 100%;
    }

    .top-left {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
        /* Take available space */
        min-width: 0;
        /* Allow shrinking */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        /* Don't shrink icons */
    }

    /* Reduce font size strictly for mobile */
    .top-link {
        font-size: 0.5rem !important;
        /* Even smaller text as requested */
        letter-spacing: 0.5px;
    }

    .top-link i {
        font-size: 0.6rem !important;
        /* Smaller icons */
    }

    /* Reduce font size slightly for mobile */
    .top-link {
        font-size: 0.7rem;
    }

    body {
        padding-top: 106px !important;
        margin-top: 0 !important;
    }

    .menu-text {
        font-size: 0.55rem;
        /* Small text as requested */
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-right: 8px;
        white-space: nowrap;
    }

    /* Force Fixed Header on Mobile */
    .new-header {
        position: fixed !important;
        top: 36px !important;
        /* Height of top bar */
        left: 0;
        width: 100%;
        height: 70px;
        z-index: 1001;
        margin-top: 0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* Hide Contact in Top Bar on Mobile */
    .desktop-contact {
        display: none !important;
    }
}

/* =========================================
   2. MAIN HEADER - Clean Professional Design
   ========================================= */
.new-header {
    background: var(--luxury-nav-bg) !important;
    backdrop-filter: blur(var(--luxury-nav-blur));
    -webkit-backdrop-filter: blur(var(--luxury-nav-blur));
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 90px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    /* Ensure z-index works */
    /* Ensure z-index works */
    z-index: 1001;
}

.new-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Scrolled State */
.new-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* Desktop Fixed/Sticky Navigation Fix */
@media (min-width: 992px) {

    /* 1. Reset Body Padding & Add Offset for Fixed Header */
    body {
        padding-top: 106px !important;
        /* 36px TopBar + 70px Header */
    }

    /* 2. Fix Top Bar to Top */
    .new-top-bar {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 40px;
        z-index: 1002;
        background-color: #f8f9fa;
        /* Ensure opaque background */
    }

    /* 3. Fix Main Header Below Top Bar */
    .new-header {
        position: fixed !important;
        top: 36px !important;
        /* Height of top bar */
        left: 0;
        width: 100%;
        height: 70px;
        z-index: 1001;
        margin-top: 0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* When scrolled (JS Class), shrink header */
    .new-header.scrolled {
        height: 70px;
        top: 40px !important;
        /* Keep position */
    }
}

/* Logo Enhancement */
.header-logo img {
    transition: transform 0.4s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}

/* =========================================
   3. DESKTOP NAVIGATION - Premium Links
   ========================================= */
.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--luxury-text-primary) !important;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Animated Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--luxury-gold);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-link:hover {
    color: var(--luxury-gold) !important;
}

.nav-link:hover::after {
    transform: translateX(0);
}

/* =========================================
   4. MEGA MENU - Light & Professional
   ========================================= */
.mega-menu {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(30px);
    border-top: 2px solid var(--luxury-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
}

.mega-column h4 {
    color: var(--luxury-gold) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mega-column a {
    color: #555 !important;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.mega-column a:hover {
    color: #1a1a1a !important;
    transform: translateX(8px);
    text-shadow: none;
}

.mega-column a i {
    color: var(--luxury-gold) !important;
    opacity: 0.8;
}

/* =========================================
   5. CTA BUTTON - Gold Pill
   ========================================= */
.btn-pill-cta {
    background: linear-gradient(135deg, var(--luxury-gold), #f1c40f) !important;
    color: #000 !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700 !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3) !important;
    padding: 12px 30px !important;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shine Effect */
.btn-pill-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: none;
    z-index: -1;
}

.btn-pill-cta:hover::before {
    animation: btnShine 0.8s ease;
}

.btn-pill-cta:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5) !important;
    background: linear-gradient(135deg, #f1c40f, var(--luxury-gold)) !important;
}

@keyframes btnShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* =========================================
   6. MOBILE MENU - Clean Professional Drawer
   ========================================= */
.mobile-hamburger {
    color: var(--luxury-gold) !important;
}

.menu-text {
    color: #000000 !important;
}

.mobile-nav-panel {
    background: #ffffff !important;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: 0 !important;
    right: -100%;
    /* Hidden by default */
    width: 280px;
    height: 100vh !important;
    z-index: 2000 !important;
    /* Above everything */
    padding-top: 0 !important;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav-panel.active {
    right: 0 !important;
}

.mobile-nav-overlay {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999 !important;
    /* Just below panel */
    display: none;
    backdrop-filter: blur(4px);
}

.mobile-nav-header {
    background: #f8f9fa !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #000000 !important;
}

.mobile-link {
    color: #1a1a1a !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    font-size: 1rem;
    padding: 15px 20px !important;
}

.mobile-link:hover {
    background: rgba(212, 175, 55, 0.08) !important;
    color: var(--luxury-gold) !important;
    padding-left: 25px !important;
    /* Slide effect */
}

.accordion-trigger {
    background: transparent !important;
    color: #1a1a1a !important;
}

.accordion-content {
    background: rgba(248, 249, 250, 0.5) !important;
}

.accordion-content a {
    color: #555 !important;
}

.accordion-content a:hover {
    color: var(--luxury-gold) !important;
}

.close-menu {
    color: #1a1a1a !important;
}