.fc-glass {
    background: rgba(18, 26, 43, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.fc-glass-light {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.fc-autocomplete-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 4px;
    z-index: 9999;
    max-height: 240px;
    overflow-y: auto;
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}
.fc-autocomplete-list li {
    padding: 0.65rem 0.85rem;
    font-size: 0.875rem;
    cursor: pointer;
    color: #0f172a;
    border-bottom: 1px solid #e2e8f0;
}
.fc-autocomplete-list li:last-child {
    border-bottom: none;
}
.fc-autocomplete-list li:hover,
.fc-autocomplete-list li[aria-selected="true"] {
    background: #e0f2fe;
    color: #0c4a6e;
}
.fc-autocomplete-wrap {
    position: relative;
}
.fc-autocomplete-wrap.fc-autocomplete-open {
    z-index: 70;
}
/* From/To dropdowns are position:absolute; parent overflow (hero section) used to clip them on mobile. */
#fc-search-panel {
    overflow: visible;
    position: relative;
    z-index: 2;
    background: linear-gradient(165deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.99) 55%, rgba(226, 232, 240, 0.95) 100%);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow:
        0 18px 48px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}
.fc-trip-tab-label {
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}
.fc-route-stack .fc-route-swap-btn#fc-swap {
    line-height: 1;
}
#fc-search-panel label,
#fc-search-panel .fc-form-lbl {
    color: #475569 !important;
}
#fc-search-panel .fc-form-lbl svg.text-brand {
    color: #0284c7 !important;
}
#fc-search-panel input[type='text'],
#fc-search-panel select {
    background-color: #ffffff !important;
    color: #0f172a !important;
    border-color: #cbd5e1 !important;
}
#fc-search-panel input[type='text']::placeholder {
    color: #94a3b8 !important;
}
#fc-search-panel input[type='text']:focus,
#fc-search-panel select:focus {
    outline: none;
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.28);
}
#fc-search-panel .fc-input-wrap > svg.fc-inp-ico {
    color: #64748b !important;
}
#fc-search-panel .fc-input-wrap:focus-within > svg.fc-inp-ico {
    color: #0284c7 !important;
}
/* Trip type pills — light track */
#fc-search-panel .fc-trip-pills {
    background: rgba(241, 245, 249, 0.98) !important;
    border: 1px solid #e2e8f0;
}
/* Inactive pill label — do not use !important here or it beats peer-checked text */
#fc-search-panel .fc-trip-pills label span {
    color: #64748b;
}
#fc-search-panel .fc-trip-pills label input.fc-trip-radio:checked + span {
    background-color: #1891ed !important;
    color: #ffffff !important;
}
#fc-search-panel .fc-search-kicker {
    color: #64748b !important;
}
#fc-search-panel .fc-swap-btn.btn-link {
    color: #0284c7 !important;
}
#fc-search-panel .fc-swap-btn.btn-link:hover {
    color: #0f172a !important;
}
#fc-search-panel .fc-input-wrap > svg.fc-inp-ico-end {
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #64748b !important;
    z-index: 3;
}
#fc-search-panel .fc-panel-secondary-btn {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}
#fc-search-panel .fc-panel-secondary-btn:hover {
    background: #f1f5f9 !important;
    border-color: #94a3b8 !important;
}
#fc-search-panel #fc-advance-fields label.flex.cursor-pointer {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
}
.fc-wa-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

/* Vertical WhatsApp → Call → Chat stack (all premium pages) */
.fc-contact-fab-stack {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    z-index: 40;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none;
}

@media (min-width: 768px) {
    .fc-contact-fab-stack {
        display: flex;
    }
}

