    /* ═══ FRONTV1 GLOBAL OVERRIDES ═══ */
    :root {
        --paper: #faf8f3;
        --ink: #1a1a1a;
        --accent: #c2410c;
        --gold: #b8860b;
        --serif: 'Fraunces', Georgia, serif;
        --sans: 'Inter', -apple-system, sans-serif;
    }

    body {
        background: var(--paper) !important;
        font-family: var(--sans) !important;
        color: var(--ink);
        font-feature-settings: 'kern', 'liga';
    }

    /* Subtle paper texture overlay */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
        opacity: 0.04;
        pointer-events: none;
        z-index: 9999;
        mix-blend-mode: multiply;
    }

    /* Headings use serif */
    h1, h2, h3, h4 {
        font-family: var(--serif);
        font-feature-settings: 'kern', 'liga', 'ss01';
        letter-spacing: -0.02em;
    }

    /* ═══ HERO REFINEMENT ═══ */
    .hero-compact {
        background: linear-gradient(to bottom, rgba(26,26,26,0.55), rgba(26,26,26,0.45)),
                    url('/static/images/destinations/maui.jpg');
        background-size: cover;
        background-position: center;
        padding: 8rem 0 6rem;
        text-align: center;
        color: white;
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
    }

    /* Editorial tag above headline */
    .hero-compact .container::before {
        content: 'N° 001 — The Art of Going';
        display: block;
        font-family: var(--sans);
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(255,255,255,0.7);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-compact h1 {
        font-family: var(--serif) !important;
        font-size: clamp(2.8rem, 5.5vw, 4.8rem);
        font-weight: 400;
        margin-bottom: 1.25rem;
        line-height: 1;
        letter-spacing: -0.03em;
        font-feature-settings: 'kern', 'liga', 'ss01';
    }

    /* Italicize the last word for emphasis */
    .hero-compact h1::after {
        content: '';
    }

    .hero-compact p {
        font-family: var(--serif) !important;
        font-size: 1.15rem !important;
        font-weight: 400 !important;
        line-height: 1.6 !important;
        max-width: 580px !important;
        margin: 0 auto 2.5rem !important;
        color: rgba(255,255,255,0.92);
        font-style: italic;
    }

    /* ═══ QUICK START BOX REFINEMENT ═══ */
    .quick-start-box {
        background: var(--paper) !important;
        border-radius: 4px !important;
        border: 1px solid rgba(26,26,26,0.08);
        box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45),
                    0 8px 24px rgba(0,0,0,0.15) !important;
        padding: 2rem !important;
    }

    .hero-tabs {
        background: transparent !important;
        border: 1px solid rgba(26,26,26,0.12) !important;
        border-radius: 4px !important;
    }

    .hero-tab {
        font-family: var(--sans) !important;
        font-size: 0.78rem !important;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 600 !important;
    }

    .hero-tab.active {
        background: var(--ink) !important;
        color: var(--paper) !important;
    }

    .search-label {
        font-family: var(--sans) !important;
        font-size: 0.7rem !important;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-weight: 600 !important;
        color: var(--accent) !important;
    }

    .region-quick-select {
        border-radius: 4px !important;
        border-color: rgba(26,26,26,0.12) !important;
    }

    .region-btn {
        font-family: var(--sans) !important;
        font-size: 0.85rem !important;
        font-weight: 500 !important;
    }

    .region-btn.active, .region-btn:hover {
        background: var(--ink) !important;
        color: var(--paper) !important;
    }

    .cta-primary {
        background: var(--ink) !important;
        background-image: none !important;
        font-family: var(--sans) !important;
        font-size: 0.78rem !important;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-weight: 600 !important;
        border-radius: 4px !important;
        padding: 1.1rem 1.5rem !important;
        transition: all 0.3s ease !important;
    }

    .cta-primary:hover {
        background: var(--accent) !important;
        transform: translateY(-1px);
    }

    .hero-concierge-hint {
        font-family: var(--sans) !important;
        font-size: 0.85rem !important;
        color: rgba(26,26,26,0.6) !important;
    }

    .hero-concierge-hint a {
        color: var(--accent) !important;
        font-weight: 600;
        text-decoration: underline !important;
        text-underline-offset: 3px;
    }

    /* ═══ SECTION HEADERS REFINEMENT ═══ */
    h2 {
        font-family: var(--serif) !important;
        font-weight: 400 !important;
        letter-spacing: -0.025em !important;
        line-height: 1.05 !important;
    }

    /* Section labels — small editorial tags */
    .section-label, .editorial-tag {
        font-family: var(--sans);
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-weight: 600;
        color: var(--accent);
        display: inline-block;
        margin-bottom: 1rem;
    }

    .section-label::before {
        content: '— ';
        opacity: 0.6;
    }

    /* Override generic CTA buttons throughout */
    .btn-primary, .btn-success {
        font-family: var(--sans);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        font-weight: 600;
        border-radius: 4px;
    }

    .hero-compact p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        font-weight: 400;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .quick-start-box {
        background: white;
        border-radius: 10px;
        padding: 1.75rem 2rem 2rem;
        max-width: 820px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        position: relative;
        color: #222;
        text-align: left;
    }

    /* Refined Tab Toggle */
    .hero-tabs {
        display: flex;
        gap: 0;
        margin-bottom: 1.5rem;
        border: 1px solid #e5e5e5;
        border-radius: 6px;
        overflow: hidden;
        background: #f7f7f7;
    }

    .hero-tab {
        flex: 1;
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
        background: transparent;
        border: none;
        cursor: pointer;
        transition: all 0.25s ease;
        color: #555;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-tab:first-child {
        border-right: 1px solid #e5e5e5;
    }

    .hero-tab:nth-child(2) {
        border-right: 1px solid #e5e5e5;
    }

    .hero-tab:hover {
        background: #eeeeee;
        color: #333;
    }

    .hero-tab.active {
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        color: white;
    }

    .hero-tab i {
        font-size: 1rem;
    }

    /* Mobile: stack tabs vertically */
    @media (max-width: 576px) {
        .hero-tabs {
            flex-direction: column;
            border-radius: 6px;
            margin-bottom: 1rem;
        }

        .hero-tab {
            padding: 1rem 1.25rem;
            font-size: 1.35rem;
            font-weight: 600;
            justify-content: flex-start;
            gap: 0.6rem;
        }

        .hero-tab.active {
            background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        }

        .hero-tab:first-child,
        .hero-tab:nth-child(2) {
            border-right: none;
            border-bottom: 1px solid #e5e5e5;
        }

        .hero-tab i {
            font-size: 1.2rem;
            width: 22px;
            text-align: center;
        }
    }

    .hero-tab-content {
        display: none;
    }

    .hero-tab-content.active {
        display: block;
    }

    /* Budget Display in Hero */
    .hero-budget-display {
        background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
        border: 2px solid #e8e8e8;
        border-radius: 6px;
        padding: 1.25rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-budget-amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: #0066cc;
        line-height: 1;
    }

    .hero-budget-amount .currency {
        font-size: 1.5rem;
        vertical-align: top;
    }

    .hero-budget-hint {
        font-size: 0.8rem;
        color: #666;
        margin-top: 0.25rem;
    }

    .budget-scope-btn {
        padding: 0.25rem 0.75rem;
        border: 1.5px solid #e0e0e0;
        background: white;
        border-radius: 4px;
        font-weight: 600;
        font-size: 0.75rem;
        color: #888;
        cursor: pointer;
        transition: all 0.2s;
    }

    .budget-scope-btn:hover {
        border-color: #0066cc;
        color: #0066cc;
    }

    .budget-scope-btn.active {
        background: #0066cc;
        border-color: #0066cc;
        color: white;
    }

    /* Instant Quote Styles */
    .instant-quote-select {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        border: 2px solid #e8e8e8;
        border-radius: 6px;
        background: white;
        cursor: pointer;
        margin-bottom: 1rem;
    }

    .instant-quote-select:focus {
        outline: none;
        border-color: #0066cc;
    }

    .instant-region-select {
        flex: 1;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        border: 2px solid #e8e8e8;
        border-radius: 5px;
        background: white;
        cursor: pointer;
        min-width: 200px;
    }

    .instant-region-select:focus {
        outline: none;
        border-color: #0066cc;
    }

    .instant-quote-result {
        display: none;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border: 2px solid #28a745;
        border-radius: 8px;
        padding: 1.5rem;
        margin: 1rem 0;
        text-align: center;
    }

    .instant-quote-result.show {
        display: block;
        animation: fadeInUp 0.4s ease;
    }

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

    .instant-quote-destination {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 0.5rem;
    }

    .instant-quote-price {
        font-size: 3rem;
        font-weight: 700;
        color: #28a745;
        line-height: 1;
    }

    .instant-quote-price .currency {
        font-size: 1.75rem;
        vertical-align: top;
    }

    .instant-quote-details {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .instant-quote-disclaimer {
        font-size: 0.75rem;
        color: #999;
        margin-top: 0.25rem;
        font-style: italic;
    }

    .instant-quote-agent-nudge {
        font-size: 0.82rem;
        color: #6b5900;
        background: #fff8e1;
        border-radius: 5px;
        padding: 0.55rem 0.75rem;
        margin-top: 0.65rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        line-height: 1.4;
    }
    .instant-quote-agent-nudge i {
        color: #f0ad4e;
        margin-right: 0.3rem;
    }

    .instant-quote-breakdown {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #e8e8e8;
    }

    @media (max-width: 768px) {
        .instant-quote-breakdown {
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
        }
    }

    @media (max-width: 480px) {
        .instant-quote-breakdown {
            grid-template-columns: repeat(2, 1fr);
            gap: 0.5rem;
        }
        .instant-quote-item .label {
            font-size: 0.65rem;
        }
        .instant-quote-item .value {
            font-size: 0.9rem;
        }
    }

    .instant-quote-item {
        text-align: center;
    }

    .instant-quote-item .label {
        font-size: 0.7rem;
        color: #999;
        text-transform: uppercase;
    }

    .instant-quote-item .value {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
    }

    .instant-quote-actions {
        display: flex;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .instant-quote-actions .btn {
        flex: 1;
    }

    .btn-agent-handoff {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        color: white;
        border: none;
        font-weight: 600;
    }

    .btn-agent-handoff:hover {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        color: white;
        transform: translateY(-1px);
    }

    .instant-travelers-row {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }

    .travelers-label {
        font-weight: 600;
        color: #333;
        font-size: 0.95rem;
    }

    .travelers-buttons {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .two-col-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    .two-col-field {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }
    .two-col-field .travelers-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #666;
    }
    .two-col-field .instant-region-select {
        width: 100%;
    }

    @media (max-width: 576px) {
        .instant-travelers-row {
            flex-direction: column;
            align-items: stretch;
            gap: 0.4rem;
            margin-bottom: 0.85rem;
        }
        .instant-travelers-row .travelers-label {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #666;
        }
        .instant-region-select {
            width: 100% !important;
            min-width: 0 !important;
            max-width: 100% !important;
            font-size: 1rem !important;
            padding: 0.7rem 0.85rem !important;
        }
        .travelers-buttons {
            gap: 0.4rem;
            justify-content: flex-start;
        }
        .traveler-btn {
            width: 44px !important;
            height: 44px !important;
            font-size: 0.95rem !important;
        }
        .rental-note {
            font-size: 0.75rem;
            color: #888;
            display: block;
            margin-top: 0.25rem;
        }
        .two-col-row {
            grid-template-columns: 1fr 1fr;
        }
        .instant-quote-select {
            font-size: 1rem !important;
            padding: 0.85rem !important;
        }
    }

    .traveler-btn {
        width: 40px;
        height: 40px;
        border: 2px solid #e8e8e8;
        border-radius: 50%;
        background: white;
        font-weight: 600;
        font-size: 1rem;
        color: #666;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .traveler-btn:hover {
        border-color: #0066cc;
        color: #0066cc;
    }

    .traveler-btn.active {
        background: #0066cc;
        border-color: #0066cc;
        color: white;
    }

    .rental-note {
        font-size: 0.8rem;
        color: #666;
        margin-left: 0.5rem;
    }

    .hero-budget-slider {
        width: 100%;
        height: 6px;
        -webkit-appearance: none;
        appearance: none;
        background: #e8e8e8;
        border-radius: 3px;
        outline: none;
        margin: 0.75rem 0 0.5rem;
    }

    .hero-budget-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 22px;
        height: 22px;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,102,204,0.4);
    }

    .hero-budget-slider::-moz-range-thumb {
        width: 22px;
        height: 22px;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        border-radius: 50%;
        cursor: pointer;
        border: none;
    }

    .hero-slider-labels {
        display: flex;
        justify-content: space-between;
        font-size: 0.75rem;
        color: #999;
    }

    /* Budget Discovery Inline Form */
    .budget-discovery-inline {
        width: 100%;
        color: #333;
        text-align: left;
    }

    .budget-trip-type-toggle {
        display: flex;
        gap: 0.5rem;
        margin: 1rem 0;
    }

    .budget-type-btn {
        flex: 1;
        padding: 0.6rem 1rem;
        border: 2px solid #e8e8e8;
        background: white;
        border-radius: 5px;
        font-weight: 600;
        font-size: 0.9rem;
        color: #666;
        cursor: pointer;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
    }

    .budget-type-btn:hover {
        border-color: #0066cc;
        color: #0066cc;
    }

    .budget-type-btn.active {
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        border-color: #0066cc;
        color: white;
    }

    .budget-inline-fields {
        margin: 0.75rem 0;
    }

    .budget-field-row {
        display: flex;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .budget-field {
        flex: 1;
        position: relative;
    }

    .budget-field label {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #222;
        margin-bottom: 0.35rem;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .budget-field .form-control,
    .budget-field .form-select {
        padding: 0.75rem;
        font-size: 1rem;
        border-radius: 5px;
        border: 1px solid #ddd;
        color: #222 !important;
        text-align: left !important;
        background-color: #fff;
    }

    .budget-field .form-control::placeholder {
        color: #999;
    }

    .budget-field .form-control:focus,
    .budget-field .form-select:focus {
        border-color: #0066cc;
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

    .budget-field .airport-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        color: #333;
        text-align: left;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 1000;
        max-height: 200px;
        overflow-y: auto;
    }

    .budget-field-error {
        color: #dc3545;
        font-size: 0.75rem;
        margin-top: 0.25rem;
        display: none;
    }

    .budget-field-error.show {
        display: block;
    }

    .budget-field .form-control.is-invalid {
        border-color: #dc3545;
    }

    /* ── Budget Flexibility Toggle (homepage) ── */
    .budget-flex-row {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin: 0.6rem 0 0.2rem;
        padding: 0.55rem 0.75rem;
        background: rgba(0, 102, 204, 0.06);
        border-radius: 5px;
    }

    .budget-flex-toggle {
        position: relative;
        width: 34px;
        height: 18px;
        flex-shrink: 0;
    }

    .budget-flex-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .budget-flex-toggle .bf-track {
        position: absolute;
        inset: 0;
        background: #ccc;
        border-radius: 9px;
        cursor: pointer;
        transition: background 0.25s;
    }

    .budget-flex-toggle .bf-track::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 14px;
        height: 14px;
        background: white;
        border-radius: 50%;
        transition: transform 0.25s;
    }

    .budget-flex-toggle input:checked + .bf-track {
        background: #0066cc;
    }

    .budget-flex-toggle input:checked + .bf-track::after {
        transform: translateX(16px);
    }

    .budget-flex-label {
        font-size: 0.8rem;
        color: #555;
        cursor: pointer;
        user-select: none;
    }

    .budget-flex-pcts {
        display: none;
        align-items: center;
        gap: 0.3rem;
        margin-left: auto;
    }

    .budget-flex-pcts.show {
        display: flex;
    }

    .bf-pct {
        padding: 0.12rem 0.5rem;
        border: 1.5px solid #ddd;
        border-radius: 5px;
        background: white;
        font-size: 0.75rem;
        font-weight: 600;
        color: #888;
        cursor: pointer;
        transition: all 0.2s;
    }

    .bf-pct:hover {
        border-color: #0066cc;
        color: #0066cc;
    }

    .bf-pct.active {
        background: #0066cc;
        border-color: #0066cc;
        color: white;
    }

    @media (max-width: 576px) {
        .budget-field-row {
            flex-direction: column;
            gap: 0.5rem;
        }

        .budget-type-btn {
            padding: 0.5rem 0.75rem;
            font-size: 0.85rem;
        }

        .how-it-works-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
    }

    .search-label {
        color: #222;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
    }

    /* Refined Region Buttons */
    .region-quick-select {
        display: flex;
        gap: 0;
        margin-bottom: 1.5rem;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        overflow: hidden;
        background: white;
    }

    .region-btn {
        flex: 1;
        background: white;
        border: none;
        border-right: 1px solid #e0e0e0;
        padding: 1rem 1.25rem;
        cursor: pointer;
        transition: all 0.2s ease;
        color: #333;
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .region-btn:last-child {
        border-right: none;
    }

    .region-btn:hover {
        background: #f5f5f5;
    }

    .region-btn.active {
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        color: white;
    }

    .cta-primary {
        background: linear-gradient(135deg, #FF385C 0%, #E31C5F 100%);
        border: none;
        border-radius: 6px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        color: white;
        transition: all 0.2s ease;
        width: 100%;
    }

    .cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255,56,92,0.35);
    }

    .quick-start-box .hero-concierge-hint {
        text-align: center;
        margin-top: 0.75rem;
        margin-bottom: 0;
        font-size: 0.875rem;
        color: #666;
        max-width: none;
        opacity: 1;
    }

    .quick-start-box .hero-concierge-hint a {
        color: #E31C5F;
        font-weight: 600;
        text-decoration: none;
    }

    .quick-start-box .hero-concierge-hint a:hover {
        text-decoration: underline;
    }

    /* Trust Bar - NEW for v4 */
    .trust-bar {
        background: white;
        padding: 1.25rem 0;
        border-bottom: 1px solid #eee;
    }

    .trust-items {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #555;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .trust-item i {
        color: #0066cc;
        font-size: 1.1rem;
    }

    /* Airport Autocomplete Dropdown */
    .airport-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0 0 5px 5px;
        max-height: 250px;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .airport-dropdown .dropdown-item {
        padding: 10px 15px;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        color: #333;
        text-decoration: none;
    }

    .airport-dropdown .dropdown-item:last-child {
        border-bottom: none;
    }

    .airport-dropdown .dropdown-item:hover {
        background: #f8f9fa;
    }

    .airport-dropdown .dropdown-item strong {
        color: #0066cc;
    }

    .airport-dropdown .dropdown-item small {
        display: block;
        color: #666;
        font-size: 0.8rem;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    /* Content Sections */
    .content-section {
        padding: 4rem 0;
    }

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

    .section-header h2 {
        font-size: 2.25rem;
        font-weight: 800;
        color: #1a1a1a;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #6c757d;
    }

    /* How It Works Section */
    .how-it-works-section {
        padding: 4rem 0;
        background: white;
    }

    .how-it-works-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1100px;
        margin: 0 auto;
    }

    .how-step {
        text-align: center;
        position: relative;
    }

    .how-step-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.25rem;
        color: white;
        font-size: 1.75rem;
    }

    .how-step h4 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.75rem;
    }

    .how-step p {
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .how-step::after {
        content: '';
        position: absolute;
        top: 35px;
        right: -1rem;
        width: calc(100% - 70px);
        height: 2px;
        background: linear-gradient(to right, #0066cc, #0052a3);
        opacity: 0.3;
    }

    .how-step:last-child::after {
        display: none;
    }

    .sample-trip-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 2rem;
        padding: 0.875rem 1.75rem;
        background: white;
        border: 2px solid #0066cc;
        border-radius: 30px;
        color: #0066cc;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sample-trip-btn:hover {
        background: #0066cc;
        color: white;
    }

    /* Chat Concierge Highlight Section */
    .chat-highlight-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        position: relative;
        overflow: hidden;
    }

    .chat-highlight-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }

    .chat-highlight-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (max-width: 992px) {
        .chat-highlight-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }
    }

    .chat-highlight-copy {
        color: white;
    }

    .chat-highlight-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255,255,255,0.22);
        /* backdrop-filter removed for mobile performance */
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 999px;
        padding: 0.35rem 1rem;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        color: white;
        margin-bottom: 1.25rem;
    }

    .chat-highlight-badge .pulse-dot {
        width: 8px;
        height: 8px;
        background: #4ade80;
        border-radius: 50%;
        animation: chatPulse 2s ease-in-out infinite;
    }

    @keyframes chatPulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(0.75); }
    }

    .chat-highlight-copy h2 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        line-height: 1.2;
        color: white;
    }

    .chat-highlight-copy .subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .chat-feature-rows {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .chat-feature-row {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .chat-feature-row .cf-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        color: white;
    }

    .chat-feature-row .cf-text strong {
        display: block;
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
    }

    .chat-feature-row .cf-text span {
        font-size: 0.85rem;
        opacity: 0.8;
        line-height: 1.4;
    }

    .chat-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #dc2626;
        color: white;
        border: none;
        border-radius: 12px;
        padding: 0.9rem 2rem;
        font-size: 1.05rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .chat-cta-btn:hover {
        background: #b91c1c;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    @media (max-width: 576px) {
        .chat-highlight-section {
            padding: 2rem 0;
        }

        .chat-highlight-badge {
            margin-bottom: 0.75rem;
            font-size: 0.7rem;
            padding: 0.25rem 0.75rem;
        }

        .chat-highlight-copy h2 {
            font-size: 1.35rem;
            margin-bottom: 0.5rem;
        }

        .chat-highlight-copy .subtitle {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .chat-feature-rows {
            display: none;
        }

        .chat-feature-row .cf-icon {
            width: 32px;
            height: 32px;
            min-width: 32px;
            border-radius: 8px;
            font-size: 0.9rem;
        }

        .chat-feature-row .cf-text strong {
            font-size: 0.85rem;
        }

        .chat-feature-row .cf-text span {
            font-size: 0.78rem;
        }

        .chat-feature-row {
            gap: 0.65rem;
        }

        .chat-cta-btn {
            width: 100%;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
            border-radius: 10px;
        }

        .chat-cta-note {
            text-align: center;
        }

        /* Hide chat mockup on mobile to save space */
        .chat-mockup-link {
            display: none;
        }
    }

    .chat-cta-note {
        font-size: 0.8rem;
        opacity: 0.7;
        margin-top: 0.75rem;
    }

    /* Chat Mockup */
    .chat-mockup-link {
        display: block;
        text-decoration: none;
        transform: rotate(1deg);
        transition: transform 0.4s ease;
    }

    .chat-mockup-link:hover {
        transform: rotate(0deg) scale(1.02);
    }

    .chat-mockup {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    }

    .chat-mockup-header {
        background: linear-gradient(135deg, #059669 0%, #10b981 100%);
        padding: 1rem 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: white;
    }

    .chat-mockup-header .cm-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .chat-mockup-header .cm-info strong {
        display: block;
        font-size: 0.9rem;
    }

    .chat-mockup-header .cm-info span {
        font-size: 0.75rem;
        opacity: 0.8;
    }

    .chat-mockup-body {
        padding: 1.5rem 1.25rem;
        background: #f0fdf4;
        min-height: 200px;
    }

    .chat-mockup-bubble {
        background: white;
        border-radius: 16px;
        border-top-left-radius: 4px;
        padding: 1rem 1.15rem;
        font-size: 0.88rem;
        color: #1e293b;
        line-height: 1.55;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        margin-bottom: 1rem;
    }

    .chat-mockup-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .chat-mockup-pill {
        background: white;
        border: 1.5px solid #d1fae5;
        border-radius: 999px;
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
        color: #059669;
        font-weight: 500;
        white-space: nowrap;
    }

    .chat-mockup-input {
        padding: 0.85rem 1.25rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #9ca3af;
        font-size: 0.85rem;
    }

    .chat-mockup-input .send-circle {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: #059669;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.85rem;
    }

    /* Why Mahalo Section */
    .why-mahalo-section {
        padding: 4rem 0;
        background: #f8f9fa;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    @media (max-width: 1200px) {
        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .why-grid {
            grid-template-columns: 1fr;
        }
    }

    .why-card {
        background: white;
        border-radius: 16px;
        padding: 1.75rem 1.5rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .why-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.25rem;
        font-size: 1.5rem;
    }

    .why-card h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.75rem;
    }

    .why-card p {
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    /* Travel Agent Benefits Section */
    .travel-agent-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #1e3a5f 100%);
        position: relative;
        overflow: hidden;
    }

    .travel-agent-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }

    .agent-section-inner {
        position: relative;
        z-index: 1;
    }

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

    .agent-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(245, 158, 11, 0.2);
        color: #fbbf24;
        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .agent-section-header h2 {
        font-size: 2.25rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .agent-section-header p {
        font-size: 1.1rem;
        color: rgba(255,255,255,0.8);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .agent-benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    @media (max-width: 992px) {
        .agent-benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .agent-benefits-grid {
            grid-template-columns: 1fr;
        }
        .agent-section-header h2 {
            font-size: 1.75rem;
        }
    }

    .agent-benefit {
        background: rgba(255,255,255,0.1);
        /* backdrop-filter removed for mobile performance */
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 16px;
        padding: 1.5rem;
        display: flex;
        gap: 1rem;
        transition: all 0.3s ease;
    }

    .agent-benefit:hover {
        background: rgba(255,255,255,0.15);
        transform: translateY(-3px);
    }

    .agent-benefit-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: white;
    }

    .agent-benefit-content h4 {
        font-size: 1rem;
        font-weight: 700;
        color: white;
        margin: 0 0 0.5rem 0;
    }

    .agent-benefit-content p {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.75);
        line-height: 1.5;
        margin: 0;
    }

    .agent-cta {
        text-align: center;
        padding: 1.25rem 2rem;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .agent-cta p {
        color: rgba(255,255,255,0.9);
        font-size: 0.95rem;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .agent-cta i {
        color: #fbbf24;
    }

    /* AI Features Section */
    .ai-features-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
        padding: 5rem 0;
    }

    .ai-features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .ai-feature-card {
        background: white;
        border-radius: 16px;
        padding: 1.75rem;
        position: relative;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .ai-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    }

    .ai-feature-card.feature-highlight {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        color: white;
        grid-row: span 2;
    }

    .ai-feature-card.feature-highlight h4 {
        color: white;
    }

    .ai-feature-card.feature-highlight p {
        color: rgba(255,255,255,0.85);
    }

    .ai-feature-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: linear-gradient(135deg, #FF385C 0%, #E31C5F 100%);
        color: white;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .ai-feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        color: white;
        font-size: 1.4rem;
    }

    .ai-feature-card h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.75rem;
    }

    .ai-feature-card p {
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.55;
        margin: 0;
    }

    .ai-feature-savings {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.25rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.15);
    }

    .savings-badge {
        background: rgba(255,255,255,0.15);
        color: #fbbf24;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 0.3rem 0.6rem;
        border-radius: 12px;
    }

    .savings-text {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.8);
    }

    @media (max-width: 992px) {
        .ai-features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .ai-feature-card.feature-highlight {
            grid-row: span 1;
        }
    }

    @media (max-width: 576px) {
        .ai-features-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 1rem;
            padding-bottom: 1rem;
            margin: 0 -1rem;
            padding-left: 1rem;
            padding-right: 1rem;
            scrollbar-width: none;
        }

        .ai-features-grid::-webkit-scrollbar {
            display: none;
        }

        .ai-features-grid .ai-feature-card {
            min-width: 75vw;
            max-width: 75vw;
            flex-shrink: 0;
            scroll-snap-align: start;
        }

        .ai-features-grid .ai-feature-card.feature-highlight {
            min-width: 80vw;
            max-width: 80vw;
        }
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 4rem 0;
        background: white;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }

    @media (max-width: 576px) {
        .testimonials-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            gap: 1rem;
            padding-bottom: 0.75rem;
            margin: 0 -1rem;
            padding-left: 1rem;
            padding-right: 1rem;
            scrollbar-width: none;
        }

        .testimonials-grid::-webkit-scrollbar {
            display: none;
        }

        .testimonials-grid .testimonial-card {
            min-width: 80vw;
            max-width: 80vw;
            flex-shrink: 0;
            scroll-snap-align: start;
            padding: 1.5rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
        }

        .testimonials-section {
            padding: 2.5rem 0;
        }

        /* Hide travel news on mobile */
        .travel-news-section {
            display: none;
        }

        /* Hide non-essential sections on mobile — keep it focused */
        .chat-highlight-section,
        .why-mahalo-section,
        .ai-features-section,
        .quick-trip-section,
        .travel-agent-section,
        .stats-section {
            display: none;
        }
    }

    .testimonial-card {
        background: #f8f9fa;
        border-radius: 20px;
        padding: 2rem;
        position: relative;
    }

    .testimonial-quote {
        font-size: 3rem;
        color: #0066cc;
        opacity: 0.3;
        position: absolute;
        top: 1rem;
        left: 1.5rem;
        font-family: Georgia, serif;
    }

    .testimonial-text {
        font-size: 1.05rem;
        color: #1a1a1a;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-style: italic;
        position: relative;
        z-index: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .testimonial-info h5 {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
    }

    .testimonial-info p {
        font-size: 0.85rem;
        color: #6c757d;
        margin: 0;
    }

    .testimonial-rating {
        display: flex;
        gap: 0.15rem;
        margin-top: 0.5rem;
    }

    .testimonial-rating i {
        color: #ffc107;
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-section {
        background: #f8f9fa;
        padding: 5rem 0;
    }

    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        border-radius: 16px;
        padding: 1.5rem 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .faq-item h4 {
        font-size: 1rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .faq-item h4 i {
        color: #0066cc;
        margin-top: 0.1rem;
    }

    .faq-item p {
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.6;
        margin: 0;
        padding-left: 1.5rem;
    }

    @media (max-width: 768px) {
        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Quick Trip Section */
    .quick-trip-section {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 5rem 0;
        color: white;
    }

    .quick-trip-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #FF385C 0%, #E31C5F 100%);
        color: white;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }

    .quick-trip-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .quick-trip-subtitle {
        font-size: 1.1rem;
        opacity: 0.85;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .quick-trip-steps {
        margin-bottom: 2rem;
    }

    .qt-step {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .qt-step-num {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    .qt-step-text strong {
        display: block;
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }

    .qt-step-text span {
        font-size: 0.85rem;
        opacity: 0.7;
    }

    .quick-trip-includes {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }

    .quick-trip-includes span {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }

    .quick-trip-includes i {
        color: #10b981;
    }

    .quick-trip-selector {
        background: rgba(255,255,255,0.15);
        /* backdrop-filter removed for mobile performance */
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .quick-trip-selector-header {
        background: rgba(255,255,255,0.1);
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
    }

    .quick-trip-selector-header i {
        font-size: 1.3rem;
    }

    .quick-trip-selector-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .quick-trip-dropdown {
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        border: 2px solid rgba(255,255,255,0.3);
        border-radius: 12px;
        background: rgba(255,255,255,0.95);
        color: #1e293b;
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231e293b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
        transition: all 0.2s;
    }

    .quick-trip-dropdown:hover {
        border-color: rgba(255,255,255,0.5);
    }

    .quick-trip-dropdown:focus {
        outline: none;
        border-color: #f59e0b;
        box-shadow: 0 0 0 3px rgba(245,158,11,0.3);
    }

    .quick-trip-selector-footer {
        padding: 1rem 1.5rem;
        background: rgba(0,0,0,0.1);
        text-align: center;
    }

    .btn-quick-trip {
        background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
        border: none;
        color: #1e293b;
        font-weight: 700;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.2s;
    }

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

    .btn-quick-trip-lg {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        justify-content: center;
    }

    .view-all-link {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.2s;
    }

    .view-all-link:hover {
        color: white;
    }

    /* Quick Trip Modal */
    .quicktrip-backdrop {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.6);
        z-index: 9998;
    }
    .quicktrip-backdrop.show { display: block; }

    .quicktrip-modal {
        display: none;
        position: fixed;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        border-radius: 16px;
        padding: 1.75rem;
        width: 420px;
        max-width: 95vw;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        z-index: 9999;
    }
    .quicktrip-modal.show { display: block; }

    .quicktrip-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eee;
    }
    .quicktrip-header span {
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        color: #1a1a1a;
    }
    .quicktrip-subheader {
        font-size: 0.85rem;
        color: #666;
        font-weight: 400;
        margin-top: 0.25rem;
    }
    .quicktrip-row {
        display: flex;
        gap: 0.75rem;
    }
    .quicktrip-field {
        margin-bottom: 1rem;
        position: relative;
    }
    .quicktrip-field-half {
        flex: 1;
    }
    .quicktrip-field label {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.8rem;
        font-weight: 600;
        color: #444;
        margin-bottom: 0.4rem;
    }
    .quicktrip-field label i {
        color: #0066cc;
        font-size: 0.85rem;
    }
    .quicktrip-field input,
    .quicktrip-field select {
        width: 100%;
        padding: 0.65rem 0.75rem;
        border: 1.5px solid #ddd;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: border-color 0.2s;
    }
    .quicktrip-field input:focus,
    .quicktrip-field select:focus {
        outline: none;
        border-color: #0066cc;
    }
    .quicktrip-airport-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        max-height: 200px;
        overflow-y: auto;
        z-index: 100;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .quicktrip-airport-dropdown.show {
        display: block;
    }
    .quicktrip-airport-item {
        padding: 0.6rem 0.75rem;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
    }
    .quicktrip-airport-item:last-child {
        border-bottom: none;
    }
    .quicktrip-airport-item:hover {
        background: #f8f9fa;
    }
    .quicktrip-airport-item strong {
        color: #0066cc;
    }
    .quicktrip-airport-item small {
        display: block;
        color: #666;
        font-size: 0.75rem;
    }
    .quicktrip-btn-create {
        width: 100%;
        padding: 0.85rem;
        border: none;
        background: linear-gradient(135deg, #FF385C 0%, #E31C5F 100%);
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        color: white;
        cursor: pointer;
        margin-top: 0.5rem;
        transition: all 0.2s;
    }
    .quicktrip-btn-create:hover {
        opacity: 0.95;
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(255, 56, 92, 0.3);
    }
    .quicktrip-btn-cancel {
        width: 100%;
        padding: 0.6rem;
        border: 1px solid #ddd;
        background: white;
        border-radius: 8px;
        font-size: 0.85rem;
        color: #666;
        cursor: pointer;
        margin-top: 0.5rem;
    }
    .quicktrip-btn-cancel:hover { background: #f5f5f5; }

    /* Loading Overlay */
    .quicktrip-loading {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        z-index: 10000;
        justify-content: center;
        align-items: center;
        color: white;
    }
    .quicktrip-loading.show { display: flex; }
    .quicktrip-loading-content {
        text-align: center;
        max-width: 350px;
        padding: 2rem;
    }
    .quicktrip-loading-dest {
        font-size: 1.5rem;
        font-weight: 700;
    }
    .quicktrip-loading-origin {
        font-size: 0.95rem;
        opacity: 0.75;
        margin-bottom: 0.25rem;
    }
    .quicktrip-loading-dates {
        opacity: 0.85;
        margin-bottom: 1.5rem;
    }
    .quicktrip-loading-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    .quicktrip-steps { text-align: left; }
    .quicktrip-step {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        opacity: 0.4;
        transition: all 0.3s;
    }
    .quicktrip-step.active { opacity: 1; }
    .quicktrip-step.complete { opacity: 0.7; }
    .quicktrip-step.complete .step-icon { background: #28a745; }
    .quicktrip-step .step-icon {
        width: 28px; height: 28px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    /* Stats Section */
    .stats-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
        padding: 4rem 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 3rem;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-item p {
        font-size: 1.1rem;
        color: #6c757d;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-compact {
            padding: 5rem 0 4rem;
            min-height: 450px;
            text-align: center;
        }

        .hero-compact h1 {
            display: none;
        }

        .hero-compact > .container > .row > .col-lg-8 > p {
            display: none;
        }

        .hero-compact {
            padding: 1rem 0 1.5rem;
            min-height: auto;
        }

        .mobile-box-header {
            display: none !important;
        }

        .mobile-box-tagline {
            display: none !important;
        }

        .mobile-box-tagline.tagline-hidden {
            display: none !important;
        }

        .region-quick-select {
            flex-direction: column;
        }

        .search-label {
            font-size: 0.9rem !important;
        }

        .region-btn {
            border-right: none;
            border-bottom: 1px solid #e0e0e0;
            font-size: 1.1rem !important;
            padding: 0.85rem 1rem;
            font-weight: 600;
        }

        .region-btn:last-child {
            border-bottom: none;
        }

        .cta-primary {
            font-size: 1.25rem;
            padding: 1rem 1.5rem;
        }

        .quick-start-box {
            padding: 1.5rem;
            border: 2px solid transparent;
            background-image: linear-gradient(white, white), linear-gradient(135deg, #0066cc 0%, #0052a3 50%, #4d9de0 100%);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            box-shadow: 0 8px 32px rgba(0, 102, 204, 0.25), 0 0 0 1px rgba(0, 102, 204, 0.05);
        }

        .section-header h2 {
            font-size: 1.75rem;
        }

        .trust-items {
            gap: 1.5rem;
        }

        .trust-item {
            font-size: 0.8rem;
        }

        .instant-quote-actions {
            flex-direction: column;
        }

        .instant-quote-actions .btn {
            width: 100%;
        }

        .how-it-works-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .how-step {
            background: white;
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            text-align: left;
            display: grid;
            grid-template-columns: 40px 1fr;
            grid-template-rows: auto auto;
            column-gap: 0.75rem;
            row-gap: 0.25rem;
        }

        .how-step-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            margin: 0;
            font-size: 1.1rem;
            border-radius: 10px;
            grid-row: 1 / 3;
            align-self: start;
        }

        .how-step h4 {
            font-size: 1.05rem;
            margin-bottom: 0;
            align-self: end;
        }

        .how-step p {
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 0;
        }

        .how-step::after {
            display: none;
        }

        .quick-trip-section {
            text-align: center;
        }

        .quick-trip-section h2 {
            font-size: 2rem;
        }

        .quick-trip-selector {
            max-width: 400px;
            margin: 1.5rem auto 0;
        }

        .quick-trip-dropdown {
            font-size: 1rem;
            padding: 0.875rem 1rem;
        }

        .qt-step {
            justify-content: center;
            text-align: left;
        }

        .quick-trip-includes {
            justify-content: center;
        }

        .stat-item h3 {
            font-size: 2rem;
        }
    }

    @media (max-width: 992px) {
        .hero-compact h1 {
            font-size: 2.75rem;
        }
    }

    /* Destination Photo Carousel */
    .dest-carousel-section {
        margin-top: 3rem;
        padding: 0;
    }
    .dest-carousel-section h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1a1a2e;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .dest-carousel-subtitle {
        text-align: center;
        color: #6b7280;
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    .dest-carousel-scroll {
        display: flex;
        gap: 1.25rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 0.25rem 1.5rem;
        scrollbar-width: none;
    }
    .dest-carousel-scroll::-webkit-scrollbar {
        display: none;
    }
    .dest-carousel-card {
        flex: 0 0 340px;
        scroll-snap-align: start;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15), 0 1px 4px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border: 1px solid rgba(0,0,0,0.06);
    }
    .dest-carousel-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.2), 0 2px 8px rgba(0,0,0,0.1);
    }
    .dest-carousel-img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }
    .dest-carousel-body {
        padding: 1.25rem;
    }
    .dest-carousel-body h4 {
        font-size: 1.15rem;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 0.5rem;
    }
    .dest-carousel-body p {
        font-size: 0.92rem;
        color: #555;
        line-height: 1.55;
        margin: 0 0 0.75rem;
    }
    .dest-carousel-body .dest-agent-link {
        font-size: 0.88rem;
        font-weight: 600;
        color: #2563eb;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
    .dest-carousel-body .dest-agent-link:hover {
        color: #1d4ed8;
        text-decoration: underline;
    }
    .dest-carousel-swipe-hint {
        display: none;
        text-align: center;
        color: #9ca3af;
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
    .dest-carousel-wrapper {
        position: relative;
    }
    .dest-carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        font-size: 1.2rem;
        color: #1a1a2e;
        transition: background 0.2s, box-shadow 0.2s;
    }
    .dest-carousel-arrow:hover {
        background: #f0f4ff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .dest-carousel-arrow.prev {
        left: -22px;
    }
    .dest-carousel-arrow.next {
        right: -22px;
    }
    .dest-carousel-arrow.hidden {
        opacity: 0;
        pointer-events: none;
    }
    @media (max-width: 768px) {
        .dest-carousel-card {
            flex: 0 0 85vw;
        }
        .dest-carousel-swipe-hint {
            display: block;
        }
        .dest-carousel-section h3 {
            font-size: 1.5rem;
        }
        .dest-carousel-arrow {
            display: none;
        }
    }
    @media (max-width: 576px) {
        .dest-carousel-card {
            flex: 0 0 90vw;
        }
    }
