/* ===== CSS VARIABLES ===== */
:root {
  --clay:    #8B4513;
  --earth:   #6B3A2A;
  --amber:   #C8862A;
  --gold:    #D4A853;
  --savanna: #E8D5A3;
  --cream:   #FAF6EE;
  --forest:  #2D4A2D;
  --sage:    #5A7A5A;
  --dusk:    #1A1208;
  --smoke:   #F0EBE0;
  --text:    #2C1810;
  --muted:   #7A6558;

  --ff-display: 'Playfair Display', serif;
  --ff-body:    'Jost', sans-serif;

  --radius: 4px;
  --shadow: 0 8px 40px rgba(28,16,8,.18);
  --shadow-sm: 0 2px 12px rgba(28,16,8,.1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: var(--cream); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--savanna); }
::-webkit-scrollbar-thumb { background: var(--clay); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--ff-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--amber);
  display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15; color: var(--earth); font-weight: 700;
}
.section-title span { color: var(--amber); font-style: italic; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--ff-body); font-size: .9rem;
  font-weight: 600; letter-spacing: .08em; border-radius: var(--radius);
  cursor: pointer; border: none; transition: all .3s ease;
}
.btn-primary {
  background: var(--amber); color: #fff;
}
.btn-primary:hover { background: var(--clay); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(139,69,19,.35); }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-dark {
  background: var(--earth); color: #fff;
}
.btn-dark:hover { background: var(--dusk); transform: translateY(-2px); }

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
}
#navbar.scrolled, #navbar.solid {
  background: var(--dusk);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-logo {
  font-family: var(--ff-display); font-size: 1.4rem; color: #fff; font-weight: 900;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo span { font-size: .65rem; letter-spacing: .2em; font-family: var(--ff-body); font-weight: 400; opacity: .8; text-transform: uppercase; }
.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius);
  letter-spacing: .04em; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 16px; padding: 10px 22px !important; background: var(--amber) !important; color: #fff !important; border-radius: var(--radius); font-size: .82rem !important; }
.nav-cta:hover { background: var(--clay) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--dusk); z-index: 999; padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  color: rgba(255,255,255,.88); font-size: 1rem; padding: 14px 16px;
  border-radius: var(--radius); font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

/* ===== HERO WITH SLIDESHOW ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dusk);
}
.hero-slideshow {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.04);
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 18s ease infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 120px 24px 80px;
  max-width: 860px;
}
.hero-badge {
  display: inline-block; background: rgba(200,134,42,.2); border: 1px solid rgba(200,134,42,.4);
  color: var(--gold); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 40px; margin-bottom: 28px;
  animation: slideDown .8s ease .2s both;
}
.hero-title {
  font-family: var(--ff-display); font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff; line-height: 1.08; font-weight: 900;
  animation: slideDown .8s ease .4s both;
}
.hero-title em { color: var(--gold); font-style: italic; display: block; }
.hero-sub {
  color: rgba(255,255,255,.78); font-size: 1.1rem; font-weight: 300;
  margin: 24px 0 44px; line-height: 1.7; max-width: 580px; margin-left: auto; margin-right: auto;
  animation: slideDown .8s ease .6s both;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: slideDown .8s ease .8s both; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; z-index: 2;
}
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.5} 50%{opacity:1} }
@keyframes slideDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

/* Slideshow Navigation Dots */
.slideshow-dots {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 3;
}
.slideshow-dots .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: all .3s ease;
}
.slideshow-dots .dot:hover { background: rgba(255,255,255,.8); transform: scale(1.2); }
.slideshow-dots .dot.active {
  background: var(--amber); width: 28px; border-radius: 5px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--earth); padding: 48px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display); font-size: 2.8rem; color: var(--gold); font-weight: 900; line-height: 1;
}
.stat-label { color: rgba(255,255,255,.7); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-top: 6px; }

/* ===== ABOUT INTRO ===== */
.about-intro { padding: 100px 0; background: var(--cream); }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/5; background: var(--savanna);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--amber); color: #fff; padding: 20px 24px;
  border-radius: var(--radius); text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge strong { font-family: var(--ff-display); font-size: 2rem; display: block; line-height: 1; }
