/* style.css - Kalis Safari theme */

/* Theme Colors */
:root {
    /* Core Colors */
    --yellow-ochre: #D8A903;
    --earth-brown: #5C3A21;
    --forest-green: #2E5D34;
    --leopard-tan: #DAB98F;
    --giraffe-gold: #D88C3F;
    --bg: #F2F1DC;
    --text: #27214E;
    --muted: #6B6B6B;
    --text-light: #FFFFFF;
    --text-gray: #D1D5DB;
    /* Lightened Variants */
    --light-yellow-ochre: #E8C440;
    --light-earth-brown: #8B5A3A;
    --light-forest-green: #4A8B53;
    --light-leopard-tan: #F0D7B5;
    --light-giraffe-gold: #F2B068;
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--light-yellow-ochre), var(--giraffe-gold));
    --gradient-secondary: linear-gradient(135deg, var(--light-giraffe-gold), var(--light-yellow-ochre));
  }
  
  /* Reset & Base */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html, body {
    height: 100%;
    scroll-behavior: smooth;
  }
  body {
    font-family: 'Roboto', 'Inter', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
  }
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes slideBg {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
  }
  @keyframes scaleHover {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
  }
  @keyframes rotateHover {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(10deg); }
  }
  @keyframes tilt {
    0% { transform: perspective(500px) rotateX(0deg) rotateY(0deg); }
    50% { transform: perspective(500px) rotateX(5deg) rotateY(5deg); }
    100% { transform: perspective(500px) rotateX(0deg) rotateY(0deg); }
  }
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  @keyframes wave {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
  }
  @keyframes glow {
    0% { box-shadow: 0 0 5px rgba(232, 196, 64, 0.7); }
    50% { box-shadow: 0 0 15px rgba(232, 196, 64, 0.9); }
    100% { box-shadow: 0 0 5px rgba(232, 196, 64, 0.7); }
  }
  .fade-in { animation: fadeInUp 0.5s ease-out forwards; }
  .fade-in-delay-1 { animation-delay: 0.2s; }
  .fade-in-delay-2 { animation-delay: 0.4s; }
  .pulse:hover { animation: pulse 0.8s infinite; }
  .scale-hover:hover { animation: scaleHover 0.3s ease forwards; }
  .rotate-hover:hover { animation: rotateHover 0.3s ease forwards; }
  .tilt-hover:hover { animation: tilt 0.6s ease infinite; }
  .float { animation: float 3s ease-in-out infinite; }
  .wave { animation: wave 4s ease-in-out infinite; }
  .glow:hover { animation: glow 1.5s ease-in-out infinite; }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navbar */
  .navbar {
    background: var(--earth-brown);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(218, 185, 143, 0.2);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .brand .logo-img {
    height: 50px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .brand .title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--leopard-tan);
    font-size: 1.375rem;
  }
  .nav {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .nav a {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }
  .nav a:hover {
    background: var(--yellow-ochre);
    color: var(--text);
    transform: scale(1.05);
  }
  .btn-cta {
    background: var(--light-yellow-ochre);
    color: var(--text);
    padding: 0.625rem 1.375rem;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .btn-cta:hover {
    background: var(--light-giraffe-gold);
    transform: translateY(-2px);
  }
  .mobile-toggle {
    display: none;
    color: var(--leopard-tan);
    font-size: 1.5rem;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  

/* Hero Section */

/* Theme Colors (Unchanged) */
:root {
  /* Core Colors */
  --yellow-ochre: #D8A903;
  --earth-brown: #5C3A21;
  --forest-green: #2E5D34;
  --leopard-tan: #DAB98F;
  --giraffe-gold: #D88C3F;
  --bg: #F2F1DC;
  --text: #27214E;
  --muted: #6B6B6B;
  --text-light: #FFFFFF;
  --text-gray: #D1D5DB;
  /* Lightened Variants */
  --light-yellow-ochre: #E8C440;
  --light-earth-brown: #8B5A3A;
  --light-forest-green: #4A8B53;
  --light-leopard-tan: #F0D7B5;
  --light-giraffe-gold: #F2B068;
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--light-yellow-ochre), var(--giraffe-gold));
  --gradient-secondary: linear-gradient(135deg, var(--light-giraffe-gold), var(--light-yellow-ochre));
}

/* Reset & Base (Unchanged) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* Animations (Unchanged) */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.5s ease-out forwards; }

