/*
 * ═══════════════════════════════════════════════════════════════════════════════
 * Lavisa Destinations Theme — ENHANCED BOOKING TOOLS (E19)
 * ═══════════════════════════════════════════════════════════════════════════════
 *
 * @file        assets/css/ldt-enhanced-sections-booking.css
 * @package     Lavisa_Destinations_Theme
 * @since       2.9.20  (E19 — Visual Enhancement Roadmap v2 — opens Stage 7)
 * @depends     ldt-tokens-enhanced.css       (E1)
 *              ldt-enhanced-base.css         (E2)
 *              ldt-enhanced-animations.css   (E3 — keyframes: ldt-fade-up)
 *              ldt-enhanced-sections-cta.css (E11 — sticky CTA pattern)
 *
 *   Polishes the booking tools sections that drive conversion on flights,
 *   hotels, and cars search pages — the high-intent surfaces:
 *
 *     section-booking-hero.php             Booking page hero
 *     section-service-tabs.php             Flights / Hotels / Cars switcher
 *     section-flights-search.php           Flight search form
 *     section-hotels-search.php            Hotel search form
 *     section-cars-search.php              Car rental search form
 *     section-flights-featured-airlines.php Featured airlines logo rail
 *     section-booking-stats.php            Trust stats row
 *
 *   PURE CSS LAYER — no PHP partial is touched. Same approach as E4-E18.
 *   Opens Stage 7 (Tools).
 *
 * ═══════════════════════════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════════════════════════════════════════════
 * 1. BOOKING HERO (.ldt-bkh)
 *
 * Hero shown above the search form on flights / hotels / cars pages.
 * Per-variant background images via PHP inline style (preserved).
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-bkh {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 64px 0 80px;
    /* Default background gradient (variant overrides if needed) */
    background: linear-gradient(
        135deg,
        #003580 0%,
        #0057b8 100%
    );
}

/* Bg image — set via PHP inline style; we add positioning */
body .ldt-bkh__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.40;
    z-index: 0;
}

/* Overlay — gradient over the bg image */
body .ldt-bkh__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.85) 0%,
        rgba(0, 87, 184, 0.75) 50%,
        rgba(0, 53, 128, 0.90) 100%
    );
    z-index: 0;
}

/* Per-variant accent overlay */
body .ldt-bkh--flights .ldt-bkh__overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.85) 0%,
        rgba(0, 87, 184, 0.70) 100%
    );
}

body .ldt-bkh--hotels .ldt-bkh__overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 53, 128, 0.80) 0%,
        rgba(255, 140, 0, 0.30) 100%
    );
}

body .ldt-bkh--cars .ldt-bkh__overlay {
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(0, 53, 128, 0.75) 100%
    );
}

body .ldt-bkh__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Large icon */
body .ldt-bkh__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.20);
}

/* Title — chiseled */
body .ldt-bkh__title {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.30),
        0 6px 24px rgba(0, 10, 40, 0.40);
}

body .ldt-bkh__subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 640px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 2. SERVICE TABS (.ldt-srvtabs) — Flights / Hotels / Cars switcher
 *
 * Sits between the booking hero and the search forms.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-srvtabs {
    position: relative;
    z-index: 2;
    margin: -32px auto 24px;  /* lifts up to overlap hero bottom */
    max-width: 720px;
    padding: 0 16px;
}

body .ldt-srvtabs__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px;
    background: var(--ldt-glass-strong-light, rgba(255, 255, 255, 0.96));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.50);
    border-radius: var(--ldt-radius-pill, 9999px);
    box-shadow:
        0 12px 32px rgba(0, 53, 128, 0.18),
        0 0 0 1px rgba(255, 140, 0, 0.10);
}

