/* ============================================================
   Travelers Partner Online — Premium Flight & Travel Portal
   Theme: Navy #0a1628 · Teal #00c9b8 · Gold #f2c94c · Ivory #f5f0e8
   Fonts: Playfair Display (headings) · DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:       #0a1628;
  --navy-2:     #0d1e35;
  --navy-3:     #102240;
  --navy-light: #162b4d;
  --teal:       #00c9b8;
  --teal-dark:  #00a89a;
  --teal-glow:  rgba(0,201,184,0.18);
  --gold:       #f2c94c;
  --gold-dark:  #e0b438;
  --ivory:      #f5f0e8;
  --ivory-2:    #ede7d9;
  --white:      #ffffff;
  --text:       rgba(255,255,255,0.93);
  --text-muted: rgba(255,255,255,0.55);
  --text-dim:   rgba(255,255,255,0.28);
  --border:     rgba(255,255,255,0.08);
  --border2:    rgba(0,201,184,0.25);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --r-sm:       6px;
  --r:          12px;
  --r-lg:       20px;
  --r-xl:       32px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  padding: 13px 30px; border-radius: var(--r-sm);
  cursor: pointer; border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn-teal  { background: var(--teal); color: var(--navy); }
.btn-teal:hover { background: #00ddd0; transform: translateY(-2px); box-shadow: 0 8px 28px var(--teal-glow); }
.btn-gold  { background: var(--gold); color: var(--navy); font-weight: 700; }
.btn-gold:hover { background: #ffd966; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,201,76,0.35); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }
.btn-navy  { background: var(--navy); color: var(--teal); border: 1.5px solid var(--border2); }
.btn-navy:hover { background: var(--navy-light); border-color: var(--teal); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 38px; font-size: 16px; }

/* ── Typography ─────────────────────────────────────────────── */
.label {
  font-family: var(--font-body);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 8px;
}
.label::before { content: ''; width: 24px; height: 1.5px; background: var(--teal); border-radius: 2px; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }
.display {
  font-family: var(--font-head);
  font-size: clamp(38px, 6.5vw, 78px);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--teal); }
.display .gold { color: var(--gold); }
.h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700; letter-spacing: -0.02em;
}
.h3 { font-family: var(--font-head); font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }
.lead { font-size: clamp(15px, 2vw, 18px); color: var(--text-muted); line-height: 1.75; }

/* ── TOP BAR ────────────────────────────────────────────────── */
.topbar {
  background: var(--teal); color: var(--navy);
  padding: 8px 0; font-size: 12.5px; font-weight: 600;
  text-align: center;
}
.topbar a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 4px; flex-wrap: wrap; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,22,40,0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  height: 66px; gap: 24px;
}
.nav-logo {
  display: flex; align-items: baseline; gap: 0;
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  flex-shrink: 0;
}
.nav-logo .sky { color: var(--white); }
.nav-logo .pass { color: var(--teal); font-style: italic; }
.nav-logo .tag {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--text-dim); text-transform: uppercase;
  margin-left: 6px; margin-bottom: -2px; align-self: flex-end;
}
.nav-links {
  display: flex; align-items: center; flex: 1; gap: 2px;
}
.nav-links a {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--text-muted); border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-phone-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-phone-link svg { color: var(--teal); }
.nav-phone-link:hover { color: var(--white); }
/* Mobile */
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-drawer { display: none; padding: 8px 20px 20px; background: var(--navy-2); border-top: 1px solid var(--border); }
.nav-drawer.open { display: block; }
.nav-drawer a { display: block; padding: 12px 4px; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid var(--border); transition: color 0.2s; }
.nav-drawer a:hover { color: var(--teal); }
.nav-drawer-phone { display: flex; align-items: center; gap: 8px; padding: 16px 4px; font-size: 17px; font-weight: 700; color: var(--teal); }