/* Container (Unchanged) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar (Adjusted for z-index and padding) */
.navbar {
  background: var(--earth-brown);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 1001; /* Increased to ensure it stays above hero content */
  border-bottom: 1px solid rgba(218, 185, 143, 0.2);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand .logo-img {
  height: 50px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.brand .title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--leopard-tan);
  font-size: 1.375rem;
}
.nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav a {
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.nav a:hover {
  background: var(--yellow-ochre);
  color: var(--text);
  transform: scale(1.05);
}
.btn-cta {
  background: var(--light-yellow-ochre);
  color: var(--text);
  padding: 0.625rem 1.375rem;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.btn-cta:hover {
  background: var(--light-giraffe-gold);
  transform: translateY(-2px);
}
.mobile-toggle {
  display: none;
  color: var(--leopard-tan);
  font-size: 1.5rem;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 95vh; /* Fixed height for initial viewport */
  /*padding-top: 80px;  Match navbar height */
  background: #000; /* Dark fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%; /* Match the hero height */
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Contained within hero-slider */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide.active { opacity: 1; }

.hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: crisp-edges;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
  filter: contrast(1.05) saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.1));
  z-index: 5;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--text-light, #fff);
  padding: 2rem 3rem;
  max-width: 850px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2); /* Light background */
  border-radius: 1rem;
  border: 1px solid rgba(216, 169, 3, 0.2); /* Subtle theme border */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); /* Softer shadow */
  backdrop-filter: blur(10px); /* Enhanced glassmorphism */
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-title {
  font-size: 2.7rem;
  font-family: 'Playfair Display', serif; /* Elegant typography */
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6); /* Softer shadow */
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary, linear-gradient(90deg, #d8a903, #fcd34d));
  color: var(--earth-brown, #2c1810);
  border-radius: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(216, 169, 3, 0.4); /* Lighter glow */
  outline: none;
}

/* Navigation arrows */
.hero-nav-prev,
.hero-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: 2px solid rgba(216, 169, 3, 0.2);
  border-radius: 50%;
  font-size: 1.75rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.3s ease, transform 0.2s ease;
}
.hero-nav-prev:hover,
.hero-nav-next:hover,
.hero-nav-prev:focus-visible,
.hero-nav-next:focus-visible {
  background: rgba(216, 169, 3, 0.7);
  transform: translateY(-50%) scale(1.1);
  outline: none;
}
.hero-nav-prev { left: 1.5rem; }
.hero-nav-next { right: 1.5rem; }

/* Indicators */
.hero-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}
.hero-indicator {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-indicator.active {
  background: var(--giraffe-gold, #d8a903);
  transform: scale(1.3);
  box-shadow: 0 2px 8px rgba(216, 169, 3, 0.3);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero { padding-top: 60px; height: 85vh; }
  .hero-content { padding: 1.2rem; max-width: 90%; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-cta { padding: 0.8rem 1.8rem; }
  .hero-nav-prev, .hero-nav-next { font-size: 1.25rem; width: 44px; height: 44px; }
}

  
/* ---------- SIGNATURE EXPERIENCES ---------- */
.signature-experiences {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-leopard-tan), var(--bg));
  position: relative;
  overflow: hidden;
}

.signature-experiences::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(154, 205, 50, 0.1) 0%, transparent 40%, rgba(154, 205, 50, 0.1) 100%);
  z-index: 0;
}

/* Ensure container centers content explicitly */
.signature-experiences .container {
  position: relative;
  z-index: 2;
  max-width: 100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

/* Section heading and lead perfectly centered and themed */
.signature-experiences .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--earth-brown);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 0.8s ease-out forwards;
}

