﻿/* ==========================================================================
   OASIS THEME GLOBAL CSS
   ========================================================================== */

/* 0. Design tokens â€” defined here so the theme is self-contained.
   (style.css is the WP theme-header file and is NOT enqueued on the front end,
   so the color variables must live in the stylesheet that actually loads.) */
:root {
  --color-primary: #123524;        /* Deep forest / jungle green */
  --color-primary-light: #2a5c43;  /* Lighter forest green */
  --color-accent: #e0a53f;         /* Warm safari gold (energised) */
  --color-accent-hover: #c4872a;   /* Deeper amber gold on hover */
  --color-bg-light: #fdf7e6;       /* Soft cream sand */
  --color-bg-dark: #0f1c15;        /* Deep night forest */
  --color-card-bg: #ffffff;
  --color-text-dark: #24312b;      /* Charcoal green-black */
  --color-text-muted: #667085;     /* Muted slate grey */
  --color-mpesa: #49c513;          /* M-Pesa green */
  --color-error: #ef4444;          /* Soft red */
  --color-cta: #f97316;            /* Sunset orange â€” high-energy CTA */
  --color-cta-hover: #ea580c;      /* Deeper sunset on hover */

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --border-radius: 12px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 12px 32px rgba(18, 53, 36, 0.14);
  --transition-speed: 0.3s;
}

/* 1. Reset & Global Layout */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #fcfbf7;
  color: var(--color-text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Media never overflows its container */
img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--color-accent);
  color: #123524;
}

.global-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-white { color: #ffffff !important; }

/* Accessibility: visually hidden text (WordPress standard) */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #ffffff;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--color-primary);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100000;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.tab-item:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* 2. Top Header & Navigation */
.site-header {
  background: rgba(18, 53, 36, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 163, 115, 0.2);
  padding: 10px 0;
  transition: background var(--transition-speed);
}

.site-header.header-static {
  position: static;
}

/* Native custom-logo mirrors the fallback .site-logo sizing. */
.custom-logo-link {
  text-decoration: none;
  display: block;
}

.custom-logo {
  max-height: 48px;
  width: auto;
  height: auto;
  display: block;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  max-height: 54px;
  width: auto;
  display: block;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  text-decoration: none;
  display: block;
}

.site-logo {
  max-height: 48px;
  width: auto;
  display: block;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}

/* Show hamburger by default, swap to X when the menu is open */
.menu-toggle .close-icon { display: none; }
.menu-toggle.active .open-icon { display: none; }
.menu-toggle.active .close-icon { display: inline-block; }

.menu-primary-container ul,
.main-navigation ul.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
}

.menu-primary-container ul li,
.main-navigation ul.menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-primary-container ul li a,
.main-navigation ul.menu li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition-speed);
  padding: 5px 0;
  position: relative;
  white-space: nowrap;
}

.menu-primary-container ul li a::after,
.main-navigation ul.menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-speed);
}

.menu-primary-container ul li a:hover,
.main-navigation ul.menu li a:hover,
.menu-primary-container ul li.current-menu-item a,
.main-navigation ul.menu li.current-menu-item a {
  color: var(--color-accent);
}

.menu-primary-container ul li a:hover::after,
.main-navigation ul.menu li a:hover::after,
.menu-primary-container ul li.current-menu-item a::after,
.main-navigation ul.menu li.current-menu-item a::after {
  width: 100%;
}

.header-btn {
  background-color: var(--color-accent);
  color: #123524;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition-speed), transform var(--transition-speed);
}

.header-btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

/* 3. Hero Section & Search Widget */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(18, 53, 36, 0.6) 0%, rgba(15, 28, 21, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 20px;
  color: #f3f4f6;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Search Widget Styling */
.search-widget-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.safari-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.search-field-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  padding: 10px 16px;
  border-radius: 8px;
}

.search-field-group label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-field-group select {
  width: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-dark);
  background-color: transparent;
  cursor: pointer;
}

.search-submit-btn {
  background-color: var(--color-accent);
  color: #123524;
  border: none;
  font-size: 16px;
  font-weight: 700;
  padding: 0 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition-speed);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
}

.search-submit-btn:hover {
  background-color: var(--color-accent-hover);
}

/* 4. Section Styling */
section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 50px;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.sub-heading {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color-cta);
  letter-spacing: 3px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

/* On dark backgrounds keep the eyebrow readable (gold, not orange). */
.cta-contact-section .sub-heading,
.stats-bar .sub-heading {
  color: var(--color-accent);
}

.section-title {
  font-size: clamp(28px, 4.5vw, 38px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-speed);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

/* 5. Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border-top: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-top-color: var(--color-accent);
}

.benefit-icon {
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  margin: 0;
}

/* 6. Tours Listing Cards Grid */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.tour-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.tour-card-image {
  height: 240px;
  position: relative;
  overflow: hidden;
  background-color: #e5e7eb;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-card-image img {
  transform: scale(1.08);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tour-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-title {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tour-card-title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.tour-card-title a:hover {
  color: var(--color-accent-hover);
}

.tour-card-excerpt {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.tour-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f3f4f6;
  padding-top: 15px;
}

.tour-card-price .label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  display: block;
}

.tour-card-price .price-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
}

.tour-card-btn {
  background: var(--color-bg-light);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition-speed), color var(--transition-speed);
}

