/* ============================================
   DESIGN TOKENS
============================================ */
:root {
  --green:   #1F5E3B;
  --gold:    #C99A2E;
  --navy:    #1F2D3D;
  --ivory:   #F5F2EA;
  --gold-lt: #E8C96A;
  --green-dk:#164a2d;
  --navy-lt: #2a3d54;
  --text:    #1a1a1a;
  --muted:   #5a6472;
  --shadow:  0 15px 40px rgba(31,45,61,0.15);
  --shadow-sm: 0 4px 16px rgba(31,45,61,0.10);
  --grad-primary: linear-gradient(135deg, #1F5E3B 0%, #1F2D3D 100%);
  --grad-gold:    linear-gradient(135deg, #C99A2E 0%, #F5F2EA 100%);
  --grad-hero:    linear-gradient(160deg, rgba(31,94,59,0.85) 0%, rgba(31,45,61,0.75) 60%, rgba(201,154,46,0.30) 100%);
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY SYSTEM
============================================ */
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
}
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 1.125rem; line-height: 1.7; font-weight: 300; }
.body-md { font-size: 1rem; line-height: 1.65; }
.caption  { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em; }

/* ============================================
   LAYOUT UTILITIES
============================================ */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}
.section { padding: clamp(4.5rem, 11vw, 7.5rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Gold divider */
.divider {
  width: 3.5rem;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.divider-center { margin: 1rem auto 1.5rem; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--ivory);
  box-shadow: 0 4px 20px rgba(31,94,59,0.35);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(201,154,46,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1.5px solid rgba(245,242,234,0.55);
}
.btn-outline:hover {
  background: rgba(245,242,234,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 6px 24px rgba(201,154,46,0.45);
  transform: translateY(-1px);
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ============================================
   NAVIGATION
============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  padding: 1.25rem 0;
}
#navbar.scrolled {
  background: var(--green);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  padding: 0.75rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
}
#navbar .nav-logo {
  margin-left: clamp(-2rem, -3vw, -0.75rem);
}
.nav-logo img {
  height: 92px;
  width: auto;
  display: block;
  /* Consistent filter at all times — logo must remain green on every background */
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,0.95))
    drop-shadow(0 0 6px rgba(255,255,255,0.75))
    drop-shadow(0 1px 10px rgba(245,242,234,0.55));
}
#navbar.scrolled .nav-logo img {
  height: 72px;
  /* Explicitly inherit the same filter so it cannot be overridden by browser defaults */
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,0.95))
    drop-shadow(0 0 6px rgba(255,255,255,0.75))
    drop-shadow(0 1px 10px rgba(245,242,234,0.55));
}
.nav-logo img.nav-logo-lg {
  height: 125px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ivory);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    var(--grad-hero),
    url('/static/images/hero-rwanda.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-badge {
  position: absolute;
  top: clamp(6rem, 14vw, 9rem);
  right: clamp(1rem, 5vw, 3rem);
  z-index: 4;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,154,46,0.45);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  color: white;
  max-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.hero-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold-lt);
  line-height: 1.1;
}
.hero-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
#hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 35vw; height: 3px;
  background: var(--grad-gold);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(6rem, 14vw, 10rem);
  padding-top: 7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 2rem; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,242,234,0.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,242,234,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.trust-item svg { width: 14px; height: 14px; fill: var(--gold); }

/* Quick Booking Strip */
.booking-strip {
  position: relative;
  z-index: 10;
  background: white;
  box-shadow: 0 -2px 0 var(--gold), var(--shadow);
  padding: 1.75rem clamp(1rem, 5vw, 3rem);
}
.booking-strip form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
  max-width: 860px;
  margin: 0 auto;
}
.bfield label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.bfield select, .bfield input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 1.5px solid #e0ddd5;
  border-radius: 3px;
  background: var(--ivory);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.bfield select:focus, .bfield input:focus { border-color: var(--green); }

/* ============================================
   STATS BAR
============================================ */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item { border-right: 1px solid rgba(255,255,255,0.1); padding: 0.5rem 1rem; }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
}

