/* ============================================================
   Fare Avenue — Flight Booking & Travel Deals
   Design system: "Elevated Sky" — midnight navy, sky cyan,
   warm gold accents, editorial typography.
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Reset & Tokens ---------- */
:root {
  --ink: #070D1A;
  --navy: #0B1B3B;
  --navy-2: #12264D;
  --navy-3: #1A3160;
  --sky: #2E9BFF;
  --sky-deep: #1470E0;
  --sky-soft: #E3F0FF;
  --gold: #FFB43A;
  --gold-deep: #F59A1F;
  --coral: #FF5A5F;
  --paper: #F4F7FC;
  --white: #FFFFFF;
  --line: #E4EBF4;
  --text-dark: #1B2740;
  --text-mid: #5A6B85;
  --text-light: #93A4BE;
  --text-on-dark: #D6E1F2;
  --text-dim: #8CA0C0;

  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-card: 0 12px 40px rgba(11, 27, 59, 0.10);
  --shadow-pop: 0 24px 60px rgba(11, 27, 59, 0.18);
  --shadow-glow: 0 10px 40px rgba(46, 155, 255, 0.35);

  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* overflow-x hidden on the root as well — a fixed-position nav / absolute
   decorative elements inside body are contained by html, so body alone can
   leave a horizontal scrollbar. */
html { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* ---------- Utilities ---------- */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 14px;
}
.sec-label::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.sec-label.light { color: var(--sky); }

.sec-title {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  max-width: 22ch;
}
.sec-title.light { color: var(--white); }

.sec-sub {
  color: var(--text-mid);
  max-width: 56ch;
  margin-top: 14px;
}
.sec-sub.light { color: var(--text-on-dark); }

section { padding-block: clamp(70px, 9vw, 110px); position: relative; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #4A2C00;
  box-shadow: 0 12px 28px rgba(255, 180, 58, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255, 180, 58, 0.45); }
.btn-sky {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-sky:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(46, 155, 255, 0.5); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(7, 13, 26, 0.0);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s, top 0.45s var(--ease);
}
/* Hide the header when scrolling down (re-appears on scroll up).
   Keeps the reading area clean on mobile — better landing-page experience.
   We move the header via `top` (NOT `transform`) so the fixed-position mobile
   nav inside it keeps the viewport as its containing block and cannot leak
   its buttons into view when the header is hidden. */
.header.hidden { top: -100%; }
.header.scrolled {
  background: rgba(7, 13, 26, 0.85);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
/* Blur only on desktop. backdrop-filter (like transform) makes the header a
   containing block for its fixed-position mobile nav and would collapse the
   nav to the header's height, leaking its buttons into view. */
@media (min-width: 861px) {
  .header.scrolled { backdrop-filter: blur(14px); }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 18px;
  transition: padding 0.35s var(--ease);
}
.header.scrolled .header-inner { padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand .logo-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--sky) 0%, var(--navy-3) 130%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(46, 155, 255, 0.35);
  flex-shrink: 0;
}
.brand svg { width: 26px; height: 26px; }
/* Stack "Fare Avenue" above "Travel & Flights" (tagline on its own line). */
.brand > span:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.brand-name span { color: var(--gold); }
.brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  opacity: 0.8;
}

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-on-dark);
  border-radius: 40px;
  transition: color 0.25s;
}
.nav a:hover { color: var(--white); }
.nav a.active { color: var(--gold); }
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a.active::after { transform: scaleX(1); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-cta .btn { padding: 12px 24px; font-size: 0.88rem; }
/* The CTA inside the nav is only shown in the mobile (hamburger) menu.
   Hide it on desktop so we don't end up with two "call" buttons. */
.nav .header-cta { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 0;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(46, 155, 255, 0.35), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(255, 180, 58, 0.14), transparent 55%),
    var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 0%, transparent 75%);
  pointer-events: none;
}
.hero .plane-bg {
  position: absolute;
  right: -4%;
  bottom: -10%;
  width: min(46vw, 620px);
  opacity: 0.16;
  transform: rotate(-6deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  padding-bottom: 90px;
}

.hero-copy .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sky-soft);
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255, 180, 58, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 180, 58, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(255, 180, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 180, 58, 0); }
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--sky) 0%, #7CC4FF 60%, var(--gold) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-copy p {
  color: var(--text-on-dark);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.hero-stats .stat b span { color: var(--gold); }
