/* ========================= TOKENS ========================= */
:root {
  --coral: #FF6B1F;        /* brand orange (Glocal) */
  --coral-dark: #E55A12;
  --blue: #1976E5;         /* brand blue (Travel) */
  --blue-dark: #1259B8;
  --teal: #00B7C7;
  --gold: #FFC93C;
  --sky: #6EC1FF;
  --violet: #7C3AED;
  --ink: #0F2540;
  --ink-soft: #4B5C75;
  --paper: #FFF9F2;
  --cream: #FFF1E4;
  --line: rgba(15,37,64,0.08);
  --shadow-sm: 0 4px 14px rgba(15,37,64,0.06);
  --shadow-md: 0 12px 40px rgba(15,37,64,0.10);
  --shadow-lg: 0 30px 80px rgba(15,37,64,0.18);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id], [id="top"] { scroll-margin-top: 90px; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ========================= NAV ========================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(255,249,242,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 3px solid var(--blue);
  border-bottom: 1px solid transparent;
  transition: padding .25s, border-color .25s, background .25s;
}
.nav.scrolled { padding: 10px 48px; border-bottom-color: var(--line); }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.logo img { height: 46px; width: auto; display: block; }
.nav.scrolled .logo img { height: 40px; transition: height .25s; }
.footer .logo { background: white; padding: 8px 14px; border-radius: 12px; display: inline-flex; box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.footer .logo img { height: 38px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-weight: 500; font-size: 15px; color: var(--ink-soft);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  transition: width .25s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); font-weight: 600; }

/* mobile hamburger */
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 0; background: transparent; cursor: pointer;
  padding: 0; place-items: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative; transition: transform .25s, opacity .25s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform .25s;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav.menu-open .nav-toggle span { background: transparent; }
.nav.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ========================= BUTTONS ========================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-pill); border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s, filter .2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(255,107,31,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,107,31,0.5); filter: brightness(1.05); }
.btn-outline {
  background: white; color: var(--ink);
  border: 1.5px solid var(--line);
  padding: 10px 18px; font-size: 14px;
}
.btn-outline:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-1px); }
.nav-cta { font-size: 14px; padding: 10px 18px; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* ========================= HERO ========================= */
.hero {
  position: relative;
  padding: 130px 48px 72px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(255,201,60,0.18), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(0,183,199,0.15), transparent 55%),
    linear-gradient(180deg, #FFF9F2 0%, #FFEFE0 100%);
}
.hero-top {
  position: relative; z-index: 5;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; pointer-events: none; z-index: 0; animation: blob 18s ease-in-out infinite; }
.blob-1 { width: 360px; height: 360px; background: var(--coral); top: -80px; right: 20%; }
.blob-2 { width: 300px; height: 300px; background: var(--blue); bottom: 5%; left: -60px; animation-delay: -6s; opacity: 0.35; }
.blob-3 { width: 260px; height: 260px; background: var(--gold); top: 30%; right: -60px; animation-delay: -12s; }
@keyframes blob {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.08); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

.cloud {
  position: absolute; background: white;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}
.cloud::before, .cloud::after {
  content: ''; position: absolute; background: white; border-radius: 50%;
}
.cloud-1 { width: 80px; height: 30px; top: 18%; left: 8%; animation: drift 28s linear infinite; }
.cloud-1::before { width: 50px; height: 50px; top: -20px; left: 10px; }
.cloud-1::after { width: 38px; height: 38px; top: -14px; right: 8px; }
.cloud-2 { width: 60px; height: 22px; top: 35%; left: 38%; animation: drift 36s linear infinite; animation-delay: -10s; opacity: 0.6; }
.cloud-2::before { width: 36px; height: 36px; top: -16px; left: 6px; }
.cloud-2::after { width: 28px; height: 28px; top: -10px; right: 4px; }
.cloud-3 { width: 100px; height: 36px; top: 55%; left: 22%; animation: drift 42s linear infinite; animation-delay: -22s; opacity: 0.55; }
.cloud-3::before { width: 60px; height: 60px; top: -26px; left: 14px; }
.cloud-3::after { width: 44px; height: 44px; top: -16px; right: 10px; }
@keyframes drift {
  from { transform: translateX(-200px); }
  to { transform: translateX(calc(100vw + 200px)); }
}

.plane {
  position: absolute; width: 56px; height: auto;
  top: 18%; left: -80px;
  filter: drop-shadow(0 8px 18px rgba(25,118,229,0.35));
  animation: fly 22s linear infinite;
  z-index: 2;
}
@keyframes fly {
  0% { transform: translate(0, 0) rotate(-6deg); }
  50% { transform: translate(60vw, 40px) rotate(-2deg); }
  100% { transform: translate(120vw, -20px) rotate(-8deg); }
}
.plane-trail {
  position: absolute; top: 20%; left: 0; width: 100%; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(25,118,229,0.4) 0 12px, transparent 12px 22px);
  opacity: 0.25; z-index: 1;
}