/* ── HERO — SPLIT LAYOUT ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 480px;
  position: relative; overflow: hidden;
}
/* Left: Text side */
.hero-left {
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px 0;
  position: relative;
}
.hero-left-wrap { max-width: 580px; }
.hero-label { margin-bottom: 22px; }
.hero-title { margin-bottom: 20px; }
.hero-title .italic-line {
  display: block; font-style: italic; color: var(--teal);
  font-size: 85%;
}
.hero-subtitle { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 36px; max-width: 440px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
/* Stats row */
.hero-stats { display: flex; gap: 36px; padding-top: 36px; border-top: 1px solid var(--border); }
.hero-stat {}
.hero-stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--white); display: block; }
.hero-stat-lbl { font-size: 12px; color: var(--text-dim); font-weight: 500; }
/* Background pattern for left side */
.hero-left::before {
  content: '';
  position: absolute; bottom: 0; left: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  pointer-events: none;
}
/* Right: Visual side */
.hero-right {
  position: relative; overflow: hidden;
  background: var(--navy-3);
}
.hero-right-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.6;
}
/* Geometric overlay on right side */
.hero-right::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, var(--navy) 0%, transparent 40%),
              linear-gradient(to top, var(--navy) 0%, transparent 30%);
}
/* Phone card floating on hero right */
.hero-phone-card {
  position: absolute; bottom: 60px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border2);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  text-align: center;
  min-width: 240px;
}
.hpc-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.hpc-phone { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.hpc-sub { font-size: 12px; color: var(--text-dim); }
/* Live badge */
.hero-live-badge {
  position: absolute; top: 32px; right: 32px; z-index: 6;
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,22,40,0.8); backdrop-filter: blur(10px);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow: 0 0 0 0 rgba(34,197,94,0.6)} 50%{box-shadow: 0 0 0 6px rgba(34,197,94,0)} }
/* Decorative line accent */
.hero-line {
  position: absolute; top: 0; bottom: 0; left: -1px;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--teal) 30%, var(--gold) 70%, transparent);
}

/* ── SEARCH PANEL ───────────────────────────────────────────── */
.search-panel { background: var(--navy-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; }
.sp-inner { display: grid; grid-template-columns: 1fr auto 1fr 1fr 1fr auto; gap: 10px; align-items: end; overflow: visible; }
/* AC wrap needs relative + overflow visible for dropdown */
.sp-ac-wrap { position: relative; overflow: visible !important; }
.sp-field {
  background: var(--navy-3);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 11px 16px; min-height: 60px;
  display: flex; flex-direction: column; justify-content: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sp-field:hover { border-color: rgba(0,201,184,0.45); }
.sp-field:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,184,0.1); }
.sp-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.sp-input { background: transparent; border: none; outline: none; font-size: 14px; font-weight: 500; color: var(--white); width: 100%; color-scheme: dark; }
.sp-input::placeholder { color: var(--text-dim); }
.sp-input option { background: var(--navy-3); }
/* Validation error */
.sp-field.sp-error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px rgba(248,113,113,0.15);
  animation: spShake 0.3s ease;
}
@keyframes spShake {
  0%,100%{ transform:translateX(0); }
  25%{ transform:translateX(-5px); }
  75%{ transform:translateX(5px); }
}
.sp-swap {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy-light); border: 1px solid var(--border2);
  color: var(--teal); display: flex; align-items: center; justify-content: center;
  cursor: pointer; align-self: center; flex-shrink: 0;
  transition: all 0.2s;
}
.sp-swap:hover { background: var(--teal-glow); border-color: var(--teal); transform: rotate(180deg); }
.sp-go { height: 60px; }