.signature-experiences .lead {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  color: var(--muted);
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out forwards;
}



/* Parallax subtle motion for premium feel */
@keyframes parallaxFade {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Grid for the experience cards */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Individual card styling */
.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  animation: parallaxFade 1s ease both;
  background: #fff;
  height: 350px; /* Increased height to 350px */
}

.experience-card img {
  width: 100%;
  height: 350px; /* Full height to fill the card */
  object-fit: cover;
  transition: transform 0.6s ease;
}

.experience-card:hover img {
  transform: scale(1.1);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(154, 205, 50, 0.35);
}

/* Text as standalone below the card */
.experience-content {
  padding: 1rem 0;
  text-align: center;
}

.overlay-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #9acd32;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.overlay-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Button styling - small and not filling the card */
.premium-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #9acd32, #A68A64); /* Theme green to brown */
  color: var(--text-light);
  border-radius: 0.5rem;
  text-decoration: none;
  border: 1px solid rgba(154, 205, 50, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.premium-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(154, 205, 50, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .signature-experiences {
    padding: 3.5rem 0;
  }
  .signature-experiences .section-heading {
    font-size: 1.9rem;
  }
  .signature-experiences .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .experience-grid {
    gap: 1.5rem;
  }
  .experience-card {
    height: 250px; /* Adjusted for mobile */
  }
  .experience-card img {
    height: 250px;
  }
  .experience-content {
    padding: 1rem 0;
  }
  .overlay-title {
    font-size: 1.2rem;
  }
  .overlay-description {
    font-size: 0.9rem;
  }
  .premium-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}


/* === PICTORIAL SECTION - PERFECTED === */
.pictorial-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-leopard-tan), var(--bg));
  position: relative;
  overflow: hidden;
}.pictorial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(154, 205, 50, 0.1) 0%, transparent 50%, rgba(154, 205, 50, 0.1) 100%);
  z-index: 0;
}/* Ensure container centers content explicitly */
.pictorial-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem; /* Adjusted padding for better centering */
  text-align: center; /* Force center alignment for all children */
}/* Section heading and lead perfectly centered and themed */
.pictorial-section .section-heading {
  font-family: 'Playfair Display', serif; /* Elegant, page-consistent typography */
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--earth-brown); /* Theme color for headings */
  text-align: center; /* Explicit centering */
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15); /* Subtle shadow for depth */
  animation: fadeInUp 0.8s ease-out forwards; /* Smooth fade-in */
}.pictorial-section .lead {
  font-family: 'Roboto', sans-serif; /* Body typography */
  font-size: 1.15rem;
  color: var(--muted); /* Theme color for lead */
  text-align: center; /* Explicit centering */
  max-width: 750px; /* Limit width for readability */
  margin: 0 auto 3rem; /* Center and add spacing */
  line-height: 1.8; /* Improved readability */
  animation: fadeInUp 1s ease-out forwards; /* Fade-in with delay */
}/* Parallax subtle motion for premium feel */
@keyframes parallaxFade {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/* Grid for the pictorial cards */
.pictorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}/* Individual card styling */
.pictorial-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  animation: parallaxFade 1s ease both;
  background: #fff;
}.pictorial-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.6s ease;
}.pictorial-card:hover img {
  transform: scale(1.1);
}.pictorial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(154, 205, 50, 0.35);
}/* Overlay text on hover */
.pictorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 25%, transparent 90%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: var(--text-light);
}.pictorial-card:hover .pictorial-overlay {
  opacity: 1;
}.pictorial-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #9acd32;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}.pictorial-overlay p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}/* Responsive */
@media (max-width: 768px) {
  .pictorial-section {
    padding: 3.5rem 0;
  }
  .pictorial-section .section-heading {
    font-size: 1.9rem;
  }
  .pictorial-section .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .pictorial-grid {
    gap: 1.5rem;
  }
}

  
  /* Values Section */
 
  .values-section {
    padding: 4rem 0;
    background: #F5F1E9; /* Assumed background color from typical values section, adjust if different */
    position: relative;
  }
  .values-section .container {
    position: relative;
    z-index: 1;
  }
  .values-section .section-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    color: var(--earth-brown);
    text-align: center; /* Centered to match Explore Our Packages */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
  }
  .values-section .lead {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .value-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .value-card:hover {
    transform: translateY(-10px);
  }
  .value-card i {
    font-size: 2rem;
    color: var(--giraffe-gold);
    margin-bottom: 1rem;
  }
  .value-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    color: var(--light-earth-brown);
    margin-bottom: 0.75rem;
  }
  .value-card p {
    font-family: 'Roboto', sans-serif;
    color: var(--muted);
    font-size: 0.975rem;
  }
  