.hero-inner { position: relative; z-index: 5; max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10B981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.0); }
}
.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 20px;
}
.title-accent { position: relative; display: inline-block; color: var(--blue); }
.title-accent .underline {
  position: absolute; left: 0; right: 0; bottom: -8px; width: 100%; height: 14px;
}
.hero-sub {
  font-size: 18px; color: var(--ink-soft); margin: 0 0 32px; max-width: 540px;
}

.search {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  background: white;
  padding: 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  border: 1px solid var(--line);
}
.search-field {
  padding: 8px 20px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.search-field:nth-child(3) { border-right: 0; }
.search-label { font-size: 11px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.05em; }
.search-field input {
  border: 0; outline: 0; font-family: inherit; font-size: 14px;
  padding: 2px 0; background: transparent; color: var(--ink);
  width: 100%;
}
.search-field input::placeholder { color: var(--ink-soft); opacity: 0.6; }
.search-btn { margin: 0; }

.stats { display: flex; align-items: flex-start; gap: 44px; margin-top: 8px; }
.stat { display: flex; flex-direction: column; align-items: flex-start; }
.stat-num { font-size: 46px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: var(--ink); display: inline; }
.stat-plus { font-size: 38px; font-weight: 800; color: var(--ink); margin-left: 1px; }
.stat-label { font-size: 15px; color: var(--coral); font-weight: 600; margin-top: 6px; }
.stat-divider { width: 1px; height: 36px; background: var(--line); }

.hero-collage {
  position: relative; height: 560px; z-index: 5;
}
.ph {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-1 { width: 280px; height: 380px; top: 30px; right: 60px; z-index: 3; transform: rotate(4deg); }
.ph-2 { width: 220px; height: 220px; top: 0; left: 20px; z-index: 2; transform: rotate(-6deg); animation-delay: -2s; }
.ph-3 { width: 240px; height: 200px; bottom: 30px; left: 60px; z-index: 1; transform: rotate(3deg); animation-delay: -4s; }
@keyframes float {
  0%,100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}
.ph-1 { --r: 4deg; }
.ph-2 { --r: -6deg; }
.ph-3 { --r: 3deg; }

.badge-float {
  position: absolute;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  z-index: 4;
  animation: float 5s ease-in-out infinite;
}
.badge-float strong { display: block; font-size: 14px; line-height: 1.2; }
.badge-float small { color: var(--ink-soft); font-size: 12px; }
.badge-emoji {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--coral));
  color: white; font-size: 18px;
}
.badge-1 { top: 200px; right: 10px; animation-delay: -1s; }
.badge-1 .badge-emoji { background: linear-gradient(135deg, var(--gold), #FF9D5C); }
.badge-2 { bottom: 80px; right: -10px; animation-delay: -3s; }
.badge-2 .badge-emoji { background: linear-gradient(135deg, var(--teal), var(--sky)); }

/* ========================= BOOKING WIDGET (FLIGHTS) ========================= */
.booking {
  position: relative;
  background: white;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(15,37,64,0.12);
  border: 1px solid var(--line);
  padding: 28px 28px 26px;
  margin: 54px auto 0;
  max-width: 1280px;
}
/* folder tab */
.booking-tab {
  position: absolute;
  bottom: 100%;
  left: 20px;
  margin-bottom: -2px;
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  padding: 14px 28px 16px;
  border-radius: 16px 16px 0 0;
  font-size: 17px; font-weight: 700; color: var(--ink);
}
.booking-tab svg { width: 30px; height: 30px; }
.booking-tab img { width: 30px; height: 30px; object-fit: contain; }

/* trip-type pills */
.trip-pills { display: flex; gap: 12px; margin-bottom: 20px; }
.trip-pill {
  font-family: inherit; cursor: pointer;
  padding: 9px 24px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: white;
  font-size: 14px; font-weight: 600; color: var(--ink);
  transition: border-color .2s, color .2s, background .2s;
}
.trip-pill:hover { border-color: var(--coral); }
.trip-pill.active { border-color: var(--coral); color: var(--coral); }

/* outlined field group */
.fields-row { display: flex; gap: 16px; align-items: stretch; }
.fields {
  flex: 1; display: flex;
  border: 1.5px solid var(--line); border-radius: 14px;
}
.fcell {
  position: relative; flex: 1; min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.fcell:last-child { border-right: 0; }
.fcell-label {
  position: absolute; top: -9px; left: 16px;
  background: white; padding: 0 6px;
  font-size: 12px; font-weight: 600; color: var(--ink-soft);
}
.fcell-main {
  font-size: 18px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.fcell-main svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--blue); }
.fcell-sub { font-size: 12px; color: var(--ink-soft); margin-top: 5px; line-height: 1.35; }
.fcell-sub.muted { font-size: 13px; }

/* swap origin/destination */
.swap { position: relative; flex: 0 0 0; width: 0; align-self: center; z-index: 4; }
.swap button {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: white; border: 1.5px solid #FFD3BC; color: var(--coral);
  cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(15,37,64,0.10);
  transition: transform .3s, border-color .2s;
}
.swap button svg { width: 16px; height: 16px; }
.swap button:hover { transform: translate(-50%, -50%) rotate(180deg); border-color: var(--coral); }

/* search button */
.search-flight {
  flex: 0 0 210px;
  border: 0; cursor: pointer; font-family: inherit;
  border-radius: 14px;
  background: linear-gradient(135deg, #FF8A3D 0%, var(--coral) 100%);
  color: white; font-size: 17px; font-weight: 700;
  box-shadow: 0 10px 24px rgba(255,107,31,0.35);
  transition: transform .2s, filter .2s;
}
.search-flight:hover { transform: translateY(-2px); filter: brightness(1.04); }

/* fare-type cards */
.fare-types { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.fare {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: white;
  cursor: pointer; font-family: inherit; text-align: left;
  transition: border-color .2s, background .2s;
}
.fare:hover { border-color: var(--blue); }
.fare-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid #C7D0DC; flex: 0 0 18px; position: relative;
}
.fare-text { display: flex; flex-direction: column; }
.fare-title { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.15; }
.fare-sub { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }
.fare.selected { background: var(--blue); border-color: var(--blue); }
.fare.selected .fare-radio { border-color: white; }
.fare.selected .fare-radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: white; }
.fare.selected .fare-title, .fare.selected .fare-sub { color: white; }
.fare.muted { opacity: 0.55; }

/* ---- booking widget: interactivity add-ons ---- */
.booking { position: relative; }
.fcell { cursor: pointer; user-select: none; }
.fcell:hover { background: rgba(255,241,228,0.5); }
.fcell:focus-visible { outline: 2px solid var(--coral); outline-offset: -2px; border-radius: 12px; }
.fcell.shake { animation: shake .35s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }

.dt-cell { position: relative; }

/* small × chip to clear return date */
.ret-clear {
  position: absolute; top: 10px; right: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--line); background: white; color: var(--ink-soft);
  font-size: 15px; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: color .15s, border-color .15s;
}
.ret-clear:hover { color: var(--coral); border-color: var(--coral); }

/* ---- popovers (airport picker + travellers) ---- */
/* position:fixed escapes the hero's `overflow:hidden` clipping */
.pop {
  position: fixed; z-index: 1000;
  min-width: 340px; max-width: 420px;
  background: white; border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: popIn .18s ease;
}
@keyframes popIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

.pop-search {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.pop-search svg { width: 18px; height: 18px; color: var(--ink-soft); flex: 0 0 18px; }
.pop-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 15px; color: var(--ink);
}
.pop-search input::placeholder { color: var(--ink-soft); }

.pop-hint {
  padding: 10px 16px 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft);
}

