/* =============================================
   MIKUMI ZANZIBAR DAY TRIPS — STYLESHEET
   Aesthetic: Luxury Safari Editorial
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* CSS Variables */
:root {
  --earth: #1A0E02;
  --gold: #C8872A;
  --gold-light: #E5A84A;
  --green: #2C5A26;
  --green-light: #3D7A35;
  --ivory: #F7F0E3;
  --cream: #EDE4CF;
  --brown: #7A4F1A;
  --text: #2B1A06;
  --text-light: #6B5A3E;
  --white: #FFFFFF;
  --shadow: rgba(26,14,2,0.3);
  --shadow-lg: rgba(26,14,2,0.5);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Typography */
h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--earth);
}
h1 { font-size: clamp(2.4rem,5vw,4.5rem); }
h2 { font-size: clamp(2rem,3.5vw,3.2rem); }
h3 { font-size: clamp(1.5rem,2.5vw,2rem); }
p { font-size: 1rem; line-height: 1.8; color: var(--text-light); }

/* ─── UTILITY ─── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before { content: '— '; }
.section-tag::after  { content: ' —'; }
.section-title { margin-bottom: 18px; }
.section-sub  { max-width: 560px; margin-bottom: 40px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 3px;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.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.15); border-color: var(--white); }
.btn-dark {
  background: var(--earth);
  color: var(--white);
  border: 2px solid var(--earth);
}
.btn-dark:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-2px); }
.btn-arrow::after { content: '→'; font-size: 1.1em; transition: transform 0.3s; }
.btn-arrow:hover::after { transform: translateX(5px); }

/* ─── TOP BAR ─── */
.util-bar {
  background: var(--earth);
  padding: 8px 0;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: rgba(247,240,227,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.util-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.util-side { display: flex; align-items: center; gap: 20px; }
.util-item { display: flex; align-items: center; gap: 6px; font-size: .72rem; color: rgba(247,240,227,.75); }
.util-item a { color: rgba(247,240,227,.82); transition: color .2s; }
.util-item a:hover { color: var(--gold-light); }
.util-divider { width: 1px; height: 13px; background: rgba(255,255,255,.14); }
.util-wa {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff !important;
  padding: 4px 12px; border-radius: 3px;
  font-size: .7rem; font-weight: 600; letter-spacing: .04em;
  text-decoration: none; transition: background .2s;
}
.util-wa:hover { background: #1aad54; }
.util-ta {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 3px;
  padding: 3px 10px; font-size: .7rem;
  color: rgba(247,240,227,.88) !important; text-decoration: none; transition: border-color .2s;
}
.util-ta:hover { border-color: var(--gold); color: var(--gold-light) !important; }
/* Legacy compat */
.topbar { display: none; }

/* ═══ MAIN NAVIGATION (Altezza-inspired) ═══ */
.navbar {
  position: sticky;
  top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(200,135,42,.1);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(26,14,2,.1); }
.navbar > .container {
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.nav-logo img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-item { position: static; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 0 15px; height: 72px; white-space: nowrap;
  font-size: .79rem; font-weight: 500; letter-spacing: .06em;
  color: var(--text); text-transform: uppercase;
  border-bottom: 3px solid transparent; margin-bottom: -3px;
  transition: color .2s, border-color .2s;
}
.nav-link:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-caret {
  display: inline-block; width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; margin-left: 1px;
  transition: transform .25s;
}
.nav-item:hover > .nav-link .nav-caret { transform: rotate(180deg); }
.nav-enquire-btn {
  display: inline-flex; align-items: center; margin-left: 10px;
  background: var(--gold); color: #fff !important;
  padding: 10px 22px; border-radius: 3px;
  font-size: .79rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s; white-space: nowrap;
  border-bottom: none !important;
}
.nav-enquire-btn:hover { background: var(--earth) !important; }

/* ── Simple dropdown (fallback for non-mega items) ── */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 220px; background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(26,14,2,.12);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .22s, transform .22s; z-index: 997;
}
.nav-item:hover > .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 11px 20px;
  font-size: .82rem; font-weight: 500; color: var(--text);
  border-bottom: 1px solid rgba(200,135,42,.08); transition: all .18s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); background: var(--ivory); padding-left: 26px; }

/* ══ FULL-WIDTH MEGA PANEL (Altezza style) ══ */
.mega-panel {
  position: absolute;
  top: 100%; left: 0; right: 0; width: 100%;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 16px 52px rgba(26,14,2,.14);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .25s, transform .25s; z-index: 997;
}
.nav-item:hover > .mega-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-panel-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 24px;
  display: grid; align-items: start;
}
.mega-panel-inner.layout-tours {
  grid-template-columns: 1fr 1fr 180px 260px;
  gap: 0; padding-top: 32px; padding-bottom: 32px;
}
.mega-panel-inner.layout-destinations {
  grid-template-columns: 1fr 1fr 1fr 240px;
  gap: 0; padding-top: 32px; padding-bottom: 32px;
}
.mega-panel-inner.layout-resources {
  grid-template-columns: 1fr 1fr;
  gap: 0; padding-top: 28px; padding-bottom: 28px;
}

