/* FlightFareLeads — Teal & Amber theme */
:root {
  --ink: #0a1f24;
  --ink-soft: #1a353c;
  --teal: #0d5c63;
  --teal-deep: #084048;
  --teal-mid: #12727b;
  --teal-light: #e8f4f5;
  --amber: #e8a317;
  --amber-hot: #f0b429;
  --amber-ink: #1a2e32;
  --sand: #f3eee6;
  --sand-deep: #e8e0d4;
  --mist: #f7f9f9;
  --line: #d5e0e2;
  --muted: #5a7076;
  --ok: #1a7a4c;
  --ok-bg: #dcf5e8;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(8, 64, 72, 0.12);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --phone: "+1 (888) 887-4484";
  --header-h: 72px;
  --ribbon-h: 42px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-mid);
}

.clr {
  clear: both;
}

/* —— Live deals ribbon —— */
.top-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 3%;
  background: linear-gradient(105deg, var(--teal-deep), var(--teal-mid) 55%, #0a6b74);
  color: var(--white);
  height: var(--ribbon-h);
}

.live-badge {
  flex-shrink: 0;
  background: var(--amber);
  color: var(--amber-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}

.deals-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.deals-marquee {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.deals-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.deal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
}

.deal-item .route {
  font-weight: 500;
}

.deal-item .old {
  text-decoration: line-through;
  opacity: 0.65;
  font-size: 11px;
}

.deal-item .new {
  color: var(--amber);
  font-weight: 700;
}

.deal-item .timer {
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: var(--ribbon-h);
  left: 0;
  right: 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 92, 99, 0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(8, 64, 72, 0.1);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--teal), var(--teal-deep));
  display: grid;
  place-items: center;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.phone-pill:hover {
  background: var(--teal-mid);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.phone-pill svg {
  flex-shrink: 0;
}

/* —— Hero —— */
.hero {
  position: relative;
  margin-top: calc(var(--ribbon-h) + var(--header-h));
  min-height: min(92vh, 760px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 0 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 40, 48, 0.35) 0%, rgba(8, 48, 56, 0.55) 40%, rgba(8, 54, 62, 0.88) 100%),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=2000&q=80")
      center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(232, 163, 23, 0.18), transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3% 28px;
  text-align: center;
  color: var(--white);
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0 0 10px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  animation: rise 0.8s ease both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  animation: rise 0.8s ease 0.1s both;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  margin: 0 auto 22px;
  max-width: 540px;
  font-size: 1.05rem;
  opacity: 0.92;
  animation: rise 0.8s ease 0.2s both;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--amber);
  color: var(--amber-ink) !important;
  border-radius: 999px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(232, 163, 23, 0.35);
  transition: background 0.25s ease, transform 0.2s ease;
  animation: rise 0.8s ease 0.3s both, pulse-soft 2.8s ease-in-out 1.2s infinite;
}

.hero-phone:hover {
  background: var(--amber-hot);
  color: var(--amber-ink) !important;
  transform: translateY(-2px);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 8px 32px rgba(232, 163, 23, 0.35);
  }
  50% {
    box-shadow: 0 8px 40px rgba(232, 163, 23, 0.55);
  }
}

/* —— Search panel —— */
.search-wrap {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 3% 36px;
}

.search-panel {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  padding: 18px 18px 14px;
  box-shadow: var(--shadow);
  animation: rise 0.9s ease 0.35s both;
}

.search-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.search-top select,
.search-top .traveler-trigger {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  min-width: 140px;
  cursor: pointer;
}

.traveler-wrap {
  position: relative;
}

.traveler-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.traveler-dropdown.open {
  display: block;
}

.traveler-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.traveler-row label {
  font-size: 13px;
  font-weight: 600;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  color: var(--teal);
  font-weight: 700;
}

.stepper button:hover {
  background: var(--teal-light);
}

.stepper input {
  width: 36px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-family: inherit;
  background: transparent;
}

.close-dd {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-top: 4px;
  cursor: pointer;
}

.search-grid {
  display: grid;
  grid-template-columns: 1.2fr auto 1.2fr 1fr 1fr;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 10px;
}

.search-field {
  position: relative;
}

.search-field input,
.search-field select,
.lead-grid input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 10px;
  padding: 14px 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}

.search-field input:focus,
.search-field select:focus,
.lead-grid input:focus {
  outline: 2px solid rgba(13, 92, 99, 0.25);
  border-color: var(--teal);
}

.swap-btn {
  width: 44px;
  height: 44px;
  align-self: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--teal);
  transition: background 0.2s, transform 0.3s;
}

.swap-btn:hover {
  background: var(--teal-light);
  transform: rotate(180deg);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 8px;
  margin-bottom: 10px;
}

.btn-search {
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.2s, transform 0.2s;
}

.btn-search:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.search-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--ok);
  font-weight: 600;
}

.search-perks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Mobile search */
.mobile-search {
  display: none;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.trip-toggle {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}

.trip-toggle label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.m-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
}

.m-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.m-field input,
.m-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 10px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
}

.m-swap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -20%);
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.m-full {
  margin-bottom: 10px;
}

.m-full input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 10px;
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
}

.mobile-search .btn-search {
  width: 100%;
  margin-top: 6px;
}

/* —— Sections —— */
.section {
  padding: 64px 3%;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin: 0 0 6px;
}

.section-head h2,
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

