         /* 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); 
        }

        .form-row {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .form-row > * {
            flex: 1;
            min-width: 200px;
        }

        /* 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;
        }

        /* 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; }
        }