/* =========================================
   GLOBAL RESET & VARIABLES
========================================= */
:root {
  --primary: #1a1a1a;
  --secondary: #d97706; /* The orange/gold brand color */
  --text-light: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

/* Slideshow Backgrounds */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Dark Gradient Overlay for text readability */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.75) 100%);
}

/* Content Container */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 6rem 1rem 4rem;
}

.hero-subtitle {
  color: var(--secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem !important; /* Change this number to whatever you want */
  font-weight: 700 !important;
  color: var(--text-light) !important;
  line-height: 1.1 !important;
  margin-bottom: 1.5rem;
}

.text-secondary {
  color: var(--secondary);
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Buttons */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #b45309;
}

.icon-arrow {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .icon-arrow {
  transform: translateX(4px);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--text-light);
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Trust Items */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.icon-check {
  color: var(--secondary);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 6px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
}

/* =========================================
   ANIMATIONS (Replacing Framer Motion)
========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }
.delay-5 { animation-delay: 1.0s; }

/* Responsive Adjustments */
@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: row; }
}

@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-description { font-size: 1.25rem; }
}
/* =========================================
   ABOUT US SECTION & NEW VARIABLES
========================================= */
:root {
  /* Adding standard text colors based on the React component */
  --bg-light: #f9fafb;
  --text-dark: #1a1a1a;
  --text-muted: #4b5563;
  --primary-dark: #0f172a; 
  --accent: #16a34a; /* Green for years experience */
}

.container {
  max-width: 80rem; /* 1280px */
  margin: 0 auto;
  padding: 0 1rem;
}

.about-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

@media (min-width: 768px) {
  .about-section { padding: 7rem 0; }
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 5rem;
  }
}

/* Typography Extensions */
.section-subtitle {
  font-family: var(--font-body);
  color: var(--secondary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

.text-primary-dark { color: var(--primary-dark); }
.text-accent { color: var(--accent); }

.about-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-description { font-size: 1.125rem; }
}

/* Stats Area */
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 768px) {
  .stat-number { font-size: 2.25rem; }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Image Grid Layout */
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.image-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stagger-down {
  padding-top: 2rem;
}

.image-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block; /* Removes image bottom spacing gap */
}

.image-wrapper:hover .about-img {
  transform: scale(1.05);
}

/* Custom heights to replicate the masonry look */
.tall-img { height: 12rem; }
.short-img { height: 9rem; }

@media (min-width: 768px) {
  .tall-img { height: 14rem; }
  .short-img { height: 11rem; }
}

/* =========================================
   SCROLL ANIMATION CLASSES
========================================= */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.slide-right {
  transform: translateX(-30px);
}

.slide-left {
  transform: translateX(30px);
}

/* When the observer adds this class, the element animates in */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
/* =========================================
   PACKAGES / CATEGORIES SECTION
========================================= */
.packages-section {
  padding: 5rem 0;
  background-color: #f3f4f6; /* Equivalent to bg-muted/50 */
}

@media (min-width: 768px) {
  .packages-section { padding: 7rem 0; }
}

.text-center { text-align: center; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.max-w-xl { max-width: 36rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid Layout */
.packages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .packages-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Category Cards */
.category-card {
  position: relative;
  display: block;
  height: 16rem; /* h-64 */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.5s ease;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.category-card:hover .category-img {
  transform: scale(1.1);
}

/* Gradient Overlay */
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  pointer-events: none;
}

/* Card Content */
.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
}

.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: rgba(220, 165, 75, 0.9); /* Use your specific var(--secondary) color here */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.5rem;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem 0;
}

.category-count {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.5rem 0;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #dca54b; /* var(--secondary) */
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: gap 0.3s ease;
}

.category-card:hover .explore-link {
  gap: 0.5rem;
}

/* Button Styles (If you haven't defined these yet) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn- {
  background-color: var(--primary-dark);
  color: white;
}

.btn-:hover {
  background-color: #1e293b; /* Slightly lighter shade for hover */
}