/* Mega column */
.mc {
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(200,135,42,.1);
}
.mc + .mc { padding-left: 28px; }
.mc:last-child { border-right: none; }
.mc-title {
  font-size: .63rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,135,42,.15);
}
.mc-link {
  display: block; padding: 7px 0; text-decoration: none;
  border-bottom: 1px solid rgba(200,135,42,.06); transition: all .18s;
}
.mc-link:last-of-type { border-bottom: none; }
.mc-link-name {
  font-size: .84rem; font-weight: 500; color: var(--text);
  transition: all .18s; display: flex; align-items: center; gap: 0;
}
.mc-link-name::after { content: ''; transition: all .18s; }
.mc-link-desc { font-size: .73rem; color: #aaa; margin-top: 2px; line-height: 1.35; }
.mc-link:hover .mc-link-name { color: var(--gold); padding-left: 5px; }

/* Mega featured panel */
.mc-feat {
  padding-left: 28px; border-right: none !important;
  display: flex; flex-direction: column;
}
.mc-feat-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 8px; display: block; margin-bottom: 14px;
}
.mc-feat-eyebrow {
  font-size: .62rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.mc-feat-title { font-size: .95rem; font-weight: 700; color: var(--earth); margin-bottom: 12px; line-height: 1.3; }
.mc-feat-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--earth); color: #fff; padding: 9px 16px;
  border-radius: 3px; font-size: .76rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; transition: background .2s; width: fit-content;
}
.mc-feat-cta:hover { background: var(--gold); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--earth); transition: var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 95vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,2,0.72) 0%, rgba(26,14,2,0.35) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
  padding-top: 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold-light); }
.hero h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  color: rgba(247,240,227,0.88);
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, var(--earth), rgba(26,14,2,0.9));
  padding: 22px 24px;
  display: flex;
  justify-content: center;
  gap: 60px;
  z-index: 2;
}
.hero-stat { text-align: center; color: var(--white); }
.hero-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }
.hero-dots {
  position: absolute;
  bottom: 100px;
  right: 40px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--gold); border-color: var(--gold); }

/* ─── PAGE HEADER ─── */
.page-header {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,14,2,0.78) 0%, rgba(26,14,2,0.45) 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px;
  max-width: 1260px;
  margin: 0 auto;
  width: 100%;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { opacity: 0.45; }
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.page-header-sub { color: rgba(247,240,227,0.78); font-size: 1.05rem; max-width: 500px; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--ivory);
  padding: 80px 0;
}
.about-strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { width: 100%; height: 460px; object-fit: cover; border-radius: 4px; }
.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px;
  height: 130px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(200,135,42,0.4);
}
.about-img-badge strong { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-img-badge span { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; text-align: center; }
.about-text .section-sub { max-width: 100%; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.about-feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.about-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.82rem; margin: 0; }

/* ─── SECTION SPACING ─── */
.section { padding: 90px 0; }
.section-alt { background: var(--ivory); }
.section-dark { background: var(--earth); }
.section-dark h2, .section-dark h3, .section-dark .section-tag { color: var(--ivory); }
.section-dark p { color: rgba(247,240,227,0.72); }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto 40px; }