.about-img-badge span { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; opacity: .9; }
.about-text { padding-left: 20px; }
.about-text p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; margin: 20px 0; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-feat {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px; background: var(--smoke); border-radius: var(--radius);
  border-left: 3px solid var(--amber);
}
.about-feat-icon { font-size: 1.4rem; margin-top: 2px; }
.about-feat-text strong { display: block; font-size: .88rem; font-weight: 600; color: var(--earth); }
.about-feat-text span { font-size: .8rem; color: var(--muted); }

/* ===== PACKAGES ===== */
.packages-section { padding: 100px 0; background: var(--smoke); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { color: var(--muted); max-width: 520px; margin: 16px auto 0; font-size: 1.05rem; }
.packages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.package-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .35s ease;
  cursor: pointer;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-img { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.package-card:hover .package-img img { transform: scale(1.07); }
.package-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber); color: #fff;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 40px; font-weight: 600;
}
.package-tag.luxury { background: var(--earth); }
.package-tag.honey { background: #b5396b; }
.package-tag.group { background: var(--forest); }
.package-body { padding: 28px; }
.package-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.package-meta span {
  font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px;
}
.package-title { font-family: var(--ff-display); font-size: 1.45rem; color: var(--earth); font-weight: 700; margin-bottom: 10px; }
.package-desc { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; }
.package-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pkg-tag {
  background: var(--smoke); color: var(--text); font-size: .74rem;
  padding: 4px 10px; border-radius: 40px;
}
.package-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--smoke); }
.package-price { font-family: var(--ff-display); font-size: 1.5rem; color: var(--amber); font-weight: 700; }
.package-price span { font-family: var(--ff-body); font-size: .78rem; color: var(--muted); font-weight: 400; }

/* ===== GALLERY ===== */
.gallery-section { padding: 100px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 48px;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius); cursor: pointer;
  position: relative;
}
.gallery-item:first-child, .gallery-item:nth-child(5) {
  grid-column: span 2;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; aspect-ratio: unset; min-height: 220px; max-height: 340px; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.5), transparent);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--earth); }
.testimonials .section-title { color: var(--savanna); }
.testimonials .section-label { color: var(--gold); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.testi-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 32px; transition: all .3s;
}
.testi-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { color: rgba(255,255,255,.82); font-size: .95rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1.1rem; color: #fff; font-weight: 700; }
.testi-name strong { display: block; color: #fff; font-size: .9rem; font-weight: 600; }
.testi-name span { color: rgba(255,255,255,.5); font-size: .78rem; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--dusk) 0%, var(--earth) 100%);
  text-align: center;
}
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; font-weight: 900; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 540px; margin: 16px auto 0; font-size: 1.05rem; }

.about-story { padding: 100px 0; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text .section-title { margin-bottom: 20px; }
.story-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.85; margin-bottom: 18px; }
.story-text .name-tag { 
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--smoke); padding: 16px 20px; border-radius: var(--radius);
  border-left: 4px solid var(--amber); margin-top: 8px;
}
.story-text .name-tag strong { display: block; font-weight: 700; color: var(--earth); }
.story-text .name-tag span { font-size: .82rem; color: var(--muted); }