/* ── FLOATING ANNOUNCEMENT ──────────────────────────────────── */
.announce-bar {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-3) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden;
}
.announce-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announce-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.announce-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; color: var(--text-muted); flex-shrink: 0;
}
.announce-item .route { color: var(--white); }
.announce-item .price { color: var(--teal); font-family: var(--font-head); font-size: 16px; }
.announce-item::after { content: '✈'; color: var(--text-dim); margin-left: 20px; }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-section { background: var(--ivory); padding: 96px 0; }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .label { color: var(--navy); }
.how-header .label::before { background: var(--navy); }
.how-header .h2 { color: var(--navy); margin-top: 12px; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.how-steps::before {
  content: '';
  position: absolute; top: 44px; left: 16%; right: 16%;
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--gold));
}
.how-step { text-align: center; padding: 0 32px; position: relative; }
.how-num {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 32px; font-weight: 700;
  margin: 0 auto 28px;
  border: 4px solid var(--ivory);
  box-shadow: 0 0 0 2px var(--teal);
  position: relative; z-index: 1;
}
.how-step:nth-child(2) .how-num { background: var(--teal); color: var(--navy); box-shadow: 0 0 0 2px var(--gold); }
.how-step:nth-child(3) .how-num { background: var(--navy-light); box-shadow: 0 0 0 2px var(--navy); }
.how-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.how-text { font-size: 14.5px; color: #4a5568; line-height: 1.75; }

/* ── DESTINATION MAGAZINE GRID ──────────────────────────────── */
.dests-section { background: var(--navy); padding: 96px 0; }
.dests-header { margin-bottom: 52px; }
.dests-mag { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 14px; }
.dest-tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  /* button reset */
  background: none; border: none; padding: 0; text-align: left; width: 100%;
  display: block;
}
.dest-tile:first-child { grid-row: 1 / 3; }
.dest-tile:hover { transform: scale(1.02); box-shadow: 0 24px 60px rgba(0,0,0,0.6); }
.dest-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.dest-tile:hover img { transform: scale(1.07); }
.dest-tile-over {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 20%, rgba(10,22,40,0.2) 60%, transparent 100%);
}
.dest-tile-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 22px;
}
.dest-tile-region { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 5px; }
.dest-tile-name { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.dest-tile:first-child .dest-tile-name { font-size: 36px; }
.dest-tile-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,201,184,0.15); border: 1px solid rgba(0,201,184,0.4);
  color: var(--teal); font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 4px;
  transition: all 0.2s;
}
.dest-tile:hover .dest-tile-btn { background: var(--teal); color: var(--navy); }

/* ── DEAL TICKETS ───────────────────────────────────────────── */
.deals-section { background: var(--navy-2); padding: 96px 0; }
.deals-header { margin-bottom: 52px; }
.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.deal-ticket {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.deal-ticket:hover { border-color: var(--border2); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.deal-header {
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-3));
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.deal-route { display: flex; align-items: center; gap: 10px; margin-bottom: 5px; }
.deal-city { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--white); }
.deal-arrow { color: var(--teal); font-size: 18px; }
.deal-type { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.deal-body { padding: 18px 20px; flex: 1; }
.deal-info { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; }
.deal-info-item { font-size: 12px; color: var(--text-muted); }
.deal-info-item strong { display: block; font-size: 13px; color: var(--text); font-weight: 600; }
.deal-price-row { display: flex; align-items: center; justify-content: stretch; gap: 10px; margin-top: 4px; }
/* Full-width CTA button for deal cards (no price shown — policy compliant) */
.deal-cta-btn {
  width: 100%; justify-content: center;
  font-size: 13px; font-weight: 700; letter-spacing: 0.03em;
  padding: 11px 18px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}
.deal-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,201,184,0.3); }
/* Ticket perforation */

.deal-perforation {
  height: 0; border-top: 2px dashed rgba(255,255,255,0.08);
  margin: 0 -1px; position: relative;
}
.deal-perforation::before, .deal-perforation::after {
  content: ''; position: absolute; top: -10px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.06);
}
.deal-perforation::before { left: -10px; }
.deal-perforation::after  { right: -10px; }
.deal-footer { padding: 14px 20px; }

/* ── ROUTES FROM DB ─────────────────────────────────────────── */
.routes-section { background: var(--navy); padding: 72px 0; }
.routes-header { margin-bottom: 40px; }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 12px; }
.route-card {
  background: var(--navy-2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.route-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.route-from-to { font-size: 15px; font-weight: 600; color: var(--white); }
.route-from-to span { color: var(--teal); margin: 0 6px; }
.route-sub { font-size: 12px; color: var(--text-dim); margin-top: 2px; }

/* ── AIRLINES TICKER ────────────────────────────────────────── */
.airlines-section { background: var(--navy-2); padding: 60px 0; }
.airlines-header { text-align: center; margin-bottom: 36px; }
.airlines-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.al-pill {
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 22px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: all 0.2s;
}
.al-pill:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-glow); }

