         /* Color Palette Variables */
        :root {
            --primary-orange: #FF6B35;   
            --hover-orange: #F79256;     
            --text-dark: #2B2D42;        
            --glass-bg: rgba(255, 255, 255, 0.92); 
            --bg-light: #F8F9FA;
        }

        body {
            font-family: 'Inter', sans-serif; 
            margin: 0;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        /* 1. The Hero Background */
        .hero-section {
            background-image: linear-gradient(to bottom, rgba(255, 107, 53, 0.2), rgba(43, 45, 66, 0.6)), url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 90vh; 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }

        .hero-content {
            max-width: 800px;
            width: 100%;
        }

        .hero-content h1 {
            color: #FFFFFF;
            font-size: 3.5rem;
            text-shadow: 0 4px 15px rgba(0,0,0,0.3); 
            text-align: center;
            margin-bottom: 10px;
        }

        .hero-content p {
            color: #F8F9FA;
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        /* 2. The Floating Card Style */
        .inquiry-card {
            background: var(--glass-bg); 
            backdrop-filter: blur(12px); 
            border-radius: 16px; 
            border-top: 4px solid var(--primary-orange); 
            padding: 35px;
            box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15); 
        }
    
        /* NEW: Styles for the Two-Lane Toggle Tabs */
        .booking-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 25px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }
    
        .tab-btn {
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: #888;
            cursor: pointer;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
    
        .tab-btn:hover {
            background: #f0f0f0;
            color: var(--text-dark);
        }
    
        .tab-btn.active {
            background: var(--primary-orange);
            color: white;
        }
    
        .form-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }



        /* 3. Form Inputs and Buttons */
        .modern-input {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 14px 18px;
            font-size: 16px;
            outline: none;
            transition: all 0.3s ease;
            box-sizing: border-box;
            background: white;
            color: var(--text-dark);
            font-family: 'Inter', sans-serif;
        }

        .modern-input:focus {
            border-color: var(--primary-orange); 
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2); 
        }

        .btn-primary {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 14px 24px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary:hover {
            background-color: var(--hover-orange);
            transform: translateY(-2px); 
        }

        .dynamic-fields {
            margin-top: 15px;
        }
        
                /* NEW: FLIGHT RESULTS STYLING */
        #flight-results-container {
            border-top: 2px solid rgba(0,0,0,0.05);
            padding-top: 25px;
            margin-top: 25px;
        }
    
        .flight-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #ffffff;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #eee;
            border-left: 5px solid var(--primary-orange);
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
    
        .flight-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
    
        .flight-info {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
    
        .airline-name {
            font-weight: 800;
            color: #2B2D42;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
    
        .flight-times {
            font-size: 0.95rem;
            color: #666;
        }
    
        .flight-price-box {
            text-align: right;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: flex-end;
        }
    
        .flight-price {
            font-size: 1.4rem;
            font-weight: 800;
            color: #28a745;
        }
    
        .btn-book-flight {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }
    
        .btn-book-flight:hover {
            background-color: #e55a2b;
        }


        /* 4. Value Proposition & Destinations */
        .value-prop-section, .destinations-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--text-dark);
        }

        .benefits-grid, .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
        }

        .benefit-icon {
            color: var(--primary-orange);
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
        }

        .benefit-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.6;
        }

        .destination-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: left;
            transition: transform 0.3s ease;
        }

        .destination-card:hover {
            transform: translateY(-5px);
        }

        .destination-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .destination-info {
            padding: 25px;
        }

        .destination-info h4 {
            margin: 0 0 10px 0;
            font-size: 1.4rem;
        }

        .destination-info p {
            margin: 0;
            color: var(--primary-orange);
            font-weight: 600;
        }

        footer {
            text-align: center;
            padding: 30px;
            background: var(--text-dark);
            color: white;
            margin-top: 40px;
        }
        
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .hero-content h1 { font-size: 2.5rem; }
        .section-title { font-size: 2rem; }
        
        /* Stack the form rows vertically */
        .form-row {
            flex-direction: column;
            gap: 10px;
        }
        
        /* Stack Flight Card details vertically */
        .flight-card {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        /* Make the price box stretch and put the button on the right */
        .flight-price-box {
            width: 100%;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
    }