/* ============================================================
   CAFULA TOURS & TRAVEL LTD — Main Stylesheet
   Brand: Red #C8181B | Navy #1A2C6E | White #FFFFFF
   Fonts: Playfair Display (display) | Montserrat (headings) | Inter (body)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #1C1C1C;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --red:       #C8181B;
  --red-dark:  #A11215;
  --navy:      #1A2C6E;
  --navy-dark: #111D4A;
  --white:     #FFFFFF;
  --cream:     #F7F5F0;
  --light-gray:#F2F4F8;
  --text:      #1C1C1C;
  --text-muted:#5A5A6A;
  --border:    #E0E0E8;

  --font-display: 'Playfair Display', serif;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1200px;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(26,44,110,0.10);
  --shadow-hover: 0 10px 36px rgba(26,44,110,0.18);
  --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- UTILITIES ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 3px solid var(--red);
  padding-left: 10px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,24,27,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  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; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,44,110,0.10);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-logo-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.navbar:not(.scrolled) .nav-logo-name { color: var(--white); }
.navbar:not(.scrolled) .nav-logo-sub  { color: rgba(255,255,255,0.85); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover,
.nav-links a.active {
  color: var(--red) !important;
  background: rgba(200,24,27,0.07);
}
.nav-cta {
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 74px; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(26,44,110,0.14);
  z-index: 999;
  padding: 20px 24px 28px;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}
.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  width: 100%;
  border-bottom: none;
  padding: 13px 28px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Replace with your own image if needed */
  background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,44,110,0.88) 0%,
    rgba(26,44,110,0.72) 50%,
    rgba(200,24,27,0.55) 100%
  );
}
/* Decorative diagonal stripe (signature element — echoes logo swoosh) */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 120px 24px 100px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  max-width: 780px;
  margin-bottom: 14px;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.03em;
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 11px;
  position: relative;
  overflow: hidden;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.trust-item {
  text-align: center;
}
.trust-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: 90px 0 80px;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about-image-main:hover img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge-text {
  font-size: 0.7rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.9;
}
.about-text p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.value-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-gray);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 100px;
}
.value-chip::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 90px 0;
  background: var(--cream);
  position: relative;
}
/* Angled top separator — echoes logo swoosh */
.services::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.services-head {
  text-align: center;
  margin-bottom: 52px;
}
.services-head .section-subtitle {
  margin: 0 auto;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(200,24,27,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--red);
}
.service-icon i {
  font-size: 1.35rem;
  color: var(--red);
  transition: color 0.3s;
}
.service-card:hover .service-icon i { color: var(--white); }
.service-name {
  font-family: var(--font-head);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   MISSION / VISION / VALUES
   ============================================================ */
.mission-section {
  padding: 90px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--cream);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
/* Decorative globe arc */
.mission-section::after {
  content: '';
  position: absolute;
  right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.mission-card {
  position: relative;
  padding: 38px 30px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mission-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,24,27,0.4);
}
.mission-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(200,24,27,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mission-icon i { color: var(--red); font-size: 1.1rem; }
.mission-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.mission-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.mission-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
/* Core values list */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.value-tag {
  font-size: 0.78rem;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(200,24,27,0.2);
  color: rgba(255,255,255,0.88);
  border-radius: 4px;
  border: 1px solid rgba(200,24,27,0.35);
}

/* ============================================================
   SAFARI CTA SECTION
   ============================================================ */
.safari-cta {
  position: relative;
  padding: 90px 0;
  /* Replace with your own Kenya safari image */
  background-image: url('https://images.unsplash.com/photo-1523805009345-7448845a9e53?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.safari-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26,44,110,0.92) 0%,
    rgba(26,44,110,0.75) 55%,
    rgba(200,24,27,0.6) 100%
  );
}
.safari-cta::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--navy);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.safari-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.safari-cta .section-tag  { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.5); }
.safari-cta .section-title { color: var(--white); }
.safari-cta .section-title span { color: rgba(255,255,255,0.8); font-style: italic; }
.safari-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 34px;
  max-width: 560px;
}
.safari-cta .btn-outline {
  border-color: rgba(255,255,255,0.55);
}

/* ============================================================
   COMMITMENT SECTION
   ============================================================ */