.hero-stats .stat small {
  color: var(--text-dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Flight quote card ---- */
.quote-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-lg);
  padding: 30px 28px 28px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(46,155,255,0.7), transparent 40%, rgba(255,180,58,0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.quote-head h3 {
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.quote-head h3 span {
  color: var(--sky);
}
.quote-head .head-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A2C00;
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 40px;
}

.trip-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 5px;
  margin-bottom: 18px;
}
.trip-type label {
  position: relative;
  text-align: center;
  padding: 9px 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-on-dark);
  border-radius: 7px;
  cursor: pointer;
  transition: color 0.25s, background 0.25s;
}
.trip-type input { position: absolute; opacity: 0; }
.trip-type label:has(input:checked) {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(46, 155, 255, 0.4);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238CA0C0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-field select option { background: var(--navy); color: var(--white); }
.form-field input::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field select:focus {
  border-color: var(--sky);
  background: rgba(46, 155, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(46, 155, 255, 0.15);
}
.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

.form-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.form-footer .btn { width: 100%; }
.form-note {
  font-size: 0.74rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
}
.form-note svg { flex-shrink: 0; }

/* ---------- Ticker / marquee ---------- */
.ticker {
  background: var(--navy-2);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text-on-dark);
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
}
.ticker-track span svg { color: var(--gold); flex-shrink: 0; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Allow grid children to shrink below their content's min-content width so
   long feature text cannot blow the section wider than the viewport on mobile. */
.about-grid > * { min-width: 0; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy > p {
  color: var(--text-mid);
  margin-bottom: 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 30px;
}
.feat {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.feat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(46, 155, 255, 0.4);
}
.feat-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--sky-soft) 0%, #CFE5FF 100%);
  color: var(--sky-deep);
}
.feat b { font-size: 0.95rem; display: block; margin-bottom: 3px; }
.feat small { color: var(--text-mid); font-size: 0.82rem; line-height: 1.5; display: block; }

.about-visual { position: relative; }
.about-visual .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  width: 100%;
}
.about-card {
  position: absolute;
  left: -28px;
  bottom: 34px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-pop);
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}
.about-card .card-ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #4A2C00;
  flex-shrink: 0;
}
.about-card b { display: block; font-size: 1.05rem; color: var(--ink); line-height: 1.2; }
.about-card small { color: var(--text-mid); font-size: 0.78rem; }
.experience-badge {
  position: absolute;
  top: -26px;
  right: -14px;
  width: 108px; height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  box-shadow: var(--shadow-pop);
  border: 4px solid var(--white);
  animation: spin-slow 18s linear infinite;
}
.experience-badge > div { animation: spin-back 18s linear infinite; }
.experience-badge b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); line-height: 1; }
.experience-badge small { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-on-dark); }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-back { to { transform: rotate(-360deg); } }

/* ---------- Destinations ---------- */
.destinations {
  background:
    radial-gradient(900px 400px at 100% 0%, rgba(46, 155, 255, 0.06), transparent 60%),
    var(--paper);
}
.dest-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  box-shadow: 0 10px 30px rgba(11, 27, 59, 0.12);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.dest-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-pop); }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dest-card:hover img { transform: scale(1.12); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 26, 0) 30%, rgba(7, 13, 26, 0.78) 100%);
}
.dest-card .price-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 7px 13px;
  border-radius: 40px;
  transition: opacity 0.4s;
}
.dest-card .price-tag b { color: var(--gold); font-size: 0.92rem; }
.dest-card:hover .price-tag { background: rgba(255, 180, 58, 0.92); color: #4A2C00; }
.dest-card:hover .price-tag b { color: #4A2C00; }
.dest-info {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
}
.dest-info h3 { color: var(--white); font-size: 1.4rem; }
.dest-info .dest-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
}
.dest-info .dest-meta svg { color: var(--gold); }
.dest-hover {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
  transition: max-height 0.5s var(--ease), opacity 0.4s, margin 0.4s;
}
.dest-card:hover .dest-hover {
  max-height: 90px;
  opacity: 1;
  margin-top: 12px;
}
.dest-hover .btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  margin-top: 8px;
  font-size: 0.84rem;
}
.dest-hover .btn-inline:hover svg { transform: translateX(4px); }
.dest-hover .btn-inline svg { transition: transform 0.3s; }

/* ---------- Deals ---------- */
.deals {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.deals::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(46, 155, 255, 0.16), transparent 60%),
    radial-gradient(600px 400px at 95% 100%, rgba(255, 180, 58, 0.1), transparent 55%);
  pointer-events: none;
}
.deals .sec-title, .deals .sec-sub { position: relative; }
.deals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
  position: relative;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.deal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.deal-card:hover { transform: translateY(-6px); border-color: rgba(46, 155, 255, 0.5); background: rgba(46, 155, 255, 0.08); }
.deal-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255, 180, 58, 0.14);
  padding: 5px 10px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.deal-route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.deal-route .city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.deal-route .city small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}