.tour-card-btn:hover {
  background: var(--color-primary);
  color: #ffffff;
}

/* 7. FAQ Accordions (With micro-animations) */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: border-color var(--transition-speed);
}

.faq-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
}

.faq-accordion-header .toggle-icon {
  font-size: 14px;
  transition: transform var(--transition-speed);
  color: var(--color-accent-hover);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) ease-out, padding var(--transition-speed);
  padding: 0 24px;
}

.faq-accordion-content p {
  margin: 0;
  padding-bottom: 20px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Active open states */
.faq-accordion-item.open {
  border-color: rgba(212, 163, 115, 0.4);
}

.faq-accordion-item.open .faq-accordion-header {
  border-bottom: 1px solid #f9fafb;
}

.faq-accordion-item.open .toggle-icon {
  transform: rotate(180deg);
}

/* 8. Call To Action Form Section */
.cta-contact-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 36, 25, 0.9);
}

.cta-flex {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.cta-text-col {
  flex: 1 1 450px;
}

.cta-text-col h2 {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-text-col p {
  font-size: 16px;
  color: #e5e7eb;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cta-perks-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 500;
}

.cta-perks-list li i {
  color: var(--color-accent);
  font-size: 18px;
}

.cta-form-col {
  flex: 1 1 450px;
}

.form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  color: var(--color-text-dark);
}

.form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--color-primary);
}

.form-row {
  margin-bottom: 16px;
}

.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border var(--transition-speed);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--color-primary);
}

/* Payment selection radios inside inquiry */
.payment-method-selectors {
  margin-bottom: 20px;
  border: 1px solid #f3f4f6;
  padding: 12px 16px;
  border-radius: 6px;
  background: #f9fafb;
}

.payment-method-selectors .selector-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 8px 0;
  font-weight: 600;
  text-transform: uppercase;
}

.method-choices {
  display: flex;
  gap: 20px;
}

.choice-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  background: var(--color-accent);
  color: #123524;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.form-submit-btn:hover {
  background: var(--color-accent-hover);
}

.form-feedback-message {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
}
.form-feedback-message.success { color: var(--color-primary-light); }
.form-feedback-message.error { color: var(--color-error); }

/* 9. Single Tour Detail Page CSS */
.tour-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px 0;
  color: #ffffff;
}

.tour-hero-content {
  position: relative;
  z-index: 2;
}

.tour-tax-badge {
  background-color: var(--color-accent);
  color: #123524;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  text-transform: uppercase;
}

.tour-title {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  color: #ffffff;
  margin: 15px 0;
}

.tour-meta-highlights {
  display: flex;
  gap: 25px;
  font-size: 15px;
  font-weight: 500;
}

.tour-meta-highlights .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-meta-highlights .meta-item i {
  color: var(--color-accent);
}

/* Tabs Navigation below Tour Hero */
.tour-tabs-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 68px; /* below sticky main header */
  z-index: 99;
}

.tabs-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tabs-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.tab-item {
  padding: 20px 0;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
}

.tab-item.active {
  color: var(--color-primary);
}

.tab-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: width var(--transition-speed);
}

.tab-item.active::after {
  width: 100%;
}

.tab-cta-btn {
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition-speed);
}

.tab-cta-btn:hover {
  background: var(--color-primary-light);
}

/* Tour Layout Container */
.tour-layout-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 80px;
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content-panel h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

/* Timeline Itinerary styling */
.itinerary-timeline {
  position: relative;
  padding-left: 30px;
  margin: 30px 0;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 3px;
  background: #e5e7eb;
}

.timeline-day {
  position: relative;
  margin-bottom: 35px;
}

.day-number {
  position: absolute;
  left: -42px;
  top: 0;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  color: #123524;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 0 0 4px #ffffff;
}

.day-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.day-content p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Inclusions & Exclusions details grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.inclusions-box, .exclusions-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.inclusions-box h3, .exclusions-box h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.inclusions-box ul, .exclusions-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.inclusions-box ul li, .exclusions-box ul li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.inclusions-box ul li i { color: var(--color-primary-light); margin-top: 3px; }
.exclusions-box ul li i { color: var(--color-error); margin-top: 3px; }

/* Map Widget Placeholder */
.placeholder-map-container {
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.map-mock-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: #e4ece7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-mock-bg span {
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 18px;
}

/* Sidebar Booking Sticky Card */
.tour-sidebar-col {
  position: relative;
}

.sticky-sidebar-widget {
  position: sticky;
  top: 170px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.sticky-sidebar-widget .widget-header {
  background: var(--color-primary);
  color: #ffffff;
  padding: 24px;
}

.sticky-sidebar-widget .widget-header .label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
}

.price-display {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin: 5px 0 0 0;
}

.price-display .unit {
  font-size: 14px;
  font-weight: 400;
  color: #e5e7eb;
}

.booking-widget-body {
  padding: 24px;
}

.booking-widget-body h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.booking-submit-btn {
  width: 100%;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.booking-submit-btn:hover {
  background: var(--color-primary-light);
}

.widget-footer-support {
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  padding: 20px;
}

.widget-footer-support p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 10px 0;
}

.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-mpesa);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--color-mpesa);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all var(--transition-speed);
}

.btn-whatsapp-outline:hover {
  background: var(--color-mpesa);
  color: #ffffff;
}