/* ─── WHY CHOOSE US ─── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,14,2,0.08);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,14,2,0.14); }
.why-card-icon {
  width: 64px;
  height: 64px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 36px auto 20px;
  font-size: 1.6rem;
}
.why-card-body { padding: 0 28px 36px; text-align: center; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* ─── PACKAGES ─── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 32px; }
.pkg-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,14,2,0.09);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(26,14,2,0.15); }
.pkg-img-wrap { position: relative; overflow: hidden; height: 240px; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.05); }
.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.pkg-badge.featured { background: var(--green); }
.pkg-duration {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(26,14,2,0.8);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pkg-type { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.pkg-body h3 { font-size: 1.45rem; margin-bottom: 12px; }
.pkg-body p { font-size: 0.88rem; margin-bottom: 20px; flex: 1; }
.pkg-includes { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pkg-includes span {
  background: var(--ivory);
  border: 1px solid var(--cream);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cream);
  padding-top: 20px;
  margin-top: auto;
}
.pkg-price { font-family: 'Cormorant Garamond', serif; }
.pkg-price .from { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.pkg-price strong { display: block; font-size: 2rem; font-weight: 700; color: var(--earth); line-height: 1.1; }
.pkg-price .per { font-size: 0.72rem; color: var(--text-light); }

/* ─── ITINERARY ─── */
.itinerary { counter-reset: day-counter; }
.itinerary-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--cream);
}
.itinerary-item:last-child { border-bottom: none; }
.day-number {
  width: 60px;
  height: 60px;
  background: var(--earth);
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  flex-direction: column;
  line-height: 1;
}
.day-number small { font-size: 0.52rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Jost', sans-serif; font-weight: 600; opacity: 0.7; }
.day-content h4 { font-size: 1.2rem; margin-bottom: 8px; }
.day-content p { font-size: 0.9rem; margin-bottom: 10px; }
.day-content ul { display: flex; flex-wrap: wrap; gap: 8px; }
.day-content ul li {
  background: var(--ivory);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 2px;
  color: var(--text);
}
.day-content ul li::before { content: '✓ '; color: var(--green); }

/* ─── DESTINATIONS ─── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.dest-card {
  position: relative;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,14,2,0.88) 0%, rgba(26,14,2,0.2) 50%, transparent 100%);
  transition: var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(26,14,2,0.92) 0%, rgba(26,14,2,0.4) 60%, transparent 100%); }
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.dest-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 6px; }
.dest-info p { color: rgba(247,240,227,0.75); font-size: 0.82rem; margin: 0; }
.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-link { opacity: 1; transform: translateY(0); }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item:first-child { grid-row: 1 / 3; grid-column: 1; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 3px; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ─── REVIEWS ─── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.review-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(26,14,2,0.07);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,14,2,0.12); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; line-height: 1.8; color: var(--text); font-style: italic; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-origin { font-size: 0.78rem; color: var(--text-light); }
.review-platform {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--text-light);
}
.tripadvisor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00AA6C;
  color: var(--white);
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 28px;
  transition: var(--transition);
}
.tripadvisor-badge:hover { background: #008855; transform: translateY(-2px); }
.tripadvisor-badge svg { width: 20px; height: 20px; }

/* ─── WILDLIFE SECTION ─── */
.wildlife-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wildlife-card {
  position: relative;
  height: 320px;
  border-radius: 6px;
  overflow: hidden;
}
.wildlife-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.wildlife-card:hover img { transform: scale(1.07); }
.wildlife-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 18px;
  background: linear-gradient(to top, rgba(26,14,2,0.85), transparent);
  color: var(--white);
}
.wildlife-label h4 { font-size: 1.1rem; margin-bottom: 3px; }
.wildlife-label span { font-size: 0.72rem; opacity: 0.75; }