/* ============================================
   SECTION: WHY TEMBERAGO
============================================ */
#why { background: var(--ivory); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.why-card {
  background: white;
  border-radius: 6px;
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border-top: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31,94,59,0.1), rgba(31,94,59,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.why-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

/* ============================================
   SECTION: SERVICES
============================================ */
#services { background: white; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.svc-card {
  position: relative;
  border-radius: 6px;
  background: var(--ivory);
  border: 1px solid rgba(31,94,59,0.12);
  border-top: 3px solid var(--green);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--gold);
}
.svc-card-img, .svc-overlay, .svc-arrow { display: none !important; }
.svc-content {
  position: relative;
  padding: 0;
}
.svc-icon-sm {
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-icon-sm svg { width: 22px; height: 22px; fill: var(--ivory); }
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.svc-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

/* ============================================
   SECTION: FLEET (deferred)
============================================ */
#fleet { background: var(--ivory); }
.fleet-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.fleet-tab {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid #d4d0c8;
  border-radius: 2px;
  cursor: pointer;
  background: white;
  color: var(--muted);
  transition: all 0.2s;
}
.fleet-tab.active, .fleet-tab:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fleet-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.fleet-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e5dc, #d4d0c8);
}
.fleet-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.fleet-img-placeholder svg { width: 56px; height: 56px; fill: #b0ac9f; }
.fleet-img-placeholder span { font-size: 0.75rem; color: #b0ac9f; letter-spacing: 0.1em; font-weight: 500; }
.fleet-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.fleet-info { padding: 1.5rem; }
.fleet-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.fleet-cat { font-size: 0.75rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.fleet-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f0ede4;
}
.spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.spec svg { width: 13px; height: 13px; fill: var(--green); }
.fleet-rate { font-size: 0.8rem; color: var(--muted); }
.fleet-rate strong { font-size: 1.1rem; color: var(--navy); }

/* ============================================
   SECTION: DESTINATIONS  (text-only cards)
============================================ */
#destinations {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#destinations::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,94,59,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.dest-header .section-label { color: var(--gold); }
.dest-header .display-2 { color: white; }
.dest-header p { color: rgba(255,255,255,0.6); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.dest-card {
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,154,46,0.25);
  border-top: 3px solid rgba(201,154,46,0.5);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
  cursor: default;
}
.dest-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  border-top-color: var(--gold);
}
.dest-info {
  padding: 2rem 1.75rem 2.25rem;
}
.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.dest-tag {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SECTION: TOUR PACKAGES
============================================ */
#packages { background: white; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pkg-card {
  border-radius: 4px;
  overflow: hidden;
  background: white;
  border: 1.5px solid rgba(31,94,59,0.12);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.pkg-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.pkg-thumb {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #e4ebe5 0%, #d0ddd3 55%, #c5d4c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pkg-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  opacity: 0.4;
}
.pkg-thumb-placeholder svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}
.pkg-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pkg-thumb:has(.pkg-thumb-img) .pkg-thumb-placeholder { display: none; }
.pkg-duration {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.pkg-body { padding: 1.75rem 1.75rem 2rem; }
.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.pkg-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.pkg-highlights { margin-bottom: 1.25rem; }
.pkg-hl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.pkg-hl svg { width: 13px; height: 13px; fill: var(--green); flex-shrink: 0; }
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f0ede4;
}
.pkg-price .from { font-size: 0.72rem; color: var(--muted); display: block; }
.pkg-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green);
}

/* ============================================
   SECTION: BOOKING FORM
============================================ */
#booking {
  background: var(--grad-primary);
  position: relative;
  overflow: hidden;
}
#booking::after {
  content: '';
  position: absolute;
  bottom: -10%; right: -10%;
  width: 40vw; height: 40vw;
  border-radius: 50%;
  background: rgba(201,154,46,0.08);
  pointer-events: none;
}
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.booking-info .section-label { color: var(--gold-lt); }
.booking-info .display-2 { color: white; }
.booking-info p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.booking-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.bb-icon {
  width: 40px; height: 40px;
  background: rgba(201,154,46,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bb-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.bb-title { font-weight: 600; color: white; font-size: 0.9rem; margin-bottom: 0.2rem; }
.bb-sub { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.booking-form-card {
  background: white;
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  border-top: 3px solid var(--gold);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 1.5px solid #e0ddd5;
  border-radius: 3px;
  background: var(--ivory);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--green);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ============================================
   SECTION: TESTIMONIALS
============================================ */
#reviews { background: var(--ivory); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.review-card {
  background: white;
  border-radius: 4px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 14px; height: 14px; fill: var(--gold); }
.review-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.reviewer-country { font-size: 0.75rem; color: var(--muted); }

/* ============================================
   SECTION: ABOUT / STORY
============================================ */
#about { background: white; }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: var(--shadow);
}
.about-img-accent img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* About image placeholders */
.about-img-placeholder {
  width: 100%;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(145deg, rgba(31,94,59,0.4) 0%, rgba(15,30,22,0.88) 100%);
}
.about-img-placeholder--accent {
  height: 200px;
}
.about-img-placeholder svg {
  width: 40px;
  height: 40px;
  fill: rgba(201,154,46,0.65);
}
.about-img-placeholder span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.about-badge {
  position: absolute;
  top: 2rem; left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-txt { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}
.value-txt { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.value-txt strong { color: var(--navy); display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }

/* ============================================
   SECTION: GALLERY
============================================ */
#gallery { background: var(--ivory); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3d28, #1a2635);
  position: relative;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Placeholder shown when no real image is available */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(31,94,59,0.35) 0%, rgba(15,30,22,0.85) 100%);
}
.gallery-placeholder svg {
  width: 36px;
  height: 36px;
  fill: rgba(201,154,46,0.55);
}

.gallery-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,45,61,0.85) 0%, transparent 100%);
  padding: 1rem 0.75rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.06em;
  transform: translateY(100%);
  transition: transform 0.3s;
}
/* Always show label when a placeholder is used instead of a real image */
.gallery-item:has(.gallery-placeholder) .gallery-item-label,
.gallery-item:hover .gallery-item-label { transform: none; }