/* 10. Archive / Search Results Layout CSS */
.archive-hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.archive-hero-content {
  position: relative;
  z-index: 2;
}

.archive-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.archive-layout-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 80px;
}

/* Taxonomy term archives (Destinations / Tour Types) run full-width, no sidebar. */
.archive-layout-container.archive-no-sidebar {
  grid-template-columns: 1fr;
}

.archive-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.archive-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.archive-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  border: 2px dashed #d8d8d8;
  border-radius: var(--border-radius);
  background: #fbfbf7;
}

.archive-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-accent);
  font-size: 30px;
  margin-bottom: 18px;
}

.archive-empty h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.archive-empty p {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 24px;
}

.archive-empty-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Archive Filters Sidebar */
.archive-filters-sidebar {
  background: #ffffff;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius);
  height: fit-content;
}

.filter-widget h3 {
  font-size: 18px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 10px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  color: var(--color-text-dark);
}

.apply-filters-btn {
  width: 100%;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 10px;
}

.reset-filters-btn {
  display: block;
  text-align: center;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

.archive-results-header {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.results-count {
  font-weight: 600;
  color: var(--color-text-muted);
  margin: 0;
}

/* 11. Floating WhatsApp Widget (Pulse interaction) */
.whatsapp-float-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-float-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--color-mpesa);
  color: #ffffff;
  border-radius: 50%;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(73, 197, 19, 0.4);
  position: relative;
  transition: transform var(--transition-speed);
}

.whatsapp-float-link:hover {
  transform: scale(1.08);
}

.whatsapp-badge {
  position: absolute;
  right: 75px;
  background: #111827;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-speed);
}

.whatsapp-float-link:hover .whatsapp-badge {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-mpesa);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* 12. Footer Styling */
.site-footer {
  background: #0f1c15;
  color: #ffffff;
  padding: 80px 0 0 0;
  border-top: 3px solid var(--color-accent);
}

/* All footer text reads white; icons keep the gold accent. */
.site-footer .about-desc,
.site-footer .footer-credentials p,
.contact-info-list li,
.contact-info-list li a,
.copyright-text {
  color: #ffffff;
}

.contact-info-list li a {
  text-decoration: none;
  transition: color var(--transition-speed);
}

.contact-info-list li a:hover {
  color: var(--color-accent);
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget-col h3.widget-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-col h3.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.about-desc {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

.contact-info-list li i {
  color: var(--color-accent);
}

.footer-links ul, .footer-tours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li, .footer-tours ul li {
  margin-bottom: 12px;
}

.footer-links ul li a, .footer-tours ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-speed), padding-left var(--transition-speed);
}

.footer-links ul li a:hover, .footer-tours ul li a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

.footer-credentials p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.badge-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.08);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(212,163,115,0.15);
}

.footer-bottom {
  background: #09110d;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright-text {
  font-size: 13px;
  margin: 0;
}

.footer-social-links {
  display: flex;
  gap: 15px;
}

.footer-social-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-speed);
}

.footer-social-links a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   13. DEFAULT CONTENT: Blog, Pages, Search, 404, Comments
   ========================================================================== */
.default-layout {
  padding-top: 60px;
  padding-bottom: 80px;
}

.page-header {
  margin-bottom: 40px;
  text-align: center;
}

.page-title {
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.page-header .page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px;
}

