/* ============================================================
   TravelBooking — Unified Design System
   One CSS file for all pages: home, search results, booking,
   booking success. Theme: Refined Luxury Travel.
   Font stack: Fraunces (display) + Cabinet Grotesk (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,600&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,600,700,800&display=swap');

/* ─────────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:           #0c1f3f;
  --navy-deep:      #08142a;
  --navy-mid:       #163260;
  --blue:           #1a56db;
  --blue-hover:     #1740b0;
  --blue-light:     #eff4ff;
  --blue-faint:     #f5f8ff;
  --gold:           #d4922a;
  --gold-light:     #fef3dc;
  --gold-vivid:     #f0a500;
  --teal:           #0f766e;
  --teal-light:     #f0fdfa;

  /* Neutrals */
  --ink:            #0f172a;
  --ink-2:          #1e293b;
  --ink-3:          #334155;
  --muted:          #64748b;
  --subtle:         #94a3b8;
  --border:         #e2e8f0;
  --border-light:   #f1f5f9;
  --surface:        #ffffff;
  --bg:             #f4f7fc;
  --bg-2:           #eef3fb;

  /* Semantic */
  --success:        #059669;
  --success-light:  #ecfdf5;
  --danger:         #dc2626;
  --danger-light:   #fef2f2;
  --warn:           #d97706;
  --warn-light:     #fffbeb;

  /* Typography */
  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Cabinet Grotesk', 'DM Sans', sans-serif;
  --font-mono:      'DM Mono', ui-monospace, monospace;

  /* Radii */
  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,.07), 0 1px 4px rgba(15,23,42,.04);
  --shadow:    0 6px 24px rgba(15,23,42,.09), 0 2px 8px rgba(15,23,42,.05);
  --shadow-lg: 0 16px 48px rgba(15,23,42,.13), 0 4px 16px rgba(15,23,42,.07);
  --shadow-xl: 0 32px 80px rgba(15,23,42,.18), 0 8px 24px rgba(15,23,42,.10);

  /* Layout */
  --navbar-h: 66px;
}

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-2);
  color: var(--ink);
  padding-top: var(--navbar-h);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

/* ─────────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow .25s ease;
  padding: 0;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand img { height: 30px; width: auto; }

.navbar-brand span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -.01em;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-3) !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: var(--r-sm);
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  background: var(--blue-faint);
  color: var(--blue) !important;
}

.nav-link.btn-signin {
  background: var(--navy);
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  font-weight: 600;
}

.nav-link.btn-signin:hover {
  background: var(--navy-mid);
  color: #fff !important;
}

.navbar-toggler {
  border: none !important;
  color: var(--ink) !important;
  padding: 6px;
}

@media (max-width: 768px) {

  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: none !important;
  }

  .navbar-collapse.collapsing {
    background: #fff;
  }

  .navbar-collapse .nav-link {
    color: #0a2540 !important;
    background: #fff;
    margin: 4px 0;
    border-radius: 6px;
  }

  .navbar-collapse .nav-link:hover {
    background: #f4f7ff;
    color: #0a66ff !important;
  }

}
/* ─────────────────────────────────────────────────────────────
   HERO (home page)
───────────────────────────────────────────────────────────── */
.hero {
  min-height: 110vh;
  background:
    linear-gradient(150deg, rgba(8,20,42,.82) 0%, rgba(22,50,96,.62) 100%),
    url('../images/bg3.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
  position: relative;
}

/* subtle animated grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-vivid);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  background: rgba(240,165,0,.12);
  border: 1px solid rgba(240,165,0,.25);
  padding: 4px 12px;
  border-radius: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}

.hero-headline em {
  color: var(--gold-vivid);
  font-style: italic;
}

.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 520px;
}

/* ─────────────────────────────────────────────────────────────
   SEARCH CARD (used on hero + search results modify panel)
───────────────────────────────────────────────────────────── */
.search-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  margin-top: 2.25rem;
  position: relative;
  z-index: 10;
  border: 1px solid rgba(255,255,255,.6);
}

/* trip tabs */
.trip-tabs {
  display: inline-flex;
  background: var(--bg);
  border-radius: var(--r-sm);
  padding: 3px;
  gap: 2px;
  margin-bottom: 1.35rem;
  border: 1px solid var(--border);
}

.trip-tab {
  border: none;
  background: transparent;
  padding: .4rem 1.25rem;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-body);
}

.trip-tab.active {
  background: var(--surface);
  color: var(--navy);
  box-shadow: var(--shadow-xs);
}

/* field wrappers */
/* =========================
   LABEL
========================= */
.field-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

/* =========================
   FIELD WRAPPER
========================= */
.field-input {
  position: relative;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--bg);

  transition: all .2s ease;
}

/* hover effect */
.field-input:hover {
  border-color: rgba(26, 86, 219, 0.35);
  box-shadow: 0 6px 18px rgba(12, 31, 63, 0.06);
}

/* focus effect */
.field-input:focus-within {
  border-color: var(--blue);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}

/* =========================
   ICON
========================= */
.field-input .fi-icon,
.field-input i {
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}

/* =========================
   INPUT
========================= */
.field-input input,
.field-input .field-input-inner {
  flex: 1;
  width: 100%;
  min-width: 0;

  border: none !important;
  outline: none !important;
  background: transparent;

  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}

/* placeholder */
.field-input input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* =========================
   ERROR TEXT
========================= */
.field-error {
  display: block;
  font-size: .72rem;
  color: var(--danger);
  margin-top: 4px;
  font-weight: 500;
}
/* Card structure */
.fbf-airline-detail {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}

/* Card body — flex grow so CTA sticks to bottom */
.fbf-airline-body {
  padding: 20px 22px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* CTA button — always at bottom */
.fbf-link-action {
  display: block;
  background: #2563eb;
  color: #fff !important;
  text-align: center;
  padding: 13px 18px;
  font-size: .88rem;
  font-weight: 700;
  border-radius: 10px;
  margin: 0 22px 22px;
  text-decoration: none;
  transition: background .18s;
}
.fbf-link-action:hover { background: #1d4ed8; }

/* ── CARD ── */
.fbf-airline-detail {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  border: 1px solid #e9ecef;
}

/* ── CARD HEAD ── */
.fbf-airline-detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px;
  color: #fff;
}
.fbf-airline-detail-head img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.fbf-airline-detail-head > div { flex: 1; }
.fbf-airline-detail-head h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 3px;
  line-height: 1.2;
}
.fbf-airline-detail-head p {
  font-size: .82rem;
  margin: 0;
  opacity: .88;
}
.fbf-airline-code {
  font-size: .9rem;
  font-weight: 800;
  background: rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 6px 13px;
  letter-spacing: .06em;
  flex-shrink: 0;
}