/* ===== ABOUT VALUES - GLASSY TRANSPARENT STYLE ===== */
.about-values {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.75), rgba(107,58,42,0.65)), 
              url('imgs/vehicle.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.about-values .section-header .section-label,
.about-values .section-header .section-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-values .section-header .section-title span {
  color: var(--gold);
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }

.value-card {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.value-icon { 
  font-size: 2.4rem; 
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.value-card h3 { 
  font-family: var(--ff-display); 
  font-size: 1.2rem; 
  color: #fff !important; 
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.value-card p { 
  color: rgba(255, 255, 255, 0.9) !important; 
  font-size: .9rem; 
  line-height: 1.7;
}

/* ===== SAFARIS PAGE ===== */
.safaris-list { padding: 80px 0; background: var(--cream); }
.safaris-all-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* ===== PACKAGE DETAIL PAGE ===== */
.pkg-detail-hero {
  padding: 140px 0 70px;
  background: linear-gradient(160deg, var(--dusk) 0%, var(--earth) 100%);
}
.pkg-detail-hero h1 { font-family: var(--ff-display); font-size: clamp(2rem,5vw,3.6rem); color: #fff; font-weight: 900; margin-bottom: 16px; }
.pkg-detail-hero p { color: rgba(255,255,255,.7); max-width: 560px; font-size: 1.05rem; }
.pkg-detail-meta { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.pkg-detail-meta span { color: rgba(255,255,255,.8); font-size: .9rem; display: flex; align-items: center; gap: 8px; }

.pkg-detail-body { padding: 80px 0; background: var(--cream); }
.pkg-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; }
.pkg-gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; margin-bottom: 16px; }
.pkg-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pkg-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pkg-gallery-thumbs img { border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: .7; transition: opacity .2s; }
.pkg-gallery-thumbs img:hover { opacity: 1; }

.pkg-itinerary { margin-top: 48px; }
.pkg-itinerary h2 { font-family: var(--ff-display); font-size: 1.8rem; color: var(--earth); margin-bottom: 28px; }
.itinerary-day {
  display: flex; gap: 20px; margin-bottom: 24px;
  padding: 24px; background: var(--smoke); border-radius: var(--radius);
  border-left: 4px solid var(--amber);
}
.day-num { font-family: var(--ff-display); font-size: 1.6rem; color: var(--amber); font-weight: 900; min-width: 40px; line-height: 1; }
.day-content h4 { font-weight: 600; color: var(--earth); margin-bottom: 6px; }
.day-content p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

.pkg-incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.incl-card, .excl-card { background: var(--smoke); padding: 24px; border-radius: var(--radius); }
.incl-card h3 { color: var(--forest); margin-bottom: 16px; font-weight: 600; }
.excl-card h3 { color: #b5396b; margin-bottom: 16px; font-weight: 600; }
.incl-card li, .excl-card li { padding: 6px 0; font-size: .9rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.incl-card li::before { content: '✓'; color: var(--forest); font-weight: 700; }
.excl-card li::before { content: '✗'; color: #b5396b; font-weight: 700; }

/* Booking Sidebar */
.booking-sidebar { position: sticky; top: 90px; }
.booking-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.booking-card h3 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--earth); margin-bottom: 6px; }
.booking-price-display { font-family: var(--ff-display); font-size: 2.2rem; color: var(--amber); font-weight: 900; margin-bottom: 24px; }
.booking-price-display span { font-family: var(--ff-body); font-size: .8rem; color: var(--muted); font-weight: 400; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #E0D8CF;
  border-radius: var(--radius); font-family: var(--ff-body); font-size: .9rem;
  color: var(--text); background: var(--cream); margin-bottom: 12px;
  transition: border-color .2s;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--amber); }
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form .btn { width: 100%; justify-content: center; margin-top: 4px; }

/* ===== GALLERY PAGE WITH FILTERS ===== */
.gallery-page { padding: 80px 0; background: var(--cream); }

/* Gallery Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--amber);
  color: var(--earth);
  padding: 10px 28px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.filter-btn:hover {
  background: var(--amber);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200,134,42,0.3);
}

.filter-btn.active {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
  box-shadow: 0 4px 12px rgba(200,134,42,0.4);
}

/* Gallery Grid */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

/* Gallery Items */
.gallery-full-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.gallery-full-item img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-full-item:hover img {
  transform: scale(1.05);
}

/* Camp card specific styles with description */
.gallery-full-item.camp-card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: auto;
  min-height: 380px;
}

.gallery-full-item.camp-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.camp-info {
  padding: 16px;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.camp-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.camp-name .camp-link-icon {
  font-size: 0.9rem;
  color: var(--amber);
  transition: transform 0.3s;
}

.gallery-full-item.camp-card:hover .camp-link-icon {
  transform: translateX(3px);
}

.camp-description {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.camp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.camp-feature {
  background: var(--smoke);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--earth);
  display: flex;
  align-items: center;
  gap: 4px;
}

.camp-visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--amber);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: all 0.3s;
  width: 100%;
  border: none;
  cursor: pointer;
}

.camp-visit-btn:hover {
  background: var(--earth);
  transform: translateY(-2px);
}

/* Regular image items (non-camp) */
.gallery-full-item:not(.camp-card) {
  aspect-ratio: 1;
}

.gallery-full-item:not(.camp-card) img {
  height: 100%;
}

.gallery-full-item:not(.camp-card):hover img {
  transform: scale(1.07);
}

/* Filter animation */
.gallery-full-item.filtered-out {
  display: none;
}

.gallery-full-item.filtered-in {
  animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Load More Button Styles */
.load-more-container {
  text-align: center;
  margin-top: 48px;
  padding: 20px 0;
}

.load-more-btn {
  background: var(--amber);
  color: #fff;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.load-more-btn:hover {
  background: var(--earth);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.load-more-btn:active {
  transform: translateY(0);
}

.load-more-container.hidden {
  display: none;
}

.no-more-images {
  text-align: center;
  margin-top: 20px;
  color: var(--amber);
  font-family: var(--ff-display);
  font-size: 1rem;
  animation: fadeIn 0.6s ease;
}

.no-images-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius); }
.lightbox-close {
  position: fixed; top: 24px; right: 28px; color: #fff; font-size: 2rem;
  cursor: pointer; background: rgba(255,255,255,.1); border: none; width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 80px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h2 { font-family: var(--ff-display); font-size: 2rem; color: var(--earth); margin-bottom: 16px; }
.contact-info p { color: var(--muted); font-size: .98rem; line-height: 1.8; margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--amber); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-weight: 600; color: var(--earth); font-size: .9rem; }
.contact-detail-text span { color: var(--muted); font-size: .88rem; }
.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; margin-top: 24px; transition: all .3s; font-size: .9rem;
}
.whatsapp-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }

.contact-form-wrap { background: #fff; padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.contact-form-wrap h3 { font-family: var(--ff-display); font-size: 1.6rem; color: var(--earth); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--earth); margin-bottom: 6px; letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #E0D8CF;
  border-radius: var(--radius); font-family: var(--ff-body); font-size: .9rem; color: var(--text);
  background: var(--cream); transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--amber); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; padding: 15px 32px; font-size: .95rem; }
.form-success {
  display: none; background: #f0fdf4; border: 1px solid #86efac;
  border-radius: var(--radius); padding: 20px; text-align: center;
  color: var(--forest); margin-top: 16px;
}

/* ===== MAP PLACEHOLDER ===== */
.map-embed { margin-top: 28px; border-radius: var(--radius); overflow: hidden; height: 220px; background: var(--smoke); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .9rem; border: 1.5px solid #E0D8CF; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--earth) 0%, var(--clay) 60%, var(--amber) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1521651201144-634f700b36ef?w=1400&q=60') center/cover;
  opacity: .15;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); color: #fff; font-weight: 900; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 480px; margin: 16px auto 36px; font-size: 1.05rem; }
.cta-banner .hero-btns { justify-content: center; }

/* ===== FOOTER ===== */
footer {
  background: var(--dusk); padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: var(--ff-display); font-size: 1.5rem; color: #fff; font-weight: 900; margin-bottom: 14px; }
.footer-logo span { display: block; font-size: .65rem; font-family: var(--ff-body); letter-spacing: .2em; color: rgba(255,255,255,.5); font-weight: 400; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7);
  font-size: .95rem; transition: all .2s; cursor: pointer;
}
.social-btn:hover { background: var(--amber); color: #fff; }
.footer-col h4 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-bottom span { color: rgba(255,255,255,.25); font-size: .8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-intro-grid, .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text { padding-left: 0; }
  .about-img-badge { right: 0; }
  .packages-grid, .safaris-all-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.12); }
  .values-grid { grid-template-columns: 1fr; }
  .pkg-detail-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .pkg-incl-excl { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child, .gallery-item:nth-child(5) { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .pkg-gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .contact-form-wrap { padding: 24px; }
  .slideshow-dots { bottom: 80px; }
  
  .gallery-filters {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 6px 16px;
    font-size: 0.8rem;
  }
  
  .camp-name {
    font-size: 0.95rem;
  }
  
  .camp-description {
    font-size: 0.7rem;
  }
  
  .camp-feature {
    font-size: 0.6rem;
    padding: 3px 6px;
  }
  
  .camp-visit-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
  
  .gallery-full-item.camp-card img {
    height: 160px;
  }
  
  .gallery-full-item.camp-card {
    min-height: 340px;
  }
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    transition: all .2s;
    cursor: pointer;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--amber);
    color: #fff;
    transform: translateY(-3px);
}

/* For SVG icons */
.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}