/* ========== MODERN NAVBAR STYLING ========== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        background: #f8f5f0;
        min-height: 100vh;
        padding-top: 100px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    /* Professional Color Scheme */
    :root {
        --nav-bg: #ffffff;
        --nav-border: #e6d8b5;
        --gold-primary: #d4a017;
        --gold-secondary: #f4c430;
        --saffron: #ff9933;
        --deep-brown: #3c2f2f;
        --light-brown: #8b7355;
        --text-dark: #2c1810;
        --text-light: #5a4a42;
        --shadow: rgba(60, 47, 47, 0.1);
        --gradient-gold: linear-gradient(135deg, #d4a017 0%, #f4c430 50%, #ff9933 100%);
    }
    
    /* ========== MAIN NAVBAR CONTAINER ========== */
    .navbar-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: var(--nav-bg);
        box-shadow: 0 5px 25px var(--shadow);
        border-bottom: 3px solid var(--nav-border);
    }
    
    /* Gold accent line */
    .navbar-accent {
        height: 4px;
        background: var(--gradient-gold);
        width: 100%;
    }
    
    /* Navbar inner container */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        max-width: 1400px;
        margin: 0 auto;
        height: 90px;
        position: relative;
    }
    
    /* ========== LOGO DESIGN ========== */
    .navbar-logo {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .navbar-logo:hover {
        transform: translateY(-2px);
    }
    
    .logo-img {
        height: 70px;
        width: auto;
        border-radius: 8px;
        padding: 5px;
        background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(244, 196, 48, 0.1) 100%);
        box-shadow: 0 4px 12px rgba(212, 160, 23, 0.2);
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .logo-title {
        font-size: 22px;
        font-weight: 700;
        color: var(--deep-brown);
        letter-spacing: 0.5px;
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .logo-subtitle {
        font-size: 12px;
        color: var(--light-brown);
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-top: 2px;
    }
    
    /* ========== NAVIGATION MENU ========== */
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 5px;
        margin: 0;
        padding: 0;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 22px;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

/* Override Bootstrap hiding */
.dropdown-menu {
    display: block;
}
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-gold);
        opacity: 0;
        z-index: -1;
        transition: opacity 0.3s ease;
        border-radius: 8px;
    }
    
    .nav-link:hover::before {
        opacity: 0.1;
    }
    
    .nav-link:hover {
        color: var(--gold-primary);
        transform: translateY(-2px);
    }
    
    .nav-icon {
        font-size: 16px;
        color: var(--gold-secondary);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover .nav-icon {
        color: var(--saffron);
        transform: scale(1.1);
    }
    
    /* Active menu item */
    .nav-item.active .nav-link {
        color: var(--saffron);
        font-weight: 700;
    }
    
    .nav-item.active .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: var(--gradient-gold);
        border-radius: 3px;
    }
    
    /* ========== DROPDOWN MENUS ========== */
    .dropdown {
        position: relative;
    }
    
    .dropdown > .nav-link::after {
        content: '▾';
        margin-left: 5px;
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .dropdown:hover > .nav-link::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 240px;
        background: var(--nav-bg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        padding: 12px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
        border: 1px solid rgba(212, 160, 23, 0.1);
    }
    
    /* IMPORTANT: Show dropdown on hover */
    .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-item {
        display: block;
        padding: 12px 25px;
        color: var(--text-dark);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s ease;
        position: relative;
    }
    
    .dropdown-item:hover {
        background: linear-gradient(90deg, rgba(212, 160, 23, 0.08) 0%, rgba(244, 196, 48, 0.05) 100%);
        color: var(--gold-primary);
        padding-left: 30px;
    }
    
    .dropdown-item::before {
        content: '•';
        color: var(--gold-secondary);
        position: absolute;
        left: 15px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .dropdown-item:hover::before {
        opacity: 1;
    }
    
    /* Nested dropdown */
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu > .dropdown-item::after {
        content: '▸';
        position: absolute;
        right: 20px;
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu:hover > .dropdown-item::after {
        transform: rotate(90deg);
    }
    
    .dropdown-submenu .dropdown-menu {
        top: -12px;
        left: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
    }
    
    /* IMPORTANT: Show nested dropdown on hover */
    .dropdown-submenu:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    /* ========== CALL TO ACTION BUTTON ========== */
    .navbar-cta {
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .cta-button {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 28px;
        background: var(--gradient-gold);
        color: white;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(226, 15, 15, 0.4);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.7s ease;
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(212, 160, 23, 0.5);
    }
    
    .cta-button:hover::before {
        left: 100%;
    }
    
    .cta-icon {
        font-size: 18px;
        background: rgba(255, 255, 255, 0.2);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* ========== MOBILE MENU TOGGLE ========== */
    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }
    
    .menu-toggle span {
        display: block;
        height: 3px;
        width: 100%;
        background: var(--gold-primary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* ========== RESPONSIVE DESIGN ========== */
    @media (max-width: 1200px) {
        .navbar {
            padding: 0 30px;
        }
        
        .nav-link {
            padding: 16px 18px;
            font-size: 14.5px;
        }
    }
    
    @media (max-width: 992px) {
        .navbar {
            padding: 0 25px;
            height: 80px;
        }
        
        .nav-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--nav-bg);
            flex-direction: column;
            padding: 100px 30px 30px;
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
            transition: right 0.4s ease;
            overflow-y: auto;
            z-index: 1000;
        }
        
        .nav-menu.active {
            right: 0;
        }
        
        .nav-item {
            width: 100%;
        }
        
        .nav-link {
            padding: 18px 20px;
            border-radius: 8px;
            margin-bottom: 5px;
        }
        
        /* Mobile dropdown styling */
        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            padding: 0;
            background: rgba(212, 160, 23, 0.05);
            border-radius: 8px;
            margin-top: 5px;
            margin-bottom: 15px;
            display: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .dropdown.active .dropdown-menu {
            display: block;
            max-height: 500px;
            padding: 10px 0;
        }
        
        .dropdown-submenu .dropdown-menu {
            position: static;
            transform: none;
            margin-left: 15px;
        }
        
        .menu-toggle {
            display: flex;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: translateY(10px) rotate(45deg);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-10px) rotate(-45deg);
        }
        
        .logo-img {
            height: 60px;
        }
        
        .logo-title {
            font-size: 20px;
        }
    }
    
    @media (max-width: 768px) {
        .navbar {
            padding: 0 20px;
        }
        
        .logo-text {
            display: none;
        }
        
        .cta-button span {
            display: none;
        }
        
        .cta-button {
            padding: 12px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            justify-content: center;
        }
        
        .cta-icon {
            width: 30px;
            height: 30px;
            font-size: 16px;
        }
    }
    
    @media (max-width: 480px) {
        .navbar {
            padding: 0 15px;
            height: 70px;
        }
        
        .logo-img {
            height: 50px;
        }
        
        .nav-menu {
            width: 280px;
            padding: 90px 20px 20px;
        }
    }
    
    /* ========== PAGE CONTENT FOR DEMO ========== */
    .demo-content {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
        color: var(--text-dark);
    }
    
    .demo-title {
        font-size: 36px;
        text-align: center;
        margin-bottom: 30px;
        color: var(--deep-brown);
        position: relative;
        padding-bottom: 15px;
    }
    
    .demo-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: var(--gradient-gold);
        border-radius: 2px;
    }
    
    .demo-text {
        font-size: 18px;
        line-height: 1.6;
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px;
        color: var(--text-light);
    }
    
    .demo-note {
        background: rgba(212, 160, 23, 0.1);
        padding: 20px;
        border-radius: 10px;
        border-left: 4px solid var(--gold-primary);
        margin-top: 40px;
    }