                /* Top Info Bar */
        .info-bar {
            background-color: #f8f9fa;
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        
        .info-bar.hidden {
            transform: translateY(-100%);
        }
        
        /* Glassmorphism Header */
        .glass-header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }
        
        .glass-header.scrolled {
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        /* Logo Animation */
        .logo-container {
            padding: 8px 16px;
            border-radius: 12px;
            transition: all 0.2s ease;
        }
        
        .logo-container:hover {
            transform: scale(1.02);
            background: rgba(59, 130, 246, 0.05);
        }
        
        /* Navigation Links */
        .nav-link {
            position: relative;
            padding: 12px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 8px;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 8px;
            left: 50%;
            right: 50%;
            background: linear-gradient(90deg, #3B82F6, #1D4ED8);
            transition: all 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 60%;
            left: 20%;
            right: 20%;
        }
        
        .nav-link:hover {
            color: #3B82F6;
            background: rgba(59, 130, 246, 0.05);
        }
        
        /* Dropdown Menu */
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .dropdown-item {
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background: rgba(59, 130, 246, 0.08);
            color: #3B82F6;
            transform: translateX(-2px);
        }
        
        /* CTA Button */
        .cta-button {
            background: linear-gradient(135deg, #3B82F6, #1D4ED8);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
            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.2), transparent);
            transition: left 0.5s ease;
        }
        
        .cta-button:hover::before {
            left: 100%;
        }
        
        .cta-button:hover {
            background: linear-gradient(135deg, #1D4ED8, #1E40AF);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
            transform: translateY(-1px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        
        .mobile-menu.open {
            transform: translateX(0);
        }
        
        /* Hamburger Animation */
        .hamburger {
            width: 24px;
            height: 24px;
            position: relative;
            cursor: pointer;
        }
        
        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: #374151;
            border-radius: 1px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.25s ease-in-out;
        }
        
        .hamburger span:nth-child(1) {
            top: 6px;
        }
        
        .hamburger span:nth-child(2) {
            top: 12px;
        }
        
        .hamburger span:nth-child(3) {
            top: 18px;
        }
        
        .hamburger.open span:nth-child(1) {
            top: 12px;
            transform: rotate(135deg);
        }
        
        .hamburger.open span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .hamburger.open span:nth-child(3) {
            top: 12px;
            transform: rotate(-135deg);
        }
        
        /* Language Switch */
        .lang-switch {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            transition: all 0.2s ease;
        }
        
        .lang-switch:hover {
            background: rgba(59, 130, 246, 0.15);
            transform: translateY(-1px);
        }