/* ── BRAND COLOURS ── */
[data-airline="AA"] .fbf-airline-detail-head { background: #c8102e; }
[data-airline="DL"] .fbf-airline-detail-head { background: #003087; }
[data-airline="UA"] .fbf-airline-detail-head { background: #1e3a6e; }
[data-airline="WN"] .fbf-airline-detail-head { background: #f5821f; }
[data-airline="B6"] .fbf-airline-detail-head { background: #006db7; }
[data-airline="AS"] .fbf-airline-detail-head { background: #0f6bb1; }
[data-airline="F9"] .fbf-airline-detail-head { background: #00843d; }
[data-airline="NK"] .fbf-airline-detail-head { background: #ffcc00; color: #1a1a1a; }
[data-airline="NK"] .fbf-airline-code { background: rgba(0,0,0,.12); color: #1a1a1a; }

/* ── CARD BODY ── */
.fbf-airline-body {
  padding: 22px 24px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── DESC ── */
.fbf-airline-desc {
  font-size: .92rem;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ── STATS ── */
.fbf-airline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}
.fbf-airline-stats > div {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid #f0f0f0;
}
.fbf-airline-stats strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 2px;
}
.fbf-airline-stats span {
  font-size: .7rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── CHECKLIST ── */
.fbf-check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.fbf-check-list li {
  font-size: .88rem;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fbf-check-list li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

/* ── CTA BUTTON ── */
.fbf-link-action {
  display: block;
  background: #2563eb;
  color: #fff !important;
  text-align: center;
  padding: 14px 20px;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 10px;
  margin: 0 24px 24px;
  text-decoration: none;
  transition: background .18s;
}
.fbf-link-action:hover { background: #1d4ed8; }
/* ── Airlinee css end ── */

/* =========================
   SWAP BUTTON (more premium)
========================= */
.swap-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  margin: 5px auto 0;

  transition: all .25s ease;
  box-shadow: 0 6px 16px rgba(217,119,6,.35);
}

.swap-btn:hover {
  transform: rotate(180deg) scale(1.05);
}

/* =========================
   SEARCH BUTTON (premium)
========================= */
.btn-search {
  width: 100%;
  height: 48px;

  background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
  color: #fff;

  border-radius: var(--r);
  border: none;

  font-weight: 700;
  font-size: .95rem;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  transition: all .25s ease;

  box-shadow: 0 10px 22px rgba(29,78,216,.25);
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(29,78,216,.35);
}
/* Autocomplete dropdowns */
#fromCitylist,
#toCitylist,
#prefferedAirlineList {
  position: absolute;
  width: 100%;
  background: var(--surface);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 9999;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  top: calc(100% + 6px);
  left: 0;
}

.ac-group-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--subtle);
  padding: 8px 14px 4px;
  background: var(--bg);
}

.ac-item {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-light);
  transition: background .1s;
}

.ac-item:hover,
.ac-item.active { background: var(--blue-faint); }

.ac-main { font-size: .88rem; color: var(--ink); }
.ac-sub  { font-size: .75rem; color: var(--muted); margin-top: 1px; }
.ac-empty { padding: 12px 14px; color: var(--muted); font-size: .85rem; text-align: center; }

/* Traveller dropdown */
#travellerBox { cursor: pointer; }

.trav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 310px;
  max-width: 92vw;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 1rem;
  z-index: 99999;
  animation: fadeUp .2s ease;
}

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

.trav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .85rem;
}

.trav-row strong { font-size: .88rem; color: var(--ink); font-weight: 700; }
.trav-row small  { font-size: .72rem; color: var(--muted); }

.trav-row button {
  width: 30px; height: 30px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}

.trav-row button:hover {
  background: var(--blue-faint);
  border-color: var(--blue);
  color: var(--blue);
}

#travellerError {
  font-size: .75rem;
  color: var(--danger);
  margin-top: 6px;
  display: none;
}

/* Airline tags */
.airline-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--r-sm);
  padding: 3px 9px;
  font-size: .76rem;
  font-weight: 600;
  margin: 3px 3px 3px 0;
  border: 1px solid rgba(26,86,219,.18);
}

.airline-tag-remove {
  cursor: pointer;
  font-size: .65rem;
  color: var(--muted);
  line-height: 1;
  transition: color .15s;
}
.airline-tag-remove:hover { color: var(--danger); }

/* Non-stop checkbox */
.form-check-input:checked {
  background-color: var(--navy);
  border-color: var(--navy);
}

/* ─────────────────────────────────────────────────────────────
   STATS BAR (home page)
───────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  padding: 1.4rem 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,.07), transparent 65%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  padding: .5rem .75rem;
  color: #fff;
  position: relative;
  transition: transform .25s ease;
}

.stat-item:hover { transform: translateY(-3px); }

.stat-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-vivid);
  font-weight: 700;
  line-height: 1;
}

.stat-num span { color: #fff; font-size: .9rem; }

.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.68);
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
}

.stat-label i { color: var(--gold-vivid); }

.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,255,255,.12);
}

.col-md-3:last-child .stat-item::after { display: none; }

/* ─────────────────────────────────────────────────────────────
   SECTION HEADINGS
───────────────────────────────────────────────────────────── */
.sec-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .35rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.sec-sub {
  font-size: .88rem;
  color: var(--muted);
  margin-top: .3rem;
}

/* ─────────────────────────────────────────────────────────────
   DESTINATION CARDS (home page)
───────────────────────────────────────────────────────────── */
.dest-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.dest-card img {
  width: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.dest-card:hover img { transform: scale(1.07); }

.dest-info {
  position: absolute;
  inset: 0;
  top: auto;
  background: linear-gradient(transparent 25%, rgba(8,20,42,.88));
  padding: 3rem 1.25rem 1.1rem;
  color: #fff;
}

.dest-city {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dest-price {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 3px;
}

.dest-price strong {
  color: var(--gold-vivid);
  font-size: .92rem;
}

.dest-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(212,146,42,.4);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,.88);
}

footer p {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  margin: 0;
}

footer a {
  font-size: .82rem;
  color: rgba(255,255,255,.48);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}

footer a:hover { color: #fff; }

footer a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .25s ease;
}

footer a:hover::after { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   SEARCH RESULTS — Page Shell
───────────────────────────────────────────────────────────── */
.sr-page {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--navbar-h));
  overflow: hidden;
  margin-top: 0;
}

/* sticky search bar */
.sr-search-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  flex-shrink: 0;
  z-index: 100;
  box-shadow: var(--shadow-xs);
}

.sr-search-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 58px;
  flex-wrap: wrap;
}

.sr-route {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sr-route-iata {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .05em;
}

.sr-route-arrow { color: var(--muted); font-size: 13px; }

.sr-route-meta { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }

.sr-route-pill {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 11px;
  color: var(--muted);
  padding: 3px 10px;
  white-space: nowrap;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sr-modify-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink-3);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-body);
}

.sr-modify-btn:hover { background: var(--bg); border-color: #c0cad8; }

.sr-modify-panel {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 1.25rem 0;
}

/* ── Body layout ── */
.sr-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────
   SIDEBAR — Filters
───────────────────────────────────────────────────────────── */
.sr-sidebar {
  width: 276px;
  min-width: 276px;
  background: var(--surface);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex-shrink: 0;
  position: relative;
}

.sr-sidebar::-webkit-scrollbar { width: 3px; }
.sr-sidebar::-webkit-scrollbar-track { background: transparent; }
.sr-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.sr-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border-light);
}

.sr-sidebar-title {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.sr-reset-btn {
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  transition: opacity .15s;
}

.sr-reset-btn:hover { text-decoration: underline; }

.sr-filter-count {
  font-size: .7rem;
  color: var(--subtle);
  margin-top: -.2rem;
}

.sr-filter-section { display: flex; flex-direction: column; gap: .4rem; }

.sr-filter-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-3);
}

/* Stops */
.stop-filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.stop-filter-row label {
  font-size: .82rem;
  color: var(--ink);
  cursor: pointer;
  margin: 0;
  font-weight: 500;
}

.stop-filter-row .stop-price {
  font-size: .72rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* Time slots */
.sr-time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }

.time-slot-btn {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 7px 2px 6px;
  background: var(--bg);
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  transition: all .15s;
  line-height: 1.3;
  font-family: var(--font-body);
}

.time-slot-btn i { font-size: 13px; display: block; margin-bottom: 3px; color: var(--muted); }

.time-slot-btn.active {
  border-color: var(--blue);
  background: var(--blue-light);
  color: var(--blue);
}

.time-slot-btn.active i { color: var(--blue); }

/* Airlines in sidebar */
.sr-airline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}

.sr-airline-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--ink);
  cursor: pointer;
  margin: 0;
  font-weight: 500;
}

.sr-airline-row .sr-price-hint {
  font-size: .68rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* Price slider */
.sr-price-range-labels {
  display: flex;
  justify-content: space-between;
}

.sr-price-range-labels small {
  font-size: .72rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

#priceSliderWrap {
  position: relative;
  height: 22px;
  margin: 6px 0;
}

#priceSliderWrap input[type=range] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  height: 4px;
  -webkit-appearance: none;
  background: transparent;
  top: 8px;
}

#priceSliderWrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
  pointer-events: all;
  border: 2px solid #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,.22);
}

#priceSliderWrap input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

#priceValue {
  font-size: .7rem;
  color: var(--muted);
  text-align: center;
  font-family: var(--font-mono);
  margin-top: 3px;
}

.sr-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: .15rem 0;
}

/* sidebar skeleton */
#sidebarSkeleton {
  position: absolute;
  inset: 0;
  background: var(--surface);
  padding: 1rem;
  z-index: 5;
}

/* ─────────────────────────────────────────────────────────────
   RESULTS COLUMN
───────────────────────────────────────────────────────────── */
.sr-results-col {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.sr-results-col::-webkit-scrollbar { width: 4px; }
.sr-results-col::-webkit-scrollbar-track { background: transparent; }
.sr-results-col::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Sort tabs */
.flight-sort-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.flight-sort-tab {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: 11px 16px;
  text-align: left;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-body);
}

.flight-sort-tab:hover { border-color: var(--navy); box-shadow: var(--shadow-xs); }

.flight-sort-tab.active {
  border-color: var(--navy);
  background: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(12,31,63,.2);
}

.flight-sort-tab.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 16px; height: 16px;
  background: var(--navy-deep);
  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.flight-sort-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}

.flight-sort-tab.active .flight-sort-label { color: rgba(255,255,255,.75); }

.flight-sort-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 5px;
  font-family: var(--font-mono);
  letter-spacing: -.02em;
}

.flight-sort-tab.active .flight-sort-price { color: #fff; }

/* Alert box */
#alertBox { margin-bottom: .65rem; }

/* ─────────────────────────────────────────────────────────────
   FLIGHT CARDS (search results)
───────────────────────────────────────────────────────────── */
.fc-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.35rem;
  margin-bottom: .75rem;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}

.fc-card:hover {
  box-shadow: var(--shadow);
  border-color: #c8d4e8;
  transform: translateY(-1px);
}

/* top row */
.fc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
  flex-wrap: wrap;
  gap: 8px;
}

.fc-airline { display: flex; align-items: center; gap: 10px; }

.fc-airline-logo {
  width: 33px; height: 33px;
  object-fit: contain;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-light);
  padding: 2px;
  background: #fff;
}

.fc-airline-name { font-size: .85rem; font-weight: 700; color: var(--ink); }
.fc-airline-code { font-size: .72rem; color: black ; margin-top: 1px; }

/* badges */
/* badges */

.fc-badges { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

.fc-badge-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px;
  border-radius: 8px;
  background: #f5f7fa;
}
.fc-via-click {
    cursor: pointer;              /* Pointer on hover */
    color: #0d6efd;               /* Bootstrap primary blue */  /* Underline to indicate clickable */
    transition: color 0.2s ease, transform 0.1s ease;
}

.fc-via-click:hover {
    color: #0a58ca;               /* Darker on hover */
    transform: translateY(-1px);  /* Slight lift effect */
}
.fc-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
  font-family: var(--font-body);
}

.fc-badge--success { background: var(--success-light); color: var(--success); }
.fc-badge--danger  { background: var(--danger-light);  color: var(--danger); }
.fc-badge--warning { background: var(--warn-light);    color: var(--warn); }
.fc-badge--neutral { background: #f1f5f9; color: var(--muted); border: 1px solid var(--border); }

/* stop popup */
.fc-stop-wrapper { position: relative; }
.fc-stop-toggle { border: none; cursor: pointer; transition: all .15s; }
.fc-stop-toggle:hover { background: #f1f5f9 !important; }

.fc-stop-collapse {
  position: absolute;
  top: 38px; right: 0;
  z-index: 30;
  width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

.fc-stop-item:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px; margin-bottom: 8px;
}

.fc-stop-city    { font-size: .82rem; font-weight: 700; color: var(--ink); }
.fc-stop-airport { font-size: .7rem; color: var(--muted); margin-top: 2px; }
.fc-stop-layover { font-size: .7rem; color: var(--blue); margin-top: 4px; font-weight: 600; }

/* leg */
.fc-leg { margin-bottom: 0; }
.fc-leg-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 7px;
}

/* route grid */
.fc-route {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,155px) minmax(0,1fr);
  align-items: center;
  gap: 8px;
}

.fc-endpoint { display: flex; flex-direction: column; }
.fc-endpoint--right { align-items: flex-end; text-align: right; }

.fc-time {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  font-family: var(--font-mono);
}

.fc-date {
  font-size: .7rem;
  color: #000;
  margin-top: 3px;
}
.fc-airport { display: flex; align-items: flex-start; gap: 4px; margin-top: 4px; }
.fc-airport-code-row { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.fc-iata {
  font-size: .75rem;
  font-weight: 700;
  color: #000;
  letter-spacing: .04em;
}
.fc-city-name {
  font-size: .7rem;
  color: #000;
}
.fc-airport-name {
  font-size: .65rem;
  color: black;
  margin-top: 1px;
  line-height: 1.3;
}
.fc-terminal {
  font-size: .6rem; color: black;
  background: #f4f4f4;
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 1px 4px;
}

/* middle */
.fc-middle { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.fc-duration {
  font-size: .72rem;
  color: black;
  font-weight: 600;
  font-family: var(--font-mono);
}

.fc-path-line { display: flex; align-items: center; width: 100%; gap: 4px; }
.fc-path-line-bar { flex: 1; height: 1px; background: var(--border); }
.fc-plane-icon { width: 14px; height: 14px; color: var(--subtle); flex-shrink: 0; }
.fc-via { font-size: .65rem; color: black;
text-align: center; min-height: 13px; }

.fc-cabin-info {
  font-size: .65rem;
  color: black;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fc-dot { color: var(--border); }

/* card divider between legs */
.fc-divider { border: none; border-top: 1px dashed var(--border); margin: .9rem 0; }

/* bottom row */
.fc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 10px;
}

.fc-price { display: flex; align-items: baseline; gap: 3px; }
.fc-currency {
  font-size: .78rem;
  color: black;
  font-weight: 600;
}
.fc-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  font-family: var(--font-mono);
}

.fc-price-sub {
  font-size: .65rem;
  color: black;
  margin-top: 2px;
}

.fc-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: all .15s;
}

.fc-btn--secondary {
  background: var(--bg);
  color: var(--muted);
  border: 1.5px solid var(--border);
}

.fc-btn--secondary:hover { background: var(--border-light); }

.fc-btn--primary {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  color: #fff;
  box-shadow: 0 2px 8px rgba(12,31,63,.28);
}

.fc-btn--primary:hover {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: 0 4px 14px rgba(12,31,63,.35);
  transform: translateY(-1px);
}

/* Details panel */
.fc-details-panel { margin-top: .9rem; }

.fc-details-section {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: .9rem;
  margin-bottom: .6rem;
}

.fc-details-title {
  font-size: .68rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.fc-details-leg-label {
  font-size: .65rem;
  font-weight: 800;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: .5rem 0 .35rem;
}

.fc-segment-row {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: .65rem .85rem;
  margin-bottom: .4rem;
}

.fc-segment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3px; }
.fc-segment-flight { font-size: .82rem; font-weight: 700; color: var(--ink); font-family: var(--font-mono); }
.fc-segment-aircraft { font-size: .7rem; color: var(--subtle); display: flex; align-items: center; gap: 4px; }
.fc-segment-route {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--ink);
  margin-bottom: 3px; font-family: var(--font-mono);
}

.fc-segment-time { color: var(--muted); font-weight: 400; }
.fc-segment-arrow { color: var(--border); }
.fc-segment-meta { display: flex; align-items: center; gap: 5px; font-size: .7rem; color: var(--muted); flex-wrap: wrap; }

