    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --midnight-blue: #0f172a;
        --dark-blue: #1e293b;
        --medium-blue: #334155;
        --light-blue: #475569;
        --accent-blue: #3b82f6;
        --bright-blue: #60a5fa;
        --white: #ffffff;
        --off-white: #f8fafc;
        --light-gray: #e2e8f0;
        --text-dark: #1e293b;
        --text-light: #64748b;
        --shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
        --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.25);
        --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
        --gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background: var(--white);
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* ===== TOP HEADER ===== */
    .top-header {
        background: #0f172a;
        color: white;
        padding: 8px 0;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .top-header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .header-contact {
        display: flex;
        gap: 25px;
    }

    .header-contact span {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #cbd5e1;
    }

    .header-actions {
        display: flex;
        gap: 25px;
    }

    .header-actions a {
        color: #cbd5e1;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s ease;
        font-size: 13px;
    }

    .header-actions a:hover {
        color: #3b82f6;
    }

    /* ===== MAIN NAVIGATION ===== */
    .navbar {
        background: white;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo .logo-image {
        height: 60px;
        width: auto;
        transition: all 0.3s ease;
    }

    .nav-logo .logo-image:hover {
        transform: scale(1.05);
    }

    .nav-menu-container {
        flex: 1;
        display: flex;
        justify-content: center;
    }

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

    .nav-item {
        position: relative;
    }

    .nav-link {
        text-decoration: none;
        color: #1e293b;
        font-weight: 500;
        font-size: 14px;
        padding: 25px 20px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }

    .nav-link:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.05);
        border-bottom-color: #3b82f6;
    }

    .nav-link i {
        font-size: 16px;
        width: 20px;
        text-align: center;
    }

    /* ===== NAVIGATION ACTIONS ===== */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .btn-forex {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
    }

    .btn-forex:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    }

    .user-buttons {
        display: flex;
        gap: 12px;
    }

    .btn-login {
        background: transparent;
        border: 1px solid #3b82f6;
        color: #3b82f6;
        padding: 8px 20px;
        border-radius: 6px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-login:hover {
        background: #3b82f6;
        color: white;
    }

    .btn-signup {
        background: #3b82f6;
        border: none;
        color: white;
        padding: 8px 20px;
        border-radius: 6px;
        font-weight: 500;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-signup:hover {
        background: #1d4ed8;
        transform: translateY(-1px);
    }

    /* ===== PROMOTIONAL BANNER ===== */
    .promo-banner {
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        color: white;
        padding: 20px 0;
    }

    .promo-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .promo-text {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .promo-badge {
        background: rgba(255, 255, 255, 0.2);
        padding: 6px 16px;
        border-radius: 20px;
        font-weight: 700;
        font-size: 14px;
        backdrop-filter: blur(10px);
    }

    .promo-info h3 {
        margin: 0 0 5px 0;
        font-size: 18px;
        font-weight: 600;
    }

    .promo-info p {
        margin: 0;
        font-size: 16px;
    }

    .promo-info strong {
        color: #fbbf24;
        font-size: 18px;
    }

    .promo-actions {
        display: flex;
        gap: 15px;
    }

    .btn-promo {
        background: white;
        color: #3b82f6;
        border: none;
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-promo:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    .btn-promo-outline {
        background: transparent;
        color: white;
        border: 2px solid white;
        padding: 10px 22px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-promo-outline:hover {
        background: white;
        color: #3b82f6;
        transform: translateY(-2px);
    }

    /* ===== HERO SECTION ===== */
    .hero {
        min-height: 85vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: var(--gradient-primary);
        margin-top: 0;
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('../images/hero-background.jpg.png') center/cover no-repeat;
        z-index: 1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: var(--white);
        max-width: 1200px;
        padding: 0 2rem;
        width: 100%;
    }

    .hero-text {
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-title .highlight {
        background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 3rem;
        color: var(--light-gray);
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* ===== SEARCH CONTAINER ===== */
    .search-container {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        max-width: 1000px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .search-tabs {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .tab-btn {
        padding: 1.2rem 1rem;
        border: none;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        cursor: pointer;
        font-weight: 600;
        color: var(--text-light);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 14px;
        border: 2px solid transparent;
    }

    .tab-btn.active {
        background: var(--gradient-accent);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .tab-btn:hover:not(.active) {
        background: var(--white);
        color: var(--accent-blue);
        border-color: var(--accent-blue);
        transform: translateY(-2px);
    }

    .search-form {
        display: none;
    }

    .search-form.active {
        display: block;
        animation: fadeInUp 0.5s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        margin-bottom: 0.75rem;
        font-weight: 600;
        color: var(--text-dark);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .form-input {
        padding: 1rem;
        border: 2px solid var(--light-gray);
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: var(--white);
        font-family: inherit;
    }

    .form-input:focus {
        outline: none;
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        transform: translateY(-2px);
    }

    .btn-search {
        background: var(--gradient-accent);
        color: var(--white);
        border: none;
        padding: 1.2rem 3rem;
        border-radius: 12px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-search:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }

    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        color: var(--white);
        animation: bounce 2s infinite;
    }

    .scroll-arrow {
        width: 30px;
        height: 30px;
        border-right: 2px solid var(--white);
        border-bottom: 2px solid var(--white);
        transform: rotate(45deg);
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        40% {
            transform: translateY(-10px) translateX(-50%);
        }
        60% {
            transform: translateY(-5px) translateX(-50%);
        }
    }

    /* ===== FEATURED DESTINATIONS ===== */
    .featured-destinations {
        padding: 6rem 0;
        background: var(--off-white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 800;
        color: var(--midnight-blue);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-light);
        font-weight: 400;
    }

    .destinations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .destination-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.4s ease;
        position: relative;
        cursor: pointer;
    }

    .destination-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .card-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .destination-card:hover .card-image img {
        transform: scale(1.1);
    }

    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    }

    .card-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--gradient-accent);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .card-content {
        padding: 2rem;
    }

    .card-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--midnight-blue);
        margin-bottom: 0.75rem;
    }

    .card-content p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .price {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--accent-blue);
    }

    .rating {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-light);
        font-weight: 600;
    }

    .rating i {
        color: #fbbf24;
    }

    .btn-explore {
        background: var(--gradient-accent);
        color: var(--white);
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .btn-explore:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    /* ===== FOOTER ===== */
    .footer {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        color: var(--white);
        padding: 4rem 0 0;
        position: relative;
        overflow: hidden;
    }

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, var(--accent-blue) 50%, transparent 100%);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-section h3.footer-title {
        color: var(--white);
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .footer-section h3.footer-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--gradient-accent);
        border-radius: 2px;
    }

    /* Brand Section */
    .footer-brand .footer-logo {
        margin-bottom: 1.5rem;
    }

    .footer-brand .logo-image {
        height: 60px;
        width: auto;
    }

    .footer-description {
        color: var(--light-gray);
        line-height: 1.7;
        margin-bottom: 2rem;
        font-size: 0.95rem;
    }

    .social-links {
        display: flex;
        gap: 1rem;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .social-link:hover {
        background: var(--gradient-accent);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
    }

    /* Footer Links */
    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links a {
        color: var(--light-gray);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.95rem;
    }

    .footer-links a i {
        font-size: 0.7rem;
        color: var(--accent-blue);
        transition: transform 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--bright-blue);
        transform: translateX(5px);
    }

    .footer-links a:hover i {
        transform: translateX(3px);
    }

    /* Contact Info */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        background: rgba(59, 130, 246, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent-blue);
        flex-shrink: 0;
    }

    .contact-text {
        display: flex;
        flex-direction: column;
    }

    .contact-label {
        font-size: 0.8rem;
        color: var(--bright-blue);
        font-weight: 600;
        margin-bottom: 0.2rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-value {
        color: var(--light-gray);
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Newsletter */
    .newsletter-text {
        color: var(--light-gray);
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .newsletter-form {
        margin-bottom: 2rem;
    }

    .input-group {
        display: flex;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .newsletter-input {
        flex: 1;
        padding: 0.8rem 1rem;
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 0.9rem;
    }

    .newsletter-input::placeholder {
        color: var(--light-gray);
    }

    .newsletter-input:focus {
        outline: none;
    }

    .newsletter-btn {
        background: var(--gradient-accent);
        border: none;
        padding: 0.8rem 1.2rem;
        color: var(--white);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
        background: var(--bright-blue);
    }

    .payment-text {
        color: var(--light-gray);
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .payment-icons {
        display: flex;
        gap: 1rem;
        font-size: 1.5rem;
    }

    .payment-icons i {
        color: var(--light-gray);
        transition: color 0.3s ease;
    }

    .payment-icons i:hover {
        color: var(--accent-blue);
    }

    /* Footer Bottom */
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 0;
    }

    .footer-bottom-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        color: var(--light-gray);
        font-size: 0.9rem;
    }

    .copyright strong {
        color: var(--white);
    }

    .footer-bottom-links {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .footer-bottom-links a {
        color: var(--light-gray);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
        color: var(--accent-blue);
    }

    .separator {
        color: var(--light-gray);
        opacity: 0.5;
    }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .nav-link {
            padding: 25px 15px;
            font-size: 13px;
        }
        
        .nav-actions {
            gap: 10px;
        }
        
        .btn-forex {
            padding: 8px 16px;
            font-size: 13px;
        }
        
        .user-buttons {
            gap: 8px;
        }
        
        .btn-login, .btn-signup {
            padding: 8px 16px;
            font-size: 13px;
        }
        
        .footer-content {
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }
        
        .search-tabs {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .top-header {
            display: none;
        }
        
        .nav-container {
            padding: 0 15px;
        }
        
        .nav-menu-container {
            display: none;
        }
        
        .nav-actions {
            display: none;
        }
        
        .hamburger {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }
        
/* Add these styles for mobile menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #1e293b;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .promo-content {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
        
        .promo-text {
            flex-direction: column;
            gap: 15px;
        }
        
        .promo-actions {
            justify-content: center;
        }
        
        .hero {
            min-height: 70vh;
            margin-top: 60px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .search-container {
            padding: 1.5rem;
            margin: 0 1rem;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
        }
        
        .footer {
            padding: 3rem 0 0;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .footer-bottom-content {
            flex-direction: column;
            gap: 1rem;
            text-align: center;
        }
        
        .social-links {
            justify-content: center;
        }
        
        .footer-links a {
            justify-content: flex-start;
        }
    }

    @media (max-width: 480px) {
        .nav-logo .logo-image {
            height: 35px;
        }
        
        .promo-info h3 {
            font-size: 16px;
        }
        
        .promo-info p {
            font-size: 14px;
        }
        
        .btn-promo, .btn-promo-outline {
            padding: 10px 20px;
            font-size: 13px;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .search-tabs {
            grid-template-columns: 1fr;
        }
        
        .section-title {
            font-size: 2.5rem;
        }
        
        .destinations-grid {
            grid-template-columns: 1fr;
        }
        
        .footer {
            padding: 2rem 0 0;
        }
        
        .footer-content {
            gap: 1.5rem;
        }
        
        .contact-item {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }
        
        .contact-icon {
            align-self: center;
        }
    }/* Holiday Packages Section */
    .holiday-packages {
        padding: 6rem 0;
        background: var(--off-white);
    }

    .package-section {
        margin-bottom: 5rem;
    }

    .package-section:last-child {
        margin-bottom: 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--midnight-blue);
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto;
    }

    .read-more {
        color: var(--accent-blue);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .read-more:hover {
        color: var(--bright-blue);
    }

    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .package-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.4s ease;
        position: relative;
        cursor: pointer;
    }

    .package-card {
        flex: 0 0 calc(25% - 1rem); /* This might be too wide on mobile */
    }



    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .package-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .package-card:hover .package-image img {
        transform: scale(1.1);
    }

    .package-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    }

    .package-content {
        padding: 1.5rem;
    }

    .package-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--midnight-blue);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .package-price {
        margin-bottom: 1.5rem;
    }

    .price-amount {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--accent-blue);
        margin-bottom: 0.3rem;
    }

    .price-label {
        font-size: 0.9rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .btn-package {
        background: var(--gradient-accent);
        color: var(--white);
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .btn-package:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    /* Coming Soon Card */
    .coming-soon .package-image {
        background: linear-gradient(135deg, var(--light-gray), var(--medium-blue));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .coming-soon-overlay {
        text-align: center;
        color: var(--white);
    }

    .coming-soon-overlay i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--accent-blue);
    }

    .coming-soon-overlay span {
        font-size: 1.1rem;
        font-weight: 600;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .holiday-packages {
            padding: 4rem 0;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .section-description {
            font-size: 1rem;
            padding: 0 1rem;
        }
        
        .packages-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .package-section {
            margin-bottom: 3rem;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
        }
        
        .package-content {
            padding: 1.2rem;
        }
        
        .package-title {
            font-size: 1.2rem;
        }
        
        .price-amount {
            font-size: 1.3rem;
        }
    }
    /* Package Badge */
    .package-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        background: var(--gradient-accent);
        color: var(--white);
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        font-size: 0.7rem;
        font-weight: 600;
        z-index: 3;
    }

    .package-subtitle {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }
    /* AI Assistant Styles */
    .ai-assistant {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 380px;
        height: 600px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 1000;
        display: none;
        flex-direction: column;
        border: 2px solid var(--primary-color);
        overflow: hidden;
        font-family: 'Arial', sans-serif;
    }

    .ai-assistant.active {
        display: flex;
        animation: slideUp 0.3s ease;
    }

    @keyframes slideUp {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .ai-header {
        background: linear-gradient(135deg, var(--primary-color), #1e3d6f);
        color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ai-header h3 {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
    }

    .ai-header i {
        font-size: 1.2rem;
    }

    .ai-close {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

    .ai-close:hover {
        background: rgba(255,255,255,0.2);
    }

    .ai-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background: #f8f9fa;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .ai-message {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        animation: messageSlide 0.3s ease;
    }

    @keyframes messageSlide {
        from { transform: translateY(10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .user-message {
        justify-content: flex-end;
    }

    .ai-message .message-avatar {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .user-message .message-avatar {
        background: var(--primary-color);
        color: white;
    }

    .ai-message .message-avatar {
        background: linear-gradient(135deg, var(--primary-color), #1e3d6f);
        color: white;
    }

    .message-content {
        max-width: 70%;
        padding: 12px 16px;
        border-radius: 18px;
        position: relative;
    }

    .ai-message .message-content {
        background: white;
        border: 1px solid #e0e0e0;
        border-bottom-left-radius: 5px;
    }

    .user-message .message-content {
        background: var(--primary-color);
        color: white;
        border-bottom-right-radius: 5px;
    }

    .message-content p {
        margin: 0 0 5px 0;
        line-height: 1.4;
    }

    .message-time {
        font-size: 0.7rem;
        opacity: 0.7;
    }

    .ai-input-area {
        padding: 15px 20px;
        border-top: 1px solid #e0e0e0;
        background: white;
        display: flex;
        gap: 10px;
        align-items: flex-end;
    }

    #ai-chat-input {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid #ddd;
        border-radius: 25px;
        outline: none;
        font-size: 0.9rem;
        resize: none;
        max-height: 100px;
        min-height: 20px;
        font-family: inherit;
    }

    #ai-chat-input:focus {
        border-color: var(--primary-color);
    }

    #ai-send-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        flex-shrink: 0;
    }

    #ai-send-btn:hover:not(:disabled) {
        background: #1e3d6f;
        transform: scale(1.05);
    }

    #ai-send-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
    }

    .suggestions-container {
        padding: 15px 20px;
        background: #f8f9fa;
        border-top: 1px solid #e0e0e0;
    }

    .suggestions-title {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .suggestion-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .suggestion-chip {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 20px;
        padding: 8px 16px;
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s;
        color: #333;
    }

    .suggestion-chip:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        transform: translateY(-1px);
    }

    .ai-toggle {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--primary-color), #1e3d6f);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .ai-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(44, 90, 160, 0.4);
    }

    /* Typing Indicator */
    .typing-indicator {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .typing-dots {
        display: flex;
        gap: 4px;
        padding: 12px 16px;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 18px;
        border-bottom-left-radius: 5px;
    }

    .typing-dots span {
        width: 8px;
        height: 8px;
        background: #999;
        border-radius: 50%;
        animation: typingAnimation 1.4s infinite ease-in-out;
    }

    .typing-dots span:nth-child(1) { animation-delay: -0.32s; }
    .typing-dots span:nth-child(2) { animation-delay: -0.16s; }

    @keyframes typingAnimation {
        0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
        40% { transform: scale(1); opacity: 1; }
    }

    /* Message formatting */
    .message-content strong {
        font-weight: 600;
    }

    .message-content em {
        font-style: italic;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .ai-assistant {
            width: 100%;
            height: 100%;
            bottom: 0;
            right: 0;
            border-radius: 0;
        }
        
        .ai-toggle {
            bottom: 80px;
            right: 20px;
        }
        
        .message-content {
            max-width: 85%;
        }
    }

    /* Make sure primary color is defined */
    :root {
        --primary-color: #2c5aa0;
    }

    /* Quick Suggestions */
    .quick-suggestions {
        margin-top: 1rem;
    }

    .quick-suggestions p {
        font-size: 0.8rem;
        color: var(--text-light);
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .suggestion-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .suggestion-chip {
        background: var(--white);
        border: 1px solid var(--light-gray);
        color: var(--text-dark);
        padding: 0.5rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .suggestion-chip:hover {
        background: var(--accent-blue);
        color: white;
        border-color: var(--accent-blue);
        transform: translateY(-1px);
    }

    /* AI Input Container */
    .ai-input-container {
        padding: 1rem;
        border-top: 1px solid var(--light-gray);
        background: var(--white);
    }

    .ai-input {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .ai-input input {
        flex: 1;
        padding: 0.8rem 1rem;
        border: 1px solid var(--light-gray);
        border-radius: 25px;
        font-size: 0.9rem;
        outline: none;
        transition: all 0.3s ease;
    }

    .ai-input input:focus {
        border-color: var(--accent-blue);
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
    }

    .ai-send {
        background: linear-gradient(135deg, #667eea, #764ba2);
        border: none;
        color: var(--white);
        width: 45px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ai-send:hover {
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

    .ai-disclaimer {
        text-align: center;
    }

    .ai-disclaimer small {
        color: var(--text-light);
        font-size: 0.7rem;
    }

    /* Mobile Responsive for AI Assistant */
    @media (max-width: 768px) {
        .ai-assistant {
            bottom: 1rem;
            right: 1rem;
        }
        
        .ai-toggle {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
        
        .ai-chat-window {
            width: 320px;
            height: 500px;
            right: -20px;
        }
    }

    @media (max-width: 480px) {
        .ai-chat-window {
            width: 300px;
            right: -40px;
        }
        
        .ai-toggle {
            width: 55px;
            height: 55px;
            font-size: 1.3rem;
        }
    }

    /* Add to your CSS file */
    .user-message {
        background: var(--gradient-accent) !important;
        color: white;
        margin-left: auto;
        max-width: 80%;
    }
    /* Slider Styles */
    .slider-container {
        position: relative;
        overflow: hidden;
        margin: 2rem 0;
    }

    .packages-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 1.5rem;
    }

    .package-card {
        flex: 0 0 calc(33.333% - 1rem);
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .package-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .package-card:hover .package-image img {
        transform: scale(1.1);
    }

    .package-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
    }

    .package-content {
        padding: 1.5rem;
    }

    .package-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .package-duration {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .package-price {
        margin-bottom: 1rem;
    }

    .price-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: #e74c3c;
        display: block;
    }

    .price-label {
        font-size: 0.9rem;
        color: #7f8c8d;
    }

    .package-features {
        list-style: none;
        margin: 1rem 0;
        padding: 0;
    }

    .package-features li {
        padding: 0.3rem 0;
        color: #5a6c7d;
        font-size: 0.9rem;
    }

    .package-features li i {
        color: #27ae60;
        margin-right: 0.5rem;
    }

    .btn-package {
        width: 100%;
        background: linear-gradient(135deg, #3498db, #2c3e50);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-package:hover {
        background: linear-gradient(135deg, #2980b9, #34495e);
        transform: translateY(-2px);
    }

    /* Slider Controls */
    .slider-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 3;
    }

    .slider-btn {
        background: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        pointer-events: all;
        color: #2c3e50;
    }

    .slider-btn:hover {
        background: #3498db;
        color: white;
        transform: scale(1.1);
    }

    .slider-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #bdc3c7;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #3498db;
        transform: scale(1.2);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .package-card {
            flex: 0 0 calc(50% - 1rem);
        }
    }

    @media (max-width: 768px) {
        .package-card {
            flex: 0 0 calc(100% - 1rem);
        }
        
        .slider-controls {
            display: none;
        }
        
        .package-image {
            height: 180px;
        }
    }

    @media (max-width: 480px) {
        .package-content {
            padding: 1rem;
        }
        
        .package-title {
            font-size: 1.1rem;
        }
        
        .price-amount {
            font-size: 1.3rem;
        }
    }
    /* Domestic Slider Styles */
    .slider-container {
        position: relative;
        overflow: hidden;
        margin: 2rem 0;
    }

    .packages-slider {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 1.5rem;
    }

    .package-card {
        flex: 0 0 calc(25% - 1rem);
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .package-image {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .package-card:hover .package-image img {
        transform: scale(1.1);
    }

    .package-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 2;
    }

    .package-content {
        padding: 1.5rem;
    }

    .package-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .package-duration {
        color: #7f8c8d;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .package-price {
        margin-bottom: 1rem;
    }

    .price-amount {
        font-size: 1.5rem;
        font-weight: 700;
        color: #e74c3c;
        display: block;
    }

    .price-label {
        font-size: 0.9rem;
        color: #7f8c8d;
    }

    .package-features {
        list-style: none;
        margin: 1rem 0;
        padding: 0;
    }

    .package-features li {
        padding: 0.3rem 0;
        color: #5a6c7d;
        font-size: 0.9rem;
    }

    .package-features li i {
        color: #27ae60;
        margin-right: 0.5rem;
    }

    .btn-package {
        width: 100%;
        background: linear-gradient(135deg, #3498db, #2c3e50);
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .btn-package:hover {
        background: linear-gradient(135deg, #2980b9, #34495e);
        transform: translateY(-2px);
    }

    /* Slider Controls */
    .slider-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 3;
    }

    .slider-btn {
        background: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        pointer-events: all;
        color: #2c3e50;
    }

    .slider-btn:hover {
        background: #3498db;
        color: white;
        transform: scale(1.1);
    }

    .slider-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #bdc3c7;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #3498db;
        transform: scale(1.2);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .package-card {
            flex: 0 0 calc(33.333% - 1rem);
        }
    }

    @media (max-width: 768px) {
        .package-card {
            flex: 0 0 calc(50% - 1rem);
        }
    }

    @media (max-width: 576px) {
        .package-card {
            flex: 0 0 calc(100% - 1rem);
        }
        
        .slider-controls {
            display: none;
        }
        
        .package-image {
            height: 180px;
        }
    }

    @media (max-width: 480px) {
        .package-content {
            padding: 1rem;
        }
        
        .package-title {
            font-size: 1.1rem;
        }
        
        .price-amount {
            font-size: 1.3rem;
        }
    }
    /* Read More/Less Styles */
    .section-description {
        position: relative;
    }

    .description-text {
        font-size: 1.1rem;
        color: #5a6c7d;
        line-height: 1.6;
        margin-bottom: 0;
    }

    .read-more, .read-less {
        color: #3498db;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        transition: color 0.3s;
        cursor: pointer;
        margin-left: 5px;
    }

    .read-more:hover, .read-less:hover {
        color: #2980b9;
        text-decoration: underline;
    }

    .short-text, .full-text {
        transition: all 0.3s ease;
    }
    /* Custom Calendar Styles */
.custom-date-input {
    position: relative;
}

.date-display {
    cursor: pointer;
    background: white;
    color: #000 !important;
}

.calendar-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}

/* Calendar Modal */
.calendar-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.calendar-modal.show {
    display: flex;
}

.calendar-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-width: 320px;
    max-width: 90vw;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.calendar-nav {
    background: #f8fafc;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #3b82f6;
    color: white;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.8rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: #000 !important;
}

.calendar-day:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.calendar-day.selected {
    background: #3b82f6;
    color: white !important;
    border-color: #3b82f6;
}

.calendar-day.today {
    background: #eff6ff;
    color: #3b82f6 !important;
    border-color: #3b82f6;
}

.calendar-day.other-month {
    color: #d1d5db !important;
    cursor: not-allowed;
}

.calendar-day.other-month:hover {
    background: transparent;
    border-color: transparent;
}

.calendar-day.disabled {
    color: #d1d5db !important;
    cursor: not-allowed;
    background: #f9fafb;
}

.calendar-day.disabled:hover {
    background: #f9fafb;
    border-color: transparent;
}

.calendar-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.btn-clear, .btn-apply {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-clear {
    background: #f3f4f6;
    color: #374151;
}

.btn-clear:hover {
    background: #e5e7eb;
}

.btn-apply {
    background: #3b82f6;
    color: white;
}

.btn-apply:hover {
    background: #2563eb;
}

/* Airport Suggestions Fix */
.suggestions-dropdown {
    background: white !important;
    color: #000000 !important;
    border: 2px solid #3b82f6 !important;
}

.suggestion-item {
    color: #000000 !important;
    padding: 12px 15px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.suggestion-item:hover {
    background: #f3f4f6 !important;
}

.suggestion-item strong {
    color: #000000 !important;
    font-size: 14px !important;
}

.airport-details .city {
    color: #374151 !important;
    font-weight: 600 !important;
}

.airport-details .code {
    color: #3b82f6 !important;
    font-weight: bold !important;
}

.country {
    color: #6b7280 !important;
}

/* ===== PROFESSIONAL PASSENGER SELECTOR ===== */
.passenger-selector {
    position: relative;
    cursor: pointer;
    z-index: 10050;
}

.passenger-display {
    cursor: pointer;
    background: white;
    color: #000 !important;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.passenger-dropdown-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.passenger-selector.active .passenger-dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

.passenger-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10060;
    display: none;
    margin-top: 8px;
    min-width: 280px;
    overflow: visible !important;
    max-height: none
}

.passenger-selector.active .passenger-dropdown {
    display: block;
}

.passenger-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
}

.passenger-category:last-child {
    border-bottom: none;
    padding-bottom: 10px;
}

.passenger-info {
    flex: 1;
}

.passenger-type strong {
    display: block;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.age-info {
    color: #6b7280;
    font-size: 12px;
}

.passenger-note {
    color: #ef4444;
    font-size: 11px;
    margin-top: 4px;
    font-style: italic;
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.passenger-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #374151;
}

.passenger-btn:hover:not(:disabled) {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.passenger-btn:disabled {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #d1d5db;
    cursor: not-allowed;
}

.passenger-count {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    min-width: 20px;
    text-align: center;
}

.passenger-total {
    padding: 15px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    text-align: center;
    color: #1f2937;
    font-size: 14px;
}

.passenger-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.btn-cancel, .btn-apply {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-cancel {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-cancel:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-apply {
    background: #3b82f6;
    color: white;
}

.btn-apply:hover {
    background: #2563eb;
}

/* Body scroll lock when dropdown is open */
body.passenger-dropdown-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.passenger-dropdown-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 10040;
    pointer-events: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .passenger-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
        max-width: 320px;
        margin: 0;
        z-index: 10070;
    }
    
    .passenger-category {
        padding: 12px 0;
    }
    
    .passenger-controls {
        gap: 12px;
    }
    
    .passenger-btn {
        width: 28px;
        height: 28px;
    }
    
    body.passenger-dropdown-open::before {
        z-index: 10060;
    }
}

.btn-cancel, .btn-apply {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-cancel {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-cancel:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.btn-apply {
    background: #3b82f6;
    color: white;
}

.btn-apply:hover {
    background: #2563eb;
}


/* Ensure hero section has proper stacking context */
.hero {
    position: relative;
    z-index: 1;
}

.search-container {
    position: relative;
    z-index: 100;
}


/* Add this for the scroll effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}