/* Posts / archive grid of cards */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.post-card {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.post-thumbnail {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-thumbnail img {
  transform: scale(1.06);
}

.post-card .post-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-card .entry-title {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 12px;
}

.post-card .entry-title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.post-card .entry-title a:hover {
  color: var(--color-accent-hover);
}

.post-card .entry-summary {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.post-card .entry-footer {
  margin-top: auto;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap var(--transition-speed), color var(--transition-speed);
}

.read-more-link:hover {
  color: var(--color-accent-hover);
  gap: 12px;
}

/* Single page / post article body */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-dark);
}

.entry-content > * { margin-top: 0; }
.entry-content > * + * { margin-top: 1.4em; }

.entry-content h2 { font-size: 28px; }
.entry-content h3 { font-size: 22px; }

.entry-content a {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover { color: var(--color-accent-hover); }

.entry-content img { border-radius: var(--border-radius); }

.entry-content blockquote {
  margin: 1.6em 0;
  padding: 16px 24px;
  border-left: 4px solid var(--color-accent);
  background: #ffffff;
  border-radius: 0 8px 8px 0;
  color: var(--color-text-dark);
  font-style: italic;
}

.entry-content ul,
.entry-content ol { padding-left: 22px; }

.entry-content pre {
  background: var(--color-bg-dark);
  color: #f3f4f6;
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
}

/* WordPress alignment + caption helpers */
.alignwide { margin-left: -60px; margin-right: -60px; max-width: none; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--color-text-muted); text-align: center; margin-top: 8px; }
.sticky, .gallery-caption, .bypostauthor { display: block; }

/* Page (static) narrow wrapper */
.page-content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.page-featured-image {
  max-width: 960px;
  margin: 0 auto 40px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.page-featured-image img {
  width: 100%;
  display: block;
}

.error-404 .page-content .btn-outline {
  margin: 8px 6px 0;
}

/* No results / 404 */
.no-results,
.error-404 {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 40px;
}

.no-results .page-content,
.error-404 .page-content {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

.error-404 .error-code {
  font-family: var(--font-heading);
  font-size: clamp(80px, 20vw, 160px);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  margin: 0;
}

.error-404 .btn-outline { margin-top: 24px; }

/* Search form */
.search-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 24px auto 0;
}

.search-form .search-field {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 30px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border var(--transition-speed);
}

.search-form .search-field:focus { border-color: var(--color-primary); }

.search-form .search-submit {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.search-form .search-submit:hover { background: var(--color-primary-light); }

/* Pagination (the_posts_navigation / posts_nav_link) */
.posts-navigation,
.post-navigation,
.pagination {
  margin-top: 50px;
}

.posts-navigation .nav-links,
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.posts-navigation a,
.post-navigation a,
.pagination a,
.pagination .current {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background var(--transition-speed), color var(--transition-speed);
}

.posts-navigation a:hover,
.post-navigation a:hover,
.pagination a:hover,
.pagination .current {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* Breadcrumbs (Rank Math) */
.oasis-breadcrumbs {
  background: #ffffff;
  border-bottom: 1px solid #eef0ee;
  font-size: 13px;
  color: var(--color-text-muted);
  padding: 12px 0;
}

.oasis-breadcrumbs a { color: var(--color-primary); text-decoration: none; }
.oasis-breadcrumbs a:hover { color: var(--color-accent-hover); }

/* Responsive video/map iframe wrapper */
.map-iframe-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.map-iframe-container iframe { display: block; }

/* ==========================================================================
   16. Homepage Sections (About / Services / Destinations / CTA contact)
   ========================================================================== */

/* --- About Section --- */
.about-section {
  background: var(--color-bg-light);
}

.about-flex {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-main-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-hover);
  display: block;
}

.about-experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--border-radius);
  padding: 22px 26px;
  text-align: center;
  box-shadow: var(--box-shadow-hover);
  border-bottom: 4px solid var(--color-accent);
}

.about-experience-badge .years {
  display: block;
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
}

.about-experience-badge .label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.about-text-col .section-title {
  margin-bottom: 22px;
}

.about-lead {
  font-size: 17px;
  color: var(--color-text-dark, #1f2937);
  font-weight: 500;
  margin-bottom: 16px;
}

.about-text-col p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
}

.about-highlights li i {
  color: var(--color-accent);
  font-size: 17px;
  flex-shrink: 0;
}

/* --- Services Section --- */
.services-section {
  background: #ffffff;
}

.services-section .benefit-card {
  text-align: left;
  background: var(--color-bg-light);
  box-shadow: none;
  border: 1px solid #eee4c9;
}

.services-section .benefit-card:hover {
  background: #ffffff;
  box-shadow: var(--box-shadow-hover);
}

.services-section .benefit-icon {
  color: var(--color-accent-hover);
}

/* --- Destinations Section --- */
.destinations-section {
  background: var(--color-bg-light);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.destination-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  padding: 28px 26px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-decoration: none;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  border-left: 4px solid transparent;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
  border-left-color: var(--color-accent);
}

.destination-card > i {
  font-size: 26px;
  color: var(--color-primary);
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(224, 165, 63, 0.22), rgba(249, 115, 22, 0.16));
  box-shadow: inset 0 0 0 1px rgba(224, 165, 63, 0.25);
  transition: transform var(--transition-speed), color var(--transition-speed), background var(--transition-speed), box-shadow var(--transition-speed);
}

.destination-card:hover > i {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 10px 20px rgba(18, 53, 36, 0.22);
  transform: rotate(-6deg) scale(1.06);
}

.destination-name {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.3;
}

.destination-go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-hover);
  transition: gap var(--transition-speed);
}

.destination-card:hover .destination-go {
  gap: 14px;
}

/* --- CTA direct contact line --- */
.cta-direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color var(--transition-speed);
}

.cta-direct-contact a i {
  color: var(--color-accent);
}

.cta-direct-contact a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   17. Interactive Gallery Page
   ========================================================================== */
.gallery-page {
  padding-top: 0;
}

.gallery-hero {
  position: relative;
  padding: 132px 0 118px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 28, 21, 0.55) 0%, rgba(15, 28, 21, 0.72) 100%);
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery-hero-eyebrow i { color: var(--color-accent); }

.gallery-hero-title {
  font-size: clamp(34px, 5.4vw, 54px);
  line-height: 1.08;
  color: #ffffff;
  margin: 20px 0 16px;
}

.gallery-hero-subtitle {
  max-width: 620px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.gallery-hero .about-breadcrumb {
  justify-content: center;
}

/* Filter bar */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 40px;
}

.gallery-filter-btn {
  border: 2px solid #e5e7eb;
  background: #ffffff;
  color: var(--color-primary);
  padding: 9px 22px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-speed), color var(--transition-speed), border-color var(--transition-speed);
}

.gallery-filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-hover);
}

.gallery-filter-btn.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

/* Grid */
.gallery-wrap {
  padding-top: 68px;
  padding-bottom: 4px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  aspect-ratio: 4 / 3;
}

/* Reveal animation only applies once JS has flagged the grid; without JS
   the items stay fully visible so the gallery never renders blank. */
.js-reveal .gallery-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-reveal .gallery-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.is-hidden {
  display: none;
}