/* Single tab */
body .ldt-srvtabs__tab {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-gray-600, #64748b);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 250ms var(--ldt-ease-portal, ease),
        color 250ms var(--ldt-ease-portal, ease),
        box-shadow 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-srvtabs__tab:not(.is-active):hover {
        color: var(--ldt-primary, #003580);
        background: rgba(0, 53, 128, 0.04);
    }
}

body .ldt-srvtabs__tab.is-active {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    box-shadow:
        0 6px 16px rgba(255, 140, 0, 0.40),
        0 0 0 1px rgba(255, 255, 255, 0.20) inset;
}

body .ldt-srvtabs__icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 3. SHARED SEARCH FORM POLISH (.ldt-fs, .ldt-hs, .ldt-cs)
 *
 * The flights, hotels, and cars search forms have parallel structures:
 *   .ldt-fs / .ldt-hs / .ldt-cs              — wrapper section
 *   __card                                    — main card
 *   __topbar / __topbar-left / __topbar-right — top settings row
 *   __fields                                  — input fields row
 *   __field                                   — single field with label + icon + input
 *   __field-label / __field-icon / __input    — field internals
 *   __submit                                  — primary submit button
 *
 * We unify polish via comma-grouped selectors.
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* Outer wrapper */
body .ldt-fs,
body .ldt-hs,
body .ldt-cs {
    padding: 0 0 24px;
}

/* Card — glass-strong on lift */
body .ldt-fs__card,
body .ldt-hs__card,
body .ldt-cs__card {
    background: var(--ldt-glass-strong-light, rgba(255, 255, 255, 0.96));
    -webkit-backdrop-filter: blur(20px) saturate(180%);
            backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow:
        0 12px 36px rgba(0, 53, 128, 0.12),
        0 0 0 1px rgba(255, 140, 0, 0.06);
    padding: 22px;
}

/* Topbar — settings row */
body .ldt-fs__topbar,
body .ldt-hs__topbar,
body .ldt-cs__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 53, 128, 0.06);
}

body .ldt-fs__topbar-left,
body .ldt-hs__topbar-left,
body .ldt-cs__topbar-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

body .ldt-fs__topbar-right,
body .ldt-hs__topbar-right,
body .ldt-cs__topbar-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Fields row */
body .ldt-fs__fields,
body .ldt-hs__fields,
body .ldt-cs__fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 180px;
    gap: 10px;
    margin-bottom: 14px;
}

@media (max-width: 900px) {
    body .ldt-fs__fields,
    body .ldt-hs__fields,
    body .ldt-cs__fields {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    body .ldt-fs__fields,
    body .ldt-hs__fields,
    body .ldt-cs__fields {
        grid-template-columns: 1fr;
    }
}

/* Field — labelled input wrapper */
body .ldt-fs__field,
body .ldt-hs__field,
body .ldt-cs__field {
    position: relative;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-input, 0.75rem);
    padding: 10px 14px;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        border-color 200ms var(--ldt-ease-portal, ease),
        box-shadow 200ms var(--ldt-ease-portal, ease);
}