.commitment {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}
.commitment::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--navy);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.commitment-text .section-subtitle { max-width: 100%; margin-bottom: 28px; }
.commit-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}
.commit-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
}
.commit-icon i { color: var(--white); font-size: 1rem; }
.commit-head {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.commit-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.commitment-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
}
.commitment-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.commitment-image:hover img { transform: scale(1.03); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 90px 0 70px;
  background: var(--cream);
  position: relative;
}
.contact::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.contact-head {
  text-align: center;
  margin-bottom: 52px;
}
.contact-head .section-subtitle { margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.contact-card-icon {
  width: 60px; height: 60px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.contact-card-icon i { color: var(--white); font-size: 1.3rem; }
.contact-card-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.contact-card-detail {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.contact-card-detail a { color: var(--navy); font-weight: 600; transition: color 0.2s; }
.contact-card-detail a:hover { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 60px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.22s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--red);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--red); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.wa-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 1100;
  /* No flex — popup is positioned absolutely so it never affects button placement */
}
.wa-toggle {
  width: 62px; height: 62px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  position: relative;
}
.wa-toggle:hover {
  transform: scale(1.08);
  background: #1ebf5a;
}
.wa-toggle i {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  display: block;
}
/* Pulse ring */
.wa-toggle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 0; transform: scale(1.3); }
}
/* Popup — absolutely positioned above the toggle button (62px tall + 12px gap = 74px) */
.wa-popup {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
/* Popup header */
.wa-header {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-logo-wrap {
  position: relative;
  flex-shrink: 0;
}
.wa-logo-wrap img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  background: #fff;
}
.wa-status-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 11px; height: 11px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #075E54;
}
.wa-header-info { flex: 1; }
.wa-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1.2;
}
.wa-online {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
}
.wa-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}
.wa-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
/* Chat body */
.wa-body {
  padding: 18px 14px;
  background: #ECE5DD;
  /* WhatsApp background pattern */
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d0c8c0' fill-opacity='0.28'%3E%3Ccircle cx='4' cy='4' r='1.5'/%3E%3Ccircle cx='24' cy='4' r='1.5'/%3E%3Ccircle cx='14' cy='14' r='1.5'/%3E%3Ccircle cx='34' cy='14' r='1.5'/%3E%3Ccircle cx='4' cy='24' r='1.5'/%3E%3Ccircle cx='24' cy='24' r='1.5'/%3E%3Ccircle cx='14' cy='34' r='1.5'/%3E%3Ccircle cx='34' cy='34' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
  min-height: 120px;
}
.wa-bubble {
  display: inline-block;
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.10);
  max-width: 86%;
  font-size: 0.9rem;
  color: #111;
  line-height: 1.6;
  position: relative;
}
.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -7px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}
.wa-bubble p { margin-bottom: 4px; }
.wa-bubble p:last-of-type { margin-bottom: 0; }
.wa-bubble-time {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: rgba(0,0,0,0.38);
  margin-top: 5px;
}
/* Input area */
.wa-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #f0f0f0;
  border-top: 1px solid #ddd;
}
.wa-input {
  flex: 1;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.wa-input::placeholder { color: #aaa; }
.wa-send {
  width: 40px; height: 40px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wa-send:hover { background: #1ebf5a; }
.wa-send svg { width: 18px; height: 18px; fill: #fff; margin-left: 2px; flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 2px; }
  .nav-links a { padding: 8px 10px; }
  .about-grid  { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .mission-grid  { grid-template-columns: 1fr; gap: 24px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .commitment-image { order: -1; aspect-ratio: 16/7; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: -14px; right: 14px; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-scroll { display: none; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-widget { right: 16px; bottom: 20px; }
  .wa-popup { width: calc(100vw - 52px); right: 0; }
  /* Inner page hero on small screens */
  .page-hero { padding: 110px 0 70px; }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .page-section, .page-section-alt, .page-section-navy { padding: 56px 0; }
  .cta-strip { padding: 44px 20px; }
  .contact-form-box { padding: 24px 18px; }
  .safari-packages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-detail-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   INTERIOR PAGES — PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, rgba(200,24,27,0.55) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;  /* prevents text touching screen edges on mobile */
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.breadcrumb a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb .bc-sep { color: rgba(255,255,255,0.25); font-size: 0.7rem; }
.breadcrumb .bc-current {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero h1 span { color: rgba(255,255,255,0.75); font-style: italic; }
.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}
/* Page section base — cream bg first section after page hero */
.page-section {
  padding: 80px 0;
}
.page-section-alt {
  padding: 80px 0;
  background: var(--cream);
  position: relative;
}
.page-section-alt::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 48px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.page-section-navy {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
}
.page-section-navy::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 48px;
  background: var(--cream);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.value-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--red);
}
.value-detail-icon {
  width: 52px; height: 52px;
  background: rgba(200,24,27,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-detail-icon i { color: var(--red); font-size: 1.2rem; }
.value-detail-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-detail-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) { .values-detail-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .values-detail-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid transparent;
}
.service-detail-card:hover {
  border-left-color: var(--red);
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}
.service-detail-icon {
  width: 52px; height: 52px;
  background: rgba(200,24,27,0.09);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.service-detail-icon i { color: var(--red); font-size: 1.3rem; }
.service-detail-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-detail-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.service-detail-list {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-detail-list li {
  font-size: 0.78rem;
  background: var(--light-gray);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}
.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (max-width: 540px) {
  .service-detail-card { grid-template-columns: 1fr; }
}

/* Steps / How-it-works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: steps;
}
.step-card {
  text-align: center;
  position: relative;
}
.step-card::after {
  content: '';
  position: absolute;
  top: 26px; right: -16px;
  width: 32px; height: 2px;
  background: var(--border);
}
.step-card:last-child::after { display: none; }
.step-number {
  width: 52px; height: 52px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-card::after { display: none; }
}

/* ============================================================
   SAFARIS PAGE
   ============================================================ */
.safari-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.safari-package-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}
.safari-package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.safari-package-img {
  height: 220px;
  overflow: hidden;
}
.safari-package-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.safari-package-card:hover .safari-package-img img { transform: scale(1.05); }
.safari-package-body {
  padding: 28px 26px;
}
.safari-package-tag {
  display: inline-block;
  background: rgba(200,24,27,0.09);
  color: var(--red);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.safari-package-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.safari-package-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.safari-package-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.safari-include-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
}
.safari-include-chip i { color: var(--red); font-size: 0.75rem; }
@media (max-width: 768px) { .safari-packages-grid { grid-template-columns: 1fr; } }

/* Destinations grid — 4 cols desktop, 2 cols mobile */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 700px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { aspect-ratio: 4/5; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,44,110,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .gallery-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info-stack { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-hover); transform: translateX(4px); }
.cic-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cic-icon i { color: var(--white); font-size: 1rem; }
.cic-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.cic-detail {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.cic-detail a { color: var(--navy); font-weight: 600; transition: color 0.2s; }
.cic-detail a:hover { color: var(--red); }
/* Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,44,110,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 48px;
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
}

/* CTA strip — reusable across interior pages */
.cta-strip {
  background: var(--red);
  padding: 56px 24px;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
}
.cta-strip p {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.cta-strip .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