/* ── TESTIMONIALS — STAGGERED ───────────────────────────────── */
.reviews-section { background: var(--ivory); padding: 96px 0; }
.reviews-header { text-align: center; margin-bottom: 60px; }
.reviews-header .label { color: var(--navy); }
.reviews-header .label::before { background: var(--navy); }
.reviews-header .h2 { color: var(--navy); margin-top: 12px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.review-card:nth-child(2) { transform: translateY(24px); }
.review-card:hover { transform: translateY(-4px) !important; box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; margin-bottom: 16px; }
.review-quote {
  font-family: var(--font-head); font-size: 16px; font-weight: 400;
  color: #1e2d40; line-height: 1.75; margin-bottom: 24px; flex: 1;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #eee; padding-top: 20px; }
.review-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: var(--white); font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-trip { font-size: 12px; color: #6b7280; }

/* ── BLOG SECTION ───────────────────────────────────────────── */
.blog-section { background: var(--navy); padding: 96px 0; }
.blog-header { margin-bottom: 52px; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* Featured post */
.blog-card { background: var(--navy-2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color 0.25s, transform 0.25s; }
.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.blog-card.featured { grid-row: span 2; display: flex; flex-direction: column; }
.blog-thumb { overflow: hidden; }
.blog-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s; }
.blog-card.featured .blog-thumb img { aspect-ratio: 4/3; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); margin-bottom: 8px; }
.blog-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.35; }
.blog-card.featured .blog-title { font-size: 26px; }
.blog-title a:hover { color: var(--teal); }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.blog-read { font-size: 13px; font-weight: 700; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.blog-card:hover .blog-read { gap: 10px; }
.blog-more { text-align: center; margin-top: 40px; }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #00ddd0 100%);
  padding: 80px 0;
}
.nl-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.nl-text {}
.nl-title { font-family: var(--font-head); font-size: clamp(26px, 4vw, 40px); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.nl-sub { font-size: 16px; color: rgba(10,22,40,0.7); }
.nl-form { display: flex; gap: 10px; flex: 1; max-width: 480px; }
.nl-input {
  flex: 1; padding: 14px 18px;
  background: rgba(10,22,40,0.12); border: 1.5px solid rgba(10,22,40,0.2);
  border-radius: var(--r-sm); font-size: 14px; color: var(--navy);
  outline: none; transition: border-color 0.2s;
}
.nl-input::placeholder { color: rgba(10,22,40,0.5); }
.nl-input:focus { border-color: var(--navy); }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: var(--navy-3); padding: 96px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(0,201,184,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(242,201,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-big { font-family: var(--font-head); font-size: clamp(32px, 5.5vw, 60px); font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.1; letter-spacing: -0.02em; }
.cta-big em { font-style: italic; color: var(--teal); }
.cta-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: var(--navy); padding: 96px 0; }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-sidebar {}
.faq-sidebar-title { font-family: var(--font-head); font-size: 40px; font-weight: 700; color: var(--white); line-height: 1.2; margin: 16px 0 20px; }
.faq-sidebar-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.faq-item.open { border-color: var(--border2); }
.faq-q {
  width: 100%; text-align: left; padding: 18px 20px;
  font-size: 15px; font-weight: 500; color: var(--text);
  background: var(--navy-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer; transition: color 0.2s; border: none;
}
.faq-q:hover { color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); background: rgba(0,201,184,0.05); }
.faq-chevron { color: var(--text-dim); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--teal); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 14.5px; color: var(--text-muted); line-height: 1.8; background: rgba(0,201,184,0.03); }
.faq-a a { color: var(--teal); font-weight: 600; }
.faq-item.open .faq-a { display: block; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy-2); border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; padding: 64px 0 48px; }
.footer-brand {}
.footer-brand-logo { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 14px; }
.footer-brand-logo .sky { color: var(--white); }
.footer-brand-logo .pass { color: var(--teal); font-style: italic; }
.footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 22px; max-width: 260px; }
.footer-phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 17px; font-weight: 700; color: var(--gold);
  transition: color 0.2s;
}
.footer-phone-link:hover { color: #ffd966; }
.footer-col-head { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col-links a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--teal); }