/* Fare table */
.fc-fare-table { width: 100%; border-collapse: collapse; font-size: .78rem; }
.fc-fare-table th {
  text-align: left; font-weight: 700; color: var(--muted);
  font-size: .65rem; text-transform: uppercase; letter-spacing: .06em;
  padding: 0 0 6px; border-bottom: 1px solid var(--border);
}
.fc-fare-table td { padding: 6px 0; color: var(--ink); border-bottom: 1px solid var(--border-light); }
.fc-fare-table tfoot td {
  font-weight: 700; color: var(--navy);
  border-bottom: none; padding-top: 8px;
  font-size: .88rem; font-family: var(--font-mono);
}

/* Load more */
#loadMoreBtn {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 10px 28px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity .15s, transform .15s;
  box-shadow: 0 2px 10px rgba(212,146,42,.35);
}

#loadMoreBtn:hover { opacity: .9; transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────────────
   SKELETON
───────────────────────────────────────────────────────────── */
.skeleton {
  position: relative;
  overflow: hidden;
  background: #e8edf4;
  border-radius: var(--r-sm);
  display: block;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer { 100% { transform: translateX(100%); } }

.skeleton-circle    { width: 32px; height: 32px; border-radius: 50%; }
.skeleton-circle-lg { width: 44px; height: 44px; border-radius: 50%; }
.skeleton-text-lg   { height: 15px; border-radius: 4px; }
.skeleton-text-sm   { height: 11px; border-radius: 4px; }
.skeleton-text-xs   { height: 9px;  border-radius: 4px; }
.skeleton-badge     { height: 24px; border-radius: 20px; }
.skeleton-time      { height: 28px; border-radius: 4px; }
.skeleton-duration  { height: 12px; border-radius: 4px; }
.skeleton-line      { height: 4px;  border-radius: 20px; }
.skeleton-price     { height: 30px; border-radius: 4px; }
.skeleton-btn       { height: 36px; border-radius: 8px; }

.flight-skeleton-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.35rem;
  margin-bottom: .75rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flight-skeleton-top   { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.flight-skeleton-route { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.flight-skeleton-middle { flex: 1; padding: 0 20px; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.flight-skeleton-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: .9rem; border-top: 1px solid var(--border-light); }

.filter-skeleton-wrap { display: flex; flex-direction: column; gap: 12px; }

/* ─────────────────────────────────────────────────────────────
   BOOKING PAGE
───────────────────────────────────────────────────────────── */
.booking-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 3rem 0;
  color: #fff;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.booking-header::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.booking-header::after {
  content: '';
  position: absolute;
  left: -40px; bottom: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.booking-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.booking-header p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}

/* Shared cards */
.main-card,
.passenger-card,
.sidebar-card,
.side-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 9px;
}

.card-title i { color: var(--gold); }

/* Flight box in booking page */
.flight-box {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.35rem;
  margin-bottom: 1.25rem;
  transition: .25s ease;
  background: var(--surface);
}

.flight-box:hover {
  box-shadow: var(--shadow-sm);
  border-color: #c8d4e8;
}

.airline-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-faint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 20px;
  border: 1px solid var(--blue-light);
}

.airline-name {
  font-size: .88rem;
  font-weight: 700;
  margin-top: 8px;
  color: var(--ink);
}

.flight-time {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
}

.airport-code {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 3px;
  color: var(--ink-3);
}

.flight-date { font-size: .78rem; color: var(--muted); }

.flight-line {
  position: relative;
  text-align: center;
  margin-top: 10px;
}

.flight-line::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 10px;
  border-top: 2px dashed var(--border);
}

.flight-duration {
  position: relative;
  z-index: 2;
  background: var(--surface);
  padding: 0 12px;
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.stops-badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 30px;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 700;
}

/* Baggage box */
.baggage-box {
  margin-top: 1.1rem;
  background: var(--bg);
  border-radius: var(--r);
  padding: 1rem;
  border: 1px solid var(--border-light);
  font-size: .85rem;
}

.baggage-box i { color: var(--blue); margin-right: 5px; }

/* Booking sidebar */
.sidebar-card.timer-card {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  text-align: center;
  position: sticky;
  top: calc(var(--navbar-h) + 16px);
}

.timer-card h5 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: .5rem;
}

.timer-card h1 {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-vivid);
  margin: .25rem 0;
  letter-spacing: -.03em;
}

.timer-card p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* Fare summary */
.fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .85rem;
  font-size: .88rem;
  color: var(--ink-3);
}

.fare-row strong { color: var(--ink); font-weight: 700; }

.fare-total {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
}

/* Why book with us */
.side-card { position: sticky; top: calc(var(--navbar-h) + 16px + 320px + 24px); }

.heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.why-list { list-style: none; padding: 0; margin: 0; }

.why-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  font-size: .85rem;
  color: var(--ink-3);
  font-weight: 500;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--success);
  font-weight: 800;
}

.secure-text {
  font-size: .76rem;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 12px;
}

/* Passenger form */
.passenger-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.15rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.passenger-heading::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--gold);
  border-radius: 2px;
}

label {
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink-3);
  display: inline-block;
}

.form-control,
.form-select {
  height: 48px;
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  padding: .55rem .85rem;
  font-size: .875rem;
  font-family: var(--font-body);
  color: var(--ink);
  box-shadow: none !important;
  transition: border-color .15s, box-shadow .15s;
  background: var(--bg);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12,31,63,.1) !important;
  background: var(--surface);
  outline: none;
}

/* Pay button */
.btn-pay {
  height: 52px;
  border: none;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: .25s ease;
  box-shadow: 0 4px 16px rgba(12,31,63,.28);
}

.btn-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,31,63,.35);
}

/* ── Expiry modal ── */
.expiry-modal {
  position: fixed;
  inset: 0;
  background: rgba(8,20,42,.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(6px);
}

.expiry-content {
  width: 420px;
  max-width: 92%;
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

.expiry-content h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem 0 .5rem;
  color: var(--navy);
}

.expiry-content p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.expiry-content button {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: opacity .2s;
}

.expiry-content button:hover { opacity: .88; }

/* ── Booking form inline errors ── */
.is-invalid { border-color: var(--danger) !important; }
.invalid-feedback {
  font-size: .72rem;
  color: var(--danger);
  font-weight: 500;
  margin-top: 3px;
}

/* ─────────────────────────────────────────────────────────────
   BOOKING SUCCESS PAGE
───────────────────────────────────────────────────────────── */
.booking-success-wrapper {
  max-width: 1080px;
  margin: auto;
  padding: 3rem 0 4rem;
}

.success-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: var(--r-2xl);
  padding: 3rem 3.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.75rem;
  position: relative;
  overflow: hidden;
}

.success-hero::before {
  content: '';
  position: absolute;
  right: -70px; top: -70px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.success-hero::after {
  content: '';
  position: absolute;
  left: -40px; bottom: -50px;
  width: 180px; height: 180px;
  background: rgba(212,146,42,.08);
  border-radius: 50%;
}

.success-check {
  width: 90px; height: 90px;
  min-width: 90px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  color: var(--gold-vivid);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2);
}

.success-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--gold-vivid);
}

.success-content h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: .75rem;
  line-height: 1.2;
}

.success-content p {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 680px;
}

/* Success summary card */
.booking-summary-card,
.passenger-section {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}

.summary-header,
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.summary-header h4,
.section-header h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}

.booking-id {
  background: var(--bg);
  padding: 8px 14px;
  border-radius: var(--r);
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
}

.booking-id span { color: var(--navy); font-weight: 800; }

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.summary-item {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border-light);
}

.summary-item label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.summary-item div {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-word;
}

/* Passenger table */
.passenger-table { margin: 0; vertical-align: middle; }

.passenger-table thead th {
  background: var(--bg);
  border: none;
  padding: 14px 16px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  font-weight: 800;
}

.passenger-table tbody td {
  padding: 16px;
  border-color: var(--border-light);
  font-size: .88rem;
  color: var(--ink);
}

.passenger-count {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .82rem;
}

.passenger-name { font-weight: 700; }

