/* ==========================================================================
   FlightFlyr — Design System
   ========================================================================== */

:root {
  /* Brand */
  --brand:        #0b5cff;
  --brand-dark:   #0a3d91;
  --brand-900:    #062a63;
  --brand-050:    #eef4ff;
  --accent:       #ff7a1a;
  --accent-2:     #ffb020;

  /* Neutrals */
  --ink:      #0f172a;
  --ink-2:    #253046;
  --muted:    #5b6472;
  --line:     #e6e9ef;
  --bg:       #ffffff;
  --bg-soft:  #f4f7fe;
  --bg-tint:  #eef3fc;
  --footer:   #081533;
  --footer-2: #0e2049;

  /* Feedback */
  --star:  #ffb400;
  --ok:    #16a34a;

  /* Shape & motion */
  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.04);
  --shadow:    0 8px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 50px rgba(10,61,145,.18);
  --ring:      0 0 0 4px rgba(11,92,255,.18);
  --ease:      cubic-bezier(.4,0,.2,1);

  --maxw: 1350px;
  --nav-h: 72px;

  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
ul { padding-left: 1.15rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }
.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand);
  background: var(--brand-050); padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--muted); margin-top: 12px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 700; font-size: 1rem; font-family: inherit; cursor: pointer;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(11,92,255,.28); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 8px 20px rgba(255,122,26,.32); }