/* ── STICKY CALL BAR ────────────────────────────────────────── */
.call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 990;
  background: rgba(10,22,40,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid var(--border2);
  display: none;
}
.call-bar.visible { display: block; }
.cb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1200px; margin: 0 auto; padding: 10px 24px; }
.cb-left { display: flex; align-items: center; gap: 14px; }
.cb-icon { font-size: 22px; }
.cb-text {}
.cb-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }
.cb-headline { font-size: 13px; color: var(--text-muted); }
.cb-headline strong { color: var(--gold); }
.cb-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cb-live { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); }
.cb-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
.cb-cta { display: flex; align-items: center; gap: 8px; background: var(--teal); color: var(--navy); font-weight: 700; font-size: 14px; padding: 10px 22px; border-radius: var(--r-sm); transition: background 0.2s; }
.cb-cta:hover { background: #00ddd0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 80px 0 60px; }
  .hero-left-wrap { max-width: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .dests-mag { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-tile:first-child { grid-row: span 1; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card:nth-child(2) { transform: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-row: span 1; }
  .nl-inner { flex-direction: column; gap: 28px; }
  .nl-form { max-width: 100%; width: 100%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { gap: 0; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }
  .sp-inner { grid-template-columns: 1fr; }
  .sp-swap { display: none; }
  .deals-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .dests-mag { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cb-left { display: none; }
  body { padding-bottom: 70px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════════════
   US SEARCH PANEL ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */
.sp-heading-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.sp-heading-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal);
}
.sp-heading-sub {
  font-size: 12px; color: var(--text-dim);
}

/* Autocomplete wrapper */
.sp-ac-wrap { position: relative; }
.sp-ac-list {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--navy-light);
  border: 1px solid var(--border2);
  border-radius: 10px;
  max-height: 220px; overflow-y: auto;
  z-index: 500; box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  display: none; list-style: none; padding: 6px 0;
}
.sp-ac-list.open { display: block; }
.sp-ac-item {
  padding: 10px 16px; font-size: 14px; color: var(--text);
  cursor: pointer; transition: background 0.15s;
  display: flex; align-items: center; gap: 10px;
}
.sp-ac-item:hover, .sp-ac-item.active {
  background: rgba(0,201,184,0.12); color: var(--teal);
}
.sp-ac-iata {
  font-weight: 700; font-size: 12px; color: var(--teal);
  background: rgba(0,201,184,0.12);
  padding: 2px 6px; border-radius: 4px; flex-shrink: 0;
}
.sp-ac-city { flex: 1; }

/* Validation shake */
@keyframes shake {
  0%,100%{ transform: translateX(0); }
  25%{ transform: translateX(-6px); }
  75%{ transform: translateX(6px); }
}
.sp-error {
  border-color: #f87171 !important;
  animation: shake 0.3s ease;
}
.sp-error-msg {
  font-size: 11px; color: #f87171; margin-top: 4px;
  position: absolute; bottom: -18px; left: 0;
}

/* ════════════════════════════════════════════════════════════
   AGENT CONTACT MODAL
   ══════════════════════════════════════════════════════════ */
.agent-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.agent-modal {
  background: var(--navy-2);
  border: 1px solid var(--border2);
  border-radius: 20px;
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: slideUp 0.25s ease;
}
@keyframes slideUp { from{transform:translateY(30px);opacity:0} to{transform:translateY(0);opacity:1} }

.agent-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6); font-size: 18px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; border: none;
  z-index: 10;
}
.agent-modal-close:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* Modal header */
.am-header {
  text-align: center;
  padding: 36px 30px 20px;
  background: linear-gradient(160deg, var(--navy-3) 0%, var(--navy-2) 100%);
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid var(--border);
}
.am-live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(34,197,94,0.15); color: #4ade80;
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: 50px; margin-bottom: 14px;
}
.am-dot {
  width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.am-title {
  font-family: var(--font-head);
  font-size: clamp(24px,4vw,34px); font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.am-subtitle {
  font-size: 15px; color: var(--text-muted);
}

/* Route bar */
.am-route-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 30px;
  background: var(--navy-3);
  border-bottom: 1px solid var(--border);
}
.am-route-city {
  flex: 1; text-align: center;
  font-size: clamp(18px,3vw,24px); font-weight: 700; color: var(--white);
}
.am-route-middle {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.am-route-line {
  width: 40px; height: 1.5px;
  background: linear-gradient(to right, var(--teal), rgba(0,201,184,0.3));
}
.am-route-plane {
  font-size: 20px; color: var(--teal);
}

/* Trip chips */
.am-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 14px 30px;
  border-bottom: 1px solid var(--border);
}
.am-chip {
  background: rgba(0,201,184,0.1); border: 1px solid var(--border2);
  color: var(--teal); font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 50px;
}

/* Lock notice */
.am-lock-notice {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 30px;
  background: rgba(242,201,76,0.06);
  border-bottom: 1px solid var(--border);
}
.am-lock-icon { font-size: 22px; flex-shrink: 0; }
.am-lock-notice strong { font-size: 14px; color: var(--white); display: block; margin-bottom: 4px; }
.am-lock-notice p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.am-lock-notice strong em,
.am-lock-notice p strong { color: var(--gold); }

/* Call CTA */
.am-call-btn {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 30px 16px;
  background: linear-gradient(135deg, #00c9b8, #00a89a);
  color: var(--navy); text-decoration: none;
  padding: 18px 24px; border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s; position: relative;
  box-shadow: 0 8px 30px rgba(0,201,184,0.35);
}
.am-call-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,201,184,0.4); }
.am-call-icon-wrap {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.am-call-text { flex: 1; }
.am-call-label { display: block; font-size: 12px; font-weight: 600; opacity: 0.8; margin-bottom: 2px; }
.am-call-num { display: block; font-size: 22px; font-weight: 800; letter-spacing: 0.01em; }
.am-call-free {
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 800; padding: 4px 10px;
  border-radius: 50px; flex-shrink: 0; align-self: flex-start;
}

/* Contact cards row */
.am-contact-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  padding: 0 30px 20px;
}
.am-contact-card {
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 12px;
  text-align: center; transition: border-color 0.2s;
}
.am-contact-card:hover { border-color: var(--border2); }
.am-cc-emoji { font-size: 22px; margin-bottom: 8px; }
.am-cc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 4px; }
.am-cc-value { font-size: 13px; font-weight: 600; color: var(--text); }
.am-cc-value a { color: var(--teal); white-space: nowrap; font-size: 11px; }

/* Trust badges */
.am-trust-row {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  padding: 0 30px 20px;
}
.am-trust-badge {
  font-size: 12px; color: var(--text-muted);
  background: var(--border); padding: 5px 12px; border-radius: 50px;
}

/* Footnote */
.am-footnote {
  text-align: center; font-size: 11px; color: var(--text-dim);
  padding: 0 30px 24px; line-height: 1.6;
}

/* Scrollbar for modal */
.agent-modal::-webkit-scrollbar { width: 5px; }
.agent-modal::-webkit-scrollbar-track { background: transparent; }
.agent-modal::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* Responsive modal */
@media (max-width: 600px) {
  .am-contact-row { grid-template-columns: 1fr; }
  .am-call-btn { flex-wrap: wrap; }
  .am-header { padding: 28px 20px 16px; }
  .am-route-bar { padding: 16px 20px; }
  .am-lock-notice, .am-chips { padding-left: 20px; padding-right: 20px; }
  .am-call-btn { margin: 16px 20px; }
  .am-contact-row { padding: 0 20px 16px; }
  .am-trust-row, .am-footnote { padding-left: 20px; padding-right: 20px; }
  .am-route-line { width: 20px; }
}