.fc-contact-fab-stack .fc-contact-fab {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 0;
    border-radius: 9999px;
    color: #ffffff;
    text-decoration: none !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.fc-contact-fab-stack .fc-contact-fab:hover,
.fc-contact-fab-stack .fc-contact-fab:focus-visible {
    transform: scale(1.06);
    text-decoration: none !important;
}

.fc-contact-fab-stack .fc-contact-fab svg {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
}

.fc-contact-fab-stack .fc-contact-fab--wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.fc-contact-fab-stack .fc-contact-fab--call {
    background: #1891ed;
    box-shadow: 0 8px 32px rgba(24, 145, 237, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.fc-contact-fab-stack .fc-contact-fab--chat {
    background: #1891ed;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(24, 145, 237, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.fc-contact-fab-stack .fc-contact-fab--call svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #ffffff;
}

/* Brand call CTA (navbar + Kayak loader) — FlightClicks blue theme */
.fc-call-expert-banner {
    --fc-call-bg: linear-gradient(135deg, #1891ed 0%, #0d6cb8 100%);
    --fc-call-bg-hover: linear-gradient(135deg, #1a9af5 0%, #0b5ea3 100%);
    --fc-call-border: rgba(13, 108, 184, 0.35);
    --fc-call-text: #ffffff;
    --fc-call-subtext: rgba(255, 255, 255, 0.92);
    --fc-call-glow: rgba(24, 145, 237, 0.45);

    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.625rem;
    background: var(--fc-call-bg);
    border: 1px solid var(--fc-call-border);
    box-shadow:
        0 8px 22px rgba(13, 108, 184, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    text-decoration: none !important;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    animation: fc-call-glow 2.4s ease-in-out infinite;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fc-call-expert-banner--nav {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    max-width: min(15rem, 42vw);
}

.fc-call-expert-banner--nav-compact {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    justify-content: center;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.fc-call-expert-banner--nav-compact .fc-call-expert-banner__copy {
    display: none;
}

.fc-call-expert-banner--nav-compact .fc-call-expert-banner__icon {
    width: 2.75rem;
    height: 2.75rem;
}

.fc-call-expert-banner--nav-compact .fc-call-expert-banner__icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.fc-call-expert-banner--nav-mobile {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
}

.fc-call-expert-banner--nav-mobile .fc-call-expert-banner__tagline {
    display: block;
}

.fc-call-expert-banner:hover,
.fc-call-expert-banner:focus-visible {
    transform: translateY(-1px);
    background: var(--fc-call-bg-hover);
    box-shadow:
        0 12px 28px rgba(13, 108, 184, 0.38),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset,
        0 0 20px var(--fc-call-glow);
    text-decoration: none !important;
}

.fc-call-expert-banner__icon {
    position: relative;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--fc-call-text);
}

.fc-call-expert-banner__icon svg {
    width: 1.625rem;
    height: 1.625rem;
    stroke: currentColor;
}

.fc-call-expert-banner__rings {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    animation: fc-call-ring 1.8s ease-out infinite;
    pointer-events: none;
}

.fc-call-expert-banner__copy {
    min-width: 0;
    flex: 1;
    text-align: left;
}

.fc-call-expert-banner__number {
    display: block;
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--fc-call-text);
    text-decoration: none !important;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.fc-call-expert-banner__tagline {
    display: block;
    margin-top: 0.0625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--fc-call-subtext);
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .fc-call-expert-banner--nav:not(.fc-call-expert-banner--nav-mobile) {
        max-width: 16.5rem;
        padding: 0.55rem 0.85rem;
    }

    .fc-call-expert-banner--nav:not(.fc-call-expert-banner--nav-mobile) .fc-call-expert-banner__number {
        font-size: 1rem;
    }

    .fc-call-expert-banner--nav:not(.fc-call-expert-banner--nav-mobile) .fc-call-expert-banner__tagline {
        font-size: 0.75rem;
    }
}

/* Header call CTA visibility — do not rely on Tailwind xl: utilities (not in built CSS) */
.fc-header-call--desktop {
    display: none;
}

.fc-header-call--mobile {
    display: block;
}

.fc-header-menu-toggle {
    display: inline-flex;
}

@media (min-width: 1280px) {
    .fc-header-call--desktop {
        display: block;
    }

    .fc-header-call--mobile {
        display: none;
    }

    .fc-header-menu-toggle {
        display: none;
    }
}

/* Mobile header row — logo + compact call + menu */
@media (max-width: 1279px) {
    .fc-premium-header-row {
        gap: 0.5rem;
    }

    .fc-header-actions {
        gap: 0.5rem;
    }
}

.fc-mobile-panel__call {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.fc-mobile-panel nav a {
    min-height: 2.75rem;
    display: flex;
    align-items: center;
}

@keyframes fc-call-glow {
    0%,
    100% {
        box-shadow:
            0 8px 22px rgba(13, 108, 184, 0.28),
            0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    }
    50% {
        box-shadow:
            0 12px 30px rgba(13, 108, 184, 0.42),
            0 0 0 1px rgba(255, 255, 255, 0.18) inset,
            0 0 18px rgba(24, 145, 237, 0.5);
    }
}

@keyframes fc-call-ring {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fc-call-expert-banner,
    .fc-kl__call-cta {
        animation: none;
    }

    .fc-call-expert-banner__rings {
        animation: none;
        opacity: 0;
    }
}

.fc-support-card {
    background: linear-gradient(145deg, rgba(24, 145, 237, 0.12) 0%, rgba(18, 26, 43, 0.9) 45%, rgba(10, 15, 26, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.fc-fab-pulse {
    box-shadow: 0 8px 32px rgba(24, 145, 237, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.fc-fab-wa {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.fc-mobile-actions {
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}
#fc-nav-toggle[aria-expanded="true"] .fc-nav-bars-lines {
    opacity: 0;
    transform: scale(0.85);
}
#fc-nav-toggle[aria-expanded="true"] .fc-nav-close {
    opacity: 1;
    transform: rotate(0);
}
#fc-nav-toggle .fc-nav-close {
    opacity: 0;
    transform: rotate(-90deg);
}
#fc-nav-toggle .fc-nav-bars-lines,
#fc-nav-toggle .fc-nav-close {
    transition: opacity 0.2s ease, transform 0.2s ease;
}
#fc-loader-ring {
    transition: stroke-dashoffset 0.08s linear;
}
@media (prefers-reduced-motion: reduce) {
    #fc-loader-ring {
        transition: none;
    }
}

/* Flight search overlays: plane cruises with banking + scrolling sky dashes + contrail */
@keyframes fc-plane-dashes-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-36px);
    }
}

@keyframes fc-plane-cruise {
    0%,
    100% {
        transform: translateX(-14px) translateY(2px);
    }
    50% {
        transform: translateX(14px) translateY(-5px);
    }
}

@keyframes fc-plane-bank {
    0%,
    100% {
        transform: rotate(-10deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.06);
    }
}

@keyframes fc-plane-trail-glow {
    0%,
    100% {
        opacity: 0.35;
        transform: scaleX(0.85);
    }
    50% {
        opacity: 0.95;
        transform: scaleX(1.05);
    }
}

.fc-loading-plane-track {
    isolation: isolate;
}

.fc-loading-plane-dashes {
    position: absolute;
    inset: -1px;
    z-index: 0;
    border-radius: inherit;
    opacity: 0.5;
    background-image: repeating-linear-gradient(
        105deg,
        transparent 0,
        transparent 12px,
        rgba(56, 189, 248, 0.09) 12px,
        rgba(56, 189, 248, 0.09) 14px,
        transparent 14px,
        transparent 28px
    );
    background-size: 44px 100%;
    animation: fc-plane-dashes-scroll 1.05s linear infinite;
    pointer-events: none;
}

.fc-loading-plane-shuttle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
    will-change: transform;
    animation: fc-plane-cruise 2.5s ease-in-out infinite;
}

.fc-loading-plane-trail {
    position: absolute;
    right: 50%;
    top: 50%;
    z-index: 0;
    width: 3.25rem;
    height: 4px;
    margin-top: -2px;
    margin-right: 6px;
    border-radius: 9999px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.35), rgba(56, 189, 248, 0.7));
    transform-origin: right center;
    opacity: 0.75;
    filter: blur(0.5px);
    animation: fc-plane-trail-glow 2.5s ease-in-out infinite;
    pointer-events: none;
}

.fc-loading-plane-inner {
    position: relative;
    z-index: 1;
    display: block;
    transform-origin: center center;
    will-change: transform;
    animation: fc-plane-bank 2.5s ease-in-out infinite;
}

.fc-loading-plane-inner svg {
    display: block;
    filter: drop-shadow(0 0 16px rgba(56, 189, 248, 0.7)) drop-shadow(0 2px 8px rgba(24, 145, 237, 0.45));
}

@media (prefers-reduced-motion: reduce) {
    .fc-loading-plane-dashes {
        animation: none;
    }
    .fc-loading-plane-shuttle {
        animation: none;
        transform: none;
    }
    .fc-loading-plane-inner {
        animation: none;
        transform: none;
    }
    .fc-loading-plane-trail {
        animation: none;
        opacity: 0.55;
        transform: none;
    }
}
body.fc-nav-open .fc-site-header {
    z-index: 100;
}
body.fc-nav-open #fc-nav-backdrop {
    z-index: 65;
}
body.fc-nav-open .fc-mobile-actions {
    z-index: 35;
    pointer-events: none;
    opacity: 0.35;
}
#fc-hero-slides {
    position: absolute;
    inset: 0;
}
.fc-hero-slide-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    margin: 0;
    padding: 0;
}
.fc-hero-slide-wrap .fc-hero-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.fc-hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.fc-hero-slide.fc-hero-slide--active {
    z-index: 1;
    opacity: 1;
}
.fc-hero-dot.fc-hero-dot--on {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 2px rgba(24, 145, 237, 0.6);
}
.fc-form-lbl {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.fc-form-lbl svg {
    flex-shrink: 0;
}
.fc-input-wrap {
    position: relative;
}
.fc-input-wrap > svg.fc-inp-ico {
    position: absolute;
    left: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.9);
}
.fc-input-wrap:focus-within > svg.fc-inp-ico {
    color: #ffffff;
}
.fc-input-pad {
    padding-left: 2.35rem;
}
#tawkchat-minimized-container,
#tawkchat-minimized,
#tawkchat-minimized-button,
iframe#tawkchat-minimized-iframe,
.tawk-min-container .tawk-button,
.tawk-min-container .tawk-button-circle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
/* Sits behind the visible text field; desktop: showPicker() from JS; typing hits the text layer. */
.fc-date-native {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
}