.btn-lg {
  padding: 0.75rem 2.5rem;
  font-size: 1rem;
}

.btn-round {
  border-radius: 9999px;
}

.btn-icon-right {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.group:hover .btn-icon-right {
  transform: translateX(4px);
}

/* Animation Utilities & Delays */
.slide-up {
  transform: translateY(30px);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =========================================
   MOUNTAIN TREKKING SECTION
========================================= */
.mountains-section {
  padding: 5rem 0;
  background-color: #ffffff; /* bg-background */
}

@media (min-width: 768px) {
  .mountains-section { padding: 7rem 0; }
}

.mountains-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .mountains-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card Styling */
.mountain-card {
  position: relative;
  display: block;
  height: 18rem; /* h-72 */
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.5s ease;
}

.mountain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mountain-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.mountain-card:hover .mountain-img {
  transform: scale(1.1);
}

/* Gradient Overlay */
.mountain-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Tag Styling */
.mountain-tag-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.mountain-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-secondary {
  background-color: var(--secondary);
  color: #1a1a1a; /* Dark text for contrast against gold/orange */
}

.tag-primary {
  background-color: var(--primary-dark);
  color: #ffffff;
}

.tag-accent {
  background-color: #0f766e; /* A rich teal/emerald for contrast */
  color: #ffffff;
}

/* Content Container */
.mountain-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
}

/* Meta Data (Icon + Height) */
.mountain-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.meta-icon {
  color: var(--secondary);
}

.meta-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary);
}

/* Typography */
.mountain-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.125rem 0;
}

.mountain-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 0.75rem 0;
}

.text-secondary {
  color: var(--secondary);
}

/* =========================================
   DAY TRIPS SECTION
========================================= */
.daytrips-section {
  padding: 5rem 0;
  background-color: var(--bg-light); /* Keeps it light and distinct */
}

@media (min-width: 768px) {
  .daytrips-section { padding: 7rem 0; }
}

.mb-16 { margin-bottom: 4rem; }

/* Main Grid Layout */
.daytrips-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .daytrips-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left: Image Collage */
.daytrips-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.daytrip-img {
  width: 100%;
  height: 13rem; /* ~ h-52 */
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.image-wrapper:hover .daytrip-img {
  transform: scale(1.05);
}

.stagger-down-img {
  margin-top: 2rem;
}

/* Right: Trip List Grid */
.daytrips-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Individual Trip Card */
.trip-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.trip-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-color: rgba(217, 119, 6, 0.3); /* Uses var(--secondary) color with low opacity */
}

/* Icon Box inside Card */
.trip-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(217, 119, 6, 0.1); /* Light orange background */
  color: var(--secondary); /* Brand orange icon */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trip-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Additional Animation Delays */
.delay-6 { transition-delay: 0.5s; }
.delay-7 { transition-delay: 0.6s; }
.delay-8 { transition-delay: 0.7s; }

/* =========================================
   COMMUNITY IMPACT SECTION
========================================= */
.community-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .community-section { padding: 7rem 0; }
}

/* Background Image setup */
.community-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Gradient Overlay - Dark on the left, fading out to the right */
.community-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

/* Foreground Content */
.community-container {
  position: relative;
  z-index: 10;
}

.community-content {
  max-width: 42rem; /* Limits text width like max-w-2xl */
}

/* Typography Overrides for Dark Background */
.community-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .community-title { font-size: 3rem; }
}

.community-desc {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .community-desc { font-size: 1.125rem; }
}

/* Goals List */
.goals-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.goal-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.goal-icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px; /* Circle */
  background-color: rgba(217, 119, 6, 0.2); /* var(--secondary) at 20% opacity */
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.goal-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .goal-text { font-size: 1rem; }
}

/* Quote */
.community-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

/* Utilities */
.mb-10 { margin-bottom: 2.5rem; }
.mt-10 { margin-top: 2.5rem; }