.gender-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
}

/* Success actions */
.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: .5rem;
}

.btn-home,
.btn-print {
  height: 50px;
  padding: 0 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: .9rem;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-home {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  color: #fff;
  box-shadow: 0 4px 16px rgba(12,31,63,.25);
}

.btn-home:hover { opacity: .9; transform: translateY(-1px); color: #fff; }

.btn-print {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-print:hover { background: var(--bg); }

/* ─────────────────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────────────────── */
.cursor-pointer { cursor: pointer; }
.hide { display: none !important; }
.field-label.invisible { visibility: hidden; }

/* Bootstrap overrides for form elements */
.form-check-label { font-size: .85rem; color: var(--ink-3); font-weight: 500; }

.btn.btn-warning { background: var(--gold); border-color: var(--gold); color: #fff; font-weight: 700; }
.btn.btn-light   { background: var(--bg); border-color: var(--border); color: var(--ink); font-weight: 600; }

/* Alert overrides */
.alert { border-radius: var(--r); font-size: .88rem; }

/* =========================================================
   INLINE SEARCH BAR
========================================================= */

.search-card-inline {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.search-form-inline {
    width: 100%;
}

.search-inline-top {
    margin-bottom: 16px;
}

.inline-trip-tabs {
    display: inline-flex;
    gap: 6px;
}

.search-inline-wrap {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex-wrap: nowrap;
}

/* FIELDS */

.inline-field {
    flex: 1;
    min-width: 150px;
}

.inline-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* INPUT */

.search-card-inline .field-input {
    height: 50px;
    border-radius: 14px;
}

.search-card-inline .field-input input {
    height: 50px;
    font-size: 14px;
    font-weight: 500;
}

/* SWAP */

.inline-swap {
    flex: 0 0 auto;
    padding-bottom: 2px;
}

.search-card-inline .swap-btn {
    width: 46px;
    height: 46px;
}

/* SEARCH BUTTON */

.inline-search-btn {
    flex: 0 0 180px;
}

.inline-search-btn .btn-search {
    width: 100%;
    height: 50px;
    border-radius: 14px;
}

/* TRAVELLER DROPDOWN */

.search-card-inline .trav-dropdown {
    top: calc(100% + 10px);
    right: 0;
}

/* RESPONSIVE */

@media (max-width: 1400px) {

    .search-inline-wrap {
        flex-wrap: wrap;
    }

    .inline-field {
        min-width: calc(33.33% - 10px);
    }

}

@media (max-width: 992px) {

    .inline-field {
        min-width: calc(50% - 10px);
    }

    .inline-search-btn {
        flex: 1 1 100%;
    }

}

@media (max-width: 768px) {

    .search-card-inline {
        padding: 16px;
    }

    .search-inline-wrap {
        flex-direction: column;
        gap: 12px;
    }

    .inline-field,
    .inline-search-btn {
        width: 100%;
        min-width: 100%;
    }

    .inline-swap {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-bottom: 0;
    }

}


/* ─────────────────────────────────────────────────────────────
   MOBILE — Traveller dropdown fixed
───────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .trav-dropdown {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 360px;
    z-index: 99999;
    border-radius: var(--r-xl);
  }


}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Search Results
───────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .sr-page { height: auto; overflow: visible; }
  .sr-body { flex-direction: column; overflow: visible; }

  .sr-sidebar {
    width: 100%; min-width: 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
    overflow: visible;
    max-height: none;
  }

  .sr-results-col { overflow: visible; padding: 1rem; }
  .flight-sort-price { font-size: 1rem; }
}

@media (max-width: 640px) {
  .sr-search-bar { padding: 0 .75rem; }
  .sr-search-summary { height: auto; padding: .65rem 0; }
  .sr-route-iata { font-size: 14px; }

  .flight-sort-tabs { gap: 6px; }
  .flight-sort-tab  { padding: 9px 8px; }
  .flight-sort-label { font-size: .72rem; }
  .flight-sort-price { font-size: .9rem; margin-top: 3px; }
  .flight-sort-tab.active::after { display: none; }

  .fc-card { padding: .85rem; }
  .fc-route { grid-template-columns: 1fr; gap: 10px; }
  .fc-endpoint--right { align-items: flex-start; text-align: left; }
  .fc-bottom { flex-direction: column; align-items: flex-start; }
  .fc-actions { width: 100%; }
  .fc-btn { flex: 1; justify-content: center; }
  .fc-time { font-size: 1.1rem; }
  .fc-amount { font-size: 1.2rem; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE — Booking & Success
───────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .sidebar-card,
  .side-card { position: relative; top: 0; }
}

@media (max-width: 768px) {
  .booking-header { padding: 2rem 1rem; }

  .success-hero {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }

  .success-hero::before { display: none; }
  .success-content h1 { font-size: 1.5rem; }
  .summary-grid { grid-template-columns: 1fr; }

  .success-actions { flex-direction: column; }
  .btn-home, .btn-print { width: 100%; }

  .flight-time { font-size: 1.3rem; }
  .airport-code { font-size: .95rem; }

  .main-card, .passenger-card, .sidebar-card, .side-card { padding: 1.25rem; }
}

.mobile-filter-wrap {

	display: flex;

	justify-content: flex-start;

	margin-bottom: 12px;
}

.mobile-filter-icon {

	width: 42px;

	height: 42px;

	border: none;

	border-radius: 12px;

	background: #111827;

	color: #fff;

	display: flex;

	align-items: center;

	justify-content: center;

	box-shadow:
		0 4px 14px rgba(0,0,0,.12);

	transition: all .25s ease;
}

.mobile-filter-icon i {

	font-size: 20px;
}

.mobile-filter-icon:hover {

	background: #1f2937;
}

.mobile-filter-icon:active {

	transform: scale(.95);
}

/* ============================================================
   FlightByFare-inspired redesign layer
   Scope: views, shared components, cards, forms, footer only.
   ============================================================ */

:root {
  --fbf-blue-950: #172554;
  --fbf-blue-900: #1e3a8a;
  --fbf-blue-800: #1e40af;
  --fbf-blue-700: #1d4ed8;
  --fbf-blue-600: #2563eb;
  --fbf-indigo: #4f46e5;
  --fbf-red: #dc2626;
  --fbf-green: #16a34a;
  --fbf-amber: #f59e0b;
  --fbf-slate: #111827;
  --fbf-muted: #6b7280;
  --fbf-line: #e5e7eb;
  --fbf-soft: #f8fafc;
  --fbf-blue-soft: #eff6ff;
  --fbf-radius: 16px;
  --fbf-radius-sm: 10px;
  --fbf-shadow: 0 12px 30px rgba(17, 24, 39, .08);
  --fbf-shadow-lg: 0 22px 60px rgba(30, 58, 138, .20);
  --font-display: Inter, "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: Inter, "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --navbar-h: 72px;
}

html { scroll-padding-top: 92px; }

body {
  background: var(--fbf-soft);
  color: var(--fbf-slate);
  font-family: var(--font-body);
  letter-spacing: 0;
}

.fbf-navbar.navbar {
  min-height: var(--navbar-h);
  height: auto;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(229, 231, 235, .9);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
  padding: .55rem 0;
}

.fbf-brand {
  gap: .65rem;
  color: var(--fbf-blue-900);
}

.fbf-brand img {
  width: 50px;
  height: 34px;
  object-fit: contain;
}

.fbf-brand span {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fbf-blue-900);
  letter-spacing: 0;
}

.fbf-call {
  align-items: center;
  gap: .45rem;
  margin-left: 1.25rem;
  color: var(--fbf-blue-700);
  background: var(--fbf-blue-soft);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.fbf-menu-btn {
  color: var(--fbf-blue-900) !important;
  background: var(--fbf-blue-soft);
  border-radius: 10px;
}

.fbf-menu-btn i { font-size: 1.35rem; }

.fbf-navbar .nav-link {
  gap: .38rem;
  color: #374151 !important;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 10px;
  padding: .55rem .8rem !important;
}

.fbf-navbar .nav-link:hover {
  color: var(--fbf-blue-700) !important;
  background: var(--fbf-blue-soft);
}

.fbf-navbar .btn-signin {
  color: #fff !important;
  background: var(--fbf-blue-600);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .24);
}

.fbf-navbar .btn-signin:hover {
  color: #fff !important;
  background: var(--fbf-blue-700);
}

.fbf-home { background: var(--fbf-soft); }

.fbf-hero.hero {
  min-height: auto;
  padding: 5rem 0 4.25rem;
  background:
    linear-gradient(120deg, rgba(30, 58, 138, .94), rgba(37, 99, 235, .84) 52%, rgba(79, 70, 229, .82)),
    url('../images/bg3.jpg') center/cover no-repeat;
}

.fbf-hero::before { display: none; }

.fbf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 2rem;
  align-items: center;
}

.fbf-hero-copy { color: #fff; }

.hero-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .42rem .8rem;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #dbeafe;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-headline {
  max-width: 760px;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 1.08rem;
}

.fbf-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
}

.fbf-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: .45rem .7rem;
  font-size: .86rem;
  font-weight: 700;
}

.fbf-hero-points i { color: #86efac; }

.fbf-search-wrap { width: 100%; }

.search-card {
  background: #fff;
  border: 1px solid rgba(191, 219, 254, .95);
  border-radius: 20px;
  box-shadow: var(--fbf-shadow-lg);
  padding: 1.2rem;
}

.search-card-head,
.search-inline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-kicker,
.fbf-section-kicker {
  display: inline-flex;
  color: black;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.search-card-head h2 {
  margin: .12rem 0 0;
  color: var(--fbf-slate);
  font-size: 1.35rem;
  font-weight: 900;
}

.trip-tabs {
  display: inline-flex;
  gap: .25rem;
  padding: .25rem;
  background: #f3f4f6;
  border: 1px solid var(--fbf-line);
  border-radius: 999px;
}

.trip-tab {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4b5563;
  padding: .45rem .9rem;
  font-size: .85rem;
  font-weight: 800;
}

.trip-tab.active {
  background: var(--fbf-blue-600);
  color: #fff;
  box-shadow: 0 8px 16px rgba(37, 99, 235, .22);
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
  gap: .8rem;
  align-items: end;
}

.search-field {
  min-width: 0;
}

.search-field-lg { min-height: 88px; }

.field-label,
.inline-field label {
  display: block;
  margin-bottom: .38rem;
  color: #4b5563;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.field-input,
.preferred-airline-wrap {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 12px;
  padding: 0 .85rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field-input:focus-within,
.preferred-airline-wrap:focus-within {
  border-color: var(--fbf-blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.field-input input,
.preferred-airline-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fbf-slate);
  font-size: .96rem;
  font-weight: 700;
}

.field-input input::placeholder,
.preferred-airline-wrap input::placeholder {
  color: #9ca3af;
  font-weight: 600;
}

.fi-icon,
.preferred-airline-wrap i {
  color: var(--fbf-blue-600);
  font-size: 1rem;
  flex: 0 0 auto;
}

.search-swap,
.inline-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding-top: 1.3rem;
}

.swap-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 50%;
  background: var(--fbf-blue-soft);
  color: var(--fbf-blue-700);
  box-shadow: none;
}

.swap-btn:hover {
  background: var(--fbf-blue-600);
  color: #fff;
}

.search-options {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.preferred-airline-wrap {
  position: relative;
  min-height: 46px;
  width: min(100%, 300px);
}

.search-submit {
  grid-column: 3 / 4;
}

.btn-search,
.fc-btn--primary,
.btn-pay,
.btn-home,
.fbf-footer-action,
.sr-modify-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 12px;
  background: var(--fbf-blue-600);
  color: #fff;
  padding: .78rem 1.15rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(37, 99, 235, .22);
}

.btn-search:hover,
.fc-btn--primary:hover,
.btn-pay:hover,
.btn-home:hover,
.fbf-footer-action:hover,
.sr-modify-btn:hover {
  background: var(--fbf-blue-700);
  color: #fff;
}

.search-submit .btn-search,
.inline-search-btn .btn-search {
  width: 100%;
}

.trav-dropdown {
  right: 0;
  border: 1px solid var(--fbf-line);
  border-radius: 14px;
  box-shadow: var(--fbf-shadow);
}

.trav-row .dec,
.trav-row .inc {
  width: 28px;
  height: 28px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: var(--fbf-blue-soft);
  color: var(--fbf-blue-700);
  font-weight: 900;
}

.fbf-trust-strip {
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--fbf-line);
}

.fbf-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fbf-trust-grid div {
  padding: 1.1rem 1rem;
  border-right: 1px solid var(--fbf-line);
}

.fbf-trust-grid div:last-child { border-right: 0; }

.fbf-trust-grid strong {
  display: block;
  color: var(--fbf-blue-700);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.fbf-trust-grid span {
  color: var(--fbf-muted);
  font-size: .86rem;
  font-weight: 700;
}

.fbf-section {
  padding: 4.5rem 0;
  background: #fff;
}

.fbf-soft-band,
.fbf-policy-band {
  background: var(--fbf-soft);
}

.fbf-section-head {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
}

.fbf-section-head h2 {
  max-width: 720px;
  margin: .2rem 0 0;
  color: var(--fbf-slate);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0;
}

.fbf-section-head a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--fbf-blue-700);
  font-size: .92rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.fbf-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fbf-route-card {
  display: block;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 16px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fbf-route-card:hover {
  transform: translateY(-3px);
  border-color: #bfdbfe;
  box-shadow: var(--fbf-shadow);
}

.fbf-route-card > span {
  display: inline-flex;
  margin-bottom: .75rem;
  color: var(--fbf-red);
  background: #fef2f2;
  border-radius: 999px;
  padding: .22rem .55rem;
  font-size: .72rem;
  font-weight: 900;
}

.fbf-route-card div {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--fbf-slate);
  font-size: 1rem;
}

.fbf-route-card i { color: var(--fbf-blue-600); }

.fbf-route-card p {
  margin: .65rem 0 0;
  color: var(--fbf-blue-700);
  font-weight: 900;
}

.fbf-airline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fbf-airline-card {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 16px;
}

.fbf-airline-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--fbf-soft);
  border: 1px solid var(--fbf-line);
  padding: .3rem;
}

