/* ==========================================================================
   Luxe Africa Travels Ltd — main stylesheet
   Palette kept from original brand: brown #6D3F19 / gold #f3af27
   ========================================================================== */

:root {
  --brown: #6D3F19;
  --brown-dark: #4e2d12;
  --gold: #f3af27;
  --gold-light: #ffd77a;
  --green: #52713f;
  --green-dark: #34492a;
  --green-light: #8caf74;
  --forest: #186600;
  --forest-dark: #0f4200;
  --dark: #201d1a;
  --text: #3a3530;
  --muted: #7a7369;
  --cream: #faf7f2;
  --white: #ffffff;
  --border: #ece5d8;
  --shadow: 0 10px 30px rgba(32, 22, 8, 0.08);
  --shadow-lg: 0 20px 50px rgba(32, 22, 8, 0.15);
  --radius: 14px;
  --container: 1180px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  background: var(--brown);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-heading { max-width: 620px; margin-bottom: 44px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.section-heading h2 em { color: var(--gold); font-style: normal; }
.section-heading p { color: var(--muted); margin-top: 12px; font-size: 1.02rem; }

section { padding: 88px 0; }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); color: #dcd6cc; }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }

.bg-forest-green {
  background-color: #228B22;
  color: #ffffff !important;
}
.bg-forest-green,
.bg-forest-green * {
  color: #ffffff !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--brown-dark);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(243, 175, 39, 0.4); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-brown { background: var(--brown); color: #fff; }
.btn-brown:hover { background: var(--brown-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-block { width: 100%; justify-content: center; }

/* ============ Header / Nav (transparent over hero, solidifies on scroll) ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0 0;
  transition: padding .3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  background: transparent;
  border-radius: 50px;
  padding: 0 10px 0 22px;
  transition: background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled { padding-top: 12px; }
.site-header.scrolled .nav-inner {
  background: #fff;
  box-shadow: 0 8px 28px rgba(32,22,8,0.12);
}
.nav-group {
  display: flex;
  gap: 30px;
  list-style: none;
  flex: 1;
}
#mobileNav { display: none; }
.nav-group.right { justify-content: flex-end; }
.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  position: relative;
  padding: 6px 0;
  transition: color .3s ease;
}
.site-header.scrolled .nav-links a { color: var(--text); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.site-header.scrolled .nav-links a.active { color: var(--brown); }

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 18px;
}
.brand-logo img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand-logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.1;
  color: #fff;
  transition: color .3s ease;
}
.brand-logo span em { display: block; color: var(--gold); font-style: normal; font-size: .78rem; letter-spacing: .06em; }
.site-header.scrolled .brand-logo span { color: var(--brown); }

.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-cta .btn { padding: 11px 22px; font-size: .88rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; border-radius: 2px; transition: background .3s ease; }
.site-header.scrolled .nav-toggle span { background: var(--brown); }

@media (max-width: 900px) {
  .nav-group { display: none; }
  #mobileNav {
    display: flex;
    position: fixed;
    top: 92px; left: 24px; right: 24px;
    background: #fff;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
  }
  #mobileNav.open { max-height: 320px; }
  #mobileNav a { display: block; padding: 16px 22px; border-top: 1px solid var(--border); color: var(--text) !important; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .brand-logo span { color: #fff; }
  .site-header.scrolled .brand-logo span { color: var(--brown); }
}

/* ============ Hero (full-bleed photo backdrop + gradient) ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  will-change: transform;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,14,8,0.5) 0%, rgba(20,14,8,0.38) 35%, rgba(20,40,4,0.7) 75%, rgba(15,66,0,0.86) 100%),
    linear-gradient(90deg, rgba(15,10,5,0.55) 0%, rgba(15,10,5,0.15) 45%, rgba(15,66,0,0.2) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 640px; }
.hero-content .eyebrow { background: var(--gold); color: var(--brown-dark); }
.hero-content h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.7rem); }
.hero-content h1 em { color: var(--gold); font-style: normal; }
.hero-content p { color: #ede6d8; margin: 18px 0 30px; max-width: 500px; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  color: #fff;
  opacity: .8;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-cue::after {
  content: "";
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), transparent);
}
@media (max-width: 760px) {
  .hero { min-height: 80vh; padding: 130px 0 70px; }
  .hero-bg { grid-template-columns: repeat(2, 1fr); }
}

/* ============ Page header (inner pages) — photo backdrop ============ */
.page-hero {
  position: relative;
  padding: 160px 0 120px;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(78,45,18,0.86) 0%, rgba(15,66,0,0.82) 100%);
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(243,175,39,0.22), transparent 55%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { background: var(--gold); color: var(--brown-dark); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.page-hero p { color: #e9dcc8; margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============ Layered / overlapping image stack (per sketch) ============ */
.stack {
  position: relative;
  padding: 30px 40px 40px 0;
}
.stack .front {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
}
.stack .front img { width: 100%; height: 100%; object-fit: cover; }
.stack .back {
  position: absolute;
  right: -10px; bottom: -10px;
  width: 56%;
  border-radius: 16px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
  z-index: 2;
}
.stack .back img { width: 100%; height: 100%; object-fit: cover; }
.stack .badge {
  position: absolute;
  left: 14px; top: 4px;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 10px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
  z-index: 3;
}
@media (max-width: 640px) { .stack { padding: 24px 22px 30px 0; } }

/* ============ About / feature split ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split .body p { color: var(--muted); margin-bottom: 16px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}
.split.reverse { grid-template-columns: 1fr 1fr; }
.split.reverse .media { order: 2; }
@media (max-width: 860px) { .split.reverse .media { order: 0; } }

/* ============ Stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num { font-family: var(--font-heading); font-size: 2.4rem; color: var(--brown); font-weight: 700; }
.stat-label { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============ Package tabs ============ */
.pkg-tabs { display: grid; grid-template-columns: 260px 1fr; gap: 40px; }
.pkg-tab-list { display: flex; flex-direction: column; gap: 10px; }
.pkg-tab-list button {
  text-align: left;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: all 0.25s ease;
}
.pkg-tab-list button.active,
.pkg-tab-list button:hover {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}
.pkg-panel { display: none; }
.pkg-panel.active { display: block; }
.pkg-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pkg-card img { height: 100%; min-height: 220px; object-fit: cover; }
.pkg-card .pkg-body { padding: 28px 28px 28px 0; }
.pkg-price {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.pkg-body h3 { font-size: 1.3rem; margin-bottom: 10px; }
.pkg-body p { color: var(--muted); }
@media (max-width: 760px) {
  .pkg-tabs { grid-template-columns: 1fr; }
  .pkg-tab-list { flex-direction: row; flex-wrap: wrap; }
  .pkg-card { grid-template-columns: 1fr; }
  .pkg-card img { min-height: 180px; }
  .pkg-card .pkg-body { padding: 0 22px 22px; }
}

/* ============ Grid of cards (services / featured) ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.tour-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tour-card:hover .thumb img { transform: scale(1.06); }
.tour-card .body { padding: 22px; }
.tour-card h4 { font-size: 1.08rem; margin-bottom: 10px; min-height: 52px; }
.tour-card .btns {
  display: inline-flex;
  margin-top: 6px;
  font-weight: 700;
  color: var(--brown);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* ============ Why us / icon list ============ */
.why-list { display: flex; flex-direction: column; gap: 26px; }
.why-item { display: flex; gap: 18px; }
.why-item .num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
}
.why-item h5 { margin-bottom: 6px; font-size: 1.08rem; }
.why-item p { color: var(--muted); }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.philosophy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.philosophy-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1.2rem;
  font-weight: 700;
}
.philosophy-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.philosophy-card p { color: var(--muted); font-size: 0.95rem; }

/* ============ CTA banner ============ */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--brown) 0%, var(--forest-dark) 100%);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
  overflow: hidden;
}
.cta-banner.has-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(78,45,18,0.88) 0%, rgba(15,66,0,0.8) 100%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h3 { color: #fff; font-size: clamp(1.4rem, 2.6vw, 2rem); max-width: 480px; }
.cta-banner p { color: #e9dcc8; margin-top: 8px; }

/* ============ Photo section (testimonials / accent bands with bg image) ============ */
.photo-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}
.photo-section::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(78,45,18,0.9) 0%, rgba(15,66,0,0.86) 100%);
}
.photo-section > .container { position: relative; z-index: 1; }
.photo-section h2 { color: #fff; }
.photo-section .eyebrow { background: var(--gold); color: var(--brown-dark); }
.photo-section .section-heading p { color: #e9dcc8; }
.photo-section .testi-slide p { color: #fff; }
.photo-section .testi-person h5 { color: #fff; }
.photo-section .testi-person span { color: #d8cfc0; }
.photo-section .testi-dots button { border-color: #fff; }
.photo-section .avatar { background: var(--gold); color: var(--brown-dark); }
@media (max-width: 760px) {
  .photo-section { background-attachment: scroll; }
}

/* ============ Testimonials (single-slide slider w/ avatar + dots) ============ */
.testi-slider {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.testi-slide {
  display: none;
}
.testi-slide.active { display: block; }
.testi-slide p {
  color: var(--text);
  font-style: italic;
  font-size: 1.14rem;
  line-height: 1.7;
  margin-bottom: 26px;
}
.testi-person { display: flex; align-items: center; justify-content: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--brown);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading);
  flex-shrink: 0;
}
.testi-person h5 { font-size: 0.98rem; }
.testi-person span { color: var(--muted); font-size: 0.85rem; }
.testi-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.testi-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 2px solid var(--brown); background: transparent;
  cursor: pointer; padding: 0; opacity: .5;
}
.testi-dots button.active { background: var(--gold); border-color: var(--gold); opacity: 1; }

/* ============ Partners strip (real accreditation logos) ============ */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.partner-logo {
  width: 130px;
  height: 130px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: transform .25s ease;
}
.partner-logo:hover { transform: translateY(-4px); }
.partner-logo img { width: 100%; height: 100%; object-fit: contain; }

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 0;
  width: 100%;
  height: 340px;
}
.contact-points { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.contact-point {
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  flex: 1;
  min-width: 220px;
}
.contact-point .icon-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--brown-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0;
}
.contact-point h5 { font-size: 0.92rem; color: var(--muted); font-weight: 600; }
.contact-point strong { font-size: 1rem; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--cream);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }

/* ============ Footer ============ */
.site-footer {
  background: var(--dark);
  color: #b7ae9f;
  padding: 60px 0 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; } }
.footer-top .brand { color: #fff; margin-bottom: 14px; }
.footer-top .brand span { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { flex-shrink: 0; }
.footer-top p { max-width: 320px; color: #9a9284; }
.footer-col h5 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #b7ae9f; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.social-row a:hover { background: var(--gold); color: var(--brown-dark); border-color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: #857c6d;
}

/* ============ Scroll reveal ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ============ Plan My Safari page ============ */
.booking-shell { max-width: 1180px; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.package-grid {
  display: grid;
  gap: 16px;
}
.package-card {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.package-card:hover { transform: translateY(-3px); }
.package-card.active {
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(109,63,25,0.16);
}
.plan-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.package-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.package-card p, .package-card li { color: var(--muted); font-size: 0.95rem; }
.package-card ul { margin: 12px 0 14px 18px; }
.package-card strong { color: var(--brown); }
.checkout-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.summary-box {
  background: var(--cream);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
}
.summary-box h3 { margin-bottom: 12px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
}
.summary-row strong { color: var(--text); }
.gateway-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gateway-option {
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}
.gateway-option.active {
  background: var(--brown);
  color: #fff;
  border-color: var(--brown);
}
.booking-message {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; }
}

/* ============ Floating "Plan My Safari" button ============ */
.fab-safari {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--brown-dark);
  padding: 15px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 30px rgba(109,63,25,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fab-safari:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(109,63,25,0.5); }
.fab-safari svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 640px) {
  .fab-safari { right: 16px; bottom: 16px; padding: 13px 20px; font-size: 0.85rem; }
}

/* ============ Utility ============ */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* Soft decorative gradient-mesh backgrounds (no image weight) */
.section-decorated { position: relative; overflow: hidden; }
.section-decorated::before,
.section-decorated::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.section-decorated::before {
  width: 420px; height: 420px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(24,102,0,0.18), transparent 70%);
}
.section-decorated::after {
  width: 380px; height: 380px;
  bottom: -160px; left: -100px;
  background: radial-gradient(circle, rgba(243,175,39,0.18), transparent 70%);
}
.section-decorated > .container { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { transition: none; opacity: 1; transform: none; }
}
