/* Sky Flight Reservation — shared styles */
:root {
  --navy: #0b1f33;
  --navy-mid: #123049;
  --sky: #1a8fd0;
  --sky-light: #3ba8e0;
  --teal: #0e8a8a;
  --teal-deep: #0a6b6b;
  --amber: #e8910f;
  --amber-hover: #d07e08;
  --coral: #e85d4c;
  --cream: #f7fafc;
  --white: #ffffff;
  --text: #1a2b3c;
  --muted: #5a6f82;
  --border: #d8e4ee;
  --success: #1a9b6c;
  --shadow: 0 8px 32px rgba(11, 31, 51, 0.12);
  --radius: 10px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --phone: "+1 888 887 4484";
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--sky);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--teal);
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--white);
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--teal) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(26, 143, 208, 0.4);
}

.logo-mark svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text span {
  font-size: 0.7rem;
  opacity: 0.75;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.header-phone .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.phone-link svg {
  width: 18px;
  height: 18px;
  fill: var(--amber);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-hover) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 145, 15, 0.35);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-call:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(232, 145, 15, 0.45);
  color: #fff !important;
}

.btn-call.pulse {
  animation: pulse-glow 2.2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(232, 145, 15, 0.35);
  }
  50% {
    box-shadow: 0 4px 22px rgba(232, 145, 15, 0.6);
  }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.25rem;
}

/* ——— Landing page specific ——— */
.lp-topbar {
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.lp-topbar span {
  opacity: 0.9;
  font-weight: 500;
}

.lp-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(11, 31, 51, 0.88) 0%, rgba(14, 80, 120, 0.72) 45%, rgba(10, 107, 107, 0.55) 100%),
    url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80")
      center / cover no-repeat;
  color: #fff;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(26, 143, 208, 0.25), transparent 55%);
  pointer-events: none;
}

.lp-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.lp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.lp-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

.lp-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.lp-hero .save-line {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: #ffd166;
  margin-bottom: 1rem;
}

.lp-discount-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.25rem;
}

.lp-discount-box h2 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.lp-discount-box p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.price-display {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.price-display .from {
  font-size: 0.9rem;
  opacity: 0.85;
  padding-bottom: 0.55rem;
}

.price-display .amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-display .amount small {
  font-size: 0.45em;
  vertical-align: super;
}

.price-display .meta {
  padding-bottom: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.voucher-note {
  background: rgba(232, 145, 15, 0.2);
  border: 1px dashed rgba(255, 209, 102, 0.5);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.voucher-note strong {
  color: #ffd166;
}

.how-to-book-inline {
  font-size: 0.88rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.how-to-book-inline a {
  color: #9fd4f5;
  text-decoration: underline;
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
}

.cta-stack .btn-call {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-size: 1.05rem;
}

.cta-or {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* Quote form card */
.quote-card {
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  animation: fade-up 0.6s ease-out both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--navy);
}

.quote-card .sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-group {
  margin-bottom: 0.75rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fafcfe;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(26, 143, 208, 0.15);
}

.trip-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.trip-toggle button {
  flex: 1;
  padding: 0.55rem;
  border: 1px solid var(--border);
  background: #f4f8fb;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  transition: all 0.2s;
}

.trip-toggle button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.check-row input {
  width: 16px;
  height: 16px;
  accent-color: var(--sky);
}

.btn-submit {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(180deg, var(--sky) 0%, #1578b5 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(26, 143, 208, 0.35);
  transition: filter 0.15s, transform 0.15s;
}

.btn-submit:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.75rem;
  line-height: 1.45;
}

/* Destinations grid */
.section {
  padding: 3.5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 750;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-inline: auto;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.dest-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.dest-card .region {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.dest-card .fare {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--sky);
  letter-spacing: -0.02em;
}

.dest-card .fare small {
  font-size: 0.55em;
  color: var(--muted);
  font-weight: 600;
}

.dest-card .rt {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Why book */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.why-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(26, 143, 208, 0.12), rgba(14, 138, 138, 0.18));
  display: grid;
  place-items: center;
  color: var(--sky);
  font-size: 1.5rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Reviews */
.reviews-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--teal-deep) 100%);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.reviews-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stars {
  color: #ffd166;
  letter-spacing: 0.15em;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.reviews-banner p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Content sections */
.content-block {
  max-width: 780px;
  margin: 0 auto 2rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Homepage hero */
.home-hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(11, 31, 51, 0.9) 0%, rgba(18, 70, 110, 0.75) 50%, rgba(14, 100, 100, 0.65) 100%),
    url("https://images.unsplash.com/photo-1488085061387-422e29b40080?auto=format&fit=crop&w=1920&q=80")
      center / cover no-repeat;
  color: #fff;
  padding: 3.5rem 0 4rem;
  min-height: min(78vh, 640px);
  display: flex;
  align-items: center;
}

.home-hero .container {
  width: min(1140px, 92%);
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  animation: fade-up 0.55s ease-out both;
}

.home-hero .tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  opacity: 0.92;
  max-width: 480px;
  margin-bottom: 1.75rem;
  animation: fade-up 0.55s ease-out 0.1s both;
}

.search-panel {
  background: var(--white);
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  color: var(--text);
  max-width: 920px;
  animation: fade-up 0.55s ease-out 0.2s both;
}

.search-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.search-tabs button {
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.search-tabs button.active {
  color: var(--sky);
  border-bottom-color: var(--sky);
}

.search-fields {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr auto;
  gap: 0.65rem;
  align-items: end;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-card .num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--sky);
  letter-spacing: -0.02em;
}

.stat-card .lbl {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.35rem;
  border: 1px solid var(--border);
  position: relative;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--teal));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit {
  padding: 1.5rem;
  background: linear-gradient(160deg, #fff 0%, #f0f7fb 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.benefit h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.benefit p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal-deep) 100%);
  color: #fff;
  padding: 2.75rem 0;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero p {
  opacity: 0.88;
  margin-top: 0.5rem;
  max-width: 560px;
  margin-inline: auto;
}

.legal-content,
.about-content {
  padding: 3rem 0 4rem;
}

.legal-content h2,
.about-content h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child,
.about-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.about-content p,
.legal-content li {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info-card p {
  margin-bottom: 0.75rem;
  color: var(--muted);
}

.contact-info-card a.big-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sky);
  display: inline-block;
  margin: 0.5rem 0 1rem;
}

/* Floating call bar (mobile) */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-hover) 100%);
  padding: 0.85rem 1rem;
  text-align: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-call-bar a {
  color: #fff !important;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.8;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.5;
}

/* Thank you */
.thank-you {
  text-align: center;
  padding: 5rem 1rem;
}

.thank-you h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.thank-you p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, #e8f4fb 0%, #e4f5f5 100%);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.newsletter h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 1rem auto 0;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .lp-hero .container,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid,
  .steps,
  .benefits,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .search-fields {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem;
    gap: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .header-phone .label {
    display: none;
  }

  .phone-link {
    font-size: 0.95rem;
  }
}

@media (max-width: 640px) {
  .dest-grid,
  .why-grid,
  .steps,
  .benefits,
  .stats-row,
  .form-row,
  .search-fields {
    grid-template-columns: 1fr;
  }

  .lp-hero {
    padding: 1.75rem 0 2.25rem;
  }

  .cta-stack {
    max-width: none;
  }

  .mobile-call-bar {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }

  .header-phone {
    display: none;
  }

  .btn-call.header-cta {
    padding: 0.55rem 0.85rem;
    font-size: 0.82rem;
  }
}
