/* ============================================================
   ANIMATIONS — Conservation Trips & Adventures
   ============================================================ */

/* ============================================================
   KEYFRAMES
   ============================================================ */

/* Ken Burns zoom for hero slides */
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.12) translate(-2%, -1%); }
}

/* Word-by-word hero text */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* WhatsApp pulse ring */
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Button shimmer on hover */
@keyframes shimmer {
  from { left: -100%; }
  to   { left: 200%; }
}

/* Partner logos marquee */
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Booking success checkmark */
@keyframes checkmarkDraw {
  to { stroke-dashoffset: 0; }
}

/* Floating badge bob */
@keyframes bobFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll indicator */
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(6px); opacity: 1; }
}

/* Fade in up */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade in  */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Underline sweep from left */
@keyframes underlineSweep {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

/* Diagonal shimmer on cards */
@keyframes cardShimmer {
  from { opacity: 0; left: -60%; }
  to   { opacity: 0.6; left: 120%; }
}

/* Slide in from right (toast) */
@keyframes slideInRight {
  from { transform: translateX(120%); }
  to   { transform: translateX(0); }
}

/* Progress bar fill */
@keyframes progressFill {
  from { width: 0; }
  to { width: var(--progress-width); }
}

/* Spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for reveal-grid children */
.reveal-grid > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-grid > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-grid > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-grid > *:nth-child(4) { transition-delay: 0.30s; }
.reveal-grid > *:nth-child(5) { transition-delay: 0.40s; }
.reveal-grid > *:nth-child(6) { transition-delay: 0.50s; }
.reveal-grid > *:nth-child(7) { transition-delay: 0.60s; }
.reveal-grid > *:nth-child(8) { transition-delay: 0.70s; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s linear forwards;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.hero-slide-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,15,0.92) 0%, transparent 50%);
}
.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
  z-index: 3;
}
.slide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.hero-slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 10vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}
.word-span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-slide.active .word-span.word-visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}
.hero-slide.active .slide-sub { opacity: 1; transform: translateY(0); }

.slide-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}
.hero-slide.active .slide-ctas { opacity: 1; transform: translateY(0); }

@media (max-width: 580px) {
  .slide-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
  }
  .slide-ctas .btn { width: 100%; }
}

/* Slider Navigation */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  right: 8vw;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.4s ease;
}
.slider-dot.active {
  width: 32px;
  background: var(--accent);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 28px;
  bottom: 36px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.scroll-chevrons {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}
.scroll-chevrons i {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  animation: bounceDown 1.6s ease infinite;
}
.scroll-chevrons i:nth-child(2) { animation-delay: 0.3s; }

/* ============================================================
   TOUR CARDS
   ============================================================ */
.tour-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-light);
}
.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.tour-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.tour-card:hover::before { transform: scaleY(1); }

.tour-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.08); }
.tour-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,31,15,0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tour-card:hover .tour-card-img-overlay { opacity: 1; }

.duration-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 var(--radius-md) 0 var(--radius-md);
}
.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(45,106,45,0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

.tour-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.2s ease;
  line-height: 1.3;
}
.tour-card:hover .tour-card-title { color: var(--primary); }
.tour-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  gap: 12px;
}
.tour-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.tour-card-link:hover { color: var(--primary-dark); }
.tour-card-link i { transition: transform 0.2s ease; font-size: 0.8rem; }
.tour-card-link:hover i { transform: translateX(4px); }
.tour-card.hidden { display: none; }