.pop-list { max-height: 320px; overflow-y: auto; padding: 4px; }
.pop-list::-webkit-scrollbar { width: 8px; }
.pop-list::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }

.ap-row {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: 10px 12px;
  border: 0; background: transparent; cursor: pointer;
  border-radius: 12px; font: inherit;
}
.ap-row:hover, .ap-row.is-active { background: var(--cream); }
.ap-code {
  flex: 0 0 auto;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  padding: 6px 10px; border-radius: 8px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
}
.ap-body { display: flex; flex-direction: column; min-width: 0; }
.ap-name { font-size: 14px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ap-loc  { font-size: 12px; color: var(--ink-soft); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ap-empty { padding: 24px 16px; text-align: center; color: var(--ink-soft); font-size: 14px; }

/* ---- travellers popover ---- */
.pop-travellers { padding: 18px 18px 16px; min-width: 340px; }
.trv-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.trv-info { display: flex; flex-direction: column; }
.trv-info strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.trv-info small { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.trv-step { display: flex; align-items: center; gap: 10px; }
.trv-step button {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid var(--line); background: white; color: var(--ink);
  font-size: 18px; font-weight: 700; cursor: pointer;
  display: grid; place-items: center;
  transition: border-color .15s, color .15s, background .15s;
}
.trv-step button:hover:not(:disabled) { border-color: var(--coral); color: var(--coral); }
.trv-step button:disabled { opacity: 0.35; cursor: not-allowed; }
.trv-val { min-width: 20px; text-align: center; font-size: 15px; font-weight: 700; color: var(--ink); }

.trv-note {
  font-size: 11px; color: var(--ink-soft);
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--paper); border-radius: 8px;
  line-height: 1.4;
}
.trv-classes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.trv-class {
  flex: 1 1 calc(50% - 4px);
  padding: 9px 12px;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: white; color: var(--ink); font: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.trv-class:hover { border-color: var(--blue); }
.trv-class.active { background: var(--blue); border-color: var(--blue); color: white; }

.trv-actions { display: flex; justify-content: flex-end; margin-top: 14px; }
.trv-actions .btn-primary { padding: 10px 22px; font-size: 14px; }

/* ---- calendar popover ---- */
.pop-cal {
  min-width: 660px; max-width: 720px;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(255,201,60,0.10), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0,183,199,0.08), transparent 45%),
    white;
}
.cal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 18px 22px 12px;
  border-bottom: 1px solid var(--line);
}
.cal-mode {
  font-size: 15px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.01em;
}
.cal-hint {
  font-size: 12px; color: var(--ink-soft);
  margin-top: 3px;
}
.cal-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line); background: white; color: var(--ink-soft);
  cursor: pointer; display: grid; place-items: center;
  transition: color .15s, border-color .15s;
}
.cal-close:hover { color: var(--coral); border-color: var(--coral); }
.cal-close svg { width: 14px; height: 14px; }

