/* ═══════════════════════════════════════════════════════════════════════════
   SHORTREST FLIGHTS PAGE — Full Production CSS
   Design: Deep aviation dark-mode, editorial layout, high-impact hero
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Base resets & tokens ── */
:root {
    --sky: #0EA5E9;
    --sky-d: #0284C7;
    --sky-lt: rgba(14,165,233,.12);
    --gold: #F59E0B;
    --gold-lt: rgba(245,158,11,.12);
    --green: #10B981;
    --green-lt: rgba(16,185,129,.10);
    --navy: #080f1a;
    --navy-2: #0c1526;
    --navy-3: #0f1d2e;
    --brand: #FF5A3C;
    --white: #ffffff;
    --muted: rgba(255,255,255,.42);
    --line: rgba(255,255,255,.07);
    --radius: 12px;
    --t: .22s cubic-bezier(.4,0,.2,1);
    --font-head: 'Sora', -apple-system, sans-serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
}

/* ── HERO ── */
.fl-hero {
    background: linear-gradient(160deg, #060d18 0%, #0a1628 35%, #0d1f3a 65%, #081525 100%);
    position: relative;
    overflow: hidden;
    padding: 72px 20px 80px;
}
.fl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 85% 40%, rgba(14,165,233,.14) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 70%, rgba(255,90,60,.08) 0%, transparent 55%);
    pointer-events: none;
}
/* Star field */
.fl-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.55) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,.35) 1px, transparent 1px);
    background-size: 120px 90px, 70px 50px;
    background-position: 0 0, 35px 25px;
    pointer-events: none;
    opacity: .25;
}
/* Grid overlay */
.fl-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
/* Animated route arc */
.fl-hero-arc {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    pointer-events: none;
    overflow: hidden;
    opacity: .08;
}
.fl-hero-arc svg { width: 100%; height: 100%; }

.fl-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.fl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(14,165,233,.12);
    border: 1px solid rgba(14,165,233,.25);
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #7DD3FC;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.fl-hero-badge i { font-size: 10px; color: var(--sky); }
.fl-hero-h1 {
    font-family: var(--font-head);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.10;
    max-width: 680px;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.fl-hero-h1 span { color: var(--sky); }
.fl-hero-sub {
    font-size: clamp(14px, 1.8vw, 17px);
    color: rgba(255,255,255,.55);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 32px;
    font-family: var(--font-body);
}
.fl-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.fl-hero-stat {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.60);
}
.fl-hero-stat i { color: var(--sky); font-size: 11px; }
.fl-hero-stat strong { color: #fff; font-weight: 700; }

/* Animated plane graphic */
.fl-hero-plane {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(80px, 12vw, 160px);
    opacity: .06;
    pointer-events: none;
    animation: hero-float 10s ease-in-out infinite;
    filter: blur(1px);
}
@keyframes hero-float {
    0%,100% { transform: translateY(-50%) rotate(-5deg) translateX(0); }
    50%      { transform: translateY(-55%) rotate(-3deg) translateX(12px); }
}

/* ── SEARCH WIDGET ── */
.fl-search-wrap {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 880px;
}
.fl-trip-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: rgba(0,0,0,.25);
    border-radius: 10px;
    padding: 4px;
    width: fit-content;
}
.fl-trip-tab {
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255,255,255,.40);
    cursor: pointer;
    transition: var(--t);
    font-family: var(--font-head);
    border: none;
    background: none;
    letter-spacing: .02em;
}
.fl-trip-tab.active {
    background: var(--sky);
    color: #fff;
    box-shadow: 0 2px 12px rgba(14,165,233,.40);
}
.fl-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}
.fl-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fl-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    font-family: var(--font-head);
}
.fl-field input, .fl-field select {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--t), background var(--t);
    width: 100%;
    -webkit-appearance: none;
}
.fl-field input::placeholder { color: rgba(255,255,255,.30); }
.fl-field input:focus, .fl-field select:focus {
    border-color: var(--sky);
    background: rgba(14,165,233,.08);
}
.fl-field select option { background: #0c1526; color: #fff; }
.fl-search-btn {
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-d) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 800;
    font-family: var(--font-head);
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
    box-shadow: 0 4px 18px rgba(14,165,233,.40);
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
}
.fl-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14,165,233,.55);
}
.fl-search-btn i { font-size: 15px; }