/* ============================================================
   DESTINATION CARDS
   ============================================================ */
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-bg { transform: scale(1.07); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,15,0.88) 0%, rgba(15,31,15,0.2) 60%, transparent 100%);
  transition: var(--transition);
}
.dest-card:hover .dest-card-overlay { background: linear-gradient(to top, rgba(15,31,15,0.95) 0%, rgba(15,31,15,0.35) 70%, rgba(15,31,15,0.1) 100%); }
.dest-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.dest-card:hover .dest-card-content { transform: translateY(0); }
.dest-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.dest-card-region {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dest-card-region .fi {
  font-size: 1rem;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.dest-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dest-card:hover .dest-card-link { opacity: 1; transform: translateX(0); }
.dest-card-link:hover { color: #fff; }
/* Border flash on hover */
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 0 solid var(--accent);
  transition: all 0.35s ease;
  pointer-events: none;
}
.dest-card:hover::after { border-width: 2px; }

/* ============================================================
   TESTIMONIAL CARDS
   ============================================================ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
.testimonial-card-inner {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 7rem;
  line-height: 0.5;
  display: block;
  margin-bottom: -24px;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  flex-shrink: 0;
}
.testimonial-author-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.testimonial-author-country {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.testimonial-tour {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
  margin-top: 3px;
}
.testimonial-stars { margin-bottom: 4px; }

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.test-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.test-arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.test-dots { display: flex; gap: 8px; align-items: center; }
.test-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.35s ease; }
.test-dot.active { background: var(--accent); width: 28px; border-radius: var(--radius-pill); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(15,31,15,0.97);
  height: 66px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
  backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 38px; }
  .nav-logo-text span:first-child { font-size: 1.1rem; }
  .nav-logo-text span:last-child { font-size: 0.6rem; }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: #fff;
}
.nav-logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.nav-logo-text span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  position: relative;
  display: block;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links > li > a:hover { color: var(--accent); }
.nav-links > li > a:hover::after { transform: scaleX(1); }
.nav-links > li > a.active { color: var(--accent); }
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-phone {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.nav-phone i { color: var(--accent); }
.nav-phone:hover { color: #fff; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-book {
  background: var(--accent);
  color: var(--dark);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .nav-book { padding: 6px 14px; font-size: 0.7rem; }
}
.nav-book:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger .bar {
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease;
  transform-origin: center;
}
.navbar.menu-open .bar:nth-child(1) { transform: rotate(45deg) translateY(10px); }
.navbar.menu-open .bar:nth-child(2) { transform: scaleX(0); opacity: 0; }
.navbar.menu-open .bar:nth-child(3) { transform: rotate(-45deg) translateY(-10px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 310px;
  height: 100vh;
  background: var(--dark);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-link {
  display: block;
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transform: translateX(30px);
  opacity: 0;
  transition: color 0.2s ease;
}
.mobile-menu.open .mobile-link {
  animation: fadeSlide 0.5s ease forwards;
}
.mobile-menu.open .mobile-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.open .mobile-link:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { animation-delay: 0.30s; }
.mobile-menu.open .mobile-link:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu.open .mobile-link:nth-child(7) { animation-delay: 0.40s; }
.mobile-menu.open .mobile-link:nth-child(8) { animation-delay: 0.45s; }
.mobile-link:hover { color: var(--accent); }
.mobile-link.active { color: var(--accent); }
.mobile-book-btn {
  margin-top: 32px;
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--dark);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mobile-social {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 32px;
}
.mobile-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,146,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.mobile-social a:hover { border-color: var(--accent); color: var(--accent); }
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.menu-backdrop.open { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,0.7);
  position: relative;
}
.footer-wave { margin-bottom: -1px; }
.footer-wave svg { display: block; width: 100%; }
.footer-top {
  padding: 72px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 48px; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.3;
}
.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(200,146,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: rgba(200,146,42,0.1); }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a i { font-size: 0.65rem; color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; font-size: 0.95rem; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-partners-row {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0;
  overflow: hidden;
}
.footer-partners-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-partner-badge {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}
.footer-partner-badge:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(200,146,42,0.18);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-copy a { color: rgba(255,255,255,0.45); }
.footer-copy a:hover { color: var(--accent); }
.footer-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  background: rgba(45,106,45,0.15);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(45,106,45,0.25);
}
.footer-trust-badge i { color: var(--primary); font-size: 0.85rem; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-inner { padding: 0 20px; }
  .nav-logo img { height: 38px; }
  .nav-logo-text span:first-child { font-size: 1rem; }
  .nav-logo-text span:last-child { font-size: 0.55rem; }
  .nav-book { padding: 8px 18px; font-size: 0.72rem; border-radius: var(--radius-pill); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-card-inner { padding: 32px 24px; }
  .testimonial-text { font-size: 1rem; }
  .hero-slide-content { padding: 0 24px 12vh; }
  .slider-arrow { display: none; }
  .slide-title { font-size: clamp(2.2rem, 10vw, 3.2rem); margin-bottom: 12px; }
  .slide-sub { font-size: 0.95rem; margin-bottom: 24px; max-width: 100%; }
}
@media (max-width: 480px) {
  .slide-ctas { flex-direction: column; width: 90%; gap: 12px !important; }
  .slide-ctas .btn { width: 100% !important; justify-content: center; margin: 0 !important; }
  .hero-trust-strip { bottom: 10px; }
  .trust-stat .stat-number { font-size: 1.5rem; }
}

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.progress-bar-wrap {
  margin-bottom: 36px;
}
.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #fff;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 1;
}
.step-circle.active { border-color: var(--accent); background: var(--accent); color: var(--dark); }
.step-circle.done { border-color: var(--primary); background: var(--primary); color: #fff; }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background 0.4s ease;
}
.step-line.done { background: var(--primary); }
.progress-labels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-label.active { color: var(--accent); }
.step-label.done { color: var(--primary); }

.form-step { display: none; }
.form-step.active { display: block; }

.safari-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.safari-type-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  background: #fff;
}
.safari-type-card:hover { border-color: var(--primary); }
.safari-type-card.selected { border-color: var(--accent); background: var(--accent-light); }
.safari-type-card i { font-size: 1.8rem; color: var(--primary); display: block; margin-bottom: 8px; }
.safari-type-card span { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.safari-type-card.selected i { color: var(--accent-dark); }

.duration-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.duration-pill {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  background: #fff;
}
.duration-pill:hover { border-color: var(--primary); color: var(--primary); }
.duration-pill.selected { background: var(--primary); color: #fff; border-color: var(--primary); }

.accommodation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.accom-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}
.accom-card:hover { border-color: var(--primary); }
.accom-card.selected { border-color: var(--accent); background: var(--accent-light); }
.accom-card i { font-size: 1.6rem; color: var(--text-muted); display: block; margin-bottom: 8px; }
.accom-card span { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.accom-card.selected i { color: var(--accent); }

.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}

@media (max-width: 520px) {
  .safari-type-grid { grid-template-columns: repeat(2, 1fr); }
  .accommodation-options { grid-template-columns: 1fr 1fr; }
  .destinations-grid { grid-template-columns: 1fr; }
  .progress-labels .step-label { font-size: 0.65rem; }
}