/*
 * Mobile/tablet: WebKit (Safari iOS) requires a real tap on <input type="date"> — programmatic
 * showPicker()/click() from the text field often fails. Stack the native picker above the text
 * field and let touches hit it directly; value still mirrors into the visible DD/MM/YYYY field via JS.
 * opacity: 0 often blocks taps on iOS/Android — use 0.01 instead.
 */
@media (max-width: 1023px) {
    #fc-dates .fc-input-wrap.fc-date-field {
        position: relative;
        min-height: 2.625rem;
        touch-action: manipulation;
    }

    #fc-dates .fc-date-native {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-height: 2.625rem;
        margin: 0;
        padding: 0;
        border: 0;
        opacity: 0.01;
        z-index: 30;
        pointer-events: auto;
        cursor: pointer;
        font-size: 16px;
        -webkit-appearance: none;
        appearance: none;
    }

    #fc-dates .fc-input-wrap input.fc-date-text,
    #fc-dates .fc-input-wrap input.fc-input-pad#fc-start,
    #fc-dates .fc-input-wrap input.fc-input-pad#fc-end,
    #fc-dates .fc-input-wrap input#fc-start,
    #fc-dates .fc-input-wrap input#fc-end {
        pointer-events: none;
        position: relative;
        z-index: 1;
    }

    #fc-dates .fc-input-wrap > svg.fc-inp-ico-end {
        z-index: 1;
        pointer-events: none;
    }

    /* Full-field tap target: label[for] opens native date picker (iOS only hits icon on bare input) */
    #fc-dates .fc-date-fullhit {
        position: absolute;
        inset: 0;
        z-index: 40;
        margin: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    #fc-dates .fc-date-native {
        z-index: 5;
    }

    /* Fixed mobile Call/Chat/Quote bar — keep date fields tappable above it */
    .fc-home-page #search.fc-hero-stack > .container.z-20 {
        padding-bottom: max(6rem, calc(env(safe-area-inset-bottom, 0px) + 5rem)) !important;
    }
}