/* ── SECTION WRAPPER ── */
.fl-section {
    padding: 56px 20px;
}
.fl-section.alt { background: #f8fafc; }
.fl-section-inner { max-width: 1140px; margin: 0 auto; }
.fl-section-hd {
    margin-bottom: 36px;
}
.fl-section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 8px;
    font-family: var(--font-head);
}
.fl-section-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -.01em;
}
.fl-section-sub {
    color: #6B7280;
    font-size: 15px;
    margin-top: 8px;
    line-height: 1.6;
    font-family: var(--font-body);
}

/* dark section */
.fl-section.dark {
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
    padding: 60px 20px;
}
.fl-section.dark .fl-section-title { color: #fff; }
.fl-section.dark .fl-section-label { color: var(--sky); }
.fl-section.dark .fl-section-sub { color: rgba(255,255,255,.50); }

/* ── TRAVELSTART EMBED SECTION ── */
.fl-embed-wrap {
    background: linear-gradient(135deg, #0a1628 0%, #0c1e3a 100%);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(255,255,255,.07);
    position: relative;
    overflow: hidden;
}
.fl-embed-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 90% 30%, rgba(14,165,233,.10), transparent 60%);
    pointer-events: none;
}
.fl-embed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}
.fl-embed-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.fl-embed-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--sky), var(--sky-d));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 18px rgba(14,165,233,.40);
    flex-shrink: 0;
}
.fl-embed-brand-txt h3 {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3px;
}
.fl-embed-brand-txt p {
    font-size: 12px;
    color: rgba(255,255,255,.40);
    font-family: var(--font-body);
}
.fl-embed-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.fl-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.55);
}
.fl-trust-badge i { color: var(--green); font-size: 9px; }

/* CTA main button area */
.fl-main-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 36px 20px;
    background: rgba(14,165,233,.06);
    border: 1px dashed rgba(14,165,233,.20);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}
.fl-main-cta-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    font-family: var(--font-head);
}
.fl-main-cta-title {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.25;
}
.fl-main-cta-title span { color: var(--sky); }
.fl-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-d) 100%);
    color: #fff;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(14,165,233,.50);
    transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
    position: relative;
    overflow: hidden;
    letter-spacing: .01em;
}
.fl-main-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    transform: skewX(-18deg);
    transition: left .5s ease;
}
.fl-main-btn:hover::after { left: 160%; }
.fl-main-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(14,165,233,.65);
}
.fl-main-btn i { font-size: 18px; }
.fl-cta-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,.28);
    text-align: center;
    font-family: var(--font-body);
}
.fl-cta-sub a { color: rgba(14,165,233,.60); text-decoration: underline; }

/* ── QUICK ROUTE CARDS ── */
.fl-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}
.fl-route-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow var(--t), transform var(--t), border-color var(--t);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.fl-route-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--sky-d));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.fl-route-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); transform: translateY(-3px); border-color: #CBD5E1; }
.fl-route-card:hover::before { transform: scaleX(1); }
.fl-route-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fl-route-code {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.01em;
}
.fl-route-arrow {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fl-route-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, #CBD5E1, #0EA5E9, #CBD5E1);
    border-radius: 2px;
}
.fl-route-plane { font-size: 14px; color: var(--sky); }
.fl-route-city {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    font-family: var(--font-body);
}
.fl-route-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.fl-route-from { font-size: 10px; color: #9CA3AF; font-family: var(--font-body); }
.fl-route-amount {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    color: var(--sky);
}
.fl-route-currency { font-size: 11px; color: #6B7280; }
.fl-route-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--green-lt);
    color: var(--green);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    letter-spacing: .04em;
    font-family: var(--font-head);
}
.fl-route-tag.gold { background: var(--gold-lt); color: var(--gold); }