/* Make every 4th item span two rows for a dynamic mosaic look */
.gallery-item:nth-child(6n + 1) {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

.gallery-item-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-item-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-item-link img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(18, 53, 36, 0.85) 0%, rgba(18, 53, 36, 0.15) 45%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus-within .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-cat {
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.gallery-item-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.gallery-item-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: scale(0.6);
  transition: transform var(--transition-speed);
}

.gallery-item:hover .gallery-item-zoom {
  transform: scale(1);
}

.gallery-empty {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 40px;
  background: var(--color-bg-light);
  border: 1px dashed rgba(18, 53, 36, 0.25);
  border-radius: var(--border-radius);
}

.gallery-empty-icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  border-radius: 50%;
  font-size: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  box-shadow: 0 12px 28px rgba(18, 53, 36, 0.22);
}

.gallery-empty h2 {
  font-size: 24px;
  color: var(--color-primary);
  margin: 0 0 10px;
}

.gallery-empty p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 20, 15, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity var(--transition-speed);
}

.gallery-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.glb-stage {
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  text-align: center;
}

.glb-image {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.glb-caption {
  color: #f3f4f6;
  font-family: var(--font-heading);
  font-size: 17px;
  margin-top: 16px;
}

.glb-close,
.glb-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: background var(--transition-speed);
}

.glb-close {
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.glb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 20px;
}

.glb-prev { left: 26px; }
.glb-next { right: 26px; }

.glb-close:hover,
.glb-nav:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  padding: 64px 0 24px;
}

.gallery-cta h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--color-primary);
  margin-bottom: 26px;
}

.gallery-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   18. Dynamic Polish â€” motion, energy CTAs, stats bar, richer cards
   ========================================================================== */

/* --- High-energy CTA button (Bonfire-style) --- */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-cta);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.32);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed), background var(--transition-speed);
}