/* ============================================
   SECTION: CONTACT
============================================ */
#contact { background: var(--navy); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-label { color: var(--gold); }
.contact-info .display-2 { color: white; }
.contact-info p { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cm-icon {
  width: 44px; height: 44px;
  background: rgba(201,154,46,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cm-icon svg { width: 20px; height: 20px; fill: var(--gold); }
.cm-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.2rem; }
.cm-value { font-size: 1rem; color: white; font-weight: 500; }
.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.social-btn {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
}
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); transition: fill 0.25s; }
.social-btn:hover { border-color: var(--gold); background: rgba(201,154,46,0.15); }
.social-btn:hover svg { fill: var(--gold); }
.contact-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 2rem;
}
.contact-form-card .form-field label { color: rgba(255,255,255,0.55); }
.contact-form-card .form-field input,
.contact-form-card .form-field select,
.contact-form-card .form-field textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: white;
}
.contact-form-card .form-field input::placeholder,
.contact-form-card .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form-card .form-field input:focus,
.contact-form-card .form-field select:focus,
.contact-form-card .form-field textarea:focus {
  border-color: var(--gold);
}

/* Select: readable options + visible chevron on dark contact form */
.contact-form-card .form-field select {
  cursor: pointer;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E8C96A' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}
.contact-form-card .form-field select option {
  background-color: #ffffff;
  color: #1a1a1a;
}
.contact-form-card .form-field select option:checked,
.contact-form-card .form-field select option:hover {
  background-color: var(--green);
  color: #ffffff;
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--green);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 1.25rem 0; }
.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   WHATSAPP FLOATING BUTTON
============================================ */
.wa-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulseWA 3s ease-in-out infinite;
}
.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}
@keyframes pulseWA {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}
.wa-fab svg { width: 28px; height: 28px; fill: white; }

/* ============================================
   TOAST NOTIFICATIONS
============================================ */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: min(360px, calc(100vw - 2rem));
}
.toast {
  padding: 1rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
}
.toast.show { opacity: 1; transform: none; }
.toast-success { background: var(--green); border-left: 4px solid var(--gold); }
.toast-error { background: #8b2e2e; border-left: 4px solid #e8a0a0; }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Utility: visually hide but keep in DOM for JS feature-flagging */
.ui-deferred { display: none !important; }

/* ============================================
   RESPONSIVE BREAKPOINTS
============================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-row: auto; grid-column: auto; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .about-wrap { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .booking-strip form { grid-template-columns: 1fr 1fr; }
  .booking-strip form .btn { grid-column: span 2; }
}
@media (max-width: 768px) {
  html { font-size: 18px; }
  .section { padding: clamp(4rem, 13vw, 6rem) 0; }
  .why-card, .svc-card { padding: 2.25rem 1.75rem; }
  .dest-info { padding: 1.75rem 1.5rem 2rem; }
  .dest-name { font-size: 1.35rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .booking-strip form { grid-template-columns: 1fr 1fr; }
  .booking-strip form .btn { grid-column: span 2; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  /* Touch-friendly: larger tap targets */
  .btn { padding: 1rem 2rem; font-size: 1rem; }
  .nav-links a, .footer-links a { padding: 0.35rem 0; display: inline-block; }
}
@media (max-width: 480px) {
  html { font-size: 18.5px; }
  .booking-strip form { grid-template-columns: 1fr; }
  .booking-strip form .btn { grid-column: auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-grid-2 { grid-template-columns: 1fr; }
  .why-card, .svc-card { padding: 2rem 1.5rem; }
  .dest-info { padding: 1.5rem 1.25rem 1.75rem; }
}