.route-line {
  flex: 1;
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.35) 0 6px, transparent 6px 12px);
}
.route-line .plane {
  position: absolute;
  left: 45%;
  top: -8px;
  color: var(--sky);
  animation: fly 3.5s ease-in-out infinite;
}
@keyframes fly {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.deal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
  margin-top: 16px;
  padding-top: 14px;
}
.deal-price b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}
.deal-price small { color: var(--text-dim); font-size: 0.76rem; display: block; }
.deal-book {
  padding: 10px 18px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  color: var(--white);
  font-weight: 700;
  font-size: 0.84rem;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.deal-book:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.deals-note {
  margin-top: 36px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.84rem;
  position: relative;
}
.deals-note a { color: var(--sky); font-weight: 700; }

/* ---------- Why choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  text-align: center;
  padding: 34px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(46, 155, 255, 0.45);
}
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(140deg, var(--sky) 0%, var(--sky-deep) 100%);
  box-shadow: var(--shadow-glow);
}
.why-card:nth-child(2) .why-icon { background: linear-gradient(140deg, var(--gold) 0%, var(--gold-deep) 100%); color: #4A2C00; box-shadow: 0 10px 28px rgba(255, 180, 58, 0.4); }
.why-card:nth-child(3) .why-icon { background: linear-gradient(140deg, #7B61FF 0%, #5B41E8 100%); box-shadow: 0 10px 28px rgba(123, 97, 255, 0.4); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(140deg, var(--coral) 0%, #E4402F 100%); box-shadow: 0 10px 28px rgba(255, 90, 95, 0.4); }
.why-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.why-card p { color: var(--text-mid); font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper); overflow: hidden; }
.testi-head { text-align: center; margin-bottom: 44px; }
.testi-head .sec-label { justify-content: center; }
.testi-head .sec-label::before, .testi-head .sec-label::after { content: ""; }
.testi-head .sec-title { margin-inline: auto; }
.testi-head .sec-sub { margin-inline: auto; }

.testi-viewport { overflow: hidden; }
.testi-track {
  display: flex;
  transition: transform 0.65s var(--ease);
}
.testi-slide {
  flex: 0 0 100%;
  padding: 10px 6px;
}
.testi-card {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 48px 40px 40px;
  position: relative;
}
.testi-card .quote-mark {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  color: var(--white);
  box-shadow: var(--shadow-glow);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}
.testi-stars { color: var(--gold); display: flex; gap: 4px; justify-content: center; margin-bottom: 18px; }
.testi-card blockquote {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 500;
}
.testi-person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-person img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sky-soft);
}
.testi-person b { display: block; color: var(--ink); font-size: 0.98rem; }
.testi-person small { color: var(--text-mid); font-size: 0.8rem; }
.testi-role { color: var(--sky-deep); font-size: 0.78rem; font-weight: 700; }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
.testi-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: all 0.3s;
}
.testi-nav button:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button {
  width: 9px; height: 9px;
  border-radius: 40px;
  border: 0;
  background: #CBD6E4;
  padding: 0;
  transition: all 0.3s var(--ease);
}
.testi-dots button.active { width: 28px; background: var(--sky-deep); }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(120deg, rgba(11, 27, 59, 0.94) 0%, rgba(18, 38, 77, 0.92) 55%, rgba(20, 112, 224, 0.85) 100%),
    url('../images/support.jpg') center/cover no-repeat;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 54px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-pop);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}
.cta-band p { color: var(--text-on-dark); max-width: 40ch; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 16px 22px;
  border-radius: 16px;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.cta-phone:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.16); }
.cta-phone .phone-ico {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #4A2C00;
  flex-shrink: 0;
  animation: pulse 2.4s infinite;
}
.cta-phone small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.cta-phone b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--text-on-dark);
  padding-top: 74px;
  margin-top: -1px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-on-dark);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--sky); color: var(--white); transform: translateY(-3px); border-color: var(--sky); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 30px; height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
  color: var(--text-dim);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, transform 0.25s;
}
.footer-col ul a:hover { color: var(--sky); transform: translateX(4px); }

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--sky); }

.footer-disclosure {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 4px;
  max-width: 78ch;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.footer-bottom .policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--sky); }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(46, 155, 255, 0.32), transparent 60%),
    var(--navy);
  padding: 150px 0 70px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
}
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); position: relative; }
.page-hero p { color: var(--text-on-dark); max-width: 60ch; margin: 14px auto 0; position: relative; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a { color: var(--sky); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--text-dim); }

/* ---------- About page extras ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 34px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 20px rgba(11, 27, 59, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-card .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--sky-deep);
}
.value-card h3 { font-size: 1.25rem; margin: 10px 0 10px; }
.value-card p { color: var(--text-mid); font-size: 0.92rem; }
.value-card .num::before { content: "/"; margin-right: 4px; color: var(--gold); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(46, 155, 255, 0.4); }
.contact-item .ci-ico {
  width: 50px; height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--sky-soft), #CFE5FF);
  color: var(--sky-deep);
}
.contact-item h3 { font-size: 1.05rem; margin-bottom: 5px; }
.contact-item p, .contact-item a { color: var(--text-mid); font-size: 0.92rem; }
.contact-item a:hover { color: var(--sky-deep); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-mid); margin-bottom: 26px; }
.contact-form .form-grid { grid-template-columns: 1fr 1fr; }
.contact-form .form-field label { color: var(--text-mid); }
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--text-dark);
}
.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(46, 155, 255, 0.12);
}
.contact-form .form-field textarea { resize: vertical; min-height: 120px; border-radius: var(--radius-sm); padding: 12px 14px; border: 1px solid var(--line); background: var(--paper); outline: none; }
.contact-form .btn { width: 100%; margin-top: 8px; }

.map-wrap { margin-top: 70px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* ---------- Policy / faq pages ---------- */
.policy-content {
  max-width: 860px;
  margin-inline: auto;
}
.policy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--ink);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p, .policy-content li {
  color: var(--text-mid);
  margin-bottom: 14px;
}
.policy-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 8px; }
.policy-content .updated {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sky-deep);
  background: var(--sky-soft);
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 8px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--shadow-card); border-color: rgba(46, 155, 255, 0.4); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--sky-deep);
  transition: transform 0.35s var(--ease), background 0.3s;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--sky-deep); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p { padding: 0 22px 20px; color: var(--text-mid); font-size: 0.94rem; }