.btn-cta:hover {
  background: var(--color-cta-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(234, 88, 12, 0.4);
}

.btn-cta i { transition: transform var(--transition-speed); }
.btn-cta:hover i { transform: translateX(4px); }

/* Header CTA gets the energy treatment too */
.header-btn {
  background: var(--color-cta);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}
.header-btn:hover {
  background: var(--color-cta-hover);
}

/* Search submit + form submit pick up the vivid accent */
.search-submit-btn,
.form-submit-btn {
  background: var(--color-cta);
  color: #ffffff;
}
.search-submit-btn:hover,
.form-submit-btn:hover {
  background: var(--color-cta-hover);
}

/* --- Section title accent underline --- */
.section-header .section-title::after,
.section-header-flex .section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--color-cta), var(--color-accent));
  border-radius: 4px;
}
.section-header.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* --- Hero: slow Ken Burns zoom + staged entrance --- */
.hero-section {
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: -4%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
.hero-section > .hero-overlay { z-index: 1; }
.hero-section > .hero-content { z-index: 2; }

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero-title,
.hero-subtitle,
.search-widget-container {
  opacity: 0;
  transform: translateY(26px);
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title { animation-delay: 0.15s; }
.hero-subtitle { animation-delay: 0.35s; }
.search-widget-container { animation-delay: 0.55s; }

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Site-wide scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children inside a revealed grid */
.reveal-stagger.is-visible > * {
  animation: heroRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.reveal-stagger.is-visible > *:nth-child(1) { animation-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { animation-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { animation-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { animation-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { animation-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { animation-delay: 0.40s; }

/* --- Stats / trust bar --- */
.stats-bar {
  background: var(--color-primary);
  padding: 46px 0;
  position: relative;
  margin-top: -1px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  color: #ffffff;
  position: relative;
  padding: 0 12px;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
  color: var(--color-accent);
}
.stat-number .plus { color: var(--color-cta); }
.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.stat-item i {
  color: var(--color-cta);
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}

/* --- Richer card interactions --- */
.tour-card,
.benefit-card,
.destination-card,
.post-card {
  will-change: transform;
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 44px rgba(18, 53, 36, 0.18);
}
.benefit-card:hover {
  transform: translateY(-10px);
}

/* Stats bar responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
  .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }
}

/* Respect reduced motion for all the new effects */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before { animation: none; }
  .hero-title,
  .hero-subtitle,
  .search-widget-container,
  .reveal,
  .reveal-stagger.is-visible > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ==========================================================================
   14. Anchor offsets & motion preferences
   ========================================================================== */
:target {
  scroll-margin-top: 140px;
}

#book-now-anchor {
  scroll-margin-top: 100px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .whatsapp-btn-pulse { display: none; }
}

/* ==========================================================================
   15. Responsive Breakpoints
   ========================================================================== */
/* Tablets & below */
@media (max-width: 1024px) {
  .tour-layout-container, .archive-layout-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sticky-sidebar-widget {
    position: static;
  }
  section {
    padding: 64px 0;
  }
  .alignwide {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Landscape phones & small tablets */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    min-height: 78vh;
    padding: 90px 0 50px;
  }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: static;
  }

  .menu-primary-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #123524;
    border-bottom: 2px solid var(--color-accent);
    padding: 20px 24px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
  }

  .menu-primary-container.open {
    display: block;
    animation: fadeIn 0.25s ease-out;
  }

  .menu-primary-container ul {
    flex-direction: column;
    gap: 4px;
  }

  .menu-primary-container ul li a {
    display: block;
    padding: 10px 0;
  }

  /* Underline animation is awkward stacked; use a simple color change */
  .menu-primary-container ul li a::after { display: none; }

  .header-cta {
    display: none;
  }

  .safari-search-form {
    flex-direction: column;
  }

  .search-submit-btn {
    width: 100%;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .inclusions-grid {
    grid-template-columns: 1fr;
  }

  .form-row.split {
    grid-template-columns: 1fr;
  }

  .about-flex {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(18, 53, 36, 0.82) 0%, rgba(18, 53, 36, 0.1) 55%, transparent 75%);
  }

  .gallery-item-zoom {
    transform: scale(1);
  }

  .glb-nav {
    width: 44px;
    height: 44px;
  }
  .glb-prev { left: 10px; }
  .glb-next { right: 10px; }

  .about-main-image {
    min-height: 300px;
  }

  .about-experience-badge {
    right: 20px;
    bottom: -20px;
    padding: 18px 22px;
  }

  .about-experience-badge .years {
    font-size: 36px;
  }

  .tour-meta-highlights {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .cta-flex {
    gap: 30px;
  }

  .form-wrapper {
    padding: 28px;
  }

  .tabs-flex {
    gap: 12px;
  }

  .tab-cta-btn {
    display: none;
  }

  .tabs-list {
    gap: 24px;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
}

/* Portrait phones */
@media (max-width: 480px) {
  .global-container {
    padding: 0 18px;
  }
  section {
    padding: 48px 0;
  }
  .default-layout {
    padding-top: 40px;
    padding-bottom: 56px;
  }
  .section-header,
  .section-header-flex {
    margin-bottom: 32px;
  }
  .posts-grid,
  .tours-grid,
  .benefits-grid,
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item:nth-child(6n + 1) {
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }
  .gallery-lightbox {
    padding: 16px;
  }
  .benefit-card {
    padding: 32px 24px;
  }
  .about-highlights {
    grid-template-columns: 1fr;
  }
  .cta-direct-contact {
    flex-direction: column;
    gap: 14px;
  }
  .search-widget-container {
    padding: 16px;
  }
  .method-choices {
    flex-direction: column;
    gap: 10px;
  }
  .whatsapp-float-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float-link {
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  .search-form {
    flex-direction: column;
  }
  .search-form .search-submit {
    padding: 12px;
  }
}

/* ==========================================================================
   19. ABOUT US PAGE
   ========================================================================== */
.about-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 150px 0 170px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(18,53,36,0.25) 0%, rgba(15,28,21,0.85) 100%),
    linear-gradient(180deg, rgba(15,28,21,0.35) 0%, rgba(15,28,21,0.80) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-bg-light);
  background: rgba(224,165,63,0.18);
  border: 1px solid rgba(224,165,63,0.45);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.about-hero-eyebrow i { color: var(--color-accent); }
.about-hero-title {
  color: #ffffff;
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.08;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.about-hero-subtitle {
  font-size: clamp(16px, 2.2vw, 21px);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 26px;
  max-width: 640px;
}
.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.about-breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color var(--transition-speed);
}
.about-breadcrumb a:hover { color: var(--color-accent); }
.about-breadcrumb i { font-size: 12px; color: var(--color-accent); }
.about-breadcrumb span { color: #ffffff; font-weight: 600; }

/* Floating stats card overlapping the hero */
.about-stats-wrap {
  position: relative;
  margin-top: -90px;
  z-index: 5;
  padding: 0;
}
.about-stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--color-card-bg);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(18, 53, 36, 0.18);
  padding: 40px 30px;
  border: 1px solid rgba(18,53,36,0.06);
}
.about-stat {
  text-align: center;
  position: relative;
  padding: 4px 10px;
}
.about-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 12%;
  height: 76%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(18,53,36,0.15), transparent);
}
.about-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.about-stat-num .plus { color: var(--color-cta); }
.about-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
}

/* Intro / story */
.about-page-intro {
  padding: 100px 0 90px;
  background: var(--color-card-bg);
}
.about-intro-flex {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-intro-media { position: relative; }
.about-intro-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-hover);
}
.about-intro-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(224,165,63,0.55);
  border-radius: var(--border-radius);
  margin: 14px;
  z-index: 2;
  pointer-events: none;
}
.about-intro-img {
  width: 100%;
  display: block;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-intro-media:hover .about-intro-img { transform: scale(1.05); }
.about-intro-badge {
  position: absolute;
  left: -18px;
  bottom: -26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--color-primary);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(18,53,36,0.28);
  max-width: 300px;
}
.about-intro-badge i {
  font-size: 26px;
  color: var(--color-accent);
}
.about-intro-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
}
.about-intro-badge span {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.about-intro-text .about-lead {
  font-size: 18px;
  color: var(--color-text-dark);
  font-weight: 500;
  margin-bottom: 18px;
}
.about-intro-text p {
  color: var(--color-text-muted);
  line-height: 1.8;
}
.about-intro-points {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.about-intro-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 15px;
}
.about-intro-points i { color: var(--color-mpesa); margin-top: 3px; }

/* Mission & Vision (photo band) */
.about-mv-section {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.about-mv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,28,21,0.90) 0%, rgba(18,53,36,0.88) 100%);
}
.about-mv-section > .global-container { position: relative; z-index: 2; }
.about-mv-section .section-title { color: #ffffff; }
.about-mv-section .sub-heading.light { color: var(--color-accent); }
.about-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.about-mv-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: var(--border-radius);
  padding: 46px 42px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  transition: transform var(--transition-speed), background var(--transition-speed);
}
.about-mv-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.11);
}
.about-mv-icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 27px;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-accent), var(--color-cta));
  margin-bottom: 22px;
}
.about-mv-card h3 {
  font-size: 25px;
  margin: 0 0 12px;
  color: #ffffff;
}
.about-mv-card p {
  margin: 0;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
}