/* =========================================
   WHY CHOOSE US SECTION
========================================= */
.why-us-section {
  padding: 5rem 0;
  background-color: #ffffff; /* Explicitly distinct from the muted backgrounds */
}

@media (min-width: 768px) {
  .why-us-section { padding: 7rem 0; }
}

/* Grid Setup */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-us-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Card Styling */
.why-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s ease;
}

.why-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

/* Icon Box inside Card */
.why-icon-box {
  width: 4rem; /* w-16 */
  height: 4rem; /* h-16 */
  border-radius: 1rem;
  background-color: rgba(43, 91, 57, 0.1); /* var(--primary-dark) at 10% */
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto; /* Centers horizontally and adds bottom margin */
  transition: background-color 0.3s ease;
}

.group:hover .group-hover-bg {
  background-color: rgba(43, 91, 57, 0.2); /* Deepens to 20% on hover */
}

/* Typography Overrides */
.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
}

.why-card-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #6b7280; /* text-muted-foreground */
  line-height: 1.625;
  margin: 0;
}
/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials-section {
  padding: 5rem 0;
  background-color: #16a34a; 
}

@media (min-width: 768px) {
  .testimonials-section { padding: 7rem 0; }
}

.text-white {
  color: #ffffff !important;
}

/* Grid Setup */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Review Card (TripAdvisor Style) */
.review-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Header: Avatar and Info */
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.review-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--secondary); /* Default color */
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* Optional avatar color overrides */
.review-avatar.bg-accent { background-color: #0f766e; }
.review-avatar.bg-primary { background-color: var(--primary-dark); }

.review-user-info {
  flex-grow: 1;
}

.review-author {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1rem;
  margin: 0 0 0.125rem 0;
}

.review-location {
  font-family: var(--font-body);
  color: #6b7280;
  font-size: 0.75rem;
  margin: 0;
}

.review-quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: #e5e7eb; /* Very light gray, almost a watermark */
  width: 2.5rem;
  height: 2.5rem;
}

/* Stars Rating */
.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--secondary); /* Brand gold/orange for stars */
  margin-bottom: 1.25rem;
}

/* Review Text Content */
.review-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

.review-text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: #4b5563; /* slightly lighter than dark text for readability */
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex-grow: 1; /* Pushes the date to the bottom if cards are unequal heights */
}

/* Footer / Meta Data */
.review-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
  font-weight: 500;
}
/* =========================================
   CONTACT SECTION (Strict Layout Match)
========================================= */

/* Section Wrapper: py-20 md:py-28 bg-muted/30 */
.contact-section {
  padding: 5rem 0;
  background-color: #f8fafc; /* Subtle gray matching bg-muted/30 */
}
@media (min-width: 768px) {
  .contact-section { padding: 7rem 0; }
}

/* Container: max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 */
.contact-container {
  max-width: 72rem; /* 6xl */
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .contact-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .contact-container { padding: 0 2rem; } }

/* Header Formatting */
.contact-header {
  text-align: center;
  margin-bottom: 4rem; /* mb-16 */
}
.contact-subtitle {
  font-family: var(--font-heading);
  color: #d4af37; /* text-secondary */
  font-size: 0.875rem; /* text-sm */
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.contact-title {
  font-family: var(--font-heading);
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .contact-title { font-size: 3rem; /* md:text-5xl */ }
}
.contact-desc {
  font-family: var(--font-body);
  color: #6b7280; /* text-muted-foreground */
  max-width: 36rem; /* max-w-xl */
  margin: 0 auto;
}

/* Grid Layout: grid md:grid-cols-2 gap-6 */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* gap-6 */
  margin-bottom: 1.5rem; /* mb-6 */
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
  }
}

/* Individual Cards: bg-card border rounded-3xl p-8 */
.contact-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 2rem; /* p-8 */
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
}

/* Card Header: flex items-center gap-3 mb-6 */
.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* gap-3 */
  margin-bottom: 1.5rem; /* mb-6 */
}
.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.card-header p {
  font-family: var(--font-body);
  font-size: 0.75rem; /* text-xs */
  color: #6b7280;
  margin: 0;
}