/* ---------- Reveal animations ---------- */
/* Only hide .reveal when JS is available (class added in <head>).
   Without JS the content is always visible. */
html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js .reveal.in { opacity: 1; transform: translateY(0); }
html.js .reveal[data-delay="1"] { transition-delay: 0.12s; }
html.js .reveal[data-delay="2"] { transition-delay: 0.24s; }
html.js .reveal[data-delay="3"] { transition-delay: 0.36s; }
html.js .reveal[data-delay="4"] { transition-delay: 0.48s; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: var(--white);
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-pop);
  transition: transform 0.5s var(--ease);
  max-width: 92%;
}
.toast.show { transform: translate(-50%, 0); }
.toast svg { color: var(--gold); flex-shrink: 0; }

/* ---------- Form consent (GDPR / lead-gen) ---------- */
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-mid);
}
.form-consent input {
  width: 17px; height: 17px;
  margin-top: 2px;
  accent-color: var(--sky-deep);
  cursor: pointer;
  flex-shrink: 0;
}
.form-consent a { color: var(--sky-deep); text-decoration: underline; }
.form-consent .consent-msg { display: none; color: var(--coral); font-weight: 600; }
.form-consent.error input { outline: 2px solid var(--coral); }
.form-consent.error .consent-msg { display: inline; }
.quote-card .form-consent { color: var(--text-dim); }
.quote-card .form-consent a { color: var(--sky); }

/* ---------- Pricing / claim footnotes ---------- */
.price-note {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin-top: 12px;
  max-width: 62ch;
}
.price-note a { color: var(--sky-deep); text-decoration: underline; }
.deals .price-note { color: var(--text-dim); }
.deals .price-note a { color: var(--sky); }
.hero-badge small {
  display: block;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-dim);
}

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 160%);
  width: min(680px, calc(100vw - 32px));
  z-index: 400;
  background: var(--ink);
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-pop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-banner p { flex: 1 1 300px; min-width: 0; }
.cookie-banner a { color: var(--sky); text-decoration: underline; }
.cookie-banner .btn { padding: 10px 18px; font-size: 0.82rem; }
.cookie-banner .btn-ghost { color: var(--text-on-dark); border-color: rgba(255,255,255,0.25); padding: 10px 18px; font-size: 0.82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 130px; }
  .quote-card { max-width: 640px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 44px; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: rgba(7, 13, 26, 0.98);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    z-index: 100;
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 1.3rem; padding: 12px 18px; }
  .nav a.active::after, .nav a:hover::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  /* Show the call/get-a-quote buttons only inside the open mobile menu */
  .nav .header-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    margin-top: 22px;
  }
  .nav .header-cta .btn { width: 100%; max-width: 300px; font-size: 1rem; padding: 14px 30px; }
}

@media (max-width: 640px) {
  .dest-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .about-card { left: 12px; }
  /* Keep the rotating badge inside the viewport on small screens. */
  .experience-badge { width: 96px; height: 96px; right: 10px; top: -16px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .testi-card { padding: 40px 22px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .page-hero { padding-top: 130px; }
  .deals-head, .dest-head { flex-direction: column; align-items: flex-start; }
}