/* Tour programs & philosophy (photo cards) */
.about-programs-section {
  padding: 100px 0;
  background: var(--color-card-bg);
}
.about-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.about-programs-block {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.about-programs-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
}
.about-programs-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.about-programs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-programs-block:hover .about-programs-media img { transform: scale(1.07); }
.about-programs-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18,53,36,0.45) 100%);
}
.about-programs-chip {
  position: absolute;
  left: 26px;
  bottom: -26px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: var(--color-primary);
  background: var(--color-accent);
  box-shadow: 0 10px 22px rgba(18,53,36,0.28);
}
.about-programs-body {
  padding: 44px 36px 38px;
}
.about-programs-body h3 {
  font-size: 23px;
  margin: 0 0 14px;
  color: var(--color-primary);
}
.about-programs-body p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* Immersive quote band */
.about-quote-band {
  position: relative;
  padding: 110px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.about-quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15,28,21,0.86) 0%, rgba(18,53,36,0.80) 100%);
}
.about-quote-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}
.about-quote-mark {
  font-size: 42px;
  color: var(--color-accent);
  margin-bottom: 22px;
}
.about-quote-band blockquote {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.4;
}
.about-quote-by {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* Core values */
.about-values-section {
  padding: 100px 0;
  background: var(--color-card-bg);
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-value-card {
  position: relative;
  background: var(--color-bg-light);
  border-radius: var(--border-radius);
  padding: 46px 32px 40px;
  text-align: center;
  overflow: hidden;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.about-value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-cta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
}
.about-value-card:hover::before { transform: scaleX(1); }
.about-value-num {
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 800;
  color: rgba(18,53,36,0.06);
  line-height: 1;
}
.about-value-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 29px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  margin: 0 auto 22px;
  transition: transform var(--transition-speed);
}
.about-value-card:hover .about-value-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, var(--color-accent), var(--color-cta));
}
.about-value-card h3 {
  font-size: 21px;
  margin: 0 0 12px;
  color: var(--color-primary);
}
.about-value-card p {
  margin: 0;
  color: var(--color-text-muted);
}

/* Transport facilities */
.about-transport-section {
  padding: 90px 0;
  background: var(--color-bg-light);
}
.about-transport-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  padding: 56px 54px;
}
.about-transport-text .section-title { margin-bottom: 14px; }
.about-transport-text > p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 0 0 24px;
}
.about-fleet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.about-fleet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 15px;
}
.about-fleet-list i {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--color-accent);
  background: rgba(224,165,63,0.14);
  flex: 0 0 auto;
}
.about-transport-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--box-shadow-hover);
}
.about-transport-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-transport-visual:hover img { transform: scale(1.06); }
.about-transport-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(18,53,36,0.78);
  backdrop-filter: blur(4px);
  padding: 9px 16px;
  border-radius: 50px;
}
.about-transport-tag i { color: var(--color-accent); }

/* CTA strip */
.about-cta-strip {
  position: relative;
  padding: 96px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18,53,36,0.92) 0%, rgba(15,28,21,0.82) 100%);
}
.about-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.about-cta-inner h2 {
  color: #ffffff;
  font-size: clamp(28px, 4.2vw, 42px);
  margin: 0 0 14px;
}
.about-cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 30px;
  font-size: 17px;
}
.about-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}
.btn-outline-light:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}

@media (max-width: 1024px) {
  .about-intro-flex { gap: 50px; }
  .about-transport-inner { padding: 44px 40px; }
}

@media (max-width: 900px) {
  .about-stats-card { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .about-stat:nth-child(2)::after { display: none; }
  .about-intro-flex,
  .about-transport-inner {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  .about-transport-visual { min-height: 220px; }
  .about-mv-section,
  .about-quote-band,
  .about-cta-strip,
  .gallery-hero {
    background-attachment: scroll;
  }
  .gallery-hero { padding: 104px 0 92px; }
  .gallery-wrap { padding-top: 52px; }
  .about-mv-grid,
  .about-programs-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-hero { padding: 110px 0 130px; }
  .about-stats-wrap { margin-top: -70px; }
  .about-stats-card { grid-template-columns: 1fr 1fr; padding: 28px 18px; }
  .about-intro-points,
  .about-fleet-list { grid-template-columns: 1fr; }
  .about-intro-badge { left: 0; right: 0; margin: 0 16px; max-width: none; }
}

/* ==========================================================================
   20. CONTACT PAGE
   ========================================================================== */
.contact-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 140px 0 150px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(18,53,36,0.25) 0%, rgba(15,28,21,0.85) 100%),
    linear-gradient(180deg, rgba(15,28,21,0.35) 0%, rgba(15,28,21,0.80) 100%);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-bg-light);
  background: rgba(224,165,63,0.18);
  border: 1px solid rgba(224,165,63,0.45);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.contact-hero-eyebrow i { color: var(--color-accent); }
