/* ============================================
   VIRGIN WILDERNESS SAFARIS – Design System
   Brand: Orange #f68e2d, Brown #653200, Peach #f8b26d
   Style: Luxury & Elegant
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Brand Colors – Light */
  --color-bg:           #faf8f5;
  --color-surface:      #fff;
  --color-surface-2:    #f5f0ea;
  --color-border:       rgba(101, 50, 0, 0.12);
  --color-divider:      rgba(101, 50, 0, 0.08);
  --color-text:         #2d1a00;
  --color-text-muted:   #7a5c3a;
  --color-text-faint:   #b89e7e;
  --color-text-inverse: #faf8f5;

  --color-primary:       #f68e2d;
  --color-primary-hover: #e07a1a;
  --color-primary-active:#c46a12;
  --color-brown:         #653200;
  --color-brown-hover:   #4a2500;
  --color-peach:         #f8b26d;
  --color-peach-light:   #fde8d0;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(101, 50, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(101, 50, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(101, 50, 0, 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 56px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-brown);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-1) 0;
}

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

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

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-inverse) !important;
  background: var(--color-brown);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-primary);
}

.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-brown);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: var(--space-6) var(--space-6) var(--space-8);
    gap: var(--space-4);
    border-bottom: 1px solid var(--color-divider);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .nav-links a {
    font-size: var(--text-base);
    padding: var(--space-2) 0;
  }
}


/* ============================================
   DROPDOWN MENUS
   ============================================ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(101, 50, 0, 0.12);
  padding: var(--space-3) 0;
  min-width: 220px;
  list-style: none;
  z-index: 200;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown-menu li a {
  display: block;
  padding: var(--space-2) var(--space-5);
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  color: var(--color-text) !important;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu li a::after {
  display: none !important;
}

.nav-dropdown-menu li a:hover {
  background: var(--color-peach-light);
  color: var(--color-brown) !important;
}

.dropdown-divider {
  height: 1px;
  background: var(--color-divider);
  margin: var(--space-2) var(--space-5);
}

/* Desktop: show on hover */
@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
  
  .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Mobile: dropdown accordion */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 var(--space-4);
    min-width: auto;
    margin-top: var(--space-1);
  }
  
  .nav-dropdown-menu::before {
    display: none;
  }
  
  .nav-dropdown-menu li a {
    padding: var(--space-2) 0 !important;
    font-size: 0.85rem !important;
    color: var(--color-text-muted) !important;
  }
  
  .nav-dropdown-menu li a:hover {
    background: transparent;
    color: var(--color-primary) !important;
  }
  
  .dropdown-divider {
    margin: var(--space-1) 0;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  
  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 26, 0, 0.25) 0%,
    rgba(45, 26, 0, 0.5) 50%,
    rgba(45, 26, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  max-width: 860px;
}

.hero-logo {
  max-width: 180px;
  height: auto;
  margin: 0 auto var(--space-6);
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: var(--space-4) var(--space-8);
  transition: all var(--transition-interactive);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246, 142, 45, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-outline-dark:hover {
  background: var(--color-brown);
  color: var(--color-text-inverse);
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: clamp(var(--space-16), 8vw, var(--space-32)) var(--space-6);
}

.section-alt {
  background: var(--color-surface-2);
}

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

.section-header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: var(--space-4);
}

.section-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CARDS – Safari & Destination
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: var(--space-6);
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 26, 0, 0.5) 0%, transparent 50%);
}

.card-body {
  padding: var(--space-5) var(--space-6);
}

.card-tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-2);
  display: block;
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: var(--space-2);
}