.btn-ghost { background: #fff; color: var(--brand); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { border-color: var(--brand); }
.btn-white { background: #fff; color: var(--brand-dark); }
.btn-lg { padding: 16px 32px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.nav {
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand .logo {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; font-size: 1.15rem;
  box-shadow: 0 6px 14px rgba(11,92,255,.3);
}
.brand b { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  color: var(--ink-2); font-weight: 600; font-size: .98rem; padding: 9px 14px; border-radius: 9px;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-links a:hover { background: var(--bg-soft); text-decoration: none; color: var(--brand); }
.nav-links a.active { color: var(--brand); background: var(--brand-050); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--brand-dark);
  padding: 10px 18px; border-radius: 999px; background: var(--brand-050); border: 1.5px solid transparent;
  transition: border-color .15s var(--ease), transform .15s var(--ease);
}
.nav-phone:hover { text-decoration: none; border-color: var(--brand); transform: translateY(-1px); }
.nav-phone .ph-ic { width: 30px; height: 30px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: .95rem; }
.nav-phone small { display: block; font-size: .68rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; line-height: 1; margin-bottom: 2px; }
.nav-phone span { line-height: 1.05; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(1200px 600px at 80% -10%, #2b7bff 0%, transparent 55%),
              linear-gradient(160deg, #0a3d91 0%, #0b5cff 55%, #1e6bff 100%);
  padding: 68px 0 90px;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.12) 0 2px, transparent 3px),
    radial-gradient(circle at 90% 40%, rgba(255,255,255,.10) 0 2px, transparent 3px);
  background-size: 320px 320px, 260px 260px;
}
.hero-plane {
  position: absolute; right: -40px; top: 40px; width: min(46%, 560px); opacity: .16;
  transform: rotate(-8deg); color: #fff; z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; gap: 40px; }
.hero-copy { max-width: 720px; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
.hero .lead { color: rgba(255,255,255,.9); font-size: clamp(1.05rem, 2vw, 1.25rem); margin-top: 18px; max-width: 620px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; }
.trust-item {
  display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600;
  color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px; border-radius: 999px; backdrop-filter: blur(4px);
}
.trust-item .stars { color: var(--accent-2); letter-spacing: -1px; }

/* Search card */
.search-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 22px; margin-top: 40px;
}
.trip-tabs { display: inline-flex; gap: 4px; background: var(--bg-soft); padding: 4px; border-radius: 999px; margin-bottom: 18px; }
.trip-tabs button {
  border: 0; background: none; font-family: inherit; font-weight: 700; font-size: .9rem; color: var(--muted);
  padding: 8px 18px; border-radius: 999px; cursor: pointer; transition: .15s var(--ease);
}
.trip-tabs button.active { background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.search-grid { display: grid; grid-template-columns: 1.2fr 1.2fr 1fr 1fr .9fr auto; gap: 12px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.field .control {
  display: flex; align-items: center; gap: 9px; background: var(--bg-soft);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 11px 13px; transition: .15s var(--ease);
}
.field .control:focus-within { border-color: var(--brand); background: #fff; box-shadow: var(--ring); }
.field .control .ic { color: var(--brand); font-size: 1rem; flex-shrink: 0; }
.field input, .field select {
  border: 0; background: none; font-family: inherit; font-size: .96rem; color: var(--ink); width: 100%; outline: none; padding: 0; font-weight: 600;
}
.field input::placeholder { color: #9aa3b2; font-weight: 500; }
.search-grid .btn { height: 46px; }
.search-note { margin-top: 14px; font-size: .82rem; color: var(--muted); text-align: center; }

/* ==========================================================================
   Feature cards (Why choose)
   ========================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d6e0f5; }
.feature .ficon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem;
  background: var(--brand-050); color: var(--brand); margin-bottom: 18px;
}
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: .96rem; }

/* ==========================================================================
   Destinations
   ========================================================================== */
.dest-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 34px; }
.dest-tabs button {
  border: 1.5px solid var(--line); background: #fff; font-family: inherit; font-weight: 700; font-size: .95rem;
  color: var(--ink-2); padding: 10px 22px; border-radius: 999px; cursor: pointer; transition: .15s var(--ease);
}
.dest-tabs button.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.dest-panel[hidden] { display: none; }
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 170px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
  color: #fff; box-shadow: var(--shadow-sm); isolation: isolate;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.dest-card::before {
  content: ""; position: absolute; inset: 0; z-index: -2; background: var(--grad, linear-gradient(135deg, #0b5cff, #0a3d91));
}
.dest-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.dest-card .emoji { position: absolute; top: 14px; right: 16px; font-size: 1.6rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); z-index: 1; }
.dest-card .city { font-size: 1.16rem; font-weight: 800; }
.dest-card .price { font-size: .9rem; opacity: .95; margin-top: 2px; }
.dest-card .price b { font-size: 1.05rem; }
.dest-card .book {
  margin-top: 12px; align-self: flex-start; font-size: .82rem; font-weight: 700;
  background: rgba(255,255,255,.9); color: var(--brand-dark); padding: 7px 14px; border-radius: 999px;
}
.dest-card .book:hover { background: #fff; text-decoration: none; }
.dest-disclaimer { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 28px; max-width: 720px; margin-inline: auto; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.tst-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.tst-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tst-card .stars { color: var(--star); font-size: .95rem; letter-spacing: 1px; }
.tst-card .quote { font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.tst-card .body { color: var(--muted); font-size: .95rem; flex: 1; }
.tst-person { display: flex; align-items: center; gap: 12px; margin-top: 4px; padding-top: 14px; border-top: 1px solid var(--line); }
.tst-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0;
  font-weight: 800; color: #fff; font-size: 1rem;
}
.tst-person .name { font-weight: 700; font-size: .95rem; color: var(--ink); line-height: 1.2; }
.tst-person .loc { font-size: .82rem; color: var(--muted); }
.load-more-wrap { text-align: center; margin-top: 40px; }
[data-tst-hidden] { display: none; }

/* Rating summary strip */
.rating-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 44px; }
.rating-pill {
  display: flex; align-items: center; gap: 14px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 24px; box-shadow: var(--shadow-sm);
}
.rating-pill .score { font-size: 1.8rem; font-weight: 800; color: var(--brand); line-height: 1; }
.rating-pill .stars { color: var(--star); font-size: .85rem; }
.rating-pill .src { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff; border-radius: 0;
  background: radial-gradient(900px 400px at 50% -30%, #2b7bff 0, transparent 60%),
              linear-gradient(135deg, var(--brand-dark), var(--brand));
  padding: 76px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 14px auto 28px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */
.page-hero {
  color: #fff; padding: 56px 0; text-align: center;
  background: radial-gradient(800px 320px at 80% -20%, #2b7bff 0, transparent 55%),
              linear-gradient(150deg, var(--brand-dark), var(--brand));
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 640px; margin: 14px auto 0; font-size: 1.08rem; }
.breadcrumb { font-size: .88rem; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.breadcrumb a { color: #fff; opacity: .85; }
.breadcrumb a:hover { opacity: 1; }

/* ==========================================================================
   Prose (legal + about)
   ========================================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 40px 0 14px; padding-top: 8px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.12rem; margin: 26px 0 10px; color: var(--ink-2); }
.prose h4 { font-size: 1.02rem; margin: 20px 0 8px; color: var(--brand-dark); }
.prose p { color: var(--ink-2); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px; color: var(--ink-2); }
.prose li { margin-bottom: 7px; }
.prose a { font-weight: 600; }
.policy-meta {
  display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; margin-bottom: 30px;
}
.callout {
  background: var(--brand-050); border: 1px solid #d6e0f5; border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 24px 0;
}
.callout p { margin: 0; color: var(--ink-2); }

/* ==========================================================================
   About extras
   ========================================================================== */
.about-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 18px; margin: 8px 0; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; box-shadow: var(--shadow-sm);
}
.stat .num { font-size: 2rem; font-weight: 800; color: var(--brand); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.offer-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.offer-list li {
  display: flex; align-items: flex-start; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px; box-shadow: var(--shadow-sm); color: var(--ink-2); font-weight: 600; font-size: .96rem;
}
.offer-list li::before { content: "✓"; color: var(--ok); font-weight: 900; flex-shrink: 0; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.value {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.value:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value .vic { font-size: 1.6rem; margin-bottom: 10px; }
.value h3 { font-size: 1.08rem; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: .94rem; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  border-radius: var(--radius); padding: 30px; color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}
.mv-card.vision { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.mv-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.mv-card p { color: rgba(255,255,255,.94); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-cat { margin-bottom: 40px; }
.faq-cat > h2 {
  font-size: 1.35rem; margin-bottom: 18px; display: flex; align-items: center; gap: 12px;
}
.faq-cat > h2 .fc-ic {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand); font-size: 1.1rem;
}
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: #c9d8f5; box-shadow: var(--shadow); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: inherit;
  font-size: 1.02rem; font-weight: 700; color: var(--ink); padding: 18px 52px 18px 20px; position: relative;
  display: flex; gap: 4px;
}
.faq-q .plus {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px;
  flex-shrink: 0; transition: transform .25s var(--ease); color: var(--brand);
}
.faq-item.open .faq-q .plus { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a-inner { padding: 0 20px 20px; color: var(--ink-2); }
.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner ul { margin: 0 0 10px; }
.faq-a-inner li { margin-bottom: 5px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--footer); color: #c7d2e6; padding: 60px 0 26px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand .logo { box-shadow: none; }
.footer-brand p { color: #9fb0cc; margin-top: 14px; font-size: .94rem; max-width: 300px; }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact a, .footer-contact span { color: #c7d2e6; font-size: .92rem; display: inline-flex; align-items: center; gap: 9px; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #9fb0cc; font-size: .94rem; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.pay-icons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pay-icons .pay {
  height: 30px; min-width: 46px; padding: 0 8px; border-radius: 6px; background: #fff; display: grid; place-items: center;
  font-size: .62rem; font-weight: 800; letter-spacing: .02em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .86rem; color: #8598b8;
}
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: #8598b8; }
.footer-bottom a:hover { color: #fff; }
.footer-disclaimer { color: #7386a8; font-size: .82rem; margin-top: 14px; line-height: 1.6; }

/* ==========================================================================
   Promo modal
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,20,50,.6); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 780px; width: 100%; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98); transition: transform .3s var(--ease);
}
.modal-overlay.show .modal { transform: none; }
.modal-visual {
  background: radial-gradient(500px 300px at 20% 10%, #2b7bff 0, transparent 60%),
              linear-gradient(150deg, var(--brand-dark), var(--brand));
  color: #fff; padding: 34px 30px; display: flex; flex-direction: column; justify-content: center;
}
.modal-visual .big { font-size: 2.6rem; margin-bottom: 8px; }
.modal-visual h3 { color: #fff; font-size: 1.4rem; }
.modal-visual .rate { margin-top: 16px; font-weight: 700; }
.modal-visual .rate .stars { color: var(--accent-2); }
.modal-visual .srcs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.modal-visual .srcs span { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); padding: 5px 12px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.modal-body { padding: 34px 30px; position: relative; }
.modal-body h4 { font-size: 1.15rem; margin-bottom: 16px; }
.modal-body ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.modal-body li { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-weight: 600; font-size: .96rem; }
.modal-body li::before { content: "✓"; color: var(--ok); font-weight: 900; }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--bg-soft); color: var(--ink); font-size: 1.2rem; display: grid; place-items: center; line-height: 1;
}
.modal-close:hover { background: var(--line); }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 300;
  background: var(--ink); color: #fff; padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-lg);
  font-weight: 600; font-size: .95rem; opacity: 0; visibility: hidden; transition: .25s var(--ease); max-width: 90vw;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast a { color: var(--accent-2); font-weight: 800; }

/* Back to top */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff; border: 0; cursor: pointer; box-shadow: var(--shadow);
  display: grid; place-items: center; font-size: 1.2rem; opacity: 0; visibility: hidden; transition: .2s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-grid .btn { grid-column: 1 / -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-120%); transition: transform .3s var(--ease); z-index: 99;
  }
  body.nav-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 14px 12px; border-radius: 9px; border-bottom: 1px solid var(--bg-soft); }
  .nav-toggle { display: block; }
  .nav-phone small { display: none; }
  .nav-phone .txt { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .modal { grid-template-columns: 1fr; }
  .modal-visual { padding: 26px; }
}
@media (max-width: 560px) {
  .section { padding: 52px 0; }
  .search-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .rating-pill { flex: 1; }
  .trust-item { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ==========================================================================
   Redesign v2 — photographic hero, photo cards, SVG icons, richer polish
   ========================================================================== */

/* --- Inline SVG icon base --- */
.i { width: 1.15em; height: 1.15em; stroke-width: 2; flex-shrink: 0; }

/* --- Header brand / phone icons --- */
.brand .logo .i { width: 20px; height: 20px; color: #fff; }
.nav-phone .ph-ic .i { width: 15px; height: 15px; }

/* --- Hero with photographic background --- */
.hero {
  background:
    linear-gradient(180deg, rgba(8,21,51,.30) 0%, rgba(8,21,51,.55) 55%, rgba(6,25,66,.90) 100%),
    linear-gradient(115deg, rgba(10,61,145,.78) 0%, rgba(11,92,255,.40) 45%, rgba(10,30,70,.35) 100%),
    url("../img/hero.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, center 35%;
  padding: 92px 0 96px;
}
.hero::after { display: none; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 700;
  color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero-badge .i { width: 15px; height: 15px; color: var(--accent-2); }
.hero h1 { text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero .lead { text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.trust-item .i { width: 15px; height: 15px; color: var(--accent-2); }

/* --- Search card field icons --- */
.field .control .ic .i { width: 17px; height: 17px; }

/* --- Feature card icons --- */
.feature .ficon { background: linear-gradient(135deg, var(--brand-050), #dfeaff); }
.feature .ficon .i { width: 26px; height: 26px; color: var(--brand); }
.feature:nth-child(2) .ficon { background: linear-gradient(135deg, #fff0e4, #ffe0c7); }
.feature:nth-child(2) .ficon .i { color: var(--accent); }
.feature:nth-child(3) .ficon { background: linear-gradient(135deg, #e5f7ee, #cdeed9); }
.feature:nth-child(3) .ficon .i { color: #16a34a; }
.feature:nth-child(4) .ficon { background: linear-gradient(135deg, #efe9ff, #ddd2ff); }
.feature:nth-child(4) .ficon .i { color: #7c3aed; }

/* --- Destination cards: real photos --- */
.dest-card {
  min-height: 230px; padding: 0; justify-content: flex-end;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.dest-card::before { display: none; }
.dest-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(4,12,30,.35) 62%, rgba(4,12,30,.86) 100%);
}
.dest-card .dest-img {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.dest-card:hover .dest-img { transform: scale(1.07); }
.dest-card .dest-body { position: relative; z-index: 2; padding: 18px; display: flex; flex-direction: column; gap: 2px; }
.dest-card .region-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2; font-size: .68rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: #fff;
  background: rgba(11,92,255,.9); padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px);
}
.dest-card .city { font-family: var(--font-display); font-size: 1.2rem; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.dest-card .price { display: flex; align-items: baseline; gap: 5px; opacity: .96; }
.dest-card .price .from { font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; opacity: .85; }
.dest-card .price b { font-family: var(--font-display); font-size: 1.15rem; color: #fff; }
.dest-card .book {
  margin-top: 12px; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 800; background: #fff; color: var(--brand-dark);
  padding: 8px 15px; border-radius: 999px; transition: gap .15s var(--ease), background .15s var(--ease);
}
.dest-card .book .i { width: 14px; height: 14px; }
.dest-card:hover .book { gap: 10px; background: var(--accent-2); color: #3a1d00; }

/* --- Section CTA / values / offers icons --- */
.value .vic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--brand-050), #dfeaff);
}
.value .vic .i { width: 25px; height: 25px; color: var(--brand); }
.value:nth-child(2) .vic { background: linear-gradient(135deg,#fff0e4,#ffe0c7);} .value:nth-child(2) .vic .i{color:var(--accent);}
.value:nth-child(3) .vic { background: linear-gradient(135deg,#e5f7ee,#cdeed9);} .value:nth-child(3) .vic .i{color:#16a34a;}
.value:nth-child(4) .vic { background: linear-gradient(135deg,#efe9ff,#ddd2ff);} .value:nth-child(4) .vic .i{color:#7c3aed;}
.value:nth-child(5) .vic { background: linear-gradient(135deg,#ffe9ef,#ffd0dc);} .value:nth-child(5) .vic .i{color:#e11d48;}
.offer-list li::before { content: none; }
.offer-list li .i { width: 20px; height: 20px; color: var(--ok); flex-shrink: 0; margin-top: 1px; }
.mv-card h3 .i, .mv-card h3 { display: flex; align-items: center; gap: 10px; }
.mv-card h3 .i { width: 26px; height: 26px; }
.feature h3, .value h3, .mv-card h3 { font-family: var(--font-display); }

/* --- Footer contact + payment brand chips --- */
.footer-contact a .i, .footer-contact span .i { width: 16px; height: 16px; color: #7f93b6; }
.pay-icons { gap: 7px; }
.pay-icons .pay {
  height: 30px; min-width: 44px; padding: 0 9px; border-radius: 7px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 1px 2px rgba(0,0,0,.25);
  font-family: var(--font-display); font-weight: 800; font-size: .64rem; letter-spacing: .01em;
}
.pay.visa { color: #1a1f71; font-style: italic; }
.pay.mc { position: relative; gap: 0; }
.pay.mc .c { width: 15px; height: 15px; border-radius: 50%; }
.pay.mc .c1 { background: #eb001b; }
.pay.mc .c2 { background: #f79e1b; margin-left: -6px; mix-blend-mode: multiply; }
.pay.amex { background: #2e77bb; color: #fff; }
.pay.disc { color: #ff6000; }
.pay.pp { color: #003087; }
.pay.pp i { color: #009cde; font-style: italic; }
.pay.applepay { color: #000; }
.pay.gpay { color: #5f6368; }

/* --- Rating pill / trust polish --- */
.trust-item { background: rgba(255,255,255,.16); }

/* --- Promo modal icons --- */
.modal-body li::before { content: none; }
.modal-body li .i { width: 18px; height: 18px; color: var(--ok); }
.modal-visual .big .i { width: 46px; height: 46px; color: #fff; }
.modal-body .btn .i { width: 17px; height: 17px; }

/* --- Nav phone / CTA button icons --- */
.btn .i { width: 18px; height: 18px; }
.nav-phone { background: var(--brand-050); }

/* --- FAQ / page-hero icons --- */
.page-hero .i { color: var(--accent-2); }

/* --- Trust row spacing on hero --- */
.hero .trust-row { margin-top: 28px; }

/* --- Slightly stronger card hover --- */
.dest-grid { gap: 20px; }

/* --- Credits page --- */
.credits-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 14px; margin-top: 24px; }
.credit-item { background:#fff;border:1px solid var(--line);border-radius:var(--radius-sm);padding:14px 16px;box-shadow:var(--shadow-sm); }
.credit-item .cc-city { font-weight:700;color:var(--ink); }
.credit-item .cc-meta { font-size:.85rem;color:var(--muted);margin-top:3px; }

@media (max-width: 560px) {
  .hero { padding: 64px 0 72px; }
  .dest-card { min-height: 200px; }
}

/* ==========================================================================
   Redesign v3 — reference-matched sections
   (Indian Eagle hero / Thomas Cook why / JustWravel cards / AirFareZing reviews)
   ========================================================================== */

/* --- Header phone box (AirFareZing) --- */
.nav-phone {
  background: #fff; border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
  border-radius: 999px; padding: 8px 20px 8px 10px; gap: 12px;
}
.nav-phone:hover { border-color: var(--brand); }
.np-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--brand),var(--brand-dark)); color:#fff; display:grid; place-items:center; flex-shrink:0; }
.np-av .i { width: 20px; height: 20px; }
.np-txt { display:flex; flex-direction:column; line-height:1.1; }
.np-txt small { font-size:.72rem; font-weight:700; color:var(--muted); letter-spacing:.01em; }
.np-txt b { font-family: var(--font-display); font-size:1.15rem; color:var(--ink); letter-spacing:-.01em; }

/* --- Floating call button (AirFareZing green) --- */
.float-call {
  position: fixed; right: 22px; bottom: 78px; z-index: 95;
  display: inline-flex; align-items: center; gap: 11px;
  background: linear-gradient(135deg,#25c862,#12a350); color:#062b12;
  padding: 11px 20px 11px 12px; border-radius: 999px; box-shadow: 0 10px 26px rgba(18,163,80,.4);
  transition: transform .15s var(--ease), box-shadow .2s var(--ease);
}
.float-call:hover { text-decoration:none; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(18,163,80,.5); }
.float-call .fc-ic { width:38px;height:38px;border-radius:50%;background:#062b12;color:#25c862;display:grid;place-items:center;flex-shrink:0; }
.float-call .fc-ic .i { width:18px;height:18px; }
.fc-txt { display:flex; flex-direction:column; line-height:1.1; }
.fc-txt small { font-size:.72rem; font-weight:800; }
.fc-txt b { font-family:var(--font-display); font-size:1.12rem; }
@media (max-width: 560px){
  .float-call .fc-txt { display:none; }
  .float-call { padding:12px; bottom:80px; }
}

/* --- Hero v2 (Indian Eagle) --- */
.hero2 { padding: 40px 0 22px; background: #fff; color: var(--ink); overflow: visible; }
.hero2-grid { display:grid; grid-template-columns: .82fr 1.18fr; gap: 40px; align-items: center; }
.hero2-media { position:relative; border-radius:24px; overflow:hidden; min-height:540px; box-shadow: var(--shadow-lg); }
.hero2-media img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero2-pill { position:absolute; top:18px; left:18px; background:rgba(255,255,255,.94); color:var(--ink); padding:9px 15px; border-radius:999px; font-weight:700; font-size:.85rem; display:inline-flex; gap:7px; align-items:center; box-shadow:var(--shadow-sm); }
.hero2-pill .i { color:var(--brand); width:16px; height:16px; }
.hero2-float { position:absolute; bottom:18px; left:18px; right:18px; background:rgba(8,21,51,.72); color:#fff; padding:12px 16px; border-radius:14px; font-size:.92rem; font-weight:600; backdrop-filter:blur(6px); display:flex; align-items:center; gap:9px; }
.hero2-float .stars { color:var(--accent-2); }
.hero2-float b { font-family:var(--font-display); }
.hero2 h1 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.hero2 .lead { color:var(--muted); margin:14px 0 22px; font-size:1.1rem; max-width:560px; }
.hero2 .search-card { margin-top:0; border:1px solid var(--line); box-shadow: var(--shadow); }

/* search tabs (Flights / Experiences) */
.search-tabs { display:flex; gap:4px; border-bottom:1px solid var(--line); margin-bottom:16px; }
.search-tabs button { background:none; border:0; border-bottom:2px solid transparent; font-family:inherit; font-weight:700; font-size:.98rem; color:var(--muted); padding:8px 18px; cursor:pointer; display:inline-flex; gap:8px; align-items:center; margin-bottom:-1px; }
.search-tabs button.active { color:var(--accent); border-bottom-color:var(--accent); }
.search-tabs .i { width:18px; height:18px; }

/* trip tabs row + inline travelers */
.hero2 .trip-tabs { display:flex; align-items:center; gap:8px; background:none; padding:0; margin-bottom:16px; flex-wrap:wrap; }
.hero2 .trip-tabs button { background:var(--bg-soft); color:var(--muted); padding:8px 16px; border-radius:999px; box-shadow:none; }
.hero2 .trip-tabs button.active { background:var(--accent); color:#fff; box-shadow:none; }
.trip-sep { flex:1 1 auto; }
.field-inline { min-width:170px; }
.field-inline .control { padding:8px 12px; }

/* search grid two rows + swap */
.search-grid { display:flex; flex-direction:column; gap:12px; }
.sg-row-a { display:grid; grid-template-columns: 1fr auto 1fr; gap:12px; align-items:end; }
.sg-row-b { display:grid; grid-template-columns: 1fr 1fr auto; gap:12px; align-items:end; }
.swap-btn { align-self:end; margin-bottom:5px; width:42px; height:42px; border-radius:50%; border:1.5px solid var(--line); background:#fff; color:var(--brand); cursor:pointer; display:grid; place-items:center; transition:.15s var(--ease); }
.swap-btn:hover { border-color:var(--brand); background:var(--brand-050); }
.swap-btn .i { width:18px; height:18px; }
.sg-row-b .btn { height:48px; padding-inline:30px; }

/* --- Top reasons strip (Indian Eagle) --- */
.reasons { padding: 26px 0 6px; }
.reasons-title { display:flex; align-items:center; gap:10px; font-size:1.35rem; margin-bottom:20px; }
.reasons-title .i { color:var(--accent); width:26px; height:26px; }
.reasons-row { display:grid; grid-template-columns:repeat(5,1fr); gap:16px; }
.reason { display:flex; align-items:center; gap:12px; background:var(--bg-soft); border:1px solid var(--line); border-radius:14px; padding:14px 16px; font-weight:700; font-size:.94rem; }
.reason-ic { width:42px; height:42px; border-radius:11px; background:#fff; display:grid; place-items:center; box-shadow:var(--shadow-sm); color:var(--accent); flex-shrink:0; }
.reason-ic .i { width:22px; height:22px; }

/* --- Why Choose v2 (Thomas Cook) --- */
.why2-section { padding-top: 60px; }
.why2-title { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 26px; }
.why2-panel {
  position:relative; border-radius:26px; overflow:hidden; padding:40px 34px;
  background: linear-gradient(115deg, rgba(10,30,70,.32) 0%, rgba(255,160,70,.30) 55%, rgba(255,180,60,.35) 100%),
              url("../img/hero.jpg");
  background-size: cover; background-position: center;
}
.why2-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; align-items:start; }
.why2-card { border-radius:18px; padding:24px 22px; min-height:238px; box-shadow: var(--shadow-lg); display:flex; flex-direction:column; position:relative; overflow:hidden; }
.why2-card:nth-child(even) { margin-top:44px; }
.why2-card h3 { font-size:1.16rem; margin-bottom:10px; }
.why2-card p { font-size:.93rem; }
.why2-ic { margin-top:auto; align-self:flex-end; opacity:.32; }
.why2-ic .i { width:52px; height:52px; }
.c-cream { background:#fdeede; color:#8a4b1e; } .c-cream h3 { color:#e0691a; }
.c-orange { background:linear-gradient(135deg,#ff8a3d,#f2620f); color:#fff; } .c-orange h3 { color:#fff; }
.c-blue { background:linear-gradient(135deg,#2f80ed,#1f5fd0); color:#fff; } .c-blue h3 { color:#fff; }
.c-yellow { background:#fdf0c4; color:#7a5a12; } .c-yellow h3 { color:#c98a06; }

/* --- Destinations v2 (JustWravel) --- */
.dest2-tabs { display:flex; justify-content:center; gap:8px; margin-bottom:32px; background:var(--bg-tint); padding:6px; border-radius:999px; width:fit-content; margin-inline:auto; }
.dest2-tabs button { border:0; background:none; font-family:inherit; font-weight:700; font-size:.95rem; color:var(--ink-2); padding:10px 24px; border-radius:999px; cursor:pointer; display:inline-flex; align-items:center; gap:7px; transition:.15s var(--ease); }
.dest2-tabs button .i { width:16px; height:16px; }
.dest2-tabs button.active { background:var(--brand); color:#fff; box-shadow:var(--shadow-sm); }
.dest2-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:22px; }
[data-dest-panel][hidden] { display:none; }
.dest2-card { position:relative; border-radius:20px; overflow:hidden; min-height:384px; display:flex; flex-direction:column; justify-content:flex-end; color:#fff; box-shadow:var(--shadow); isolation:isolate; transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
.dest2-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.dest2-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; transition:transform .5s var(--ease); }
.dest2-card:hover .dest2-img { transform:scale(1.07); }
.dest2-card::after { content:""; position:absolute; inset:0; z-index:1; background:linear-gradient(180deg, rgba(4,10,26,0) 28%, rgba(4,10,26,.5) 58%, rgba(4,10,26,.93) 100%); }
.dest2-badge { position:absolute; top:14px; left:14px; z-index:2; font-size:.7rem; font-weight:800; letter-spacing:.05em; text-transform:uppercase; color:#fff; background:rgba(11,92,255,.92); padding:6px 12px; border-radius:999px; backdrop-filter:blur(4px); }
.dest2-fav { position:absolute; top:12px; right:12px; z-index:2; width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.92); color:var(--brand); display:grid; place-items:center; }
.dest2-fav:hover { background:#fff; text-decoration:none; }
.dest2-fav .i { width:17px; height:17px; }
.dest2-info { position:relative; z-index:2; padding:18px; display:flex; flex-direction:column; gap:7px; }
.dest2-city { font-size:1.4rem; color:#fff; text-shadow:0 1px 10px rgba(0,0,0,.4); }
.dest2-loc { font-size:.84rem; opacity:.92; display:flex; align-items:center; gap:6px; }
.dest2-loc .i { width:14px; height:14px; }
.dest2-meta { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:2px; }
.dest2-price { display:flex; flex-direction:column; line-height:1.15; }
.dest2-price small { font-size:.7rem; opacity:.85; }
.dest2-price b { font-family:var(--font-display); font-size:1.35rem; color:#fff; }
.dest2-book { background:var(--accent-2); color:#3a1d00; font-weight:800; font-size:.85rem; padding:9px 16px; border-radius:999px; display:inline-flex; align-items:center; gap:6px; transition:gap .15s var(--ease); }
.dest2-book .i { width:14px; height:14px; }
.dest2-book:hover { text-decoration:none; gap:10px; }
.dest2-foot { display:flex; align-items:center; gap:8px; font-size:.84rem; border-top:1px solid rgba(255,255,255,.22); padding-top:11px; margin-top:3px; }
.dest2-foot .stars { color:var(--star); letter-spacing:1px; }
.dest2-rev { opacity:.9; font-weight:600; }
.dest2-viewall { text-align:center; margin-top:36px; }

/* --- Testimonials v2 carousel (AirFareZing) --- */
.tst2-section .section-head p { max-width:640px; }
.tst2-viewport { overflow:hidden; padding:6px 2px 14px; }
.tst2-track { display:flex; gap:24px; transition:transform .45s var(--ease); will-change:transform; }
.tst2-card { flex:0 0 calc((100% - 48px) / 3); background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px 24px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:14px; min-height:250px; }
.tst2-title { font-size:1.12rem; color:var(--ink); }
.tst2-body { color:var(--muted); font-size:.95rem; flex:1; }
.tst2-foot { display:flex; align-items:center; justify-content:space-between; gap:10px; border-top:1px solid var(--line); padding-top:16px; }
.tst2-person { display:flex; align-items:center; gap:11px; }
.tst2-person .name { font-weight:700; font-size:.94rem; color:var(--ink); line-height:1.2; }
.tst2-person .loc { font-size:.82rem; color:var(--muted); }
.tst2-badge { display:inline-flex; align-items:center; gap:4px; background:var(--accent-2); color:#3a1d00; font-weight:800; font-size:.85rem; padding:5px 11px; border-radius:8px; flex-shrink:0; }
.tst2-badge .i { width:14px; height:14px; }
.tst2-controls { display:flex; justify-content:center; gap:14px; margin-top:10px; }
.tst2-arrow { width:50px; height:50px; border-radius:50%; border:1.5px solid var(--line); background:#fff; color:var(--ink); cursor:pointer; display:grid; place-items:center; box-shadow:var(--shadow-sm); transition:.15s var(--ease); }
.tst2-arrow:hover { border-color:var(--brand); color:var(--brand); transform:translateY(-2px); }
.tst2-arrow .i { width:22px; height:22px; }
.tst2-arrow[data-tst-prev] .i { transform:rotate(180deg); }

/* --- Responsive for v3 --- */
@media (max-width: 1024px) {
  .hero2-grid { grid-template-columns:1fr; }
  .hero2-media { min-height:360px; order:-1; }
  .reasons-row { grid-template-columns:repeat(2,1fr); }
  .why2-cards { grid-template-columns:repeat(2,1fr); }
  .why2-card:nth-child(even) { margin-top:0; }
  .tst2-card { flex-basis:calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .sg-row-a { grid-template-columns:1fr; }
  .sg-row-b { grid-template-columns:1fr; }
  .swap-btn { justify-self:center; transform:rotate(90deg); margin:0; }
  .reasons-row { grid-template-columns:1fr; }
  .why2-cards { grid-template-columns:1fr; }
  .why2-panel { padding:24px 18px; }
  .tst2-card { flex-basis:100%; }
  .hero2 .trip-tabs { gap:6px; }
  .field-inline { min-width:100%; order:5; }
  .trip-sep { display:none; }
}

/* ==========================================================================
   Redesign v4 — full-bleed hero banner, copy + form on the right
   ========================================================================== */
.hero3 {
  position: relative; isolation: isolate; color: #fff;
  background:
    linear-gradient(90deg, rgba(6,18,45,.30) 0%, rgba(6,18,45,.10) 42%, rgba(6,18,45,.66) 100%),
    url("../img/hero.jpg");
  background-size: cover; background-position: center;
  padding: 66px 0; min-height: 600px; display: flex; align-items: center;
}
.hero3-inner { display: flex; justify-content: flex-end; width: 100%; }
.hero3-copy { width: min(600px, 100%); }
.hero3 h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); text-shadow: 0 2px 20px rgba(0,0,0,.45); }
.hero3 .lead { color: rgba(255,255,255,.92); text-shadow: 0 1px 10px rgba(0,0,0,.4); margin: 14px 0 22px; font-size: 1.12rem; max-width: 560px; }
.eyebrow-light { background: rgba(255,255,255,.18); color: #fff; border: 1px solid rgba(255,255,255,.28); }
.hero3 .search-card { margin-top: 0; box-shadow: var(--shadow-lg); }

@media (max-width: 960px) {
  .hero3 { padding: 48px 0; min-height: 0; }
  .hero3-inner { justify-content: center; }
  .hero3 h1, .hero3 .lead { text-align: center; }
  .hero3 .lead { margin-inline: auto; }
}

/* ==========================================================================
   Redesign v5 — hero text left, form right; wider container
   ========================================================================== */
.hero3 {
  background:
    linear-gradient(90deg, rgba(6,18,45,.72) 0%, rgba(6,18,45,.38) 46%, rgba(6,18,45,.20) 100%),
    url("../img/hero.jpg");
  background-size: cover; background-position: center;
}
.hero3-inner {
  display: grid; grid-template-columns: 1fr minmax(500px, 580px); gap: 44px; align-items: center; width: 100%;
}
.hero3-text { max-width: 620px; }
.hero3 h1 { font-size: clamp(2.1rem, 3.6vw, 3.2rem); }
.hero3-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 22px; color: #fff; font-weight: 600; font-size: .95rem; }
.hero3-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero3-trust .stars { color: var(--accent-2); }
.hero3-trust .i { width: 18px; height: 18px; color: var(--accent-2); }
.hero3-trust b { font-family: var(--font-display); }
.hero3-form { justify-self: end; width: 100%; }

@media (max-width: 960px) {
  .hero3-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero3-text { max-width: none; }
  .hero3-form { justify-self: stretch; }
  .hero3 h1, .hero3 .lead { text-align: left; }
  .hero3 .lead { margin-inline: 0; }
  .hero3-trust { justify-content: flex-start; }
}

/* ==========================================================================
   Redesign v6 — responsive fixes (overflow, header phone, hero form)
   ========================================================================== */
/* allow flex/grid children to shrink below content width */
.field, .control, .search-grid, .sg-row-a, .sg-row-b { min-width: 0; }
.field input, .field select { min-width: 0; max-width: 100%; }
.hero3-form, .hero3-form .search-card { max-width: 100%; min-width: 0; }

/* header phone box: compact on small screens (icon only) */
@media (max-width: 860px) {
  .np-txt { display: none; }
  .nav-phone { padding: 7px; gap: 0; }
  .nav-cta { gap: 8px; }
}

/* hero form: travelers select full width once tabs wrap */
@media (max-width: 720px) {
  .hero3 .trip-tabs { gap: 6px; }
  .field-inline { flex: 1 1 100%; min-width: 100%; order: 5; }
  .trip-sep { display: none; }
}

/* reasons + why cards already stack; make dest tabs wrap safely */
@media (max-width: 560px) {
  .dest2-tabs { width: 100%; }
  .dest2-tabs button { flex: 1; padding-inline: 12px; justify-content: center; }
  .search-tabs button { padding-inline: 14px; }
  .tst2-controls { margin-top: 4px; }
}

/* ==========================================================================
   Redesign v7 — re-scope trip-tabs to .hero3 (was orphaned on .hero2 rename)
   ========================================================================== */
.hero3 .trip-tabs { display:flex; align-items:center; gap:8px; background:none; padding:0; margin-bottom:16px; flex-wrap:wrap; }
.hero3 .trip-tabs button { background:var(--bg-soft); color:var(--muted); padding:8px 16px; border-radius:999px; box-shadow:none; }
.hero3 .trip-tabs button.active { background:var(--accent); color:#fff; box-shadow:none; }
.hero3 .trip-tabs .field-inline { min-width:170px; }
@media (max-width: 720px) {
  .hero3 .trip-tabs .field-inline { flex:1 1 100%; min-width:100%; order:5; }
  .hero3 .trip-sep { display:none; }
}

/* ==========================================================================
   Redesign v8 — mobile density (shorter page, 2-col grids)
   ========================================================================== */
@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .why2-section { padding-top: 44px; }

  /* why cards: shrink to content, smaller icon */
  .why2-card { min-height: 0; padding: 20px 18px; }
  .why2-ic .i { width: 40px; height: 40px; }

  /* reasons: 2 columns */
  .reasons-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reason { font-size: .85rem; padding: 12px; gap: 10px; }
  .reason-ic { width: 36px; height: 36px; }
  .reason-ic .i { width: 19px; height: 19px; }

  /* destinations: compact 2-column cards */
  .dest2-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dest2-card { min-height: 246px; }
  .dest2-info { padding: 12px; gap: 5px; }
  .dest2-city { font-size: 1.05rem; }
  .dest2-loc { display: none; }
  .dest2-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .dest2-price b { font-size: 1.1rem; }
  .dest2-book { padding: 7px 13px; font-size: .78rem; }
  .dest2-foot { padding-top: 9px; font-size: .78rem; }
  .dest2-badge { font-size: .6rem; padding: 4px 9px; top: 10px; left: 10px; }
  .dest2-fav { width: 32px; height: 32px; top: 10px; right: 10px; }

  /* hero: a touch tighter */
  .hero3 { padding: 40px 0 36px; }
  .hero3 .search-card { padding: 18px; }
  .search-note { margin-top: 10px; }
}

/* very small phones: keep destinations readable */
@media (max-width: 380px) {
  .reasons-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Redesign v9 — mobile header + hero form cleanup
   ========================================================================== */
@media (max-width: 720px) {
  /* Header: drop the phone circle (call CTA lives in the floating button) —
     leaves a clean logo + hamburger */
  .nav-phone { display: none; }
  .nav-cta { gap: 0; }

  /* Trip tabs: keep the 3 pills on ONE tidy row, travelers on its own row */
  .hero3 .trip-tabs { gap: 7px; margin-bottom: 14px; }
  .hero3 .trip-tabs button { flex: 0 0 auto; padding: 8px 13px; font-size: .82rem; }
  .hero3 .trip-tabs .field-inline { flex: 1 1 100%; min-width: 100%; margin-top: 2px; }
  .hero3 .trip-tabs .field-inline .control { padding: 10px 12px; }
  .hero3 .trip-sep { display: none; }

  /* Search tabs + fields a touch tighter */
  .search-tabs button { padding: 8px 14px; font-size: .95rem; }
  .search-grid { gap: 10px; }
  .field label { font-size: .68rem; }

  /* Floating call button: smaller so it doesn't crowd the screen */
  .float-call { width: 54px; height: 54px; padding: 12px; bottom: 84px; right: 16px; }
  .float-call .fc-ic { width: 30px; height: 30px; }
}

/* ==========================================================================
   Redesign v10 — fix search-grid alignment + mobile menu hide
   ========================================================================== */
/* rows must fill the card width (was align-items:end -> content-width, right-hugging) */
.search-grid { align-items: stretch; }
.sg-row-a, .sg-row-b { width: 100%; }

/* fully hide the mobile dropdown menu when closed (no peeking "Reviews") */
@media (max-width: 860px) {
  .nav-links {
    opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility .25s var(--ease);
  }
  body.nav-open .nav-links { opacity: 1; visibility: visible; }
}

/* ==========================================================================
   Redesign v11 — bulletproof mobile menu (display toggle, no leak)
   ========================================================================== */
@media (max-width: 860px) {
  .nav-links { display: none; visibility: visible; opacity: 1; transform: none; transition: none; }
  body.nav-open .nav-links { display: flex; }
}

/* ==========================================================================
   Redesign v12 — menu removed (logo + phone only), orange "Flyr" wordmark
   ========================================================================== */
/* "Flyr" in brand orange */
.brand b { color: var(--accent); }

/* Menu links removed, so the phone box comes back on small screens */
@media (max-width: 860px) {
  .nav-phone { display: inline-flex; }
  .np-txt { display: flex; }
  .nav-cta { gap: 0; }
}
@media (max-width: 560px) {
  .np-txt small { display: none; }
  .np-txt b { font-size: 1rem; }
  .nav-phone { padding: 6px 14px 6px 6px; gap: 8px; }
  .np-av { width: 34px; height: 34px; }
  .np-av .i { width: 17px; height: 17px; }
  .brand { font-size: 1.12rem; gap: 8px; }
  .brand .logo { width: 34px; height: 34px; }
  .brand .logo .i { width: 18px; height: 18px; }
}

/* ==========================================================================
   Redesign v13 — shorter hero image so "Top Reasons" sits in the first screen
   ========================================================================== */
.hero3 { padding: 34px 0; min-height: 0; }
.hero3 .search-card { padding: 18px; }
.hero3 .lead { margin: 12px 0 18px; }
.hero3-trust { margin-top: 16px; }
.reasons { padding: 20px 0 4px; }
.reasons-title { margin-bottom: 16px; }

@media (max-width: 960px) {
  .hero3 { padding: 32px 0; }
}

/* ==========================================================================
   Redesign v14 — separate Travelers + Cabin dropdowns
   ========================================================================== */
.hero3 .trip-tabs .field-inline { min-width: 152px; flex: 0 1 auto; }
@media (max-width: 720px) {
  .hero3 .trip-tabs .field-inline { flex: 1 1 calc(50% - 4px); min-width: 0; order: 5; }
}
@media (max-width: 400px) {
  .hero3 .trip-tabs .field-inline { flex: 1 1 100%; }
}

/* ==========================================================================
   Redesign v15 — destinations show 8, "Load More" reveals 4
   ========================================================================== */
.dest2-card[data-dest-hidden] { display: none; }

/* ==========================================================================
   Redesign v16 — CheapFareMart-style popup, compact single-screen form,
   prominent phone number on mobile + desktop
   ========================================================================== */

/* ------------------------- POPUP ------------------------- */
.modal-overlay { padding: 16px; align-items: center; }
.promo {
  position: relative; display: grid; grid-template-columns: 300px 1fr;
  width: 100%; max-width: 780px; max-height: calc(100vh - 32px);
  background: #fff; border-radius: 20px; overflow: hidden auto;
  box-shadow: 0 30px 70px rgba(6,20,50,.45);
  transform: translateY(14px) scale(.98); transition: transform .3s var(--ease);
}
.modal-overlay.show .promo { transform: none; }

.promo-visual { background: linear-gradient(160deg,#0b5cff,#0a3d91); display: flex; align-items: flex-end; justify-content: center; }
.promo-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.promo-close {
  position: absolute; top: 10px; right: 12px; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  border: 0; cursor: pointer; background: rgba(15,23,42,.10); color: var(--ink);
  font-size: 1.35rem; line-height: 1; display: grid; place-items: center;
}
.promo-close:hover { background: rgba(15,23,42,.2); }

.promo-body { padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 13px; }
.promo-title { font-size: 1.6rem; line-height: 1.12; text-transform: uppercase; letter-spacing: -.01em; color: var(--ink); }
.promo-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.promo-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-2); font-size: .96rem; }
.promo-list .i { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: #dff3e6; color: #16a34a; flex-shrink: 0; }

.promo-stat { display: flex; align-items: center; gap: 12px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.promo-stat-ic { width: 42px; height: 42px; border-radius: 10px; background: #fff; display: grid; place-items: center; color: var(--brand); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.promo-stat-ic .i { width: 22px; height: 22px; }
.promo-stat b { font-family: var(--font-display); font-size: 1.3rem; display: block; line-height: 1.1; color: var(--ink); }
.promo-stat small { color: var(--muted); font-size: .86rem; }

.promo-rating { display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--muted); font-weight: 600; }
.promo-rating .stars { color: var(--star); }
.promo-rating b { color: var(--ink); font-family: var(--font-display); }

.promo-code { display: flex; align-items: stretch; border: 2px dashed var(--accent); border-radius: 12px; overflow: hidden; }
.pc-label { background: var(--ink); color: #fff; font-weight: 700; font-size: .88rem; padding: 10px 16px; display: flex; align-items: center; }
.pc-value { flex: 1; text-align: center; font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 1.15rem; padding: 10px 12px; }

.promo-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg,var(--accent),var(--accent-2)); color: #fff;
  font-weight: 800; font-size: 1.05rem; padding: 15px 18px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255,122,26,.4); transition: transform .15s var(--ease);
}
.promo-cta:hover { text-decoration: none; transform: translateY(-2px); color: #fff; }
.promo-cta .i { width: 19px; height: 19px; }
.promo-tc { font-size: .75rem; color: var(--muted); text-align: center; margin: 0; }

/* popup on phones: stacked, agent as a compact top band, always fits */
@media (max-width: 700px) {
  .modal-overlay { padding: 12px; align-items: flex-start; padding-top: 5vh; }
  .promo { grid-template-columns: 1fr; max-height: 90vh; }
  .promo-visual { height: 132px; }
  .promo-visual img { object-position: center 22%; }
  .promo-body { padding: 18px 18px 20px; gap: 11px; }
  .promo-title { font-size: 1.32rem; }
  .promo-list li { font-size: .9rem; }
  .promo-stat { padding: 10px 12px; }
  .promo-cta { font-size: 1rem; padding: 14px 16px; }
}
@media (max-width: 380px) {
  .promo-visual { height: 104px; }
  .promo-title { font-size: 1.2rem; }
}

/* ------------------------- COMPACT SEARCH FORM (single screen) ------------------------- */
.hero3 .search-card { padding: 16px; }
.search-tabs { margin-bottom: 12px; }
.search-tabs button { padding: 7px 16px; font-size: .95rem; }
.hero3 .trip-tabs { margin-bottom: 12px; gap: 7px; }
.hero3 .trip-tabs button { padding: 7px 15px; font-size: .88rem; }
.field label { font-size: .66rem; letter-spacing: .05em; margin-bottom: 2px; }
.field .control { padding: 9px 12px; }
.field input, .field select { font-size: .93rem; }
.search-grid { gap: 10px; }
.sg-row-a, .sg-row-b { gap: 10px; }
.sg-row-b .btn { height: 44px; padding-inline: 26px; }
.swap-btn { width: 38px; height: 38px; margin-bottom: 3px; }

/* mobile: keep the whole hero + form inside one screen */
@media (max-width: 720px) {
  .hero3 { padding: 22px 0 26px; }
  .hero3 h1 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .hero3 .lead { display: none; }
  .hero3-trust { margin-top: 12px; gap: 8px 14px; font-size: .84rem; }
  .hero3-trust .i { width: 15px; height: 15px; }
  .eyebrow { font-size: .68rem; padding: 5px 11px; margin-bottom: 10px; }
  .hero3 .search-card { padding: 14px; }
  .search-tabs { margin-bottom: 10px; }
  .hero3 .trip-tabs { margin-bottom: 10px; }
  /* dates side by side to save vertical space */
  .sg-row-b { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sg-row-b .btn { grid-column: 1 / -1; width: 100%; }
  .field .control { padding: 8px 10px; }
  .swap-btn { width: 34px; height: 34px; }
}

/* ------------------------- PROMINENT PHONE (mobile + desktop) ------------------------- */
.nav-phone { background: linear-gradient(135deg,#fff,#f4f8ff); border-color: #d7e3fb; }
.np-txt small { color: var(--accent); font-weight: 800; letter-spacing: .02em; }
.np-txt b { font-size: 1.22rem; color: var(--brand-dark); }
.np-av { background: linear-gradient(135deg,var(--accent),var(--accent-2)); }

@media (max-width: 860px) {
  .nav-phone { display: inline-flex; padding: 6px 14px 6px 6px; }
  .np-txt { display: flex; }
  .np-txt small { display: block; font-size: .6rem; }
  .np-txt b { font-size: 1rem; }
  .np-av { width: 32px; height: 32px; }
  .np-av .i { width: 16px; height: 16px; }
}
@media (max-width: 400px) {
  .brand span:not(.logo) { display: none; }        /* logo mark only, keeps number visible */
  .np-txt small { display: none; }
  .np-txt b { font-size: 1.02rem; }
}

/* ==========================================================================
   Redesign v17 — animated (ringing) phone in header + floating call button
   ========================================================================== */
@keyframes ff-ring {
  0%, 55%, 100% { transform: rotate(0deg); }
  57%, 63%, 69% { transform: rotate(-16deg); }
  60%, 66%, 72% { transform: rotate(16deg); }
  75%           { transform: rotate(0deg); }
}
@keyframes ff-pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,26,.6); }
  70%  { box-shadow: 0 0 0 13px rgba(255,122,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,26,0); }
}
@keyframes ff-pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.75); }
  70%  { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes ff-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes ff-glow {
  0%,100% { box-shadow: 0 10px 26px rgba(18,163,80,.40); }
  50%     { box-shadow: 0 12px 34px rgba(18,163,80,.75); }
}

/* --- header phone --- */
.np-av { animation: ff-pulse-orange 2s ease-out infinite; }
.np-av .i { animation: ff-ring 3s ease-in-out infinite; transform-origin: 50% 55%; }

/* --- floating call button --- */
.float-call { animation: ff-bob 2.6s ease-in-out infinite, ff-glow 2.6s ease-in-out infinite; }
.float-call:hover { animation-play-state: paused; }
.float-call .fc-ic { animation: ff-pulse-green 2s ease-out infinite; }
.float-call .fc-ic .i { animation: ff-ring 3s ease-in-out infinite; transform-origin: 50% 55%; }

/* keep the bob from fighting the hover lift */
.float-call:hover { transform: translateY(-3px); }

/* ==========================================================================
   Redesign v18 — popup rebuilt to match the CheapFareMart reference
   Desktop: logo + agent photo panel (left) | offer content (right)
   Mobile : no photo — logo + content only
   ========================================================================== */
.modal-overlay { padding: 16px; align-items: center; }

.promo {
  position: relative; display: grid; grid-template-columns: 320px 1fr;
  width: 100%; max-width: 760px; max-height: calc(100vh - 32px);
  background: #fff; border-radius: 16px; overflow: hidden auto;
  box-shadow: 0 30px 70px rgba(6,20,50,.45);
  transform: translateY(14px) scale(.985); transition: transform .3s var(--ease);
}
.modal-overlay.show .promo { transform: none; }

/* ---- left visual panel ---- */
.promo-visual {
  position: relative; background: #eceff3; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; padding-top: 20px; overflow: hidden;
}
.promo-visual img { width: 100%; height: auto; margin-top: auto; display: block; }

/* ---- brand lockup ---- */
.promo-logo { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: #46586f; line-height: 1; }
.promo-logo b { color: var(--accent); font-weight: 800; }
.promo-logo small { flex-basis: 100%; text-align: center; font-family: var(--font);
  font-size: .68rem; font-weight: 600; color: #7b8ba1; margin-top: 5px; letter-spacing: .01em; }
.pl-mark { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg,var(--brand),var(--brand-dark)); color: #fff; }
.pl-mark .i { width: 16px; height: 16px; }
.promo-logo-m { display: none; margin-bottom: 14px; }

/* ---- close ---- */
.promo-close {
  position: absolute; top: 12px; right: 14px; z-index: 4; width: 38px; height: 38px; border-radius: 50%;
  border: 0; cursor: pointer; background: #e9edf2; color: #1f2937;
  font-size: 1.25rem; font-weight: 700; line-height: 1; display: grid; place-items: center;
}
.promo-close:hover { background: #d8dfe8; }

/* ---- right content ---- */
.promo-body { padding: 26px 26px 20px; display: flex; flex-direction: column; gap: 15px; background: #fff; }
.promo-title {
  font-size: 1.62rem; line-height: 1.12; text-transform: uppercase; color: #0d1420;
  font-weight: 800; letter-spacing: -.01em; max-width: 88%;
}
.promo-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.promo-list li { display: flex; align-items: center; gap: 11px; font-weight: 700; color: #17202e; font-size: 1.02rem; }
.pc-tick { width: 25px; height: 25px; border-radius: 50%; background: #12b5b0; display: grid; place-items: center; flex-shrink: 0; }
.pc-tick .i { width: 15px; height: 15px; color: #fff; stroke-width: 3.4; }

/* happy customers card */
.promo-stat { display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1.5px solid #e3e8ef; border-radius: 14px; padding: 16px 18px; }
.promo-stat-ic { width: 46px; height: 46px; border-radius: 10px; background: #fff5d6;
  display: grid; place-items: center; color: #f0a500; flex-shrink: 0; }
.promo-stat-ic .i { width: 25px; height: 25px; }
.promo-stat-txt b { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.1; color: #0d1420; display: block; }
.promo-stat-txt span { font-weight: 700; color: #0d1420; font-size: 1.02rem; }

/* trustpilot-style block */
.promo-trust { text-align: center; }
.tp-head { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display);
  font-weight: 800; font-size: 1.12rem; color: #0d1420; }
.tp-star .i { width: 20px; height: 20px; color: #00b67a; fill: #00b67a; }
.tp-stars { display: flex; justify-content: center; gap: 3px; margin: 8px 0 7px; }
.tp-box { width: 34px; height: 34px; display: grid; place-items: center; background: #00b67a; }
.tp-box .i { width: 21px; height: 21px; color: #fff; fill: #fff; stroke: none; }
.tp-box.part { background: linear-gradient(90deg,#00b67a 45%, #dcdce6 45%); }
.tp-score { font-size: .88rem; color: #5b6472; }
.tp-score b { color: #0d1420; }
.tp-score a { color: #5b6472; text-decoration: underline; }

/* promo code */
.promo-code { display: flex; align-items: stretch; }
.pc-label { background: #0f2033; color: #fff; font-weight: 700; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; display: flex; align-items: center; position: relative; z-index: 2; }
.pc-value { flex: 1; margin-left: -18px; padding: 12px 16px 12px 30px;
  border: 2px dashed #0f2033; border-radius: 0 999px 999px 0;
  font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; }

/* CTA */
.promo-cta {
  display: flex; align-items: center; justify-content: center;
  background: #ff6a00; color: #fff; font-weight: 800; font-size: 1.12rem; text-transform: uppercase;
  padding: 15px 18px; border-radius: 999px; letter-spacing: .01em;
  box-shadow: 0 8px 20px rgba(255,106,0,.35); transition: transform .15s var(--ease), background .2s var(--ease);
}
.promo-cta:hover { text-decoration: none; color: #fff; background: #f25c00; transform: translateY(-2px); }
.promo-tc { font-size: .74rem; color: #5b6472; text-align: right; margin: -6px 0 0; }

/* ---------------- MOBILE: drop the photo, logo + content only ---------------- */
@media (max-width: 700px) {
  .modal-overlay { padding: 14px; align-items: center; }
  .promo { grid-template-columns: 1fr; max-width: 430px; max-height: 92vh; border-radius: 14px; }
  .promo-visual { display: none; }
  .promo-logo-m { display: block; }
  .promo-logo { font-size: 1.24rem; }
  .promo-logo small { text-align: left; }
  .promo-body { padding: 20px 18px 18px; gap: 13px; }
  .promo-title { font-size: 1.34rem; max-width: 100%; }
  .promo-list li { font-size: .96rem; }
  .promo-stat { border: 0; padding: 0; gap: 12px; }
  .promo-stat-txt b { font-size: 1.35rem; }
  .tp-box { width: 30px; height: 30px; }
  .promo-cta { font-size: 1.02rem; padding: 14px 16px; }
  .promo-close { width: 34px; height: 34px; top: 10px; right: 10px; }
}
@media (max-width: 380px) {
  .promo-title { font-size: 1.18rem; }
  .tp-box { width: 26px; height: 26px; }
  .tp-box .i { width: 17px; height: 17px; }
  .pc-label { padding: 11px 18px; font-size: .92rem; }
}

/* ==========================================================================
   Redesign v19 — floating call button restyled (AirFareZing look)
   light-green bar · black icon circle · bold dark text
   ========================================================================== */
.float-call {
  background: #8ce99a; color: #0b1a0f;
  border-radius: 14px; padding: 9px 22px 9px 9px; gap: 14px;
  right: 22px; bottom: 78px;
  box-shadow: 0 10px 26px rgba(10,40,20,.30);
  border: 1px solid #6fdc82;
}
.float-call:hover { background: #7ce38c; color: #0b1a0f; }
.float-call .fc-ic { width: 46px; height: 46px; background: #101a12; color: #fff; }
.float-call .fc-ic .i { width: 21px; height: 21px; }
.fc-txt { gap: 1px; }
.fc-txt small { font-size: 1rem; font-weight: 800; color: #0b1a0f; letter-spacing: -.01em; }
.fc-txt b { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: #0b1a0f; letter-spacing: -.02em; }

/* green glow tuned to the new colour */
@keyframes ff-glow {
  0%,100% { box-shadow: 0 10px 26px rgba(10,40,20,.30); }
  50%     { box-shadow: 0 12px 34px rgba(80,220,120,.85); }
}
@keyframes ff-pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(16,26,18,.55); }
  70%  { box-shadow: 0 0 0 13px rgba(16,26,18,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,26,18,0); }
}

/* ---- mobile: wide bar, label + number on ONE line ---- */
@media (max-width: 560px) {
  .float-call {
    left: 12px; right: 12px; bottom: 14px;
    justify-content: center; border-radius: 999px;
    padding: 9px 20px 9px 9px; gap: 12px;
  }
  .float-call .fc-txt { display: flex; flex-direction: row; align-items: center; gap: 8px; }
  .float-call .fc-ic { width: 42px; height: 42px; }
  .fc-txt small { font-size: 1rem; }
  .fc-txt b { font-size: 1.08rem; }
}
@media (max-width: 360px) {
  .fc-txt small { font-size: .92rem; }
  .fc-txt b { font-size: 1rem; }
}

/* ==========================================================================
   Redesign v20 — clear the old fixed 54x54 sizing so the call bar can expand
   ========================================================================== */
@media (max-width: 720px) {
  .float-call { width: auto; height: auto; padding: 9px 20px 9px 9px; bottom: 78px; right: 16px; }
  .float-call .fc-ic { width: 44px; height: 44px; }
  .float-call .fc-txt { display: flex; }
}
@media (max-width: 560px) {
  .float-call { width: auto; height: auto; left: 12px; right: 12px; bottom: 14px; }
  .float-call .fc-ic { width: 42px; height: 42px; }
}

/* ==========================================================================
   Redesign v21 — section subtitles fit on one line (single paragraph)
   ========================================================================== */
.section-head { max-width: 900px; }
.section-head p { max-width: 100%; text-wrap: balance; }
@media (max-width: 900px) { .section-head { max-width: 680px; } }

/* ==========================================================================
   Redesign v22 — price disclaimer on a single line
   ========================================================================== */
.dest-disclaimer { max-width: none; }
@media (max-width: 1100px) { .dest-disclaimer { max-width: 760px; } }

/* ==========================================================================
   Redesign v23 — centre narrower section-head paragraphs
   (a max-width'd <p> with no auto margins was sitting flush left)
   ========================================================================== */
.section-head p { margin-inline: auto; }

/* ==========================================================================
   Redesign v24 — taller hero (image + key features only above the fold),
   Why-Choose panel keeps the warm sunset background
   ========================================================================== */
.hero3 { min-height: 560px; padding: 40px 0; }
.why2-panel {
  background: linear-gradient(115deg, rgba(10,30,70,.32) 0%, rgba(255,160,70,.30) 55%, rgba(255,180,60,.35) 100%),
              url("../img/why-bg.jpg");
  background-size: cover; background-position: center;
}
/* a little breathing room under the key features so the next section clears the fold */
.reasons { padding: 24px 0 18px; }

@media (max-width: 960px) {
  .hero3 { min-height: 0; padding: 32px 0; }
}
@media (max-width: 720px) {
  .hero3 { padding: 22px 0 26px; }
}

/* ==========================================================================
   Redesign v25 — interactive Travellers & Class picker (steppers + class)
   ========================================================================== */
.travelers { position: relative; min-width: 200px; }
.travelers-btn {
  width: 100%; display: flex; align-items: center; gap: 9px;
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 10px 13px; font-family: inherit; font-weight: 600; font-size: .95rem; color: var(--ink);
  cursor: pointer; transition: border-color .15s var(--ease), background .15s var(--ease);
}
.travelers-btn:hover, .travelers-btn[aria-expanded="true"] { border-color: var(--brand); background: #fff; }
.travelers-btn .ic { display: flex; color: var(--brand); flex-shrink: 0; }
.travelers-btn .ic .i { width: 17px; height: 17px; }
.travelers-summary { flex: 1; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tr-caret { display: flex; flex-shrink: 0; }
.tr-caret .i { width: 16px; height: 16px; color: var(--muted); transition: transform .2s var(--ease); }
.travelers-btn[aria-expanded="true"] .tr-caret .i { transform: rotate(180deg); }

.travelers-panel {
  position: absolute; top: calc(100% + 8px); right: 0; width: 310px; max-width: min(310px, 86vw);
  background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 16px; z-index: 60; display: flex; flex-direction: column; gap: 12px;
}
.travelers-panel[hidden] { display: none; }
.tr-head { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); margin-bottom: 2px; }
.tr-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.tr-label b { display: block; font-size: .98rem; color: var(--ink); font-weight: 700; }
.tr-label small { color: var(--muted); font-size: .8rem; }
.tr-step { display: flex; align-items: center; gap: 12px; }
.tr-step button {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  color: var(--brand); font-size: 1.25rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.tr-step button:hover:not(:disabled) { border-color: var(--brand); background: var(--brand-050); }
.tr-step button:disabled { cursor: not-allowed; }
.tr-step span { min-width: 22px; text-align: center; font-weight: 800; font-family: var(--font-display); color: var(--ink); }

.tr-class { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--line); padding-top: 12px; }
.tr-class label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.tr-class select {
  border: 1.5px solid var(--line); border-radius: 9px; padding: 10px 12px; font-family: inherit;
  font-size: .95rem; font-weight: 600; color: var(--ink); background: var(--bg-soft); cursor: pointer;
}
.tr-class select:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.tr-done {
  background: var(--accent); color: #fff; border: 0; border-radius: 999px; padding: 12px;
  font-family: inherit; font-weight: 800; font-size: 1rem; cursor: pointer; transition: background .2s var(--ease);
}
.tr-done:hover { background: var(--brand); }

/* mobile: full-width trigger, panel drops below aligned right */
@media (max-width: 720px) {
  .hero3 .trip-tabs .travelers { flex: 1 1 100%; min-width: 100%; order: 5; }
  .travelers-panel { left: 0; right: 0; width: auto; max-width: none; }
}

/* ==========================================================================
   Redesign v26 — popup: real agent photo + Google/Trustpilot badge images
   ========================================================================== */
/* agent photo fills the left panel edge-to-edge */
.promo-visual { padding-top: 0; background: #eceff3; }
.promo-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; margin-top: 0; }
.promo-visual .promo-logo {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,.92); padding: 8px 12px; border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12); backdrop-filter: blur(3px);
}

/* review badges row (replaces the CSS-drawn Trustpilot block) */
.promo-reviews { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 2px 0; }
.promo-reviews img { height: 40px; width: auto; max-width: 46%; object-fit: contain; }

/* mobile: photo hidden, so show logo lockup at top of body (already handled) */
@media (max-width: 700px) {
  .promo-reviews { gap: 16px; }
  .promo-reviews img { height: 34px; }
}

/* ==========================================================================
   Redesign v27 — post-submit confirmation popup
   ========================================================================== */
.confirm {
  position: relative; background: #fff; border-radius: 20px; width: 100%; max-width: 460px;
  padding: 40px 30px 30px; text-align: center; box-shadow: 0 30px 70px rgba(6,20,50,.45);
  transform: translateY(14px) scale(.97); transition: transform .3s var(--ease);
}
.modal-overlay.show .confirm { transform: none; }

.confirm-icon {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center; background: #e5f7ee; color: #16a34a;
  animation: ff-pop .4s var(--ease) both;
}
.confirm-icon .i { width: 40px; height: 40px; stroke-width: 3; }
@keyframes ff-pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }

.confirm-title { font-size: 1.5rem; color: var(--ink); margin-bottom: 12px; }
.confirm-text { color: var(--muted); font-size: 1.02rem; line-height: 1.6; max-width: 40ch; margin: 0 auto; }

.confirm-summary { display: flex; flex-direction: column; gap: 4px; margin: 18px auto 0; padding: 14px 16px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; font-size: .92rem; color: var(--ink-2); max-width: 360px; }
.confirm-summary b { color: var(--ink); }
.confirm-summary[hidden] { display: none; }

.confirm-help { margin-top: 22px; font-weight: 700; color: var(--ink); font-size: .98rem; }
.confirm-call {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 12px;
  background: linear-gradient(135deg,var(--accent),var(--accent-2)); color: #fff;
  font-weight: 800; font-size: 1.12rem; padding: 15px 18px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255,122,26,.35); transition: transform .15s var(--ease);
}
.confirm-call:hover { color: #fff; text-decoration: none; transform: translateY(-2px); }
.confirm-call .i { width: 20px; height: 20px; }
.confirm-email {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; margin-top: 12px;
  color: var(--brand); font-weight: 700; font-size: .98rem; padding: 11px 18px;
  border: 1.5px solid var(--line); border-radius: 999px; width: 100%;
}
.confirm-email:hover { text-decoration: none; border-color: var(--brand); background: var(--brand-050); }
.confirm-email .i { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .confirm { padding: 32px 20px 24px; }
  .confirm-title { font-size: 1.3rem; }
  .confirm-text { font-size: .96rem; }
  .confirm-call { font-size: 1.02rem; }
}

/* ==========================================================================
   Redesign v28 — real airport autocomplete dropdown
   ========================================================================== */
.field { position: relative; }
.airport-list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 70;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg);
  max-height: 296px; overflow-y: auto; padding: 6px;
}
.airport-list[hidden] { display: none; }
.airport-opt {
  display: flex; align-items: center; gap: 11px; width: 100%; text-align: left;
  background: none; border: 0; padding: 9px 10px; border-radius: 9px; cursor: pointer; font-family: inherit;
}
.airport-opt:hover, .airport-opt.active { background: var(--bg-soft); }
.ao-ic { width: 32px; height: 32px; border-radius: 8px; background: var(--brand-050); color: var(--brand);
  display: grid; place-items: center; flex-shrink: 0; }
.ao-ic svg { width: 16px; height: 16px; }
.ao-txt { display: flex; flex-direction: column; min-width: 0; }
.ao-txt b { font-size: .95rem; color: var(--ink); font-weight: 700; line-height: 1.25; }
.ao-txt b em { font-style: normal; color: var(--brand); font-weight: 800; font-size: .8rem; margin-left: 3px; }
.ao-txt small { font-size: .8rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* on very small screens the To-field dropdown could clip at the right edge; keep it inside */
@media (max-width: 480px) {
  .airport-list { max-height: 260px; }
}

/* ==========================================================================
   Redesign v29 — larger, more prominent search form
   ========================================================================== */
/* give the form column more width on desktop */
@media (min-width: 961px) {
  .hero3-inner { grid-template-columns: 1fr minmax(560px, 640px); gap: 48px; }
}

.hero3 .search-card { padding: 26px 26px 24px; border-radius: 20px; }

/* tabs a touch bigger */
.search-tabs { margin-bottom: 18px; }
.search-tabs button { padding: 10px 20px; font-size: 1.05rem; }
.search-tabs .i { width: 20px; height: 20px; }

.hero3 .trip-tabs { margin-bottom: 18px; gap: 9px; }
.hero3 .trip-tabs button { padding: 10px 20px; font-size: .95rem; }
.travelers-btn { padding: 12px 15px; font-size: 1rem; }

/* fields bigger */
.field label { font-size: .74rem; margin-bottom: 5px; }
.field .control { padding: 14px 15px; border-radius: 12px; }
.field input, .field select { font-size: 1.05rem; }
.field .control .ic .i { width: 19px; height: 19px; }
.search-grid { gap: 14px; }
.sg-row-a, .sg-row-b { gap: 14px; }
.swap-btn { width: 46px; height: 46px; }
.swap-btn .i { width: 20px; height: 20px; }

/* search button larger */
.sg-row-b .btn { height: 56px; padding-inline: 34px; font-size: 1.1rem; }
.sg-row-b .btn .i { width: 20px; height: 20px; }

/* keep it comfortable but not oversized on tablet/mobile */
@media (max-width: 720px) {
  .hero3 .search-card { padding: 18px; }
  .search-tabs button { padding: 9px 16px; font-size: 1rem; }
  .field .control { padding: 11px 12px; }
  .field input, .field select { font-size: 1rem; }
  .sg-row-b .btn { height: 50px; font-size: 1.05rem; }
}

/* ==========================================================================
   Redesign v30 — keep the enlarged form for desktop, compact on mobile so it
   still fits one screen without scrolling
   ========================================================================== */
@media (max-width: 720px) {
  .hero3 { padding: 16px 0 22px; }
  .hero3 .search-card { padding: 14px; }
  .search-tabs { margin-bottom: 10px; }
  .search-tabs button { padding: 8px 14px; font-size: .98rem; }
  .search-tabs .i { width: 17px; height: 17px; }
  .hero3 .trip-tabs { margin-bottom: 10px; gap: 6px; }
  .hero3 .trip-tabs button { padding: 7px 13px; font-size: .85rem; }
  .travelers-btn { padding: 10px 12px; font-size: .95rem; }
  .field label { font-size: .66rem; margin-bottom: 2px; }
  .field .control { padding: 9px 11px; }
  .field input, .field select { font-size: .98rem; }
  .search-grid { gap: 9px; }
  .sg-row-a, .sg-row-b { gap: 9px; }
  .sg-row-b .btn { height: 46px; font-size: 1rem; }
  .swap-btn { width: 34px; height: 34px; }
  .swap-btn .i { width: 17px; height: 17px; }
}

/* ==========================================================================
   Redesign v31 — travellers panel never runs off-screen
   ========================================================================== */
.travelers-panel {
  max-height: min(420px, calc(100vh - 24px));
  overflow-y: auto;
}
/* flip above the button when there's no room below */
.travelers-panel.up { top: auto; bottom: calc(100% + 8px); }

/* ==========================================================================
   Redesign v32 — keep trip pills + travellers on ONE inline row (desktop/tablet)
   ========================================================================== */
@media (min-width: 721px) {
  .hero3 .trip-tabs { flex-wrap: nowrap; }
  .hero3 .trip-tabs button { white-space: nowrap; }
  .hero3 .trip-tabs .travelers { flex: 0 1 auto; min-width: 200px; }
  .travelers-btn { white-space: nowrap; }
  .travelers-summary { overflow: hidden; text-overflow: ellipsis; }
}

/* ==========================================================================
   Redesign v33 — reason boxes: uniform two-line labels
   ========================================================================== */
.reason { align-items: center; min-height: 70px; }
.reason > span:last-child { line-height: 1.3; }

/* ==========================================================================
   Redesign v34 — more appealing promo popup
   ========================================================================== */
/* smooth, bouncy entrance */
.modal-overlay.show .promo { animation: promoIn .45s cubic-bezier(.2,.9,.25,1.15) both; }
@keyframes promoIn { 0% { opacity: 0; transform: translateY(24px) scale(.94); } 100% { opacity: 1; transform: none; } }

/* content side gets a soft tint + a little more breathing room */
.promo-body { background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%); gap: 14px; padding: 24px 26px 22px; }

/* clean logo chip on the photo */
.promo-visual .promo-logo { padding: 9px 14px; border-radius: 12px; box-shadow: 0 6px 16px rgba(0,0,0,.14); }

/* "Limited Time Offer" ribbon */
.promo-ribbon {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  background: linear-gradient(135deg, #fff1e6, #ffe2cc); color: #d2560a;
  font-weight: 800; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px; border: 1px solid #ffd3b0;
}
.promo-ribbon .i { width: 14px; height: 14px; }

/* title with highlighted phrase */
.promo-title { margin-top: 2px; }
.promo-title .hl { position: relative; white-space: nowrap; color: var(--accent); }
.promo-title .hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 2px; height: 8px; z-index: -1;
  background: rgba(255,122,26,.18); border-radius: 4px;
}

/* discount sticker */
.promo-burst {
  position: absolute; top: -14px; right: -14px; z-index: 5; width: 76px; height: 76px; border-radius: 50%;
  display: grid; place-content: center; text-align: center; line-height: 1; color: #fff;
  background: radial-gradient(circle at 35% 30%, #ff9a3d, #f2620f);
  box-shadow: 0 8px 20px rgba(242,98,15,.45), inset 0 0 0 3px rgba(255,255,255,.55);
  transform: rotate(10deg); animation: burstPulse 1.8s ease-in-out infinite;
}
.promo-burst b { font-family: var(--font-display); font-size: 1.45rem; font-weight: 800; }
.promo-burst small { font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
@keyframes burstPulse { 0%,100% { transform: rotate(10deg) scale(1); } 50% { transform: rotate(10deg) scale(1.07); } }

/* tick list a touch bolder */
.pc-tick { box-shadow: 0 3px 8px rgba(18,181,176,.35); }

/* happy-customers card + reviews subtle lift */
.promo-stat { background: linear-gradient(180deg,#fff,#f7faff); box-shadow: 0 4px 14px rgba(15,23,42,.05); }

/* promo code chip pop */
.pc-value { background: repeating-linear-gradient(45deg, #fff7ef, #fff7ef 8px, #fff 8px, #fff 16px); }

/* CTA: icon + glow + shine sweep */
.promo-cta { position: relative; overflow: hidden; gap: 11px; box-shadow: 0 12px 26px rgba(255,106,0,.42); }
.promo-cta .cta-ic { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.22); display: grid; place-items: center; }
.promo-cta .cta-ic .i { width: 16px; height: 16px; }
.promo-cta::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: ctaShine 2.6s ease-in-out infinite;
}
@keyframes ctaShine { 0% { left: -60%; } 55%,100% { left: 130%; } }

.promo-tc { display: flex; align-items: center; justify-content: center; gap: 6px; }
.promo-tc .i { width: 13px; height: 13px; color: var(--ok); }

@media (max-width: 700px) {
  .promo-burst { width: 62px; height: 62px; top: -10px; right: -8px; }
  .promo-burst b { font-size: 1.2rem; }
  .promo-ribbon { font-size: .68rem; }
}
@media (prefers-reduced-motion: reduce) {
  .promo-burst, .promo-cta::after { animation: none; }
}

/* ==========================================================================
   Redesign v35 — clear close button on the promo overlay
   ========================================================================== */
.ov-close {
  position: fixed; top: 20px; right: 24px; z-index: 210;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  border: 2px solid rgba(255,255,255,.55); background: rgba(10,20,40,.4); color: #fff;
  font-size: 1.7rem; line-height: 1; display: grid; place-items: center;
  backdrop-filter: blur(4px); transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.ov-close:hover { background: rgba(10,20,40,.72); border-color: #fff; transform: rotate(90deg); }
.ov-close:active { transform: rotate(90deg) scale(.92); }

/* the in-card × sits under the discount sticker, so hide it — the overlay button closes it */
.promo .promo-close { display: none; }

@media (max-width: 560px) {
  .ov-close { top: 14px; right: 14px; width: 42px; height: 42px; font-size: 1.5rem; }
}

/* ==========================================================================
   Redesign v36 — nudge overlay close below the header so it never clashes
   with the header phone box, and bullet-proof its stacking
   ========================================================================== */
.modal-overlay[data-promo] { z-index: 1000; }
.ov-close { top: 84px; z-index: 1010; }
@media (max-width: 560px) { .ov-close { top: 14px; } }  /* header collapses on mobile */

/* ==========================================================================
   Redesign v37 — hero background VIDEO (image kept as poster/fallback)
   ========================================================================== */
.hero3 {
  position: relative; overflow: hidden;
  background: #0a3d91 url("../img/hero.jpg") center/cover no-repeat;  /* fallback */
}
.hero3-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: 0; pointer-events: none;
}
/* readability gradient over the video */
.hero3::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(6,18,45,.74) 0%, rgba(6,18,45,.40) 46%, rgba(6,18,45,.22) 100%);
}
.hero3-inner { position: relative; z-index: 2; }

/* users who prefer less motion get the still image instead of the video */
@media (prefers-reduced-motion: reduce) { .hero3-video { display: none; } }

/* ==========================================================================
   Redesign v38 — mobile header: phone number never wraps, compact fit
   ========================================================================== */
@media (max-width: 560px) {
  .nav { gap: 10px; }
  .brand { font-size: 1.05rem; gap: 7px; }
  .brand .logo { width: 32px; height: 32px; }
  .brand .logo .i { width: 17px; height: 17px; }
  .nav-phone { padding: 6px 13px 6px 6px; gap: 8px; flex-shrink: 0; }
  .np-av { width: 30px; height: 30px; }
  .np-av .i { width: 15px; height: 15px; }
  .np-txt small { display: none; }
  .np-txt b { white-space: nowrap; font-size: .92rem; letter-spacing: -.01em; }
}
@media (max-width: 390px) {
  .brand { font-size: .96rem; }
  .np-txt b { font-size: .84rem; }
  .nav-phone { padding: 5px 10px 5px 5px; }
  .np-av { width: 28px; height: 28px; }
}
@media (max-width: 340px) {
  .brand b, .brand { font-size: 0; }          /* logo mark only on tiny screens */
  .brand .logo { font-size: initial; }
  .np-txt b { font-size: .82rem; }
}

/* ==========================================================================
   Redesign v39 — hide From/To swap arrow on mobile (stacked layout)
   ========================================================================== */
@media (max-width: 640px) { .swap-btn { display: none; } }

/* ==========================================================================
   Redesign v40 — premium frosted search card (desktop + mobile polish)
   ========================================================================== */
.hero3-form { position: relative; }

/* soft colored glow behind the card for depth */
.hero3-form::before {
  content: ""; position: absolute; inset: -16px; z-index: -1; border-radius: 34px;
  background:
    radial-gradient(55% 60% at 22% 0%, rgba(255,122,26,.40), transparent 70%),
    radial-gradient(55% 60% at 100% 100%, rgba(11,92,255,.42), transparent 72%);
  filter: blur(26px); opacity: .85;
}

/* frosted glass card */
.hero3 .search-card {
  background: rgba(255,255,255,.93);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 22px;
  box-shadow: 0 26px 64px rgba(6,20,50,.30), 0 2px 6px rgba(6,20,50,.10);
  position: relative; overflow: visible;
}

/* gradient hairline under the tabs */
.hero3 .search-tabs { border-bottom-color: transparent; position: relative; }
.hero3 .search-tabs::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, rgba(255,122,26,.55), rgba(11,92,255,.18) 45%, transparent);
}
.hero3 .search-tabs button.active { position: relative; }

/* refined fields */
.hero3 .field .control {
  background: linear-gradient(180deg, #f8faff, #eef3fc);
  border: 1.5px solid #e3ebf8;
  box-shadow: inset 0 1px 2px rgba(15,23,42,.035);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
}
.hero3 .field .control:focus-within { background: #fff; border-color: var(--brand); box-shadow: var(--ring); }
.hero3 .travelers-btn {
  background: linear-gradient(180deg, #f8faff, #eef3fc); border-color: #e3ebf8;
  box-shadow: inset 0 1px 2px rgba(15,23,42,.035);
}
.hero3 .travelers-btn:hover, .hero3 .travelers-btn[aria-expanded="true"] { background: #fff; }

/* buttons pop a little more */
.hero3 .trip-tabs button.active { box-shadow: 0 6px 16px rgba(255,122,26,.35); }
.hero3 .sg-row-b .btn { box-shadow: 0 12px 26px rgba(255,122,26,.42); }
.hero3 .swap-btn { background: #fff; box-shadow: 0 4px 12px rgba(6,20,50,.12); }
.hero3 .swap-btn:hover { background: var(--brand-050); }

/* mobile: lighter blur (perf) + comfy rounding, glow kept subtle */
@media (max-width: 720px) {
  .hero3 .search-card { border-radius: 18px; -webkit-backdrop-filter: blur(10px) saturate(140%); backdrop-filter: blur(10px) saturate(140%); box-shadow: 0 18px 44px rgba(6,20,50,.30); }
  .hero3-form::before { inset: -10px; filter: blur(20px); opacity: .7; }
}

/* ==========================================================================
   Redesign v41 — DARK themed search card + pretty date labels
   ========================================================================== */
.hero3 .search-card {
  background: linear-gradient(165deg, #0c2350 0%, #0a3d91 55%, #0b2f6e 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 66px rgba(3,12,35,.55), 0 2px 8px rgba(0,0,0,.30);
  -webkit-backdrop-filter: none; backdrop-filter: none;
}

/* tabs */
.hero3 .search-tabs button { color: rgba(255,255,255,.75); }
.hero3 .search-tabs button.active { color: var(--accent-2); border-bottom-color: var(--accent-2); }
.hero3 .search-tabs::after { background: linear-gradient(90deg, rgba(255,176,32,.7), rgba(255,255,255,.14) 45%, transparent); }

/* trip pills */
.hero3 .trip-tabs button { background: rgba(255,255,255,.10); color: rgba(255,255,255,.9); }
.hero3 .trip-tabs button.active { background: linear-gradient(135deg,var(--accent),var(--accent-2)); color: #fff; box-shadow: 0 6px 16px rgba(255,122,26,.4); }

/* travellers trigger */
.hero3 .travelers-btn { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); color: #fff; box-shadow: none; }
.hero3 .travelers-btn:hover, .hero3 .travelers-btn[aria-expanded="true"] { background: rgba(255,255,255,.16); border-color: var(--accent-2); }
.hero3 .travelers-btn .ic { color: var(--accent-2); }
.hero3 .travelers-summary { color: #fff; }
.hero3 .tr-caret .i { color: rgba(255,255,255,.7); }

/* labels + fields */
.hero3 .field label { color: rgba(255,255,255,.72); }
.hero3 .field .control {
  background: rgba(255,255,255,.10); border: 1.5px solid rgba(255,255,255,.18); box-shadow: none;
}
.hero3 .field .control:focus-within, .hero3 .date-control:hover {
  background: rgba(255,255,255,.16); border-color: var(--accent-2); box-shadow: 0 0 0 4px rgba(255,176,32,.18);
}
.hero3 .field input, .hero3 .field select, .hero3 .date-label { color: #fff; }
.hero3 .field input::placeholder { color: rgba(255,255,255,.55); }
.hero3 .field .control .ic { color: var(--accent-2); }

/* swap button */
.hero3 .swap-btn { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); color: #fff; box-shadow: none; }
.hero3 .swap-btn:hover { background: rgba(255,255,255,.26); }
.hero3 .swap-btn .i { color: #fff; }

/* Search button stays orange (good contrast on dark) */
.hero3 .sg-row-b .btn { box-shadow: 0 12px 26px rgba(255,122,26,.5); }

/* ---- pretty date control: hidden native input, formatted label ---- */
.date-control { position: relative; cursor: pointer; }
.date-label { flex: 1; font-weight: 600; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.date-control input[type="date"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; border: 0; margin: 0; padding: 0; cursor: pointer; background: transparent;
}
.date-control input[type="date"]::-webkit-calendar-picker-indicator { display: none; -webkit-appearance: none; }

/* popovers (airport list, travellers panel) stay light for readability on the dark card */