.fbf-airline-card strong {
  display: block;
  color: var(--fbf-slate);
  font-weight: 900;
}

.fbf-airline-card span {
  color: var(--fbf-muted);
  font-size: .86rem;
  font-weight: 600;
}

.fbf-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fbf-destination-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
}

.fbf-destination-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.fbf-destination-card div { padding: 1.1rem; }

.fbf-destination-card span {
  color: var(--fbf-red);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fbf-destination-card h3 {
  margin: .15rem 0 .35rem;
  color: var(--fbf-slate);
  font-size: 1.25rem;
  font-weight: 900;
}

.fbf-destination-card p {
  margin: 0;
  color: var(--fbf-muted);
  font-weight: 600;
}

.fbf-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fbf-policy-grid article {
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 16px;
  padding: 1.25rem;
}

.fbf-policy-grid i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
  background: var(--fbf-blue-soft);
  color: var(--fbf-blue-700);
  border-radius: 12px;
  font-size: 1.2rem;
}

.fbf-policy-grid h3 {
  color: var(--fbf-slate);
  font-size: 1.05rem;
  font-weight: 900;
}

.fbf-policy-grid p {
  color: var(--fbf-muted);
  font-weight: 600;
}

.fbf-policy-grid a {
  color: var(--fbf-blue-700);
  font-weight: 900;
  text-decoration: none;
}

.fbf-footer {
  background: #0f172a;
  color: #d1d5db;
  padding: 3rem 0 1.2rem;
}