.contact-hero-title {
  color: #ffffff;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.contact-hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 26px;
  max-width: 620px;
}

/* Info cards overlapping the hero */
.contact-cards-wrap {
  position: relative;
  margin-top: -80px;
  z-index: 5;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  display: block;
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 34px 28px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(18, 53, 36, 0.12);
  border: 1px solid rgba(18,53,36,0.05);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.contact-card:not(.is-static):hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 53, 36, 0.20);
}
.contact-card-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  margin: 0 auto 20px;
  transition: transform var(--transition-speed);
}
.contact-card-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4b);
}
.contact-card:not(.is-static):hover .contact-card-icon {
  transform: rotate(-6deg) scale(1.06);
}
.contact-card h3 {
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--color-primary);
}
.contact-card p {
  margin: 0 0 14px;
  color: var(--color-text-muted);
  font-weight: 500;
  word-break: break-word;
}
.contact-card-go {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-cta);
}
.contact-card.is-static .contact-card-go { color: var(--color-text-muted); }

/* Form + map */
.contact-main-section {
  padding: 100px 0;
  background: var(--color-bg-light);
}
.contact-main-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: stretch;
}
.contact-form-col {
  background: var(--color-card-bg);
  border-radius: var(--border-radius);
  padding: 46px 44px;
  box-shadow: var(--box-shadow);
}
.contact-form-intro {
  color: var(--color-text-muted);
  margin: 0 0 26px;
}
.contact-form .form-row {
  margin-bottom: 18px;
}
.contact-form .form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18,53,36,0.14);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(224,165,63,0.18);
  background: #ffffff;
}
.contact-form textarea { resize: vertical; }
.contact-form .form-submit-btn {
  width: 100%;
  margin-top: 6px;
}
.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-map-frame {
  flex: 1 1 auto;
  min-height: 360px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 4px solid #ffffff;
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}
.contact-map-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--border-radius);
  padding: 24px 28px;
}
.contact-map-cta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
}
.contact-map-cta span {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 1024px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .contact-hero { padding: 106px 0 120px; }
  .contact-cards-wrap { margin-top: -60px; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-form-col { padding: 32px 24px; }
  .contact-form .form-row.split { grid-template-columns: 1fr; }
  .contact-map-cta { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   21. SERVICES PAGE
   ========================================================================== */
.services-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 140px 0 130px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(18,53,36,0.25) 0%, rgba(15,28,21,0.85) 100%),
    linear-gradient(180deg, rgba(15,28,21,0.35) 0%, rgba(15,28,21,0.80) 100%);
}
.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.services-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-bg-light);
  background: rgba(224,165,63,0.18);
  border: 1px solid rgba(224,165,63,0.45);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.services-hero-eyebrow i { color: var(--color-accent); }
.services-hero-title {
  color: #ffffff;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.services-hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 660px;
}

/* Intro */
.services-intro-section {
  padding: 90px 0 30px;
  background: var(--color-card-bg);
}
.services-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.services-intro p {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0;
}

/* Service offering cards */
.services-list-section {
  padding: 50px 0 100px;
  background: var(--color-card-bg);
}
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18,53,36,0.08);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}
.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
}
.service-detail-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-card:hover .service-detail-media img { transform: scale(1.07); }
.service-detail-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,28,21,0) 35%, rgba(15,28,21,0.55) 100%);
}
.service-detail-num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(15,28,21,0.42);
  backdrop-filter: blur(4px);
}
.service-detail-icon {
  position: absolute;
  z-index: 2;
  bottom: -26px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  box-shadow: 0 10px 24px rgba(18,53,36,0.28);
  transition: transform var(--transition-speed), background var(--transition-speed);
}
.service-detail-card:hover .service-detail-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(135deg, var(--color-accent), var(--color-cta));
}
.service-detail-body {
  position: relative;
  padding: 38px 30px 32px;
}
.service-detail-body h3 {
  font-size: 21px;
  margin: 0 0 10px;
  color: var(--color-primary);
  padding-right: 52px;
}
.service-detail-body p {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-cta);
  text-decoration: none;
  transition: gap var(--transition-speed);
}
.service-detail-link:hover { gap: 12px; }

/* Process / how it works */
.services-process-section {
  position: relative;
  padding: 96px 0;
  background:
    linear-gradient(rgba(15,28,21,0.94), rgba(18,53,36,0.94));
  background-color: var(--color-primary);
}
.services-process-section .section-title { color: #ffffff; }
.services-process-section .sub-heading.light { color: var(--color-accent); }
.services-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.process-step {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: var(--border-radius);
  padding: 40px 26px 32px;
  text-align: center;
  transition: transform var(--transition-speed), background var(--transition-speed);
}
.process-step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
}
.process-step-num {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-accent), var(--color-cta));
  box-shadow: 0 8px 20px rgba(224,165,63,0.3);
}
.process-step h3 {
  color: #ffffff;
  font-size: 19px;
  margin: 0 0 10px;
}
.process-step p {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-hero { padding: 106px 0 110px; }
  .services-process-grid { grid-template-columns: 1fr; }
}