.cal-nav-row {
  display: flex; align-items: stretch;
  padding: 12px 12px 4px;
  gap: 8px;
}
.cal-nav {
  flex: 0 0 34px; width: 34px;
  align-self: center;
  height: 34px; border-radius: 50%;
  border: 1.5px solid var(--line); background: white; color: var(--ink);
  cursor: pointer; display: grid; place-items: center;
  transition: border-color .15s, color .15s, background .15s;
}
.cal-nav:hover { border-color: var(--coral); color: var(--coral); }
.cal-nav svg { width: 14px; height: 14px; }
.cal-panels {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  padding: 4px 4px 8px;
}
.cal-panel { position: relative; }
.cal-title {
  text-align: center; font-size: 15px; font-weight: 800; color: var(--coral);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cal-title span { color: var(--ink-soft); font-weight: 700; margin-left: 4px; }
.cal-dow {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.cal-dow span {
  text-align: center; font-size: 11px; font-weight: 700;
  color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 0;
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 36px;
  border: 0; background: transparent;
  font: inherit; font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: pointer; border-radius: 10px;
  transition: background .15s, color .15s, transform .1s;
}
.cal-day:hover:not(:disabled):not(.is-start):not(.is-end) { background: var(--cream); }
.cal-day.is-blank { pointer-events: none; }
.cal-day.is-disabled, .cal-day:disabled {
  color: rgba(75,92,117,0.35); cursor: not-allowed;
}
.cal-day.is-today::after {
  content: ''; position: absolute; bottom: 5px; left: 50%;
  width: 4px; height: 4px; margin-left: -2px;
  border-radius: 50%; background: var(--coral);
}
.cal-day.is-inrange {
  background: linear-gradient(90deg, rgba(255,201,60,0.18), rgba(255,107,31,0.18));
  border-radius: 0;
  color: var(--ink);
}
.cal-day.is-hover-range {
  background: rgba(255,201,60,0.12);
  border-radius: 0;
}
.cal-day.is-hover-end {
  background: rgba(255,107,31,0.25);
  border-radius: 0 10px 10px 0;
}
.cal-day.is-start, .cal-day.is-end {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(255,107,31,0.35);
  transform: scale(1.02);
}
.cal-day.is-start.is-end { border-radius: 10px; }
.cal-day.is-start:not(.is-end) { border-radius: 10px 0 0 10px; }
.cal-day.is-end:not(.is-start) { border-radius: 0 10px 10px 0; }
.cal-day.is-start.is-today::after,
.cal-day.is-end.is-today::after { background: white; }

.cal-quick {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 10px 22px;
  border-top: 1px dashed var(--line);
  background: var(--paper);
}
.cal-quick button {
  padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: white; color: var(--ink);
  font: inherit; font-size: 12px; font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s, transform .1s;
}
.cal-quick button:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-1px); }

.cal-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.cal-summary {
  flex: 1; min-width: 0;
  font-size: 13px; color: var(--ink-soft); line-height: 1.5;
}
.cal-summary strong { color: var(--ink); font-weight: 700; }
.cal-summary em { color: var(--ink-soft); font-style: normal; font-weight: 500; }
.cal-summary .cal-arrow { color: var(--coral); font-weight: 800; margin: 0 6px; }
.cal-actions { display: flex; gap: 10px; }
.cal-clear {
  padding: 9px 16px; border-radius: 12px;
  border: 1px solid var(--line); background: white; color: var(--ink-soft);
  font: inherit; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: color .15s, border-color .15s;
}
.cal-clear:hover { color: var(--coral); border-color: var(--coral); }
.cal-actions .btn-primary { padding: 9px 22px; font-size: 13px; }