.fbf-footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 1.35rem;
  background: linear-gradient(90deg, rgba(37, 99, 235, .24), rgba(79, 70, 229, .14));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
}

.fbf-footer-cta h2 {
  margin: .2rem 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.fbf-footer-cta p,
.fbf-footer-brand p {
  margin: 0;
  color: #9ca3af;
  font-size: .94rem;
}

.fbf-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .85fr 1fr;
  gap: 2rem;
}

.fbf-footer-logo { margin-bottom: 1rem; }

.fbf-footer-logo span { color: #fff; }

.fbf-footer h3 {
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .8rem;
}

.fbf-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fbf-footer li { margin-bottom: .55rem; }

.fbf-footer a {
  color: #d1d5db;
  text-decoration: none;
  font-weight: 700;
}

.fbf-footer a:hover { color: #fff; }

.fbf-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.fbf-contact-list i {
  color: #93c5fd;
  margin-top: .16rem;
}

.fbf-footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #9ca3af;
  font-size: .88rem;
  text-align: center;
}

.fbf-footer-bottom p { margin: 0; }

/* Search results refresh */
.sr-page {
  height: auto;
  min-height: calc(100vh - var(--navbar-h));
  margin-top: 2rem;
  overflow: visible;
}

.sr-search-bar {
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  box-shadow: var(--fbf-shadow);
}

.sr-route-iata {
  color: var(--fbf-blue-900);
  font-weight: 900;
}

.sr-body {
  gap: 1rem;
  margin-top: 1rem;
  overflow: visible;
}

.sr-sidebar {
  border: 1px solid var(--fbf-line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
}

.flight-sort-tabs {
  border: 1px solid var(--fbf-line);
  border-radius: 16px;
  background: #fff;
  padding: .35rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
}

.flight-sort-tab {
  border-radius: 12px;
}

.flight-sort-tab.active {
  background: var(--fbf-blue-600);
  color: #fff;
}

.flight-sort-tab.active .flight-sort-price,
.flight-sort-tab.active .flight-sort-label {
  color: #fff;
}

.fc-card {
  border: 1px solid var(--fbf-line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
}

.fc-card:hover {
  border-color: #bfdbfe;
  box-shadow: var(--fbf-shadow);
}

.fc-airline-logo {
  border-radius: 12px;
  background: var(--fbf-soft);
  border: 1px solid var(--fbf-line);
}

.fc-amount,
.fare-total,
.success-content h1 {
  color: var(--fbf-blue-700);
}

.fc-btn--secondary,
.btn-print {
  border: 1px solid var(--fbf-line);
  border-radius: 12px;
  background: #fff;
  color: #374151;
  font-weight: 900;
}

/* Booking and confirmation refresh */
.booking-header,
.success-hero {
  background: linear-gradient(120deg, var(--fbf-blue-900), var(--fbf-blue-600) 58%, var(--fbf-indigo));
  border-radius: 0 0 28px 28px;
}

.booking-header h2,
.booking-header p,
.success-content h1,
.success-content p {
  color: #fff;
}

.main-card,
.passenger-card,
.sidebar-card,
.side-card,
.booking-summary-card,
.passenger-section,
.segment-section {
  border: 1px solid var(--fbf-line);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
}

.card-title,
.passenger-heading,
.summary-header h4,
.section-header h4 {
  color: var(--fbf-slate);
  font-weight: 900;
}

.flight-box,
.flight-card {
  border-color: #dbe3ef;
  border-radius: 16px;
}

.airline-logo,
.success-check,
.passenger-count {
  background: var(--fbf-blue-soft);
  color: var(--fbf-blue-700);
}

.timer-card {
  background: linear-gradient(120deg, #fff7ed, #fff);
  border-color: #fed7aa;
}

.timer-card h1,
#timer {
  color: var(--fbf-red);
}

.form-control,
.form-select {
  border-color: #dbe3ef;
  border-radius: 12px;
  min-height: 46px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--fbf-blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}

.cookie-consent {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  border-radius: 16px;
  box-shadow: var(--fbf-shadow);
}

@media (max-width: 991.98px) {
  .fbf-navbar .navbar-collapse {
    margin-top: .75rem;
    padding: .75rem;
    background: #fff;
    border: 1px solid var(--fbf-line);
    border-radius: 16px;
    box-shadow: var(--fbf-shadow);
  }

  .fbf-hero-grid {
    grid-template-columns: 1fr;
  }

  .fbf-hero.hero {
    padding: 3.5rem 0 3rem;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .search-swap,
  .inline-swap {
    padding-top: 0;
  }

  .search-options,
  .search-submit {
    grid-column: auto;
  }

  .preferred-airline-wrap {
    width: 100%;
  }

  .fbf-route-grid,
  .fbf-airline-grid,
  .fbf-destination-grid,
  .fbf-policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fbf-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sr-body {
    flex-direction: column;
  }

  .sr-sidebar {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767.98px) {
  body { padding-top: 66px; }

  .fbf-navbar.navbar { min-height: 66px; }

  .fbf-brand span { font-size: .98rem; }

  .fbf-brand img {
    width: 44px;
    height: 30px;
  }

  .hero-headline {
    font-size: 2.35rem;
  }

  .hero-sub {
    font-size: .98rem;
  }

  .search-card {
    padding: 1rem;
    border-radius: 16px;
  }

  .search-card-head,
  .search-inline-top,
  .fbf-section-head,
  .fbf-footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .trip-tabs,
  .trip-tab {
    width: 100%;
  }

  .trip-tab {
    justify-content: center;
  }

  .fbf-trust-grid,
  .fbf-route-grid,
  .fbf-airline-grid,
  .fbf-destination-grid,
  .fbf-policy-grid,
  .fbf-footer-grid {
    grid-template-columns: 1fr;
  }

  .fbf-trust-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--fbf-line);
  }

  .fbf-trust-grid div:last-child { border-bottom: 0; }

  .fbf-section { padding: 3rem 0; }

  .fbf-destination-card img { height: 180px; }

  .sr-page { margin-top: 1rem; }

  .sr-search-summary {
    height: auto;
    padding: .9rem 0;
  }

  .fc-bottom,
  .success-actions {
    align-items: stretch;
  }
}

/* ── Additional FBF components (homepage, content pages) ── */
.fbf-section-sub {
  margin: .35rem 0 0;
  color: var(--fbf-muted);
  font-weight: 600;
}

.nav-link.active {
  color: var(--fbf-blue-700) !important;
  background: var(--fbf-blue-soft);
}

.search-grid-row2 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.search-grid-row3 {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
}

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

.fbf-step-card {
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, .04);
}

.fbf-step-icon{
    font-size:55px;
    margin-bottom:25px;
}
.fbf-step-num {
  display: block;
  color: var(--fbf-red);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fbf-step-card h3 {
  margin: .35rem 0 .45rem;
  color: var(--fbf-slate);
  font-size: 1.05rem;
  font-weight: 900;
}

.fbf-step-card p {
  margin: 0;
  color: var(--fbf-muted);
  font-weight: 600;
  font-size: .92rem;
}

.fbf-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.fbf-testimonial-card {
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 16px;
  padding: 1.25rem;
}

.fbf-stars { color: #f59e0b; font-size: .95rem; letter-spacing: .08em; margin-bottom: .75rem; }

.fbf-testimonial-card p {
  color: #374151;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.fbf-avatar {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--fbf-blue-soft);
  color: var(--fbf-blue-700);
  font-size: .82rem;
  font-weight: 900;
  flex-shrink: 0;
}

.fbf-testimonial-author strong { display: block; color: var(--fbf-slate); }
.fbf-testimonial-author span { color: var(--fbf-muted); font-size: .86rem; font-weight: 600; }

.fbf-cta-band {
  background: linear-gradient(120deg, var(--fbf-blue-900), var(--fbf-blue-600) 58%, var(--fbf-indigo));
  color: #fff;
}

.fbf-cta-band h2 {
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.fbf-cta-band p {
  color: rgba(255, 255, 255, .86);
  max-width: 640px;
  margin: .5rem auto 0;
  font-weight: 600;
}

.fbf-outline-btn {
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .35) !important;
  color: #fff !important;
  font-weight: 800;
  padding: .75rem 1.15rem;
}

.fbf-outline-btn:hover {
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
}


.about-story-section{
    padding-top:60px;
}



.highlight-text {
    background: linear-gradient(90deg, #fde047, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.fbf-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
}

.fbf-social a:hover { background: rgba(255, 255, 255, .16); color: #fff; }

.fbf-page-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(120deg, var(--fbf-blue-900), var(--fbf-blue-600) 58%, var(--fbf-indigo));
  color: #fff;
}

.fbf-page-hero h1 {
  margin: .35rem 0 .5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.fbf-page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
}

.fbf-content-page { background: var(--fbf-soft); }

.fbf-filter-tabs {
  display: inline-flex;
  gap: .35rem;
  margin-bottom: 1.25rem;
  padding: .25rem;
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 999px;
}

.fbf-filter-tabs button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .85rem;
  font-weight: 800;
  color: #4b5563;
}

.fbf-filter-tabs button.active {
  background: var(--fbf-blue-600);
  color: #fff;
}

.fbf-link-action {
  display: inline-block;
  margin-top: .75rem;
  color: var(--fbf-blue-700);
  font-weight: 900;
  text-decoration: none;
}

.fbf-link-action:hover { color: var(--fbf-blue-800); }

.fbf-dest-meta {
  color: var(--fbf-blue-700) !important;
  font-size: .82rem !important;
  font-weight: 800 !important;
  margin-bottom: .35rem !important;
}

.fbf-airline-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.fbf-airline-detail {
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 18px;
  padding: 1.25rem;
}

.fbf-airline-detail-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .75rem;
}

.fbf-airline-detail-head img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--fbf-soft);
  border: 1px solid var(--fbf-line);
  padding: .35rem;
}

.fbf-airline-detail-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 900;
}

