/* ============================================
   WAKALI SAFARIS — Style Sheet
   Mobile-first | Pure CSS | No frameworks
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand colours — derived from existing site's warm safari palette */
  --color-bg: #FAF8F5;
  --color-dark: #1A120B;
  --color-accent: #C8622A;
  --color-accent-hover: #A84E1F;
  --color-gold: #D4A054;
  --color-green: #3B6B3A;
  --color-text: #1A1A1A;
  --color-text-secondary: #5C544E;
  --color-border: #E2DCD6;
  --color-white: #FFFFFF;
  --color-overlay: rgba(26, 18, 11, 0.55);
  --color-card-bg: #FFFFFF;

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

  /* Spacing */
  --section-pad: 4rem 1.25rem;
  --container-max: 1200px;
  --nav-height: 72px;
  --radius: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- 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: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

a { color: var(--color-accent); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--color-accent-hover); }

ul, ol { list-style: none; }

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

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

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

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 98, 42, 0.3);
}

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

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-dark:hover {
  background: #2C1F14;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
}
.btn-gold:hover {
  background: #C49344;
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: var(--color-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-gold);
}

.nav-cta {
  display: none;
}

.nav-cta .btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s var(--ease);
}

.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); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-dark);
  padding: 5rem 2rem 2rem;
  transition: right 0.4s var(--ease);
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  color: var(--color-white);
  font-size: 1.1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--color-gold);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,11,0.3) 0%, rgba(26,18,11,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 0 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Hero slideshow */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

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

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

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.hero-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

.hero-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 3;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: all;
  background: rgba(0,0,0,0.3);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

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

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--color-dark);
  padding: 1.5rem 1.25rem;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Section Heading ---------- */
.section-heading {
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading .divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 1rem auto;
  border-radius: 2px;
}

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

.intro-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1rem;
}

.intro-text p {
  color: var(--color-text-secondary);
}

.intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

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

/* ---------- Trip Cards ---------- */
.trips {
  padding: var(--section-pad);
  background: var(--color-white);
}

.trip-grid {
  display: grid;
  gap: 1.5rem;
}

.trip-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

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

.trip-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.trip-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.trip-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.trip-card-body {
  padding: 1.5rem;
}

.trip-card-body h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.trip-card-body p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.trip-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trip-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

.trip-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
}

.trip-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---------- Certifications / Badge Strip ---------- */
.cert-strip {
  padding: 3rem 1.25rem;
  background: var(--color-bg);
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  min-width: 140px;
  text-align: center;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.cert-badge:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(212, 160, 84, 0.15);
}

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

.cert-badge .cert-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cert-badge .cert-detail {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
}

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

.testimonials h2 { color: var(--color-white); }
.testimonials .divider { background: var(--color-gold); }

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card .stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.testimonial-author-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-author-source {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--color-accent), #A84E1F);
  color: var(--color-white);
  text-align: center;
}

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

.cta-section p {
  opacity: 0.95;
  max-width: 550px;
  margin: 0 auto 2rem;
}

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

.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(26,18,11,0.35) 0%, rgba(26,18,11,0.65) 100%);
}

.page-hero .hero-content {
  padding-top: calc(var(--nav-height) + 2rem);
}

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

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

/* ---------- Safari Listings (full listings page) ---------- */
.safari-listings {
  padding: var(--section-pad);
}

.safari-list {
  display: grid;
  gap: 2rem;
}

.safari-item {
  display: grid;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.safari-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.safari-item-image {
  height: 240px;
  overflow: hidden;
}

.safari-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.safari-item:hover .safari-item-image img {
  transform: scale(1.05);
}

.safari-item-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.safari-item-body h3 {
  margin-bottom: 0.5rem;
}

.safari-item-body p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.safari-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.safari-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  background: var(--color-bg);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.safari-meta-tag svg {
  width: 14px;
  height: 14px;
}

/* ---------- Content Sections (About, Kilimanjaro details, etc.) ---------- */
.content-section {
  padding: var(--section-pad);
}

.content-section.alt-bg {
  background: var(--color-white);
}

.content-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.content-text h2 {
  margin-bottom: 1rem;
}

.content-text h3 {
  margin-bottom: 0.75rem;
  color: var(--color-accent);
}

.content-text p {
  color: var(--color-text-secondary);
}

.content-text ul {
  margin: 1rem 0;
}

.content-text ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--color-text-secondary);
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

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

/* ---------- Why Choose Section ---------- */
.why-choose {
  padding: var(--section-pad);
  background: var(--color-white);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.why-card svg {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.why-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.why-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

/* ---------- FAQ Accordion ---------- */
.faq-section {
  padding: var(--section-pad);
}

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

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

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

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

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

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

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

.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Photo Gallery ---------- */
.gallery-section {
  padding: var(--section-pad);
  background: var(--color-white);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

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

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  margin-bottom: 0.25rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 1rem;
  color: var(--color-dark);
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.contact-social a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.contact-social a:hover svg {
  color: var(--color-white);
}

.contact-social svg {
  width: 20px;
  height: 20px;
  color: var(--color-dark);
  transition: color 0.3s var(--ease);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-bg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200, 98, 42, 0.1);
}

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

.form-group .error-msg {
  display: none;
  font-size: 0.8rem;
  color: #D32F2F;
  margin-top: 0.3rem;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #D32F2F;
}

.form-group.error .error-msg {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--color-green);
  margin-bottom: 1rem;
}

.form-success h3 {
  color: var(--color-green);
  margin-bottom: 0.5rem;
}

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

.map-container {
  max-width: var(--container-max);
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 1.25rem 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 36px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255,255,255,0.65);
}

.footer h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.65);
}

.footer-contact-item a:hover {
  color: var(--color-gold);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover {
  color: var(--color-gold);
}

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

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

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

/* ---------- Sticky Mobile Enquiry Bar ---------- */
.mobile-enquiry-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 899;
  background: var(--color-dark);
  padding: 0.6rem;
  gap: 0.5rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
}

.mobile-enquiry-bar a {
  flex: 1;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

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

.mobile-enquiry-bar .bar-whatsapp {
  background: #25D366;
  color: white;
}

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

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 800;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--color-accent);
}

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

/* ---------- Price Disclaimer ---------- */
.price-note {
  padding: 1.5rem 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .trip-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .safari-item { grid-template-columns: 2fr 3fr; }
  .safari-item-image { height: 300px; }
  .content-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .hamburger { display: none; }

  .trip-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  #route-overview .why-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  .mobile-enquiry-bar { display: none; }

  .whatsapp-float { bottom: 2rem; right: 2rem; }
  .back-to-top { bottom: 2rem; left: 2rem; }

  :root { --section-pad: 5rem 2rem; }
}

/* ============================================
   RESPONSIVE — Large (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .trip-grid { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin-left: auto; margin-right: auto; }
}

/* ---------- Legal Content (Terms, Privacy) ---------- */
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
}

/* ---------- Print ---------- */
@media print {
  .nav, .whatsapp-float, .mobile-enquiry-bar, .back-to-top { display: none; }
  .hero { min-height: auto; }
  body { color: #000; background: #fff; }
}