@media (max-width: 900px) {
  .pop { position: fixed !important; left: 12px !important; right: 12px !important; top: auto !important; bottom: 12px; min-width: 0; max-width: none; }
  .pop-list { max-height: 50vh; }
  .pop-cal { min-width: 0; max-height: 90vh; overflow-y: auto; }
  .cal-panels { grid-template-columns: 1fr; }
  .cal-nav-row { padding: 8px 8px 0; }
}

/* ========================= POPULAR ROUTES ========================= */
.routes {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 26px auto 0;
  max-width: 1280px;
}
.routes-label { font-size: 13px; font-weight: 800; color: var(--ink-soft); letter-spacing: 0.08em; }
.route-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  font-size: 15px; font-weight: 800; color: var(--ink);
  box-shadow: var(--shadow-sm);
  cursor: pointer; font-family: inherit;
  transition: transform .2s, box-shadow .2s;
}
.route-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.route-chip .route-arrow { color: var(--coral); }
.route-chip .route-price {
  color: var(--ink-soft); font-weight: 600; font-size: 13px;
  padding-left: 14px; margin-left: 4px;
  border-left: 1px solid var(--line);
}
.route-chip .route-price strong { color: var(--blue); font-weight: 800; }

/* ========================= FLIGHT DEALS (BOARDING PASS CARDS) ========================= */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.boarding {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--line);
}
.boarding:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.bp-top {
  position: relative;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--blue) 0%, #1259B8 100%);
  color: white;
}
.bp-top.orange { background: linear-gradient(135deg, #FF8A3D 0%, var(--coral) 100%); }
.bp-top.dark { background: linear-gradient(135deg, var(--ink) 0%, #2C4F7C 100%); }
.bp-airline {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 600;
  opacity: 0.9;
  margin-bottom: 14px;
}
.bp-airline-name { display: inline-flex; align-items: center; gap: 8px; }
.bp-airline-logo {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800;
  letter-spacing: -0.02em;
}
.bp-class {
  background: rgba(255,255,255,0.18);
  padding: 3px 10px; border-radius: var(--r-pill);
  font-size: 11px; letter-spacing: 0.04em;
}

.bp-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.bp-iata {
  font-size: 32px; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bp-city {
  font-size: 11px; opacity: 0.85;
  margin-top: 4px;
  font-weight: 500;
}
.bp-path {
  position: relative;
  height: 32px;
  display: flex; align-items: center;
  justify-content: center;
}
.bp-path::before {
  content: ''; position: absolute; left: 4px; right: 4px; top: 50%;
  border-top: 2px dashed rgba(255,255,255,0.5);
}
.bp-path svg {
  position: relative; z-index: 2;
  background: var(--bp-bg, var(--blue));
  padding: 0 6px;
  width: 28px; height: 28px;
}
.bp-top.orange .bp-path svg { background: var(--coral); }
.bp-top.dark .bp-path svg { background: var(--ink); }

.bp-perforation {
  position: relative;
  height: 18px;
  background: linear-gradient(to right, #F3F5F8 50%, transparent 50%);
  background-size: 14px 1px;
  background-repeat: repeat-x;
  background-position: 0 50%;
}
.bp-perforation::before, .bp-perforation::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--paper);
}
.bp-perforation::before { left: -9px; }
.bp-perforation::after { right: -9px; }

.bp-bottom {
  padding: 16px 22px 18px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.bp-meta-label {
  font-size: 10px; color: var(--ink-soft); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.bp-meta-value { font-size: 14px; font-weight: 700; color: var(--ink); }

.bp-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px 18px;
  border-top: 1px dashed var(--line);
}
.bp-price { display: flex; flex-direction: column; }
.bp-price small { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.bp-price strong { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.bp-price strong span { color: var(--coral); font-size: 18px; }

.bp-book {
  background: var(--blue); color: white;
  padding: 10px 18px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 700;
  text-decoration: none;
  transition: transform .2s, filter .2s;
}
.bp-book:hover { transform: translateY(-2px); filter: brightness(1.1); }
.bp-top.orange ~ .bp-foot .bp-book { background: var(--coral); }
.bp-top.dark ~ .bp-foot .bp-book { background: var(--coral); }

/* ========================= FLIGHT PATH ARC (hero) ========================= */
.flight-arc {
  position: absolute;
  right: -40px;
  top: 60px;
  width: 420px;
  height: 220px;
  z-index: 4;
  pointer-events: none;
}
.flight-arc svg { width: 100%; height: 100%; overflow: visible; }
.arc-path { stroke: var(--blue); stroke-width: 2; stroke-dasharray: 4 6; fill: none; opacity: 0.6; }
.arc-pin {
  fill: var(--coral); stroke: white; stroke-width: 2;
}
.arc-label {
  font: 700 11px 'Plus Jakarta Sans', sans-serif;
  fill: var(--ink);
}
.arc-plane {
  fill: var(--blue); stroke: white; stroke-width: 1;
  offset-path: path('M20 180 Q 200 -20 380 100');
  offset-rotate: auto;
  animation: arc-fly 6s ease-in-out infinite;
}
@keyframes arc-fly {
  0% { offset-distance: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
.marquee {
  background: linear-gradient(90deg, var(--ink) 0%, #1A3A5C 100%);
  color: white;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  animation: scroll 45s linear infinite;
  font-size: 20px; font-weight: 600;
}
.marquee-track span { display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================= SECTIONS ========================= */
.section {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head.light { color: white; }
.section-head.light .kicker { background: rgba(255,255,255,0.15); color: white; }
.section-head.light .section-title { color: white; }
.kicker {
  display: inline-block;
  background: var(--cream);
  color: var(--coral);
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 14px;
}
.section-sub { font-size: 17px; color: var(--ink-soft); margin: 0; }

/* ========================= DESTINATIONS ========================= */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative;
  height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  color: white;
  background: linear-gradient(180deg, transparent 0%, rgba(15,37,64,0.0) 30%, rgba(15,37,64,0.85) 100%);
}
.dest-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dest-tag {
  background: rgba(255,255,255,0.95); color: var(--ink);
  padding: 4px 10px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600;
}
.dest-price {
  background: var(--accent, var(--coral));
  padding: 4px 12px; border-radius: var(--r-pill); font-size: 12px; font-weight: 700; color: white;
}
.dest-overlay h3 { font-size: 24px; margin: 0 0 6px; font-weight: 700; letter-spacing: -0.02em; }
.dest-overlay p { font-size: 14px; margin: 0 0 12px; opacity: 0.9; line-height: 1.45; }
.dest-link {
  display: inline-block; font-weight: 600; font-size: 14px;
  color: white; padding-bottom: 2px;
  border-bottom: 2px solid var(--accent, var(--coral));
  transition: gap .2s;
}

/* ========================= WHY ========================= */
.why {
  position: relative;
  padding: 100px 48px;
  background: linear-gradient(135deg, #0F2540 0%, #1A3A5C 60%, #2C4F7C 100%);
  color: white;
  overflow: hidden;
}
.why-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,107,31,0.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(25,118,229,0.30), transparent 40%);
  pointer-events: none;
}
.why-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1280px; margin: 0 auto;
}
.why-card {
  display: block;
  color: inherit; text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 28px;
  border-radius: var(--r-md);
  transition: transform .3s, background .3s, border-color .3s;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.2); }
.why-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.why-card h3 { font-size: 19px; margin: 0 0 8px; font-weight: 700; }
.why-card p { font-size: 14px; margin: 0; color: rgba(255,255,255,0.75); line-height: 1.55; }

/* ========================= PACKAGES ========================= */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-img { position: relative; height: 220px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.pkg:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--coral); color: white;
  padding: 5px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 700;
}
.pkg-body { padding: 22px 24px 24px; }
.pkg-rating { font-size: 13px; color: var(--gold); margin-bottom: 8px; letter-spacing: 1px; }
.pkg-rating span { color: var(--ink-soft); margin-left: 6px; letter-spacing: 0; }
.pkg h3 { font-size: 21px; margin: 0 0 6px; font-weight: 700; letter-spacing: -0.02em; }
.pkg p { font-size: 14px; color: var(--ink-soft); margin: 0 0 18px; }
.pkg-foot { display: flex; justify-content: space-between; align-items: center; }
.pkg-foot small { display: block; font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.pkg-foot strong { font-size: 22px; font-weight: 800; color: var(--ink); }

/* ========================= STORIES ========================= */
.stories {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.story {
  background: var(--tint, var(--cream));
  border-radius: var(--r-lg);
  padding: 32px 28px;
  margin: 0;
  position: relative;
  transition: transform .3s;
}
.story:hover { transform: translateY(-4px); }
.story-quote {
  font-family: 'Caveat', serif;
  font-size: 90px;
  line-height: 0.6;
  color: var(--coral);
  margin-bottom: 8px;
}
.story blockquote {
  font-size: 16px; line-height: 1.6;
  margin: 0 0 20px;
  color: var(--ink);
}
.story figcaption { display: flex; align-items: center; gap: 12px; }
.story figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.story figcaption strong { display: block; font-size: 14px; }
.story figcaption small { color: var(--ink-soft); font-size: 12px; }

/* ========================= CTA ========================= */
.cta {
  padding: 60px 48px 100px;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-inner {
  background: linear-gradient(135deg, #FFB347 0%, var(--coral) 50%, #E85F32 100%);
  border-radius: var(--r-lg);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
}
.cta-inner::after {
  content: ''; position: absolute; bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-text { position: relative; z-index: 2; }
.caveat { font-family: 'Caveat', cursive; font-size: 32px; color: var(--gold); font-weight: 700; line-height: 1; }
.cta-text h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin: 8px 0 16px; }
.cta-text p { font-size: 16px; margin: 0; opacity: 0.92; max-width: 420px; }
.cta-form {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 14px;
  color: white;
}
.cta-form-title { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; margin: 0; color: white; }
.cta-form-sub { font-size: 15px; font-weight: 600; margin: -6px 0 6px; color: white; }
.cta-form label { display: flex; flex-direction: column; gap: 8px; }
.cta-form label span { font-size: 15px; font-weight: 700; letter-spacing: 0; text-transform: none; color: white; }
.cta-form label span i { color: #E11D2E; font-style: normal; margin-left: 2px; }
.cta-form input, .cta-form textarea {
  font-family: inherit; font-size: 15px;
  padding: 13px 14px; border-radius: 10px;
  border: 0; outline: 0;
  background: #EEF1F8; color: var(--ink);
  transition: box-shadow .2s;
  width: 100%;
}
.cta-form textarea { resize: vertical; min-height: 110px; }
.cta-form input:focus, .cta-form textarea:focus { box-shadow: 0 0 0 2px rgba(25,118,229,0.5); }

/* Phone input with fixed +91 prefix chip */
.phone-wrap {
  display: flex;
  align-items: stretch;
  background: #EEF1F8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.phone-wrap:focus-within { box-shadow: 0 0 0 2px rgba(25,118,229,0.5); }
.phone-prefix {
  display: inline-flex; align-items: center;
  padding: 0 14px;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 15px; font-weight: 700; color: var(--ink);
  background: rgba(15,37,64,0.06);
  border-right: 1px solid rgba(15,37,64,0.12);
  letter-spacing: 0.02em;
  user-select: none;
}
.phone-wrap input {
  flex: 1;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0.04em;
}
.cta-form label.is-invalid .phone-wrap { box-shadow: 0 0 0 2px #E11D2E; background: #FFF4F2; }
.cta-form label.is-invalid .phone-wrap .phone-prefix { background: rgba(225,29,46,0.12); border-right-color: rgba(225,29,46,0.25); }
.cta-form label.is-valid .phone-wrap { box-shadow: inset 0 0 0 1px rgba(16,185,129,0.55); }

/* Captcha row */
.captcha-wrap {
  display: flex; align-items: stretch;
  background: #EEF1F8;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.captcha-wrap:focus-within { box-shadow: 0 0 0 2px rgba(25,118,229,0.5); }
.captcha-q {
  display: inline-flex; align-items: center;
  padding: 0 18px;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 17px; font-weight: 800; color: var(--ink);
  background: rgba(15,37,64,0.08);
  border-right: 1px solid rgba(15,37,64,0.12);
  letter-spacing: 0.08em;
  user-select: none;
  min-width: 92px;
  justify-content: center;
}
.captcha-wrap input {
  flex: 1;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0.08em;
  text-align: center;
}
.captcha-refresh {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; padding: 0;
  border: 0; border-left: 1px solid rgba(15,37,64,0.12);
  background: rgba(15,37,64,0.06); color: var(--ink-soft);
  cursor: pointer;
  transition: color .15s, background .15s, transform .35s;
}
.captcha-refresh svg { width: 16px; height: 16px; }
.captcha-refresh:hover { color: var(--coral); background: rgba(255,107,31,0.10); transform: rotate(-180deg); }
.captcha-refresh:active { transform: rotate(-360deg); }
.cta-form label.is-invalid .captcha-wrap { box-shadow: 0 0 0 2px #E11D2E; background: #FFF4F2; }
.cta-form label.is-invalid .captcha-wrap .captcha-q { background: rgba(225,29,46,0.12); border-right-color: rgba(225,29,46,0.25); }
.cta-form label.is-valid .captcha-wrap { box-shadow: inset 0 0 0 1px rgba(16,185,129,0.55); }

/* Validation states */
.cta-form label.is-invalid input,
.cta-form label.is-invalid textarea { box-shadow: 0 0 0 2px #E11D2E; background: #FFF4F2; }
.cta-form label.is-invalid input:focus,
.cta-form label.is-invalid textarea:focus { box-shadow: 0 0 0 3px rgba(225,29,46,0.35); }
.cta-form label.is-valid input,
.cta-form label.is-valid textarea { box-shadow: inset 0 0 0 1px rgba(16,185,129,0.55); }
.cta-err {
  display: none;
  align-self: flex-start;
  font-size: 12px; font-weight: 600;
  color: #FFC9C0;
  background: rgba(225,29,46,0.18);
  padding: 5px 10px;
  border-radius: 8px;
  border-left: 3px solid #E11D2E;
  margin-top: 2px;
  animation: pop .2s ease-out;
}
.cta-form label.is-invalid .cta-err:not(:empty) { display: inline-block; }
.cta-submit:disabled { opacity: 0.7; cursor: wait; transform: none; filter: none; }
.cta-success.is-error {
  background: rgba(225,29,46,0.22);
  color: #FFE0DA;
}
.cta-submit {
  align-self: flex-start;
  font-family: inherit; font-size: 15px; font-weight: 700;
  color: white; cursor: pointer; border: 0;
  background: var(--blue);
  padding: 12px 28px; border-radius: 8px;
  margin-top: 4px;
  transition: transform .2s, filter .2s;
}
.cta-submit:hover { transform: translateY(-2px); filter: brightness(1.08); }
.cta-success {
  display: none;
  font-size: 14px; font-weight: 600; color: #fff;
  background: rgba(255,255,255,0.18);
  padding: 10px 14px; border-radius: var(--r-sm);
  text-align: center;
}
.cta-success.show { display: block; animation: pop .4s ease-out; }
@keyframes pop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ========================= FOOTER ========================= */
.footer {
  position: relative;
  background: #0a0b0d;
  color: rgba(255,255,255,0.62);
  padding: 70px 48px 26px;
  overflow: hidden;
}
.footer-decor {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: url('assets/footer-bg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.footer > *:not(.footer-decor) { position: relative; z-index: 1; }

.footer-contact {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  padding-bottom: 46px;
}
.fc-item { display: flex; align-items: flex-start; gap: 20px; }
.fc-icon {
  flex: 0 0 64px; width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: grid; place-items: center;
}
.fc-icon svg { width: 28px; height: 28px; }
.fc-text h3 { color: #fff; font-size: 22px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.01em; }
.fc-text p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.6); }
.fc-text a { color: rgba(255,255,255,0.6); transition: color .2s; }
.fc-text a:hover { color: #fff; }

.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.13); max-width: 1280px; margin: 0 auto; }

.footer-main {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1.2fr 0.7fr; gap: 30px;
  padding: 48px 0 44px;
}
.footer-brand .logo { background: none; padding: 0; box-shadow: none; display: inline-flex; }
.footer-brand .logo img { height: 38px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 15px; line-height: 1.65; margin: 22px 0 0; max-width: 290px; color: rgba(255,255,255,0.58); }
.footer-col h4 { color: #fff; font-size: 17px; font-weight: 700; margin: 0 0 16px; text-transform: none; letter-spacing: 0; }
.footer-col a { display: block; font-size: 15px; padding: 7px 0; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 14px; margin-top: 2px; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.09); color: #fff;
  display: grid; place-items: center;
  transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--blue); transform: translateY(-2px); }
.footer-copy {
  text-align: center; font-size: 15px; color: rgba(255,255,255,0.5);
  padding-top: 24px;
}

/* ========================= REVEAL ========================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 28px 60px; }
  .hero-collage { height: 420px; max-width: 500px; }
  .dest-grid, .pkg-grid, .stories-grid, .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .deals-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { grid-template-columns: 1fr; padding: 40px; }
  .nav-toggle { display: grid; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(255,249,242,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.menu-open .nav-links { max-height: 380px; }
  .nav-links a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav, .nav.scrolled { padding: 12px 24px; }
  .section, .stories, .cta { padding-left: 24px; padding-right: 24px; }
  .why { padding-left: 24px; padding-right: 24px; }
  .search { grid-template-columns: 1fr 1fr; }
  .search-field { border-right: 0; border-bottom: 1px solid var(--line); }
  .search-btn { grid-column: 1 / -1; border-radius: var(--r-pill); }
  .hero-top { grid-template-columns: 1fr; gap: 32px; }
  .fields-row { flex-direction: column; }
  .fields { flex-direction: column; }
  .fcell { border-right: 0; border-bottom: 1px solid var(--line); }
  .fcell:last-child { border-bottom: 0; }
  .swap { display: none; }
  .search-flight { flex: 0 0 auto; width: 100%; padding: 16px; }
}
@media (max-width: 640px) {
  .hero-title { font-size: 44px; }
  .stats { gap: 16px; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .dest-grid, .pkg-grid, .stories-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-collage { height: 360px; }
  .ph-1 { width: 220px; height: 300px; right: 20px; }
  .ph-2 { width: 160px; height: 160px; }
  .ph-3 { width: 180px; height: 150px; left: 30px; }
  .footer-copy { text-align: center; }
  .fare-types { flex-direction: column; }
  .fare { width: 100%; }
  .booking { padding: 22px 18px; }
  .route-chip { font-size: 14px; }
  .bp-iata { font-size: 26px; }
}