/* -------------------------------------------------------------------------- */
/* Flight search landing: mobile results + search form (fixed bottom bar, etc.) */
/* -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
    #fc-results-section {
        scroll-margin-top: 7.5rem;
        padding-bottom: max(5.75rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
    }
    #search.fc-landing-search {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    }
    .fc-landing-results-head {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .fc-landing-results-head .fc-landing-call-btn,
    .fc-landing-results-head .fc-landing-btn-edit {
        width: 100%;
        justify-content: center;
        min-height: 2.75rem;
        touch-action: manipulation;
    }
    #fc-results-section #fc-results-sub {
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    #fc-results-section .fc-support-card,
    #fc-results-section .fc-results-support-sticky {
        position: static;
        top: auto;
        max-height: none;
        overflow-y: visible;
    }
}
/* Flatpickr on mobile: instant day tap (no OS "Done"); hide native overlay */
#fc-search-panel .fc-date-flatpickr-wrap .fc-date-fullhit,
#fc-search-panel .fc-date-flatpickr-wrap .fc-date-native {
    display: none !important;
    pointer-events: none !important;
}
#fc-search-panel .fc-date-flatpickr-wrap input.fc-date-text {
    pointer-events: auto !important;
    cursor: pointer;
}
#fc-search-panel .flatpickr-calendar {
    z-index: 10080 !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22);
    border-radius: 0.75rem;
    border: 1px solid #cbd5e1;
}
#fc-search-panel .flatpickr-day.selected,
#fc-search-panel .flatpickr-day.startRange,
#fc-search-panel .flatpickr-day.endRange {
    background: #1891ed;
    border-color: #1891ed;
}
#fc-search-panel .flatpickr-day.today {
    border-color: #1891ed;
}