/* Packages Section */
.packages-section {
  padding: 4rem 0;
  background: #F5F1E9; /* Retain current background */
  position: relative;
}

.packages-section .container {
  position: relative;
  z-index: 1;
}

.packages-section .section-heading {
  font-family: 'Playfair Display', serif; /* Match Kilimanjaro and index hero */
  font-size: 2.8rem; /* Match Kilimanjaro and index hero */
  color: var(--earth-brown); /* Match Kilimanjaro and index hero */
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.packages-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--light-yellow-ochre); /* Match Kilimanjaro and index hero accent */
  border-radius: 2px;
}

.packages-section .lead {
  font-family: 'Roboto', sans-serif; /* Retain original font */
  font-size: 1.3rem; /* Match Kilimanjaro lead size */
  color: #5C4033; /* Retain current muted brown */
  text-align: center;
  margin-bottom: 2.5rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed 3-column layout */
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 400px; /* Increased height from Kilimanjaro design */
}

.package-card:hover {
  transform: translateY(-10px);
}

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

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

.package-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.2); /* Highly transparent overlay */
}

.package-content h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; /* Reduced text size */
  margin-bottom: 0.3rem;
  color: var(--light-yellow-ochre); /* Retain current accent */
}

.package-content p {
  font-size: 1.2rem; /* Reduced text size */
  margin-bottom: 0.8rem;
  color: #fff;
}

.package-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.package-cta {
  font-size: 1rem; /* Reduced text size */
  color: var(--giraffe-gold); /* Clear text color */
  text-decoration: none;
  border: 2px solid var(--giraffe-gold); /* Simple border design */
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  transition: color 0.4s ease, border-color 0.4s ease;
  background: transparent; /* Removed fill */
}

.package-cta:hover {
  color: #fff; /* Text changes on hover */
  border-color: #fff; /* Border changes on hover */
}

.packages-cta {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.glow {
  font-family: 'Roboto', sans-serif;
  background: var(--gradient-primary); /* Retain current style */
  color: var(--text); /* Retain current style */
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; /* Ensure no underline on links */
}

.glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 196, 64, 0.4); /* Retain current style */
}

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