body .ldt-fs__field:focus-within,
body .ldt-hs__field:focus-within,
body .ldt-cs__field:focus-within {
    background: #ffffff;
    border-color: var(--ldt-accent, #ff8c00);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.18);
}

/* Field label (above input) */
body .ldt-fs__field-label,
body .ldt-hs__field-label,
body .ldt-cs__field-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ldt-gray-600, #64748b);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

/* Field icon — accent-orange */
body .ldt-fs__field-icon,
body .ldt-hs__field-icon,
body .ldt-cs__field-icon {
    display: inline-flex;
    align-items: center;
    color: var(--ldt-accent, #ff8c00);
    font-size: 14px;
}

/* Input — transparent on field surface */
body .ldt-fs__input,
body .ldt-hs__input,
body .ldt-cs__input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--ldt-dark, #1e293b);
    font-size: 15px;
    font-weight: 700;
    padding: 2px 0;
    outline: none;
}

body .ldt-fs__input::placeholder,
body .ldt-hs__input::placeholder,
body .ldt-cs__input::placeholder {
    color: var(--ldt-gray-400, #94a3b8);
    font-weight: 500;
}

/* Date input fix — let date pickers display naturally */
body .ldt-hs__input--date,
body .ldt-cs__input--date {
    cursor: pointer;
}

/* Date arrow between checkin/checkout */
body .ldt-hs__date-arrow,
body .ldt-cs__date-arrow {
    color: var(--ldt-accent, #ff8c00);
    font-weight: 800;
    align-self: center;
    flex-shrink: 0;
}

[dir="rtl"] body .ldt-hs__date-arrow,
[dir="rtl"] body .ldt-cs__date-arrow,
.ldt-rtl body .ldt-hs__date-arrow,
.ldt-rtl body .ldt-cs__date-arrow {
    transform: scaleX(-1);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 4. FLIGHTS SEARCH SPECIFIC (.ldt-fs)
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* Trip type radios — pill group */
body .ldt-fs__trip-types {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-pill, 9999px);
    padding: 3px;
    gap: 2px;
}

body .ldt-fs__trip-type {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-gray-600, #64748b);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        color 200ms var(--ldt-ease-portal, ease);
}

body .ldt-fs__trip-type input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body .ldt-fs__trip-type:has(input:checked) {
    background: var(--ldt-gradient-brand,
                linear-gradient(135deg, #003580 0%, #0057b8 100%));
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 53, 128, 0.30);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-fs__trip-type:not(:has(input:checked)):hover {
        background: rgba(0, 53, 128, 0.06);
        color: var(--ldt-primary, #003580);
    }
}

/* Pax button — passenger count + class display */
body .ldt-fs__pax {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-dark, #1e293b);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        border-color 200ms var(--ldt-ease-portal, ease);
}

body .ldt-fs__pax:hover {
    background: rgba(255, 140, 0, 0.06);
    border-color: rgba(255, 140, 0, 0.30);
}

body .ldt-fs__pax-icon {
    font-size: 14px;
}

body .ldt-fs__pax-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

body .ldt-fs__pax-count {
    color: var(--ldt-dark, #1e293b);
    font-weight: 700;
}

body .ldt-fs__pax-class {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 500;
}

body .ldt-fs__pax-chev {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 12px;
    transition: transform 200ms var(--ldt-ease-portal, ease);
}

body .ldt-fs__pax[aria-expanded="true"] .ldt-fs__pax-chev {
    transform: rotate(180deg);
}

/* Pax popover — dropdown panel */
body .ldt-fs__pax-popover {
    position: absolute;
    z-index: 20;
    margin-top: 6px;
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-card, 1.25rem);
    box-shadow: 0 16px 40px rgba(0, 53, 128, 0.20);
    padding: 16px;
    min-width: 280px;
    animation: ldt-fade-up 250ms var(--ldt-ease-portal, ease);
}

@media (prefers-reduced-motion: reduce) {
    body .ldt-fs__pax-popover { animation: none; }
}

body .ldt-fs__pax-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 53, 128, 0.08);
}

body .ldt-fs__pax-row:last-child {
    border-bottom: none;
}

body .ldt-fs__pax-hint {
    color: var(--ldt-gray-500, #94a3b8);
    font-size: 11px;
    font-weight: 500;
    display: block;
}

/* Stepper inside pax popover */
body .ldt-fs__pax-stepper {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-pill, 9999px);
    overflow: hidden;
}

body .ldt-fs__pax-stepper button {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    color: var(--ldt-primary, #003580);
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    transition: background 200ms var(--ldt-ease-portal, ease);
}

body .ldt-fs__pax-stepper button:hover:not(:disabled) {
    background: rgba(255, 140, 0, 0.12);
    color: var(--ldt-accent, #ff8c00);
}

body .ldt-fs__pax-stepper button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

body .ldt-fs__pax-stepper input {
    width: 36px;
    border: none;
    background: transparent;
    text-align: center;
    color: var(--ldt-dark, #1e293b);
    font-weight: 800;
    font-size: 14px;
    outline: none;
}

/* Cabin row — radio group inside pax popover */
body .ldt-fs__pax-row--cabin {
    flex-direction: column;
    align-items: stretch;
    border-bottom: none;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 5. HOTELS SEARCH SPECIFIC (.ldt-hs)
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* Property type tabs (Hotel / Apartment / Villa / etc.) */
body .ldt-hs__prop-types,
body .ldt-cs__car-types {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 53, 128, 0.04);
    border: 1px solid rgba(0, 53, 128, 0.08);
    border-radius: var(--ldt-radius-pill, 9999px);
    padding: 3px;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
}

body .ldt-hs__prop-types::-webkit-scrollbar,
body .ldt-cs__car-types::-webkit-scrollbar {
    display: none;
}

body .ldt-hs__prop-type,
body .ldt-cs__car-type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: none;
    border-radius: var(--ldt-radius-pill, 9999px);
    color: var(--ldt-gray-600, #64748b);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition:
        background 200ms var(--ldt-ease-portal, ease),
        color 200ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-hs__prop-type:not(.is-active):hover,
    body .ldt-cs__car-type:not(.is-active):hover {
        background: rgba(0, 53, 128, 0.06);
        color: var(--ldt-primary, #003580);
    }
}

body .ldt-hs__prop-type.is-active,
body .ldt-cs__car-type.is-active {
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(255, 140, 0, 0.30);
}

body .ldt-hs__prop-icon,
body .ldt-cs__car-icon {
    font-size: 14px;
    line-height: 1;
}

/* Dropdown for destination autocomplete */
body .ldt-hs__dd,
body .ldt-cs__dd {
    position: absolute;
    z-index: 20;
    margin-top: 6px;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 53, 128, 0.10);
    border-radius: var(--ldt-radius-input, 0.75rem);
    box-shadow: 0 12px 32px rgba(0, 53, 128, 0.16);
    padding: 6px;
    max-height: 320px;
    overflow-y: auto;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 6. CARS SEARCH SPECIFIC (.ldt-cs)
 * ═══════════════════════════════════════════════════════════════════════════════ */

/* Different drop-off toggle — checkbox + label row */
body .ldt-cs__diff-dropoff {
    margin-bottom: 12px;
}

body .ldt-cs__diff-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--ldt-gray-700, #334155);
    font-size: 13px;
    font-weight: 600;
}

body .ldt-cs__diff-toggle input[type="checkbox"] {
    accent-color: var(--ldt-accent, #ff8c00);
    width: 16px;
    height: 16px;
}

body .ldt-cs__diff-label {
    color: var(--ldt-primary, #003580);
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 7. SUBMIT BUTTON — accent gradient pill (shared across all 3 forms)
 *
 * The submit button uses class names like .ldt-fs__submit / .ldt-hs__submit /
 * .ldt-cs__submit. We polish all three with comma selectors.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-fs__submit,
body .ldt-hs__submit,
body .ldt-cs__submit,
body button[class*="__submit"][class*="ldt-fs"],
body button[class*="__submit"][class*="ldt-hs"],
body button[class*="__submit"][class*="ldt-cs"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--ldt-gradient-accent,
                linear-gradient(135deg, #ff8c00 0%, #e07a00 100%));
    color: #ffffff;
    border: none;
    border-radius: var(--ldt-radius-pill, 9999px);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: var(--ldt-shadow-accent,
                0 10px 30px rgba(255, 140, 0, 0.40));
    transition:
        transform 250ms var(--ldt-ease-portal, ease),
        box-shadow 250ms var(--ldt-ease-portal, ease),
        filter 250ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-fs__submit:hover,
    body .ldt-hs__submit:hover,
    body .ldt-cs__submit:hover,
    body button[class*="__submit"][class*="ldt-fs"]:hover,
    body button[class*="__submit"][class*="ldt-hs"]:hover,
    body button[class*="__submit"][class*="ldt-cs"]:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 36px rgba(255, 140, 0, 0.55);
        filter: brightness(1.06);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 8. FEATURED AIRLINES (.ldt-booking-content--airlines)
 *
 * Grid of airline logos with subtle hover.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-booking-content--airlines {
    padding: 24px 0;
}

body .ldt-booking-content--airlines img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.4) opacity(0.85);
    transition:
        filter 300ms var(--ldt-ease-portal, ease),
        transform 300ms var(--ldt-ease-portal, ease);
}

@media (hover: hover) and (pointer: fine) {
    body .ldt-booking-content--airlines img:hover {
        filter: grayscale(0) opacity(1);
        transform: scale(1.06);
    }
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 9. BOOKING STATS (.ldt-booking-content--stats)
 *
 * Trust stats row that sits on booking pages.
 * ═══════════════════════════════════════════════════════════════════════════════ */

body .ldt-booking-content--stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    padding: 24px 0;
}

body .ldt-booking-content--stats .stat-value,
body .ldt-booking-content--stats > * > strong,
body .ldt-booking-content--stats [data-role="stat-value"] {
    background: var(--ldt-gradient-text,
                linear-gradient(135deg, #003580 0%, #0057b8 50%, #ff8c00 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ldt-primary, #003580);  /* fallback */
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
}


/* ═══════════════════════════════════════════════════════════════════════════════
 * 10. RESPONSIVE
 * ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* Booking hero: smaller icon */
    body .ldt-bkh {
        padding: 48px 0 64px;
    }

    body .ldt-bkh__icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    /* Service tabs: tighter */
    body .ldt-srvtabs {
        margin-top: -24px;
    }

    body .ldt-srvtabs__tab {
        padding: 10px 14px;
        font-size: 13px;
    }

    /* Search forms: tighter card */
    body .ldt-fs__card,
    body .ldt-hs__card,
    body .ldt-cs__card {
        padding: 16px;
    }

    body .ldt-fs__topbar,
    body .ldt-hs__topbar,
    body .ldt-cs__topbar {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    /* Pax popover full-width */
    body .ldt-fs__pax-popover {
        left: 0;
        right: 0;
        min-width: auto;
    }
}


/* ─── END OF ldt-enhanced-sections-booking.css ────────────────────────────── */