.section-lead {
  color: var(--muted);
  max-width: 560px;
  margin: 8px 0 0;
}

.link-arrow {
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Destinations */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.dest-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  color: var(--white) !important;
  isolation: isolate;
  transition: transform 0.35s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
}

.dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: -2;
}

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 40, 48, 0.92) 0%, transparent 55%);
  z-index: -1;
}

.dest-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}

.dest-body .country {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 2px;
}

.dest-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 4px;
  font-weight: 600;
}

.dest-body .price {
  font-weight: 700;
  color: var(--amber);
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 3%;
  background: var(--teal-deep);
  color: var(--white);
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.trust-item span {
  font-size: 13px;
  opacity: 0.8;
}

/* Reviews */
.reviews {
  background: var(--sand);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px 22px;
  position: relative;
  box-shadow: 0 4px 20px rgba(8, 64, 72, 0.06);
}

.verified {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--ok-bg);
  color: var(--ok);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.stars {
  color: var(--amber);
  letter-spacing: 2px;
  margin: 8px 0 12px;
  font-size: 14px;
}

.review-text {
  font-style: italic;
  color: #3d4f54;
  margin: 0 0 18px;
  font-size: 15px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), var(--teal-mid));
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
}

.reviewer strong {
  display: block;
  font-size: 14px;
}

.reviewer span {
  font-size: 12px;
  color: var(--muted);
}

/* Why us / how it works */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.why-item {
  padding: 8px 4px;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 22px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 8px;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.how {
  background: linear-gradient(180deg, var(--mist), var(--teal-light));
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 8px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.payments {
  text-align: center;
  margin-top: 40px;
  color: var(--muted);
  font-size: 14px;
}

.card-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.card-icons span {
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* —— Inner pages —— */
.page-hero {
  margin-top: calc(var(--ribbon-h) + var(--header-h));
  padding: 56px 3% 48px;
  background:
    linear-gradient(120deg, rgba(8, 64, 72, 0.92), rgba(13, 92, 99, 0.85)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80")
      center / cover;
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 8px;
  font-weight: 650;
}

.page-hero p {
  margin: 0 auto;
  max-width: 520px;
  opacity: 0.9;
}

.content-page {
  padding: 48px 3% 72px;
}

.content-inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 24px rgba(8, 64, 72, 0.06);
}

.content-inner h2,
.content-inner h3 {
  font-family: var(--font-display);
  margin-top: 1.6em;
}

.content-inner p,
.content-inner li {
  color: #3a4e54;
  font-size: 15px;
}

.content-inner ul {
  padding-left: 1.2em;
}

.content-wide {
  max-width: 1100px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 28px;
}

.contact-info {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: 16px;
  padding: 28px;
}

.contact-info h2 {
  font-family: var(--font-display);
  margin: 0 0 20px;
  font-size: 1.4rem;
}

.contact-block {
  margin-bottom: 22px;
}

.contact-block h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
  margin: 0 0 6px;
  font-weight: 600;
}

.contact-block p,
.contact-block a {
  margin: 0;
  color: var(--white);
  font-size: 15px;
}

.contact-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(8, 64, 72, 0.06);
}

.contact-form-box h2 {
  font-family: var(--font-display);
  margin: 0 0 18px;
  font-size: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.req {
  color: #c0392b;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 16px;
}

.btn-submit {
  width: 100%;
  border: none;
  background: var(--teal);
  color: var(--white);
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--teal-mid);
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 3% 28px;
  font-size: 13px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--amber);
}

.footer-copy {
  margin-bottom: 12px;
}

.footer-legal {
  opacity: 0.7;
  line-height: 1.65;
  max-width: 900px;
}

.footer-legal + .footer-legal {
  margin-top: 12px;
}

/* Sticky mobile call */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  background: var(--amber);
  color: var(--amber-ink);
  text-align: center;
  padding: 14px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.sticky-call:hover {
  color: var(--amber-ink);
  background: var(--amber-hot);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 40, 48, 0.65);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  animation: rise 0.35s ease;
}

.modal h3 {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.modal p {
  color: var(--muted);
  margin: 0 0 20px;
}

.modal .hero-phone {
  animation: none;
  font-size: 1.35rem;
}

.modal-close {
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}

body.has-sticky {
  padding-bottom: 60px;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
  .dest-grid,
  .review-grid,
  .why-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .search-grid {
    grid-template-columns: 1fr auto 1fr;
  }

  .search-grid .col-date-return,
  .search-grid .col-date-depart {
    grid-column: span 1;
  }

  .lead-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lead-grid .btn-search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .top-ribbon {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .hero,
  .page-hero {
    margin-top: var(--header-h);
  }

  :root {
    --header-h: 64px;
  }

  .header-tag {
    display: none;
  }

  .phone-pill {
    font-size: 14px;
    padding: 8px 14px;
  }

  .logo-text span {
    display: none;
  }

  .desktop-search {
    display: none;
  }

  .mobile-search {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .brand-hero {
    font-size: 2rem;
  }

  .dest-grid,
  .review-grid,
  .why-grid,
  .steps,
  .trust-bar,
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .content-inner {
    padding: 24px 20px;
  }

  .sticky-call {
    display: block;
  }

  body.has-sticky {
    padding-bottom: 56px;
  }

  .section {
    padding: 48px 4%;
  }
}

@media (max-width: 480px) {
  .m-row {
    grid-template-columns: 1fr;
  }

  .m-swap {
    display: none;
  }
}