/* ── AIRLINES GRID ── */
.fl-airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.fl-airline-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    transition: box-shadow var(--t), transform var(--t);
    text-decoration: none;
    color: inherit;
}
.fl-airline-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.fl-airline-ico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.fl-airline-name {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}
.fl-airline-type {
    font-size: 10.5px;
    color: #9CA3AF;
    font-family: var(--font-body);
}
.fl-airline-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: .04em;
    font-family: var(--font-head);
}
.badge-dom { background: #EFF6FF; color: #3B82F6; }
.badge-intl { background: #F0FDF4; color: #10B981; }

/* ── HOW IT WORKS ── */
.fl-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    counter-reset: steps;
}
.fl-step {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px 20px;
    position: relative;
    counter-increment: steps;
}
.fl-step::before {
    content: counter(steps, decimal-leading-zero);
    position: absolute;
    top: -16px;
    left: 20px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 900;
    color: var(--sky);
    background: var(--navy);
    border: 1px solid rgba(14,165,233,.25);
    border-radius: 20px;
    padding: 3px 10px;
    letter-spacing: .06em;
}
.fl-step-ico {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}
.fl-step-title {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.fl-step-desc {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.60;
    font-family: var(--font-body);
}

/* ── FAQ ── */
.fl-faq-list { display: flex; flex-direction: column; gap: 10px; }
.fl-faq-item {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
}
.fl-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-head);
    transition: background var(--t);
}
.fl-faq-q:hover { background: #f8fafc; }
.fl-faq-q i {
    color: var(--sky);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform .25s ease;
}
.fl-faq-q.open i { transform: rotate(180deg); }
.fl-faq-a {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
    font-family: var(--font-body);
    border-top: 1px solid #F3F4F6;
}
.fl-faq-a.open { display: block; }

/* ── INFO CARDS ── */
.fl-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.fl-info-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 22px;
    transition: background var(--t), border-color var(--t);
}
.fl-info-card:hover { background: rgba(255,255,255,.07); border-color: rgba(14,165,233,.2); }
.fl-info-card-ico {
    width: 44px; height: 44px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 14px;
    background: rgba(14,165,233,.12);
}
.fl-info-card-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.fl-info-card-text {
    font-size: 12.5px;
    color: rgba(255,255,255,.42);
    line-height: 1.6;
    font-family: var(--font-body);
}

/* ── AIRPORT TABLE ── */
.fl-airport-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 13.5px;
}
.fl-airport-table thead tr {
    background: rgba(14,165,233,.10);
}
.fl-airport-table th {
    padding: 12px 16px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--sky);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.fl-airport-table td {
    padding: 13px 16px;
    color: rgba(255,255,255,.65);
    border-bottom: 1px solid rgba(255,255,255,.05);
    vertical-align: top;
}
.fl-airport-table tr:hover td { background: rgba(255,255,255,.025); color: rgba(255,255,255,.90); }
.fl-airport-table td:first-child { color: #fff; font-weight: 700; }
.fl-iata { display: inline-block; background: rgba(14,165,233,.15); color: var(--sky); font-family: var(--font-head); font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 6px; letter-spacing: .06em; }

/* ── SEO CONTENT ── */
.fl-seo-block {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #E5E7EB;
}
.fl-seo-block h2 {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 14px;
    letter-spacing: -.01em;
}
.fl-seo-block h3 {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: #1F2937;
    margin: 20px 0 8px;
}
.fl-seo-block p {
    font-size: 14.5px;
    color: #4B5563;
    line-height: 1.75;
    font-family: var(--font-body);
    margin-bottom: 12px;
}
.fl-seo-block ul {
    padding-left: 20px;
    margin-bottom: 12px;
}
.fl-seo-block ul li {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.7;
    font-family: var(--font-body);
    margin-bottom: 5px;
}
.fl-seo-block ul li::marker { color: var(--sky); }

/* ── BREADCRUMB ── */
.fl-breadcrumb {
    background: #f8fafc;
    padding: 12px 20px;
    border-bottom: 1px solid #E5E7EB;
}
.fl-breadcrumb-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-family: var(--font-body);
    flex-wrap: wrap;
}
.fl-breadcrumb-inner a { color: #6B7280; text-decoration: none; transition: color var(--t); }
.fl-breadcrumb-inner a:hover { color: var(--sky); }
.fl-breadcrumb-sep { color: #CBD5E1; font-size: 10px; }
.fl-breadcrumb-current { color: #111827; font-weight: 600; }

/* ── AIRLINE SEARCH LINKS ── */
.fl-airline-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.fl-airline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    transition: all var(--t);
    font-family: var(--font-body);
}
.fl-airline-link:hover { border-color: var(--sky); color: var(--sky); background: #EFF6FF; }
.fl-airline-link i { font-size: 11px; color: var(--sky); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .fl-search-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fl-search-btn { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .fl-search-grid { grid-template-columns: 1fr; }
    .fl-hero { padding: 48px 16px 56px; }
    .fl-section { padding: 40px 16px; }
    .fl-embed-wrap { padding: 24px 16px; }
    .fl-seo-block { padding: 24px 18px; }
    .fl-trip-tabs { width: 100%; }
    .fl-trip-tab { flex: 1; text-align: center; }
}
