/* ============================================================
   FEIS AFRICA SAFARI — Main Stylesheet
   Stack: HTML + CSS + JS (Static)
   Colors: Safari Green + Gold + Black
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --green-deep:    #1B4332;
  --green-mid:     #2D6A4F;
  --green-light:   #40916C;
  --gold:          #C9922A;
  --gold-light:    #E8B84B;
  --gold-pale:     #FFF8E7;
  --black:         #0D0D0D;
  --charcoal:      #1A1A1A;
  --dark:          #222222;
  --mid:           #555555;
  --muted:         #888888;
  --light:         #F5F5F0;
  --white:         #FFFFFF;
  --overlay:       rgba(13, 13, 13, 0.55);
  --overlay-deep:  rgba(13, 13, 13, 0.78);

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-ui:       'Inter', Arial, sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-pill:   999px;

  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.18);
  --shadow-card:   0 4px 20px rgba(27,67,50,0.12);

  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width:     1280px;
  --section-pad:   96px 24px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
p  { font-size: 1rem; color: var(--mid); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LAYOUT HELPERS ─────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad); }
.section--dark { background: var(--charcoal); }
.section--green { background: var(--green-deep); }
.section--light { background: var(--light); }
.section--gold-pale { background: var(--gold-pale); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,42,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,67,50,0.3);
}
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; color: var(--green-deep); }
.section-header p  { max-width: 560px; font-size: 1.05rem; }
.section-header--center p { margin: 0 auto; }

.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 0;
  border-radius: 2px;
}
.section-header--center .gold-line { margin: 20px auto 0; }

/* ── LOGO IMAGES ─────────────────────────────────────────── */
.logo-img-nav {
  height: 64px;
  width: auto;
  /* Make logo white on dark background */
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.5));
  transition: var(--transition);
  display: block;
}
.logo-img-nav:hover { opacity: 0.85; }

.logo-img-footer {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-deep);
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--green-deep);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.navbar-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.navbar-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar-links a:hover { color: var(--white); }
.navbar-links a:hover::after { transform: scaleX(1); }
.navbar-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video {
  display: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.90) 0%,
    rgba(13,13,13,0.40) 50%,
    rgba(13,13,13,0.15) 100%
  );
}
/* Fallback bg when no photo — cinematic gradient */
.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.35) 50%, rgba(13,13,13,0.2) 100%),
    url('images/hero-poster.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-content .eyebrow { color: var(--gold-light); margin-bottom: 20px; }
.hero-content h1 {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--green-deep);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── PACKAGE CARDS ───────────────────────────────────────── */
.packages-section .grid-3 { gap: 28px; }

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(27,67,50,0.08);
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(27,67,50,0.18);
}
.package-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
}
.package-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.package-card:hover .package-card-img img { transform: scale(1.06); }
.package-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.package-card-duration {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(13,13,13,0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.package-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.package-card-body h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 8px;
  line-height: 1.3;
}
.package-card-body p {
  font-size: 0.875rem;
  margin-bottom: 16px;
  flex: 1;
  color: var(--mid);
}
.package-card-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.highlight-tag {
  background: var(--light);
  color: var(--green-mid);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(45,106,79,0.15);
}
.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--light);
}
.package-price-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.package-price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.package-price-sub { font-size: 0.68rem; color: var(--muted); }

/* ── DESTINATIONS GRID ───────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--green-mid);
}
.dest-card--large { grid-column: span 2; grid-row: span 2; }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.dest-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.dest-card--large h3 { font-size: 1.8rem; }
.dest-card span {
  font-size: 0.72rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,146,42,0.15);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,146,42,0.06);
  border-color: rgba(201,146,42,0.35);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: rgba(201,146,42,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.why-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.why-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(27,67,50,0.08);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-style: italic; color: var(--mid); margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-country { font-size: 0.78rem; color: var(--muted); }

/* ── ENQUIRY FORM ────────────────────────────────────────── */
.enquiry-section {
  background:
    linear-gradient(to right, var(--green-deep) 55%, var(--charcoal) 100%);
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.enquiry-left h2 { color: var(--white); margin-bottom: 16px; }
.enquiry-left p  { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.enquiry-features { display: flex; flex-direction: column; gap: 16px; }
.enquiry-feature { display: flex; align-items: center; gap: 12px; }
.enquiry-feature-icon {
  width: 36px; height: 36px;
  background: rgba(201,146,42,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.enquiry-feature span { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.enquiry-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.enquiry-form h3 { color: var(--green-deep); margin-bottom: 24px; font-size: 1.4rem; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0E0E0;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; padding: 16px; font-size: 0.95rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 72px 24px 32px;
}
.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; font-family: var(--font-display); font-weight: 700; }
.footer-brand .logo-sub  { color: var(--gold); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-family: var(--font-ui); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.5; }
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.78rem; transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  font-size: 1.5rem;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── MOBILE NAV ──────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,13,13,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-card--large { grid-column: span 2; grid-row: span 1; height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-grid { gap: 48px; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }
  .navbar-links, .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .dest-card--large { grid-column: span 1; height: 240px; }
  .enquiry-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