@media (min-width: 1024px) {
    #fc-dates .fc-date-fullhit {
        display: none;
    }
}

@media (min-width: 1024px) {
    #fc-results-section {
        scroll-margin-top: 6rem;
    }
}

/* -------------------------------------------------------------------------- */
/* Home: Featured routes */
/* -------------------------------------------------------------------------- */
.fc-featured-routes .fc-featured-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.25s ease;
}
@media (hover: hover) and (pointer: fine) {
    .fc-featured-routes .fc-featured-card:hover {
        transform: translateY(-5px);
    }
}
.fc-featured-card__media-fade {
    background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 26, 0.78) 100%);
}
.fc-featured-card__chip {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.35rem 0.8rem;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(10, 15, 26, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.fc-featured-card__kicker {
    display: inline-block;
    border-bottom: 1px solid rgba(201, 169, 98, 0.4);
    padding-bottom: 0.4rem;
}
.fc-featured-card__body {
    min-height: 0;
}
[data-fc-theme='light'] .fc-featured-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow:
        0 4px 22px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(15, 23, 42, 0.03) !important;
}
[data-fc-theme='light'] .fc-featured-card:hover {
    border-color: rgba(24, 145, 237, 0.3) !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1) !important;
}
[data-fc-theme='light'] .fc-featured-card__media-fade {
    background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.22) 100%) !important;
}
[data-fc-theme='light'] .fc-featured-card__chip {
    color: #0f172a !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
}
[data-fc-theme='light'] .fc-featured-card__kicker {
    border-bottom-color: rgba(180, 83, 9, 0.35);
}
[data-fc-theme='light'] .fc-featured-card__link:focus-visible {
    --tw-ring-offset-color: #f8fafc !important;
}