@media (max-width: 768px) {
  .packages-section {
    padding: 2.5rem 0;
  }
  .packages-grid {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }
  .packages-cta {
    flex-direction: column;
    gap: 1rem;
  }
  .package-card {
    height: 350px; /* Adjusted for mobile */
  }
  .package-content h5 {
    font-size: 1.3rem;
  }
  .package-content p {
    font-size: 1.1rem;
  }
  .package-cta {
    font-size: 0.9rem;
  }
}
  
  
  /* Experiences Section */
  .experiences-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-leopard-tan), var(--bg));
  }
  .experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .experience-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.9);
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  .experience-card:hover {
    transform: translateY(-5px);
  }
  .experience-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .experience-card h3 {
    font-size: 1.125rem;
    color: var(--light-earth-brown);
    margin-bottom: 0.5rem;
  }
  .experience-card p {
    color: var(--muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .btn-experience {
    background: var(--light-yellow-ochre);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .btn-experience:hover {
    background: var(--light-giraffe-gold);
    transform: translateY(-2px);
  }
  
  /* Why Choose Us Section */
  .why-choose-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg), var(--light-leopard-tan)); /* Matching get-quote background */
    position: relative;
    overflow: hidden;
  }
  .why-choose-bg {
    display: none; /* Remove video background for minimalism */
  }
  .why-choose-overlay {
    display: none; /* Remove overlay for clean look */
  }
  .why-choose-section .container {
    position: relative;
    z-index: 1;
  }
  .why-choose-section .section-heading {
    font-family: 'Roboto', sans-serif; /* Uniform with get-quote */
    font-size: 2.25rem;
    color: var(--earth-brown); /* Earthy premium tone */
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  .why-choose-section .lead {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    color: var(--muted); /* Muted for subtlety */
    text-align: center;
    margin-bottom: 3rem;
  }
  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive, premium spacing */
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }
  .why-choose-card {
    background: #E2D8BA;                              /* Light, warm background for premium feel */
    border-radius: 0.75rem; /* Smooth edges matching values cards */
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(218, 185, 143, 0.3); /* Subtle theme border for premium feel */
    font-family: 'Roboto', sans-serif; /* Uniform font */
    color: var(--earth-brown); /* Dark brown text for visibility */
  }
  .why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(249, 199, 12, 0.3); /* Gold-tinted shadow for premium lift */
  }
  .why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--earth-brown); /* Dark brown for icon contrast */
  }
  .why-choose-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--earth-brown); /* Consistent heading color */
    font-weight: 600;
  }
  .why-choose-card p {
    font-size: 0.975rem;
    color: var(--earth-brown); /* Dark brown for readability */
    line-height: 1.6;
  }
  @media (max-width: 768px) {
    .why-choose-grid { 
      grid-template-columns: 1fr; 
    }
  }
  
/* Kilimanjaro Experiences Section */
.kilimanjaro-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-leopard-tan), var(--bg));
  position: relative;
  overflow: hidden;
}

.kilimanjaro-section .container {
  text-align: center;
}

.kilimanjaro-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--earth-brown);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.kilimanjaro-section .lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.kilimanjaro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.kilimanjaro-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kilimanjaro-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kilimanjaro-card:hover img {
  transform: scale(1.1);
}

.kilimanjaro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(216, 169, 3, 0.2);
}

.kilimanjaro-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  padding: 1.5rem;
  transition: transform 0.4s ease;
  transform: translateY(100%);
}

.kilimanjaro-card:hover .kilimanjaro-overlay {
  transform: translateY(0);
}

.kilimanjaro-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.kilimanjaro-overlay p {
  font-size: 1rem;
}

/* Kilimanjaro Experiences Section */
.kilimanjaro-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-leopard-tan), var(--bg));
  position: relative;
  overflow: hidden;
}

.kilimanjaro-section .container {
  text-align: center;
}

.kilimanjaro-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--earth-brown);
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.kilimanjaro-section .lead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.kilimanjaro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.kilimanjaro-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kilimanjaro-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kilimanjaro-card:hover img {
  transform: scale(1.1);
}

.kilimanjaro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(216, 169, 3, 0.2);
}

.kilimanjaro-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  padding: 1.5rem;
  transition: transform 0.4s ease;
  transform: translateY(100%);
}

.kilimanjaro-card:hover .kilimanjaro-overlay {
  transform: translateY(0);
}

.kilimanjaro-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #9acd32;
}

.kilimanjaro-overlay p {
  font-size: 1rem;
}

/* Refined Subsection with Balanced Columns */
.kilimanjaro-subsection {
  display: flex;
  width: 100%; /* Spans full container width */
  margin-top: 3rem;
  background: linear-gradient(90deg, rgba(139, 69, 19, 0.1), var(--bg)); /* Subtle gradient */
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1); /* Softer shadow */
  overflow: hidden;
}

.subsection-image {
  flex: 1; /* Equal width to content */
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  margin-right: 2rem; /* Spacing between columns */
  height: 75%;
}

.subsection-image img {
  width: 100%;
  height: 350px; /* Adjusted for balance */
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.95);
}