/* ─── INCLUDED/EXCLUDED ─── */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.incl-list { list-style: none; }
.incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 0.9rem;
  color: var(--text);
}
.incl-list li:last-child { border-bottom: none; }
.incl-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.incl-icon.yes { color: var(--green); }
.incl-icon.no  { color: #c0392b; }

/* ─── ABOUT PAGE ─── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 32px; }
.team-card { text-align: center; }
.team-img-wrap { position: relative; height: 360px; border-radius: 6px; overflow: hidden; margin-bottom: 22px; }
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.team-card .role { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.88rem; }

/* ─── CONTACT PAGE ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; }
.contact-info h3 { margin-bottom: 18px; }
.contact-info p { margin-bottom: 30px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-detail-text a, .contact-detail-text span { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.contact-detail-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { background: var(--ivory); padding: 40px; border-radius: 6px; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--cream);
  border-radius: 3px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,135,42,0.12); }
textarea { resize: vertical; min-height: 130px; }
select { appearance: none; 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 d='M1 1l5 5 5-5' stroke='%237A4F1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

/* ─── FAQ ─── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  gap: 20px;
}
.faq-icon { font-size: 1.4rem; transition: transform 0.3s; flex-shrink: 0; color: var(--gold); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 22px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 0.92rem; }

/* ─── BOOKING BANNER ─── */
.booking-banner {
  background: linear-gradient(135deg, var(--earth), #2D1A08);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/zebra-banner.jpg') center/cover;
  opacity: 0.12;
}
.booking-banner .container { position: relative; z-index: 1; }
.booking-banner h2 { color: var(--white); margin-bottom: 14px; }
.booking-banner p { color: rgba(247,240,227,0.72); max-width: 540px; margin: 0 auto 36px; }
.booking-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer { background: var(--earth); color: rgba(247,240,227,0.75); }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding: 70px 0 50px;
}
.footer-brand img { height: 50px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247,240,227,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,240,227,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { color: var(--ivory); font-size: 1rem; margin-bottom: 22px; font-family: 'Jost', sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; color: var(--gold); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(247,240,227,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--gold-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* ─── WHATSAPP BUTTON ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.1); background: #20BD5B; }
.whatsapp-btn svg { width: 28px; height: 28px; fill: var(--white); }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 98px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--earth);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  font-size: 1.1rem;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .wildlife-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .about-strip .container { grid-template-columns: 1fr; gap: 50px; }
  .about-img-badge { right: 0; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-enquire-btn { display: none; }
  .hamburger { display: flex; }
  .nav-menu.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: #fff; padding: 16px 0 28px;
    box-shadow: 0 20px 50px rgba(26,14,2,.2);
    align-items: stretch; gap: 0;
    max-height: 80vh; overflow-y: auto; z-index: 999;
  }
  .nav-link { padding: 13px 22px; justify-content: space-between; border-bottom: 1px solid var(--cream); height: auto; border-top: none; margin: 0; }
  .mega-panel, .nav-dropdown { display: none; position: static; box-shadow: none; border-top: none; background: var(--ivory); opacity: 1; pointer-events: auto; transform: none; width: auto; }
  .nav-item.open > .mega-panel, .nav-item.open > .nav-dropdown { display: block; }
  .mc { border-right: none; padding: 12px 22px; }
  .mc + .mc { padding-left: 22px; border-top: 1px solid var(--cream); }
  .mc-feat { display: none; }
  .mega-panel-inner { grid-template-columns: 1fr !important; padding: 0 !important; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .incl-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .util-bar .container { flex-direction: column; text-align: center; gap: 8px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; justify-content: center; gap: 20px; }
  .hero-stat strong { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .wildlife-grid { grid-template-columns: 1fr; }
}


/* ── Page Header (breadcrumb hero) ── */
.page-header {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,8,1,.85) 0%, rgba(15,8,1,.4) 60%, transparent 100%);
}
.page-header-content {
  position: relative; z-index: 2; padding-bottom: 44px; color: #fff;
}
.page-header-content h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 3.2rem); }
.page-header-sub { opacity: .85; font-size: 1rem; margin-top: .4rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; margin-bottom: .6rem; opacity: .8;
}
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── Article / Guide layout ── */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: 60px 0 80px;
  align-items: start;
}
@media(max-width:1024px) { .article-wrap { grid-template-columns: 1fr; } }
.article-body { max-width: 720px; }
.article-body h2 { font-size: 1.8rem; margin: 2rem 0 .6rem; color: var(--earth); }
.article-body h3 { font-size: 1.3rem; margin: 1.6rem 0 .5rem; color: var(--earth); }
.article-body p  { margin-bottom: 1rem; color: #555; line-height: 1.8; }
.article-body ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.2rem; }
.article-body ul li { margin-bottom: .4rem; color: #555; font-size: .95rem; }
.article-body .callout {
  background: var(--ivory); border-left: 4px solid var(--gold);
  padding: 1.2rem 1.4rem; border-radius: 0 10px 10px 0; margin: 1.6rem 0;
}
.article-body .callout strong { color: var(--earth); }
.article-sidebar { position: sticky; top: 130px; }
.aside-card {
  background: #fff; border: 1.5px solid var(--cream); border-radius: 16px;
  padding: 1.4rem; margin-bottom: 1.2rem;
}
.aside-card h4 { font-size: .95rem; margin-bottom: .8rem; color: var(--earth); }
.aside-link {
  display: flex; align-items: center; gap: .5rem; padding: .5rem 0;
  font-size: .85rem; color: var(--text); border-bottom: 1px solid var(--cream);
  transition: var(--transition);
}
.aside-link:last-child { border-bottom: none; }
.aside-link:hover { color: var(--gold); padding-left: 4px; }

/* ── FAQ accordion ── */
.faq-item {
  border-bottom: 1px solid var(--cream);
}
.faq-q {
  width: 100%; text-align: left; padding: 1.2rem 0; display: flex;
  justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 1rem; font-weight: 600; color: var(--earth); cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
}
.faq-q .faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
  font-size: .95rem; color: #666; line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.2rem; }

/* ── Review cards ── */
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 2rem;
}
.review-card {
  background: #fff; border: 1.5px solid var(--cream); border-radius: 18px;
  padding: 1.6rem; transition: all .25s;
}
.review-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1); transform: translateY(-2px); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: .8rem; }
.review-text { font-size: .92rem; color: #555; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--earth));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .9rem; color: var(--earth); }
.review-meta { font-size: .78rem; color: #999; }
.review-platform {
  margin-left: auto; font-size: .72rem; color: #aaa; text-transform: uppercase;
  letter-spacing: .06em; font-weight: 600;
}

/* ── Multi-step form ── */
.step-indicator {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 40px 0;
}
.step {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  position: relative; flex: 1;
}
.step::after {
  content: ''; position: absolute; top: 18px; left: 50%; right: -50%;
  height: 2px; background: var(--cream); z-index: 0;
}
.step:last-child::after { display: none; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); color: #999; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; z-index: 1;
  transition: all .3s;
}
.step.active .step-num { background: var(--gold); color: #fff; }
.step.done .step-num  { background: var(--green); color: #fff; }
.step-label { font-size: .72rem; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.step.active .step-label { color: var(--gold); }

/* ── Form fields ── */
.form-wrap { max-width: 720px; margin: 0 auto; }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--earth); margin-bottom: .4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--cream);
  border-radius: 10px; font-family: 'Jost', sans-serif; font-size: .95rem;
  color: var(--text); background: #fff; transition: border-color .25s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,135,42,.12);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media(max-width:580px) { .form-row { grid-template-columns: 1fr; } }
.form-hint { font-size: .78rem; color: #999; margin-top: .3rem; }
.option-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .8rem; margin-top: .4rem;
}
.option-btn {
  padding: .75rem 1rem; border: 2px solid var(--cream); border-radius: 12px;
  text-align: center; cursor: pointer; transition: all .2s; font-size: .85rem;
  font-weight: 500; color: var(--text); background: #fff;
}
.option-btn:hover, .option-btn.selected {
  border-color: var(--gold); background: #fff8ee; color: var(--gold);
}
.option-btn .ob-icon { font-size: 1.5rem; display: block; margin-bottom: .3rem; }

/* ── Legal pages ── */
.legal-content { max-width: 820px; margin: 0 auto; padding: 60px 0 80px; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 .6rem; color: var(--earth); }
.legal-content h3 { font-size: 1.1rem; margin: 1.4rem 0 .4rem; color: var(--earth); }
.legal-content p  { margin-bottom: .9rem; color: #555; line-height: 1.8; font-size: .95rem; }
.legal-content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content ul li { color: #555; font-size: .95rem; margin-bottom: .3rem; }

/* ── Schedule table ── */
.schedule-table { width: 100%; border-collapse: collapse; margin-top: 1.4rem; }
.schedule-table th {
  background: var(--earth); color: #fff; padding: 12px 16px;
  font-size: .82rem; font-weight: 600; text-align: left;
}
.schedule-table td { padding: 11px 16px; border-bottom: 1px solid var(--cream); font-size: .88rem; color: #555; }
.schedule-table tr:nth-child(even) td { background: var(--ivory); }
.schedule-table tr:hover td { background: #fff8ee; }

/* ── Cost breakdown ── */
.cost-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 1.1rem 0; border-bottom: 1px solid var(--cream); gap: 1rem;
}
.cost-row:last-child { border-bottom: none; }
.cost-label { font-weight: 600; color: var(--earth); font-size: .95rem; }
.cost-detail { font-size: .82rem; color: #888; margin-top: .2rem; }
.cost-amount { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); white-space: nowrap; }

/* ── Month calendar grid ── */
.month-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.6rem;
}
@media(max-width:768px) { .month-grid { grid-template-columns: repeat(2, 1fr); } }
.month-card {
  border-radius: 14px; padding: 1.2rem; text-align: center;
  border: 1.5px solid var(--cream);
}
.month-card.peak    { background: #fff8ee; border-color: var(--gold); }
.month-card.good    { background: #f0faf4; border-color: #86efac; }
.month-card.off     { background: #fdf4f4; border-color: #f0baba; }
.month-name { font-weight: 700; color: var(--earth); font-size: .95rem; margin-bottom: .3rem; }
.month-rating { font-size: 1.2rem; margin-bottom: .3rem; }
.month-note { font-size: .75rem; color: #888; line-height: 1.4; }

/* ── Comparison table ── */
.compare-table { width: 100%; border-collapse: collapse; margin: 2rem 0; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.compare-table th { background: var(--earth); color: #fff; padding: 14px 18px; font-size: .9rem; }
.compare-table td { padding: 12px 18px; border-bottom: 1px solid var(--cream); font-size: .88rem; color: #555; vertical-align: top; }
.compare-table td:first-child { font-weight: 600; color: var(--earth); background: var(--ivory); }
.compare-table tr:last-child td { border-bottom: none; }
.yes-cell { color: #1e6e3a; font-weight: 700; }
.no-cell  { color: #9b2020; }

/* ── Blog post ── */
.blog-hero-img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; margin-bottom: 2rem; }
.blog-meta { display: flex; align-items: center; gap: 1.5rem; font-size: .82rem; color: #999; margin-bottom: 1.4rem; flex-wrap: wrap; }
.blog-tag { background: var(--ivory); border: 1px solid var(--cream); border-radius: 20px; padding: 3px 10px; font-size: .75rem; font-weight: 600; color: var(--gold); }


