/* ===== CSS Custom Properties ===== */
:root {
  /* Brand Colors — derived from existing site, elevated */
  --color-primary: #1B4332;       /* Deep safari green */
  --color-primary-light: #2D6A4F; /* Lighter green */
  --color-accent: #D4A03C;        /* Warm gold/amber */
  --color-accent-hover: #B8892F;  /* Darker gold */
  --color-dark: #1A1A1A;          /* Near black text */
  --color-body: #3D3D3D;          /* Body text */
  --color-muted: #6B6460;         /* Secondary text */
  --color-light: #F9F6F1;         /* Warm off-white bg */
  --color-white: #FFFFFF;
  --color-border: #E5E0DA;        /* Subtle borders */
  --color-hero-overlay: rgba(27, 67, 50, 0.55);
  --color-dark-section: #1B4332;
  --color-dark-section-alt: #143328;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --nav-height: 80px;
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-body);
  background-color: var(--color-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

section {
  scroll-margin-top: 80px;
}

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

/* ===== Utility Classes ===== */
.section-padding {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.navbar.scrolled .nav-logo span {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.navbar.scrolled .nav-links a {
  color: var(--color-body);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--color-primary);
  background: rgba(27, 67, 50, 0.08);
}

.nav-links .btn-primary {
  color: var(--color-white);
  margin-left: 8px;
}

.nav-links .btn-primary:hover {
  color: var(--color-white);
  background: var(--color-accent-hover);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
}

.navbar.scrolled .hamburger span {
  background: var(--color-dark);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Slideshow ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    var(--color-hero-overlay) 50%,
    rgba(27, 67, 50, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--nav-height);
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slideshow controls */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero-dot.active {
  background: var(--color-white);
  border-color: var(--color-white);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  max-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero .hero-content {
  padding-top: var(--nav-height);
  justify-content: center;
  height: 100%;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--color-white);
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-item .trust-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.trust-item .trust-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Intro / About Section ===== */
.intro-section {
  padding: var(--section-padding);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.intro-text .section-label {
  margin-bottom: 12px;
}

.intro-text h2 {
  margin-bottom: 20px;
}

.intro-text p {
  color: var(--color-muted);
  margin-bottom: 16px;
}

.intro-text .btn {
  margin-top: 12px;
}

/* ===== Services / Offerings Cards ===== */
.services-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.service-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-card-body .card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-body .card-link:hover {
  color: var(--color-accent);
}

/* ===== Certification Badges ===== */
.certifications-section {
  padding: var(--section-padding);
}

.cert-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 36px;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  text-align: center;
  min-width: 160px;
  transition: border-color var(--transition-base);
}

.cert-badge:hover {
  border-color: var(--color-primary);
}

.cert-badge svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}

.cert-badge .cert-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cert-badge .cert-desc {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ===== Testimonials ===== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--color-dark-section);
  color: var(--color-white);
}

.testimonials-section .section-label {
  color: var(--color-accent);
}

.testimonials-section h2 {
  color: var(--color-white);
}

.testimonials-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 0;
  position: relative;
  top: 20px;
  margin-right: 4px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-white);
}