.image-quote {
  margin-top: 1rem; /* Space below image */
  color: var(--light-yellow-ochre);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.image-quote:hover {
  transform: translateY(-3px);
}


.subsection-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark);
}

.subsection-image:hover img {
  transform: scale(1.03);
  filter: brightness(1);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
  padding: 1.5rem;
  transition: transform 0.5s ease;
  transform: translateY(100%);
}
.image-overlay h3{
  color: #9acd32;
}

.subsection-image:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.image-overlay p {
  font-size: 1.1rem;
  font-style: italic;
}

.subsection-content {
  flex: 1; /* Equal width to image */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text-dark);
}

.kilimanjaro-why {
  text-align: left;
}

/* test */




.kilimanjaro-why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
  position: relative;
}

.kilimanjaro-why-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--giraffe-gold);
}

.kilimanjaro-why-list {
  list-style-type: none;
  padding: 0;
}

.kilimanjaro-why-list li {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 1.0rem;
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.5;
}

.kilimanjaro-why-list li::before {
  content: "✦"; /* Stylized bullet for elegance */
  position: absolute;
  left: 0;
  color: var(--giraffe-gold);
  font-size: 1.0rem;
}

.kilimanjaro-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.cta-text {
  font-size: 1.4rem;
  color: var(--earth-brown);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.kilimanjaro-cta .btn-cta {
  padding: 1.1rem 2.2rem;
  font-size: 1.15rem;
  border-radius: 0.75rem;
  background: linear-gradient(45deg, var(--giraffe-gold), #d4a017); /* Gradient button */
  color: #fff;
  border: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kilimanjaro-cta .btn-cta:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(212, 160, 23, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .kilimanjaro-section {
    padding: 3rem 0;
  }
  .kilimanjaro-section .section-heading {
    font-size: 2rem;
  }
  .kilimanjaro-section .lead {
    font-size: 1.1rem;
  }
  .kilimanjaro-grid {
    gap: 1.5rem;
  }
  .kilimanjaro-subsection {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }
  .subsection-image img {
    height: 250px; /* Reduced for mobile */
  }
  .image-overlay h3 {
    font-size: 1.5rem;
  }
  .image-overlay p {
    font-size: 1rem;
  }
  .kilimanjaro-why-heading {
    font-size: 1.7rem;
  }
  .kilimanjaro-why-list li {
    font-size: 1rem;
  }
  .cta-text {
    font-size: 1.2rem;
  }
  .kilimanjaro-cta .btn-cta {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }
}
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 5rem 1rem;
    background: var(--bg);
    text-align: center;
    position: relative;
  }
  .testimonials-section .section-heading {
    font-size: 2rem;
    color: var(--earth-brown);
    margin-bottom: 0.5rem;
  }
  .testimonials-section .lead {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 3rem;
  }
  .testimonial {
    display: none;
    animation: fadeSlide 0.8s ease-in-out;
  }
  .testimonial.active {
    display: block;
  }
  .testimonial-content {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  }
  .testimonial-content .quote-icon {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--light-earth-brown);
    opacity: 0.2;
    pointer-events: none;
  }
  .testimonial p {
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
  }
  .testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--yellow-ochre);
  }
  .author-name {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--earth-brown);
  }
  .author-country {
    display: block;
    font-size: 0.9rem;
    color: var(--light-earth-brown);
    margin-top: 2px;
  }
  .stars {
    color: var(--yellow-ochre);
    font-size: 1rem;
    margin-top: 4px;
  }
  .testimonial-nav {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .testimonial-nav button {
    background: var(--yellow-ochre);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .testimonial-nav button:hover {
    background: #d39c10;
  }
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .testimonial-dots span {
    display: block;
    width: 12px;
    height: 12px;
    background: var(--light-earth-brown);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .testimonial-dots span.active {
    background: var(--yellow-ochre);
  }
  @keyframes fadeSlide {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @media (max-width: 768px) {
    .testimonial-content {
      padding: 1.8rem;
    }
    .testimonial p {
      font-size: 1rem;
    }
  }
  
  /* Newsletter Section */
  .newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--forest-green), var(--earth-brown));
    color: var(--text-light);
  }
  .newsletter-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(5px);
  }
  .newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
  }
  .newsletter-form input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-size: 0.975rem;
    width: 250px;
  }
  .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
  }
  .newsletter-form button {
    background: var(--gradient-primary);
    color: var(--text);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 196, 64, 0.4);
  }
  