/* Icon Box: w-12 h-12 rounded-2xl */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem; /* rounded-2xl */
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-primary-muted { background-color: rgba(43, 91, 57, 0.1); }
.bg-secondary-muted { background-color: rgba(212, 175, 55, 0.2); }
.text-primary { color: #2b5b39; }
.text-secondary { color: #d4af37; }
.text-accent { color: #0f766e; }

/* Card Body Rows (Phones/Emails): space-y-3 */
.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* space-y-3 */
}

/* Inner Items: bg-muted/60 rounded-2xl px-5 py-4 */
.info-row {
  display: flex;
  align-items: center;
  background-color: #f3f4f6;
  border-radius: 1rem; /* rounded-2xl */
  padding: 1rem 1.25rem; /* px-5 py-4 */
  justify-content: space-between;
}
.location-row {
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Text Formatting */
.info-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0 0 0.125rem 0; /* mb-0.5 */
}
.info-text {
  font-family: var(--font-body);
  color: var(--text-dark);
  font-size: 1rem;
}
.info-text.tracking-wide { letter-spacing: 0.025em; }
.info-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.info-link:hover { color: #2b5b39; }
.font-semibold { font-weight: 600; }

/* Hover Actions (Copy / WhatsApp) */
.action-buttons {
  display: flex;
  align-items: center;
  gap: 0.25rem; /* gap-1 */
  opacity: 0;
  transition: opacity 0.3s;
}
.group:hover .action-buttons { opacity: 1; }
@media (max-width: 1024px) { .action-buttons { opacity: 1; } } /* Always show on touch devices */

.action-btn {
  padding: 0.375rem; /* p-1.5 */
  border-radius: 0.5rem; /* rounded-lg */
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.copy-btn:hover { background-color: rgba(43, 91, 57, 0.1); color: #2b5b39; }
.wa-btn:hover { background-color: #f0fdf4; color: #16a34a; }
.hidden { display: none !important; }

/* Social Tags: flex flex-wrap gap-2 */
.social-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem 0; /* mb-3 */
}
.social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem; /* gap-2 */
}
.social-tags a {
  padding: 0.375rem 0.75rem; /* px-3 py-1.5 */
  font-family: var(--font-body);
  font-size: 0.75rem; /* text-xs */
  font-weight: 500;
  background-color: #f3f4f6; /* bg-muted */
  border: 1px solid #e5e7eb;
  border-radius: 9999px; /* rounded-full */
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s;
}
.social-tags a:hover {
  background-color: #2b5b39;
  border-color: #2b5b39;
  color: #ffffff;
}

/* Main Buttons */
.mt-5 { margin-top: 1.25rem; }

.btn-wa-full {
  /* Added box-sizing to prevent overflow */
  box-sizing: border-box; 
  
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #16a34a;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  
  /* Use shorthand padding correctly */
  padding: 1.25rem 1rem; 
  
  border-radius: 1rem;
  text-decoration: none;
  transition: background-color 0.3s;
  
  /* Added display property just in case */
  display: flex;
}

.btn-wa-full:hover { 
  background-color: #15803d; 
}

.contact-cta { text-align: center; }
.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2b5b39;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.125rem; /* text-lg */
  padding: 1.5rem 2.5rem; /* px-10 py-6 */
  border-radius: 9999px; /* rounded-full */
  text-decoration: none;
  transition: background-color 0.3s;
}
.btn-primary-large:hover { background-color: rgba(43, 91, 57, 0.9); }
.btn-group .icon-arrow { margin-left: 0.5rem; transition: transform 0.3s; }
.btn-group:hover .icon-arrow { transform: translateX(4px); }
/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem; /* Distance from bottom */
  left: 1.5rem;   /* Positioned on the lower left */
  width: 3.5rem;
  height: 3.5rem;
  background-color: #25D366; /* Official WhatsApp Green */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 100; /* Ensures it stays on top of other content */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2s infinite;
}

.floating-whatsapp .wa-icon {
  width: 2rem;
  height: 2rem;
}

/* Hover effect */
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  animation: none; /* Stops pulsing when hovered */
}

/* Responsive adjustments for tablets and desktops */
@media (min-width: 768px) {
  .floating-whatsapp {
    bottom: 2rem;
    left: 2rem;
    width: 4rem;
    height: 4rem;
  }
  .floating-whatsapp .wa-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Subtle pulse animation to draw attention */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/*WILDLIFE SAFARI STARTS HERE*/
/* Layout Structure */
.page-container { display: flex; gap: 2rem; max-width: 1200px; margin: auto; padding: 2rem; }
.desktop-sidebar { 
  width: 300px; 
  flex-shrink: 0; 
  align-self: flex-start; /* Stops sidebar stretching */
}
.sticky-box { 
  position: -webkit-sticky;
  position: sticky; 
  top: 100px; 
  height: fit-content; /* Helps stickiness calculate boundaries */
}

/* Mobile Handling */
.mobile-toggle { display: none; position: fixed; bottom: 20px; left: 20px; z-index: 100; }
@media (max-width: 1024px) {
    .desktop-sidebar { display: none; }
    .mobile-toggle { display: block; }
}

/* Sidebar Styling */
.sidebar-nav { list-style: none; padding: 0; }
.sidebar-nav li a { display: block; padding: 10px; text-decoration: none; color: #333; }

/* Grid & Cards */
.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.package-card { border: 1px solid #ddd; border-radius: 1rem; overflow: hidden; }
.card-img img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 1.5rem; }

.sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; }
.sidebar-overlay.active { display: block; }
.sidebar-drawer { width: 300px; height: 100%; background: #fff; padding: 2rem; }

/* --- Global Style Variables & Tokens --- */
:root {
  --primary-color: #1f4e37;       /* Premium Safari Green */
  --primary-hover: #153525;
  --secondary-color: #d4a373;     /* Golden Savannah Sand Accent */
  --secondary-hover: #bfa260;
  --bg-color: #fcfbfa;            /* Light premium bone-white background */
  --card-bg: #ffffff;
  --text-main: #1c1c1c;
  --text-muted: #666666;
  --text-white: #ffffff;
  --border-color: #e5e5e0;
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-sm: 8px;
  --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Formats --- */
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: 'Poppins', sans-serif;
  overflow-x: clip; /* CRITICAL FIX: Keeps elements on screen WITHOUT disabling CSS Sticky */
}

h1, h2, h3, .font-playfair {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Container Configurations --- */
.main-page-wrapper {
  padding-top: 100px; /* Offset spacing for the fixed header module */
  padding-bottom: 60px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-flex {
  display: flex;
  gap: 40px;
}

/* --- Left Column: Layout Sidebar --- */
.experience-sidebar {
  width: 288px;
  flex-shrink: 0;
  align-self: flex-start; /* CRITICAL FIX: Stops sidebar column stretching, creating a path to slide on */
}

.sidebar-sticky-content {
  position: -webkit-sticky; /* Safari Support */
  position: sticky;
  top: 110px; /* Locks elegantly on page scroll */
  height: fit-content; /* Informs browser limits of sticky container */
  z-index: 10;
}

.sidebar-header {
  margin-bottom: 24px;
}

.all-experiences-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.all-experiences-link:hover {
  color: var(--primary-color);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-item-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.nav-link-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 10px 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Highlights for Active Category state matching layout */
.nav-item-group.active .nav-item-main {
  background-color: var(--primary-color);
  color: var(--text-white);
}

.nav-item-group:not(.active) .nav-item-main:hover {
  background-color: rgba(31, 78, 55, 0.08);
  color: var(--primary-color);
}

.badge {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
}

.badge-muted {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
}

.submenu-toggle-btn {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
}

/* Inner Nested Submenus */
.sidebar-submenu {
  margin-left: 16px;
  margin-top: 4px;
  padding-left: 12px;
  border-left: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.submenu-link {
  display: block;
  padding: 8px 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  line-height: 1.4;
  transition: var(--transition-smooth);
}

.submenu-link:hover {
  color: var(--text-main);
  background-color: rgba(0, 0, 0, 0.03);
}

/* Sidebar CTA Help Card */
.sidebar-help-card {
  margin-top: 32px;
  padding: 20px;
  background-color: rgba(31, 78, 55, 0.03);
  border: 1px solid rgba(31, 78, 55, 0.12);
  border-radius: var(--radius-lg);
}

.sidebar-help-card h4 {
  margin: 0 0 4px 0;
  font-size: 0.875rem;
  font-weight: 600;
}

.sidebar-help-card p {
  margin: 0 0 12px 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.btn-whatsapp {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--primary-color);
  color: var(--text-white);
  padding: 10px 0;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background-color: var(--primary-hover);
}

/* --- Right Column: Packages Feed & Grid --- */
.packages-feed {
  flex: 1;
  min-width: 0;
}

/* Hero Category Banner */
.category-hero {
  position: relative;
  height: 288px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.3));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  color: var(--text-white);
}

.hero-emoji {
  font-size: 2.25rem;
  margin-bottom: 12px;
  display: block;
}

.category-hero h1 {
  margin: 0 0 8px 0;
  font-size: 2.25rem;
  font-weight: 700;
}

.category-hero p {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.85;
}

/* Dual Column Feed System Grid */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.package-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.package-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-anchor-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-media {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover .card-media img {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
}

.media-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
}

.badge-duration {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-price {
  background-color: var(--secondary-color);
  color: #1c1c1c;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-body h3 {
  margin: 0 0 8px 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.card-description {
  margin: 0 0 16px 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-itinerary {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.btn-itinerary svg {
  transition: transform var(--transition-smooth);
}

.package-card:hover .btn-itinerary {
  color: var(--secondary-color);
}

.package-card:hover .btn-itinerary svg {
  transform: translateX(4px);
}

/* --- Floating Button & Drawer Mobile Utilities --- */
.mobile-sidebar-trigger-container {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
}

.btn-floating-experiences {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-sidebar-close {
  display: none;
}

/* --- Breakpoint Media Rules --- */

/* Desktop / Tablet Break */
@media (min-width: 640px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / Responsive Sidebar Collapse Break */
@media (max-width: 1200px) {
  .container-flex {
    flex-direction: column;
  }
  
  .mobile-sidebar-trigger-container {
    display: block;
  }
  
  /* Convert the Left layout sidebar into an Off-Canvas Sliding Drawer */
  .experience-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    background-color: var(--card-bg);
    z-index: 100;
    box-shadow: var(--shadow-hover);
    padding: 24px;
    box-sizing: border-box;
    transition: left 0.4s ease;
    overflow-y: auto;
    align-self: auto; /* Reset flex rules on mobile drawer layouts */
  }
  
  .experience-sidebar.open {
    left: 0;
  }
  
  .mobile-sidebar-close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
  }
  
  .sidebar-sticky-content {
    position: static;
  }
  
  .category-hero {
    height: 220px;
  }
  
  .category-hero h1 {
    font-size: 1.875rem;
  }
}

/* --- Scroll Animation Classes (Slide-In Modules) --- */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

/* Activated smoothly by IntersectionObserver */
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Safety Override for clients with visual vestibular sensitivity */
@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}




/* ==========================================================================
   FORCE-FIX FOR STICKY SIDEBAR (Overrides all browser layout blockers)
   ========================================================================== */

/* 1. Prevent html/body overflow from killing sticky layout */
html, body {
  overflow-x: clip !important; /* 'clip' prevents horizontal scroll without breaking position:sticky */
  overflow-y: visible !important;
}

/* 2. Ensure no structural parents block the sticky viewport calculation */
.main-page-wrapper, 
main, 
section, 
.container {
  overflow: visible !important;
}

/* 3. Configure the Flex parent to allow sliding tracks */
.container-flex {
  display: flex !important;
  align-items: flex-start !important; /* Stops sidebar from stretching to match the height of the right column */
}

/* 4. Force sticky behaviors on desktop screens */
@media (min-width: 1201px) {
  /* Apply to both potential container classes to guarantee it sticks regardless of nested HTML structure */
  .experience-sidebar,
  .sidebar-sticky-content {
    position: -webkit-sticky !important; /* Safari engine support */
    position: sticky !important;
    top: 110px !important;                /* Distance from the top of the browser viewport */
    height: fit-content !important;       /* Wraps tightly to content so it has room to slide */
    align-self: flex-start !important;    /* Prevents flex stretching */
    overflow: visible !important;
    z-index: 10 !important;
  }
}




/*Packages starts Here*/
/* ==========================================================================
   PACKAGE DETAIL PAGE STYLES
   ========================================================================== */

.package-detail-wrapper {
  flex: 1;
  min-width: 0;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb .current { color: var(--text-main); font-weight: 500; }

/* Detail Hero Section */
.package-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 384px;
  margin-bottom: 32px;
}
.package-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2) 60%, transparent);
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: var(--text-white);
}
.category-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  margin: 0 0 8px 0;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
}
.meta-tags span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-tags svg { color: var(--secondary-color); }

/* Price and Action Bar */
.price-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.price-action-bar .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0;
}
.btn-book-now {
  background-color: var(--secondary-color);
  color: #1c1c1c;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}
.btn-book-now:hover { background-color: var(--secondary-hover); }

/* General Content Sections */
.detail-section { margin-bottom: 40px; }
.detail-section h2 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.detail-section p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Itinerary Timeline */
.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timeline-item {
  display: flex;
  gap: 16px;
}
.timeline-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.day-badge {
  background-color: rgba(31, 78, 55, 0.1);
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.90rem;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  width: 60px;
  flex-shrink: 0;
}
.timeline-line {
  flex: 1;
  width: 2px;
  background-color: var(--border-color);
  margin-top: 8px;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content { padding-bottom: 16px; }
.timeline-content h3 {
  font-size: 1rem;
  margin: 0 0 8px 0;
}
.timeline-content p { font-size: 0.99rem; margin: 0; }

/* Inclusions & Exclusions Grid */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-box {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid;
}
.feature-box h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
}
.feature-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-box li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
}
.feature-box li svg { flex-shrink: 0; margin-top: 2px; }

/* Green & Red Variations */
.box-green { background-color: #f0fdf4; border-color: #bbf7d0; }
.box-green h2 { color: #166534; }
.box-green li svg { stroke: #16a34a; }
.box-red { background-color: #fef2f2; border-color: #fecaca; }
.box-red h2 { color: #991b1b; }
.box-red li svg { stroke: #f87171; }

/* Booking Form Section */
.booking-section {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 40px;
}
.booking-section .subtitle { margin-bottom: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .full-width { grid-column: span 2; }
}
.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.input-group input, .input-group select, .input-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  background-color: var(--bg-color);
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.btn-submit-whatsapp {
  width: 100%;
  padding: 14px;
  background-color: var(--secondary-color);
  color: #1c1c1c;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-submit-whatsapp:hover { background-color: var(--secondary-hover); }

/* Form Success State */
.booking-success {
  text-align: center;
  padding: 24px 0;
}
.booking-success.hidden { display: none; }
.success-icon {
  width: 64px;
  height: 64px;
  background-color: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

/* Big Contact Buttons */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .contact-buttons { flex-direction: row; }
}
.btn-whatsapp-large, .btn-email-large {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-align: center;
  transition: var(--transition-smooth);
}
.btn-whatsapp-large { background-color: #16a34a; color: white; }
.btn-whatsapp-large:hover { background-color: #15803d; }
.btn-email-large { background-color: var(--primary-color); color: white; }
.btn-email-large:hover { background-color: var(--primary-hover); }