.fbf-airline-detail-head p {
  margin: 0;
  color: var(--fbf-muted);
  font-size: .88rem;
  font-weight: 600;
}

.fbf-airline-code {
  margin-left: auto;
  background: var(--fbf-blue-soft);
  color: var(--fbf-blue-700);
  border-radius: 10px;
  padding: .35rem .55rem;
  font-weight: 900;
}

.fbf-airline-desc {
  color: #374151;
  font-weight: 600;
}

.fbf-airline-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 1rem 0;
}

.fbf-airline-stats strong {
  display: block;
  color: var(--fbf-blue-700);
  font-size: 1.1rem;
}

.fbf-airline-stats span {
  color: var(--fbf-muted);
  font-size: .82rem;
  font-weight: 700;
}

.fbf-check-list {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: #374151;
  font-weight: 600;
}

.fbf-about-grid{
    display:grid;
    grid-template-columns: 1fr 420px;
    gap:70px;
    align-items:center;
}


.about-content h2{
    font-size:36px;
    font-weight:900;
    color:#07142f;
    margin-bottom:20px;
}


.about-content p{
    color:#52637a;
    line-height:1.8;
    font-size:16px;
    margin-bottom:22px;
}



.fbf-about-quote{
    background:#eff6ff;
    border-radius:18px;
    padding:40px;
    text-align:center;
}


.fbf-about-quote h3{
    color:#2455e6;
    font-size:22px;
    font-weight:800;
}


.fbf-team-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}


.fbf-team-card{
    background:#fff;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.fbf-team-card h3{
    margin-top:18px;
    font-size:17px;
    font-weight:800;
}


.fbf-team-card p{
    color:#64748b;
    font-size:13px;
}

.fbf-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Contact Left - headings */
.contact-left h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: .25rem;
}

.faq-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Contact Cards - light blue card style */
.fbf-contact-cards {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.fbf-contact-cards li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #e8f0fb;
  border-radius: 14px;
  border: none;
}

.fbf-contact-cards i {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fbf-contact-cards .bi-envelope-fill { color: #6b8cba; }
.fbf-contact-cards .bi-telephone-fill { color: #e53e3e; }
.fbf-contact-cards .bi-clock-fill { color: #555; }
.fbf-contact-cards .bi-geo-alt-fill { color: #e91e8c; }

.fbf-contact-cards strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 2px;
}

.fbf-contact-cards a,
.fbf-contact-cards span {
  color: #1e293b;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
}

/* Right side form card */
.fbf-contact-form-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.fbf-contact-form-card h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

/* Form labels */
.fbf-contact-form label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: #0f172a;
  margin-bottom: .45rem;
}

/* Form inputs */
.fbf-contact-form .form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #d1d9e6;
  border-radius: 10px;
  background: #fff;
  font-size: .92rem;
  color: #0f172a;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.fbf-contact-form .form-control:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}

.fbf-contact-form .form-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.fbf-contact-form textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.fbf-contact-form .mb-3 {
  margin-bottom: 1rem;
}

/* Send button */
.fbf-contact-form .btn-search {
  display: block;
  width: 100%;
  background: #2455e6;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: .85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-body);
  text-align: center;
  margin-top: .25rem;
}

.fbf-contact-form .btn-search:hover {
  background: #1740b0;
}

.fbf-form-note {
  color: #94a3b8;
  font-size: .78rem;
}

.fbf-faq {
    margin-top: 1rem;
}

.fbf-faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 0;
    margin-bottom: 14px;
    background: #fff;
    overflow: hidden;
    transition: all .2s ease;
}

.fbf-faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 6px 18px rgba(37,99,235,.08);
}

.fbf-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 17px 50px 17px 18px;
    font-weight: 800;
    font-size: 15px;
    color: #111827;
    position: relative;
    line-height: 1.4;
}

.fbf-faq-item summary::-webkit-details-marker {
    display: none;
}

.fbf-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 600;
    color: #2563eb;
}

.fbf-faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%);
}

.fbf-faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: #64748b;
    font-weight: 600;
    line-height: 1.7;
    font-size: 14px;
}


/* FAQ Heading */
.fbf-faq + h3 {
    font-size: 26px;
    font-weight: 900;
    color: #111827;
    margin-top: 35px !important;
    margin-bottom: 18px;
}


/* Mobile Responsive */
@media(max-width:768px){

    .fbf-faq-item summary {
        padding: 15px 45px 15px 14px;
        font-size: 14px;
    }

    .fbf-faq-item summary::after {
        right: 14px;
        font-size: 20px;
    }

    .fbf-faq-item p {
        padding: 0 14px 15px;
        font-size: 13px;
        line-height: 1.6;
    }

    .fbf-faq + h3 {
        font-size: 22px;
        margin-top: 25px !important;
    }

}

.fbf-legal-section { padding-top: 2rem; }

.fbf-legal-content {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--fbf-line);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
}

.fbf-legal-content h2 {
  margin: 1.5rem 0 .65rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--fbf-slate);
}

.fbf-legal-content h2:first-of-type { margin-top: .5rem; }

.fbf-legal-content p,
.fbf-legal-content li {
  color: #374151;
  font-weight: 600;
  line-height: 1.7;
}

.fbf-legal-content ul {
  padding-left: 1.2rem;
  margin: .35rem 0 .75rem;
}

.fbf-legal-content a {
  color: var(--fbf-blue-700);
  font-weight: 800;
}

.cookie-consent {
  position: fixed;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 991.98px) {
  .fbf-steps-grid,
  .fbf-testimonial-grid,
  .fbf-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fbf-about-grid,
  .fbf-contact-grid {
    grid-template-columns: 1fr;
  }

  .search-grid-row2,
  .search-grid-row3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .fbf-steps-grid,
  .fbf-testimonial-grid,
  .fbf-team-grid {
    grid-template-columns: 1fr;
  }

  .fbf-airline-stats {
    grid-template-columns: 1fr;
  }
}