/* 📱 Responsive Design for smaller screens */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 2rem 0;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 90%;
    max-width: 350px;
  }

  .newsletter-form button {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .newsletter-card {
    padding: 1.5rem 1rem;
  }

  .newsletter-form input {
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
  }

  .newsletter-form button {
    font-size: 0.9rem;
  }
}
  
  /* Footer */
  .footer {
    background: var(--earth-brown);
    color: var(--text-light);
    padding: 32px 0;
    position: relative;
    overflow: hidden;
  }
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--earth-brown) 0%, var(--forest-green) 100%);
    opacity: 0.1;
    z-index: 0;
  }
  .footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/safari-pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
  }
  .footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  .footer-section-1 {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr;
    gap: 16px;
    margin-bottom: 20px;
    align-items: start;
  }
  .footer-section-1 .logo-about {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-section-1 .logo-container {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .footer-section-1 .logo-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .footer-section-1 .logo-container img {
    height: 48px;
    width: auto;
    border-radius: 10px;
  }
  .footer-section-1 .about-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.4;
  }
  .footer-section-1 .quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .footer-section-1 .quick-links h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--yellow-ochre);
    margin-bottom: 12px;
    position: relative;
  }
  .footer-section-1 .quick-links h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--yellow-ochre);
    box-shadow: 0 1px 2px rgba(216, 169, 3, 0.3);
  }
  .footer-section-1 .quick-links a {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  .footer-section-1 .quick-links a:hover {
    color: var(--yellow-ochre);
    transform: translateY(-2px);
    text-shadow: 0 1px 2px rgba(216, 169, 3, 0.3);
  }
  .footer-section-1 .destinations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .footer-section-1 .destinations h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--yellow-ochre);
    margin-bottom: 12px;
    position: relative;
    grid-column: span 2;
  }
  .footer-section-1 .destinations h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--yellow-ochre);
    box-shadow: 0 1px 2px rgba(216, 169, 3, 0.3);
  }
  .footer-section-1 .destination-item {
    background: var(--leopard-tan);
    border-radius: 8px;
    padding: 12px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(218, 185, 143, 0.15);
  }
  .footer-section-1 .destination-item:hover {
    background: var(--giraffe-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(216, 140, 63, 0.4);
  }
  .footer-section-1 .destination-item a {
    display: block;
    color: var(--earth-brown);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  .footer-section-1 .destination-item a:hover {
    color: var(--yellow-ochre);
    transform: translateY(-2px);
    text-shadow: 0 1px 2px rgba(216, 169, 3, 0.3);
  }
  .footer-section-1 .destination-item p {
    color: var(--earth-brown);
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
  }
  .footer-separator {
    height: 4px;
    background: linear-gradient(90deg, var(--yellow-ochre) 0%, var(--giraffe-gold) 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
    border-radius: 2px;
  }
  .footer-section-2 {
    padding: 20px 0;
    background: rgba(240, 215, 181, 0.1);
    transition: transform 0.3s ease;
  }
  .footer-section-2:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(216, 169, 3, 0.2);
  }
  .footer-section-2 h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--yellow-ochre);
    margin-bottom: 18px;
    position: relative;
    text-align: center;
  }
  .footer-section-2 h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--light-yellow-ochre);
    margin: 8px auto 0;
    box-shadow: 0 1px 2px rgba(216, 169, 3, 0.3);
  }
  .footer-section-2 .contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  .footer-section-2 .contact-list li {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease;
  }
  .footer-section-2 .contact-list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 6px rgba(216, 169, 3, 0.2);
  }
  .footer-section-2 .contact-list .icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    background: rgba(218, 185, 143, 0.2);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  .footer-section-2 .contact-list li:hover .icon {
    background: var(--light-yellow-ochre);
    transform: scale(1.1);
  }
  .footer-section-2 .contact-list svg {
    width: 18px;
    height: 18px;
    stroke: var(--yellow-ochre);
    stroke-width: 2;
    transition: stroke 0.3s ease;
  }
  .footer-section-2 .contact-list li:hover svg {
    stroke: var(--earth-brown);
  }
  .footer-section-2 .contact-list a,
  .footer-section-2 .contact-list span {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  .footer-section-2 .contact-list a:hover,
  .footer-section-2 .contact-list a:hover span {
    color: var(--light-yellow-ochre);
    transform: translateY(-2px);
    text-shadow: 0 1px 2px rgba(216, 169, 3, 0.3);
  }
  .footer-section-2 .social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding: 0 20px;
  }
  .footer-section-2 .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .footer-section-2 .social a:hover {
    transform: rotate(10deg);
    box-shadow: 0 0 12px rgba(216, 169, 3, 0.5);
  }
  .footer-section-2 .social .facebook {
    background: #1877F2;
  }
  .footer-section-2 .social .facebook:hover {
    background: #166FE5;
  }
  .footer-section-2 .social .facebook svg {
    stroke: #ffffff;
  }
  .footer-section-2 .social .instagram {
    background: #E1306C;
  }
  .footer-section-2 .social .instagram:hover {
    background: #C13584;
  }
  .footer-section-2 .social .instagram svg {
    stroke: #ffffff;
  }
  .footer-section-2 .social .twitter {
    background: #1DA1F2;
  }
  .footer-section-2 .social .twitter:hover {
    background: #1A91DA;
  }
  .footer-section-2 .social .twitter svg {
    stroke: #ffffff;
  }
  .footer-section-2 .social .whatsapp {
    background: #25D366;
  }
  .footer-section-2 .social .whatsapp:hover {
    background: #20C058;
  }
  .footer-section-2 .social .whatsapp svg {
    stroke: #ffffff;
  }
  .footer-section-2 .social svg {
    width: 20px;
    height: 20px;
    stroke: var(--earth-brown);
  }
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(218, 185, 143, 0.2);
    margin-top: 20px;
  }
  .footer-bottom .links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
  }
  .footer-bottom .links a {
    font-size: 12px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
  }
  .footer-bottom .links a:hover {
    color: var(--yellow-ochre);
    transform: translateY(-2px);
    text-shadow: 0 1px 2px rgba(216, 169, 3, 0.3);
  }
  .footer-bottom .copyright {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 4px;
  }
  .footer-bottom .underline {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--giraffe-gold);
    margin: 4px auto;
  }
  
  /* Responsive Design */
  @media (max-width: 1100px) {
    .footer-section-1 {
      grid-template-columns: 1fr;
    }
    .footer-section-1 .destinations {
      grid-template-columns: 1fr;
    }
  }
  @media (max-width: 768px) {
    .navbar .container {
      flex-direction: column;
      align-items: flex-start;
    }
    .nav {
      display: none;
      width: 100%;
      flex-direction: column;
      margin-top: 1rem;
    }
    .nav.active {
      display: flex;
    }
    .mobile-toggle {
      display: block;
    }
    .hero-title { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-ctas { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; margin-bottom: 1rem; }
    .packages-grid, .experiences-grid, .why-choose-grid, .blog-grid, .values-grid {
      grid-template-columns: 1fr;
    }
    .footer-section-1 {
      grid-template-columns: 1fr;
    }
    .footer-section-1 .destinations {
      grid-template-columns: 1fr;
    }
    .footer-section-2 .contact-list {
      grid-template-columns: 1fr;
    }
    .footer-section-2 .contact-list li {
      width: 100%;
      max-width: 100%;
    }
    .footer-section-2 .social {
      justify-content: center;
    }
    .footer-bottom .links {
      flex-direction: column;
      gap: 8px;
    }
  }