/* ─── Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

/* ─── Variables ──────────────────────────────────────── */
:root {
  --midnight:   #0D1B2A;
  --navy:       #1B3A5C;
  --gold:       #FFB400;
  --gold-light: #FFD166;
  --gold-pale:  #FFF3CC;
  --sky:        #4CC9F0;
  --coral:      #EF476F;
  --violet:     #7B2FBE;
  --violet-deep:#5A1A8E;
  --violet-pale:#EDE0FB;
  --success:    #06D6A0;
  --white:      #FFFFFF;
  --off-white:  #FAFCFF;
  --gray-50:    #F7F9FC;
  --gray-100:   #EBF0F5;
  --gray-200:   #D4DDE8;
  --gray-400:   #8FA3B3;
  --gray-600:   #4A6275;
  --text-dark:  #1A2C3D;
  --text-mid:   #3D5870;
  --text-light: #6B89A0;

  /* Tier accent colors */
  --essentials-tint:    #E8F8EE;
  --essentials-border:  #A8D8B4;
  --essentials-header:  #2D9D5A;

  --classic-tint:       #EBF5FF;
  --classic-border:     #A8CCEC;
  --classic-header:     #2165B5;

  --magic-tint:         #F3ECFF;
  --magic-border:       #CDB8F0;
  --magic-header:       #7B2FBE;

  --dream-tint:         #FFF8E6;
  --dream-border:       #FFE4A0;
  --dream-header:       #B87A00;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(13,27,42,0.07);
  --shadow-md: 0 6px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 16px 48px rgba(13,27,42,0.14);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --max-w: 1280px;
  --section-py: 88px;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; }

/* ─── Layout helpers ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--gray-50); }

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 4px 16px rgba(255,180,0,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(255,180,0,0.45); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: #1f4c78; }

/* ─── Navigation ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--midnight);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.45;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.5) 0%,
    rgba(13,27,42,0.2) 40%,
    rgba(13,27,42,0.6) 75%,
    rgba(13,27,42,0.95) 100%
  );
}
.hero__stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 18%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 55%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(2px 2px at 68% 12%, rgba(255,255,255,0.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 87% 40%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 78%, rgba(255,255,255,0.28) 0%, transparent 100%),
    radial-gradient(2px 2px at 24% 68%, rgba(255,180,0,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 78% 32%, rgba(255,180,0,0.32) 0%, transparent 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 110px 24px 80px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,180,0,0.12);
  border: 1px solid rgba(255,180,0,0.22);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.65;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__actions .btn { padding: 16px 36px; font-size: 1rem; }

/* ─── Trust Bar ─────────────────────────────────────── */
.trust-bar {
  background: linear-gradient(90deg, #1a3560 0%, #1B3A5C 50%, #1a3560 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  border-right: 1px solid rgba(255,255,255,0.12);
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,180,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ─── Section heading ─────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-heading--light { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.7;
  margin: 0 auto;
}
.section-sub--light { color: rgba(255,255,255,0.65); }
.section-header { text-align: center; margin-bottom: 56px; }

/* ─── Why MagicMiles (Value Props) ─────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--violet));
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--gray-200);
}
.feature-card:hover::before { opacity: 1; }
.feature-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
}
.feature-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── Destinations ─────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.dest-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.92) 0%,
    rgba(13,27,42,0.35) 50%,
    rgba(13,27,42,0.1) 100%
  );
}
.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}
.dest-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.dest-card__name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.dest-card__desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  margin-bottom: 16px;
}
.dest-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap 0.2s;
}
.dest-card:hover .dest-card__arrow { gap: 10px; }

/* ─── Package Tiers ──────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.pkg-card {
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform 0.28s, box-shadow 0.28s;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-card--essentials { background: var(--essentials-tint); border-color: var(--essentials-border); }
.pkg-card--classic    { background: var(--classic-tint); border-color: var(--classic-border); }
.pkg-card--magic      { background: var(--magic-tint); border-color: var(--magic-border); }
.pkg-card--dream      { background: var(--dream-tint); border-color: var(--dream-border); }

/* Dream gets the premium dark treatment */
.pkg-card--dream {
  background: #1A1200;
  border-color: #C89B00;
}
.pkg-card--dream .pkg-card__tier { color: #D4A820; }
.pkg-card--dream .pkg-card__name { color: #FFFFFF; }
.pkg-card--dream .pkg-card__desc { color: rgba(255,255,255,0.6); }
.pkg-card--dream .pkg-card__price { color: var(--gold); }
.pkg-card--dream .pkg-card__price-label { color: rgba(255,255,255,0.5); }
.pkg-card--dream .pkg-card__divider { background: rgba(255,255,255,0.12); }
.pkg-card--dream .pkg-card__check { color: var(--gold); border-color: rgba(200,155,0,0.5); }
.pkg-card--dream .pkg-card__includes li { color: rgba(255,255,255,0.82); }

/* Classic gets the "Most Popular" elevated treatment */
.pkg-card--classic {
  box-shadow: 0 0 0 2px var(--classic-header), 0 12px 40px rgba(33,101,181,0.25);
}
.pkg-card--classic::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--classic-header), var(--gold));
}

.pkg-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--midnight);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.pkg-card__badge--dream {
  background: linear-gradient(135deg, #D4A820, #FFB400);
}

.pkg-card__tier {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pkg-card--essentials .pkg-card__tier { color: var(--essentials-header); }
.pkg-card--classic    .pkg-card__tier { color: var(--classic-header); }
.pkg-card--magic      .pkg-card__tier { color: var(--magic-header); }

.pkg-card__name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pkg-card__tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 28px;
}

.pkg-card__price {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: -0.03em;
}
.pkg-card__price-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 28px;
}