.testimonial-location {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 0;
  background: var(--color-primary);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Safari Packages Grid ===== */
.packages-section {
  padding: var(--section-padding);
}

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

.package-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.package-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.package-card:hover .package-card-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card-body {
  padding: 24px;
}

.package-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.package-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.package-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.package-card-body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.package-price .price-label {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.package-price .price-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.package-price .price-unit {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.package-parks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.park-tag {
  background: var(--color-light);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* ===== How It Works / Process ===== */
.process-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-step {
  text-align: center;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===== Gallery with Lightbox ===== */
.gallery-section {
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition-base);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--color-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
}

.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== FAQ Accordion ===== */
.faq-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  gap: 16px;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ===== Timeline (Story page) ===== */
.timeline-section {
  padding: var(--section-padding);
  background: var(--color-white);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  padding-left: 64px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.timeline-item h4 {
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ===== Team Grid ===== */
.team-section {
  padding: var(--section-padding);
}

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

.team-card {
  text-align: center;
}

.team-card-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-initials {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}

.team-card h4 {
  margin-bottom: 2px;
}

.team-card .team-role {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ===== Kilimanjaro Route Cards ===== */
.route-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--color-border);
}

.route-card:last-child {
  border-bottom: none;
}

.route-card:nth-child(even) {
  direction: rtl;
}

.route-card:nth-child(even) > * {
  direction: ltr;
}

.route-card-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.route-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card-body h3 {
  margin-bottom: 8px;
}

.route-card-body .route-nickname {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.route-card-body p {
  color: var(--color-muted);
  margin-bottom: 16px;
}

.route-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.route-stat {
  text-align: center;
}

.route-stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
}

.route-stat-label {
  font-size: 0.75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Contact Page ===== */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item h4 {
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.contact-item a {
  color: var(--color-primary);
  font-weight: 500;
}

.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-light);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(27, 67, 50, 0.08);
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

/* Map */
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-dark-section);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo span {
  color: var(--color-white);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background var(--transition-base);
}

.footer-social a:hover {
  background: var(--color-accent);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===== Mobile Enquiry Bar ===== */
.mobile-enquiry-bar {
  display: none;
}

/* ===== Values Grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
}

.value-card svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* ===== Sample Itinerary ===== */
.itinerary-section {
  padding: var(--section-padding);
  background: var(--color-light);
}

.itinerary-day {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  max-width: 760px;
  margin: 0 auto;
}

.itinerary-day:last-child {
  border-bottom: none;
}

.day-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  padding-top: 2px;
}

.itinerary-day h4 {
  margin-bottom: 6px;
}

.itinerary-day p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Detail Pages (Safari & Kilimanjaro routes) ===== */
.detail-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.detail-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.detail-intro-text .section-label {
  margin-bottom: 8px;
}

.detail-intro-text h2 {
  margin-bottom: 16px;
}

.detail-intro-text p {
  margin-bottom: 16px;
  color: var(--color-muted);
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.detail-highlight {
  text-align: center;
  padding: 20px 12px;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.detail-highlight-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: 4px;
}

.detail-highlight-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-itinerary {
  max-width: 800px;
  margin: 0 auto;
}

.detail-itinerary .itinerary-day {
  max-width: 100%;
}

.detail-included {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.detail-included-col h4 {
  margin-bottom: 12px;
  color: var(--color-primary);
}

.detail-included-col ul {
  list-style: none;
  padding: 0;
}

.detail-included-col li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.detail-included-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.detail-route-map {
  text-align: center;
  margin: 0 auto;
  max-width: 600px;
}

.detail-route-map img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-route-map p {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.detail-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.detail-gallery img:hover {
  transform: scale(1.03);
}

.detail-price-box {
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.detail-price-box .price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.detail-price-box .price-unit {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.detail-price-box p {
  margin: 12px 0 20px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: 12px;
  transition: gap var(--transition-fast);
}

.view-more-link:hover {
  gap: 10px;
  color: var(--color-primary-light);
}

.view-more-link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .detail-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-included {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
    --nav-height: 64px;
  }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px;
    gap: 4px;
    transition: right var(--transition-base);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--color-body);
    font-size: 1.05rem;
    padding: 12px 16px;
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--color-primary);
    background: rgba(27, 67, 50, 0.06);
  }

  .nav-links .btn-primary {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  .hamburger {
    display: flex;
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay.open {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 500px;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-arrow--prev { left: 12px; }
  .hero-arrow--next { right: 12px; }

  /* Grids */
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .route-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-card:nth-child(even) {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .trust-strip .container {
    gap: 24px;
  }

  .trust-item .trust-number {
    font-size: 1.3rem;
  }

  .cert-grid {
    gap: 16px;
  }

  .cert-badge {
    padding: 20px 24px;
    min-width: 140px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px;
  }

  /* Mobile enquiry bar */
  .mobile-enquiry-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--color-white);
    padding: 10px 16px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    gap: 12px;
  }

  .mobile-enquiry-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-enquiry-bar .mobile-wa {
    background: #25D366;
    color: var(--color-white);
  }

  .mobile-enquiry-bar .mobile-enquire {
    background: var(--color-primary);
    color: var(--color-white);
  }

  .mobile-enquiry-bar svg {
    width: 18px;
    height: 18px;
  }

  /* Adjust bottom spacing for mobile bar */
  .whatsapp-float {
    bottom: 80px;
  }

  .back-to-top {
    bottom: 80px;
  }

  .footer {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .trust-strip .container {
    gap: 20px;
  }

  .cert-grid {
    flex-direction: column;
    align-items: center;
  }

  .cert-badge {
    width: 100%;
    max-width: 280px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .package-card-body {
    padding: 20px;
  }
}