.card-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  margin-top: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-link svg {
  transition: transform 0.3s ease;
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* Destination card – overlay text */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

@media (min-width: 1100px) {
  .dest-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 701px) and (max-width: 1099px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 420px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
}

.dest-card {
  aspect-ratio: 3 / 4;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.dest-card:hover {
  transform: translateY(-4px);
}

.dest-card .card-image {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

.dest-card .card-body {
  position: relative;
  z-index: 2;
  padding: var(--space-6);
  width: 100%;
}

.dest-card .card-image-overlay {
  background: linear-gradient(to top, rgba(45, 26, 0, 0.75) 0%, rgba(45, 26, 0, 0.15) 55%, transparent 100%);
}

.dest-card .card-title {
  color: #fff;
  font-size: var(--text-xl);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: var(--space-2);
}

.dest-card .card-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* ============================================
   DESTINATION LOCATIONS BY COUNTRY
   ============================================ */

.dest-country {
  margin-bottom: var(--space-16);
}

.dest-country:last-child {
  margin-bottom: 0;
}

.dest-country-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.dest-country-title a {
  color: inherit;
  text-decoration: none;
}

.dest-country-title a:hover {
  color: var(--color-primary);
}

.dest-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 900px) {
  .dest-locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .dest-locations-grid {
    grid-template-columns: 1fr;
  }
}

.dest-location-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}

.dest-location-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-location-card:hover img {
  transform: scale(1.05);
}

.dest-location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 26, 0, 0.75) 0%, rgba(45, 26, 0, 0.15) 50%, transparent 100%);
  z-index: 1;
}

.dest-location-info {
  position: relative;
  z-index: 2;
  padding: var(--space-6);
  width: 100%;
}

.dest-location-info h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-1);
}

.dest-location-info p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ============================================
   DESTINATION FULL-WIDTH CARDS
   ============================================ */

.dest-fullwidth {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

@media (max-width: 900px) {
  .dest-fullwidth {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .dest-fullwidth {
    grid-template-columns: 1fr;
  }
}

.dest-wide-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}

.dest-wide-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-wide-card:hover img {
  transform: scale(1.05);
}

.dest-wide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 26, 0, 0.7) 0%, rgba(45, 26, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.dest-wide-content {
  position: relative;
  z-index: 2;
  padding: var(--space-8);
  width: 100%;
}

.dest-wide-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--space-2);
}

.dest-wide-content p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ============================================
   FEATURES / WHY SECTION
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-8);
}

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 450px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-peach-light);
  border-radius: var(--radius-full);
  color: var(--color-primary);
}

.feature-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: var(--space-2);
}

.feature-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: var(--space-6);
}

.testimonial {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-divider);
}

.testimonial-stars {
  color: var(--color-primary);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brown);
}

.testimonial-trip {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ============================================
   FULL-WIDTH CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  padding: clamp(var(--space-16), 8vw, var(--space-24)) var(--space-6);
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
}

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

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(101, 50, 0, 0.75);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-4);
}

.cta-banner-desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* ============================================
   PAGE HEADERS (inner pages)
   ============================================ */

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-content {
  max-width: 800px;
}

.page-hero .hero-subtitle {
  max-width: 700px;
}

.page-hero .hero-title {
  font-size: var(--text-2xl);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.about-text h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: var(--space-4);
}

.about-text p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.value-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  text-align: center;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: var(--space-2);
}

.value-card p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-brown);
  margin-bottom: var(--space-4);
}

.contact-info p {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

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

.contact-detail p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.contact-detail strong {
  color: var(--color-brown);
  display: block;
  margin-bottom: var(--space-1);
}

.contact-form {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(246, 142, 45, 0.15);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-brown);
  color: var(--color-peach-light);
  padding: var(--space-16) var(--space-6) var(--space-8);
}

.footer-inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(253, 232, 208, 0.7);
  margin-top: var(--space-4);
  max-width: 320px;
}

.footer-logo {
  height: 40px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-peach);
  margin-bottom: var(--space-4);
}

.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(253, 232, 208, 0.7);
  text-decoration: none;
  padding: var(--space-1) 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(253, 232, 208, 0.5);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   PAGE-SPECIFIC – Safaris listing
   ============================================ */

.safari-intro {
  max-width: var(--content-narrow);
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */

/* Ticker container — full width, hides overflow */
.reviews-ticker {
  width: 100%;
  overflow: hidden;
  padding: var(--space-4) 0;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* Track holds all cards in a row, animates left */
.reviews-track {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}

.reviews-ticker:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-width: 340px;
  max-width: 400px;
  flex-shrink: 0;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: var(--space-2);
}

.review-author strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
}

.review-author span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

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

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}