.pkg-card__divider { height: 1px; background: var(--gray-200); margin: 0 0 24px; }

.pkg-card__includes { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.pkg-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.4;
}
.pkg-card__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 2px;
  font-weight: 700;
}
.pkg-card--essentials .pkg-card__check { background: rgba(45,157,90,0.12); border: 1.5px solid var(--essentials-header); color: var(--essentials-header); }
.pkg-card--classic    .pkg-card__check { background: rgba(33,101,181,0.12); border: 1.5px solid var(--classic-header); color: var(--classic-header); }
.pkg-card--magic      .pkg-card__check { background: rgba(123,47,190,0.12); border: 1.5px solid var(--magic-header); color: var(--magic-header); }
.pkg-card--dream      .pkg-card__check { background: rgba(200,155,0,0.12); border: 1.5px solid #C89B00; color: var(--gold); }

.pkg-card__best-for {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 16px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  text-align: center;
}

.pkg-card__cta {
  margin-top: 24px;
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  text-decoration: none;
}
.pkg-card--essentials .pkg-card__cta { background: var(--essentials-header); color: var(--white); }
.pkg-card--classic    .pkg-card__cta { background: var(--classic-header); color: var(--white); }
.pkg-card--magic      .pkg-card__cta { background: var(--magic-header); color: var(--white); }
.pkg-card--dream      .pkg-card__cta { background: linear-gradient(135deg, #D4A820, #FFB400); color: var(--midnight); }
.pkg-card__cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* ─── How It Works ─────────────────────────────────── */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.how-it-works-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--violet), var(--classic-header), var(--essentials-header));
  border-radius: 50px;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-card__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.step-card:nth-child(1) .step-card__num { background: linear-gradient(135deg, #D4A820, var(--gold)); }
.step-card:nth-child(2) .step-card__num { background: linear-gradient(135deg, var(--violet-deep), var(--violet)); }
.step-card:nth-child(3) .step-card__num { background: linear-gradient(135deg, #1a4e8a, var(--classic-header)); }
.step-card:nth-child(4) .step-card__num { background: linear-gradient(135deg, #1f6e3e, var(--essentials-header)); }
.step-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── Testimonials ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
}
.testimonial-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ─── FAQ ──────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(255,180,0,0.12); }
.faq-item.open { border-color: var(--violet); box-shadow: 0 4px 20px rgba(123,47,190,0.12); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  background: var(--white);
  transition: background 0.2s;
  user-select: none;
}
.faq-item__q:hover { background: var(--gray-50); }
.faq-item__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--violet);
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-item__icon {
  background: var(--violet-pale);
  transform: rotate(45deg);
}
.faq-item__a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-item.open .faq-item__a { display: block; }
.faq-item__a p { margin: 0; }

/* ─── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0D1B2A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,180,0,0.12) 0%, transparent 70%);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-banner .btn { padding: 16px 40px; font-size: 1rem; }

/* ─── Footer ──────────────────────────────────────────── */
.footer {
  background: #07111D;
  color: rgba(255,255,255,0.5);
  padding: 56px 0 32px;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer__logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.footer__logo span { color: var(--gold); }
.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.footer__contact {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.footer__contact a { color: var(--gold); transition: color 0.2s; }
.footer__contact a:hover { color: var(--gold-light); }
.footer__socials {
  display: flex;
  gap: 16px;
}
.footer__social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.footer__social-btn:hover { background: rgba(255,180,0,0.2); color: var(--gold); }
.footer__divider { width: 60px; height: 1px; background: rgba(255,255,255,0.1); }
.footer__links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 0.85rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
  max-width: 480px;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ─── Contact Form Section ──────────────────────────────── */
.contact-section { background: var(--gray-50); }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-field { display: flex; flex-direction: column; gap: 7px; }
.contact-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
}
.contact-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.contact-input:focus { border-color: var(--violet); }
.contact-input::placeholder { color: var(--gray-400); }
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-hint { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works-grid { grid-template-columns: repeat(2, 1fr); }
  .how-it-works-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .hero__content { padding: 90px 24px 70px; }
  .section { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .trust-bar__inner { gap: 12px; }
  .trust-bar__item { border-right: none; padding: 4px 16px; }
  .contact-row { grid-template-columns: 1fr; }
  .contact-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .packages-grid { grid-template-columns: 1fr; }
}