/* ========================================
   YAWAPEPE SAFARIS — Premium Design System
   Luxury Safari Tourism Website
   ======================================== */

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --primary: #FF6B00;
  --primary-dark: #E55D00;
  --primary-light: #FF8533;
  --primary-glow: rgba(255, 107, 0, 0.15);
  --primary-subtle: rgba(255, 107, 0, 0.08);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F5F5F5;
  --warm-sand: #F7F4EF;
  --medium-gray: #E8E8E8;
  --border-gray: #E0E0E0;
  --text-muted: #8A8A8A;
  --text-secondary: #6B6B6B;
  --text-body: #4A4A4A;
  --text-heading: #1A1A1A;
  --charcoal: #2D2D2D;
  --black: #111111;

  /* Accent */
  --gold: #D4AF37;
  --gold-light: rgba(212, 175, 55, 0.15);
  --whatsapp: #25D366;

  /* Warm Tones */
  --warm-bg: #FFF9F5;
  --warm-border: #FFE8D6;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Outfit', var(--font-body);

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1320px;
  --container-padding: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 32px 80px rgba(0, 0, 0, 0.16);
  --shadow-orange: 0 8px 30px rgba(255, 107, 0, 0.25);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.loaded {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ── Section Headings ── */
.section-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.section-label-light { color: var(--white); }
.section-label-light::before { background: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title-light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 640px;
}

.section-subtitle-light { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label { justify-content: center; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 107, 0, 0.35);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 2px solid var(--border-gray);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 12px 28px;
  font-size: 0.9rem;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-glow {
  animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 8px 30px rgba(255, 107, 0, 0.25); }
  50% { box-shadow: 0 8px 40px rgba(255, 107, 0, 0.45); }
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg { transform: translateX(4px); }

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

.reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-hero-delay-1 { transition-delay: 0.2s; }
.reveal-hero-delay-2 { transition-delay: 0.4s; }
.reveal-hero-delay-3 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════
   SECTION 1 — HEADER / NAVIGATION
   ══════════════════════════════════════════ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-base);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-base);
}

.header.scrolled,
.header.header-solid {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header.scrolled .header-inner {
  padding: 12px 40px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-base);
}

.header.scrolled .header-logo img { height: 40px; }

/* Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.header.scrolled .nav-links a,
.header.header-solid .nav-links a { color: var(--text-body); }

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-subtle);
}

.nav-links a.active { color: var(--primary); font-weight: 600; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--primary) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  box-shadow: var(--shadow-orange);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 10;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header.scrolled .mobile-toggle span,
.header.header-solid .mobile-toggle span { background: var(--text-heading); }

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ══════════════════════════════════════════
   SECTION 2 — CINEMATIC HERO
   ══════════════════════════════════════════ */

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

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

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

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(255, 107, 0, 0.1) 100%
  );
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 160px 0 120px;
}

.hero-content {
  max-width: 700px;
}

.hero-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-label::before {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary);
  position: relative;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity var(--transition-base);
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ══════════════════════════════════════════
   SECTION 3 — FLOATING ENQUIRY FORM
   ══════════════════════════════════════════ */

.enquiry-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding-bottom: 40px;
}

.enquiry-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  padding: 48px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.enquiry-header {
  text-align: center;
  margin-bottom: 32px;
}

.enquiry-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.enquiry-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.form-group select,
.form-group input {
  padding: 14px 16px;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-heading);
  background: var(--white);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238A8A8A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.enquiry-submit {
  align-self: end;
  padding: 14px 32px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   SECTION 4 — TRUST BAR
   ══════════════════════════════════════════ */

.trust-bar {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gray), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  position: relative;
}

.trust-card:hover {
  background: var(--warm-sand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.trust-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  transition: all var(--transition-base);
}

.trust-card:hover .trust-card-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-orange);
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SECTION 5 — SAFARI PACKAGES
   ══════════════════════════════════════════ */

.safari-packages {
  padding: var(--section-padding) 0;
  background: var(--warm-sand);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

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

.package-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.package-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-premium { background: var(--gold); }
.badge-bestseller { background: var(--primary); }
.badge-popular { background: #27ae60; }
.badge-exclusive { background: #8B5CF6; }

.package-card-wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-muted);
}

.package-card-wishlist:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.package-card-content { padding: 28px; }

.package-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.package-card-meta span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.package-card-meta span svg { color: var(--primary); }

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.package-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.package-highlights span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--primary-subtle);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-gray);
}

.package-price {
  display: flex;
  flex-direction: column;
}

.package-price span:first-child {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.package-price span:last-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.package-card-footer .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════
   SECTION 6 — WHY CHOOSE YAWAPEPE
   ══════════════════════════════════════════ */

.why-choose {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.why-choose-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 50px;
}

.why-choose-image { position: relative; }

.why-image-main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-image-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why-choose-bottom {
  border-top: 1px solid var(--border-gray);
  padding-top: 50px;
  margin-top: 50px;
}

.why-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-experience-badge,
.why-travelers-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  animation: float 4s ease-in-out infinite;
}

.why-experience-badge {
  bottom: 30px;
  left: -30px;
}

.why-travelers-badge {
  top: 30px;
  right: -30px;
  animation-delay: 1.5s;
}

.badge-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.badge-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.why-choose-content .section-subtitle {
  margin-bottom: 32px;
}

.why-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.why-benefit:hover {
  background: var(--warm-sand);
  transform: translateX(4px);
}

.why-benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.why-benefit h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.why-benefit p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SECTION 7 — KILIMANJARO EXPEDITIONS
   ══════════════════════════════════════════ */

.kilimanjaro {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

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

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

.kili-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.kilimanjaro .container {
  position: relative;
  z-index: 2;
}

.kili-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kili-route-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.kili-route-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.kili-route-header {
  margin-bottom: 24px;
}

.kili-route-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.kili-route-nickname {
  font-size: 0.78rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.kili-route-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.kili-stat { text-align: center; }

.kili-stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.kili-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.kili-route-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.kili-route-card .btn-outline-light {
  width: 100%;
}

/* ══════════════════════════════════════════
   SECTION 8 — DESTINATIONS
   ══════════════════════════════════════════ */

.destinations {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}

.dest-card-lg {
  grid-column: span 2;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: all var(--transition-base);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.85) 100%);
}

.dest-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
}

.dest-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.dest-card-overlay p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.dest-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.dest-card:hover .dest-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   SECTION 9 — HOW IT WORKS
   ══════════════════════════════════════════ */

.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--warm-sand);
}

.timeline-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.timeline-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-glow);
  line-height: 1;
  margin-bottom: 16px;
}

.timeline-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.timeline-step:hover .timeline-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-orange);
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-connector {
  width: 60px;
  min-width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  margin-top: 90px;
  position: relative;
}

.timeline-connector::after {
  content: '→';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════
   SECTION 10 — LUXURY ACCOMMODATION
   ══════════════════════════════════════════ */

.accommodation {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.accom-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.accom-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.accom-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.accom-card-category {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accom-card-content {
  padding: 24px;
}

.accom-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.accom-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.accom-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.accom-link:hover {
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   SECTION 11 — SAFARI EXPERIENCES
   ══════════════════════════════════════════ */

.experiences {
  padding: var(--section-padding) 0;
  background: var(--warm-sand);
}

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

.exp-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 360px;
  cursor: pointer;
}

.exp-card-image {
  position: absolute;
  inset: 0;
}

.exp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.exp-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.exp-card:hover .exp-card-content {
  transform: translateY(0);
}

.exp-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.exp-card-content p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.exp-card:hover .exp-card-content p {
  opacity: 1;
}

/* ══════════════════════════════════════════
   SECTION 12 — TESTIMONIALS
   ══════════════════════════════════════════ */

.testimonials {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.review-platforms {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}

.review-platform {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--warm-sand);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.review-platform:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.platform-info {
  display: flex;
  flex-direction: column;
}

.platform-rating {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.platform-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

.platform-name {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
}

.testimonial-card-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  background: var(--warm-sand);
  border-radius: var(--radius-2xl);
  position: relative;
}

.testimonial-quote-icon {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--primary-glow);
  margin-bottom: 16px;
  display: block;
}

.testimonial-quote {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.testimonial-info { text-align: left; }

.testimonial-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text-heading);
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-source {
  padding: 4px 12px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-heading);
  transition: all var(--transition-fast);
}

.testimonial-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: var(--radius-full);
}

/* ══════════════════════════════════════════
   SECTION 13 — PHOTO GALLERY
   ══════════════════════════════════════════ */

.gallery {
  padding: var(--section-padding) 0;
  background: var(--light-gray);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

/* ══════════════════════════════════════════
   SECTION 14 — TRAVEL GUIDE / BLOG
   ══════════════════════════════════════════ */

.travel-guide {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.blog-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-content { padding: 24px; }

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-card-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--primary-dark);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════
   SECTION 15 — ABOUT YAWAPEPE
   ══════════════════════════════════════════ */

.about {
  padding: var(--section-padding) 0;
  background: var(--warm-sand);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image { position: relative; }

.about-image-main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-orange);
  animation: float 4s ease-in-out infinite;
}

.about-experience-badge .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  display: block;
}

.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-gray);
}

.about-stat { text-align: center; }

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.about-stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
  display: block;
}

/* ══════════════════════════════════════════
   SECTION 16 — PARTNERS & CERTIFICATIONS
   ══════════════════════════════════════════ */

.partners {
  padding: 80px 0;
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}

.partner-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gray);
  transition: all var(--transition-base);
}

.partner-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--gold-light);
}

.partner-icon {
  margin-bottom: 12px;
}

.partner-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-heading);
}

/* ══════════════════════════════════════════
   SECTION 17 — FINAL CTA
   ══════════════════════════════════════════ */

.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #E55D00 50%, #CC4D00 100%);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   SECTION 18 — PREMIUM FOOTER
   ══════════════════════════════════════════ */

.footer {
  background: var(--text-heading);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand { max-width: 300px; }

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(10);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.footer-contact-item svg {
  color: var(--primary);
  min-width: 16px;
}

.footer-newsletter p {
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-full);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ══════════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════════ */

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  border: 2px solid var(--border-gray);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════ */

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

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .accommodation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px;
  }

  /* Mobile Navigation */
  .mobile-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    z-index: 999;
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    overflow-y: auto;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text-body) !important;
    padding: 14px 20px;
    font-size: 1rem;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 16px;
    text-align: center;
  }

  /* Hero */
  .hero-title { font-size: clamp(2.2rem, 5vw, 3.2rem); }
  .hero-content { max-width: 100%; }

  /* Grids */
  .why-choose-top {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 40px;
  }

  .why-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kili-routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .experiences-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .enquiry-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .enquiry-submit {
    grid-column: span 2;
  }

  .timeline-grid {
    flex-direction: column;
    align-items: center;
  }

  .timeline-step {
    max-width: 400px;
    padding: 24px 0;
  }

  .timeline-connector {
    width: 2px;
    height: 40px;
    margin-top: 0;
  }

  .timeline-connector::after {
    content: '↓';
    right: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(50%);
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-platforms {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --container-padding: 20px;
  }

  .why-benefits-grid {
    grid-template-columns: 1fr;
  }

  .header-inner { padding: 16px 20px; }

  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-description { font-size: 1rem; }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .enquiry-submit { grid-column: 1; }
  .enquiry-card { padding: 32px 24px; }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .dest-card-lg { grid-column: 1; }

  .kili-routes-grid {
    grid-template-columns: 1fr;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .accommodation-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item-tall { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 1; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: 1; }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .review-platforms {
    flex-direction: column;
    align-items: center;
  }

  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .why-experience-badge { left: 10px; bottom: 20px; }
  .why-travelers-badge { right: 10px; top: 20px; }

  .testimonial-card { padding: 0 16px; }
  .testimonial-card-inner { padding: 32px 20px; }

  .back-to-top { right: 20px; bottom: 100px; }
  .whatsapp-float { right: 20px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  .hero-label { font-size: 0.7rem; letter-spacing: 3px; }

  .section-header { margin-bottom: 40px; }

  .enquiry-header h3 { font-size: 1.4rem; }

  .kili-route-stats { gap: 12px; }

  .testimonial-quote { font-size: 0.95rem; }

  .package-card-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .package-card-footer .btn { width: 100%; }
}

/* ============================================================
   YAWAPEPE SAFARIS — Inner Pages Helper Styles
   ============================================================ */

/* ── Inner Page Hero ── */
.inner-hero {
  min-height: 50vh !important;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

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

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

.inner-hero .hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

.inner-hero .container {
  position: relative;
  z-index: 3;
}

/* ── Detail Page Split Layout ── */
.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 80px 0;
}

.detail-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-box {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--border-gray);
}

.sidebar-box h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary-subtle);
  padding-bottom: 10px;
  color: var(--text-heading);
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-list-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.sidebar-list-item span {
  color: var(--text-secondary);
}

.sidebar-list-item strong {
  color: var(--text-heading);
}

@media (max-width: 992px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
}

/* ── Interactive Timeline Accordion (Itinerary) ── */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: all var(--transition-base);
}

.accordion-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--off-white);
  transition: background var(--transition-fast);
}

.accordion-item.active .accordion-header {
  background: var(--warm-sand);
}

.accordion-title-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
}

.accordion-day-badge {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.accordion-title-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.accordion-icon {
  color: var(--primary);
  transition: transform var(--transition-base);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base) ease-out, padding var(--transition-fast);
  padding: 0 24px;
  color: var(--text-body);
  font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  padding: 24px;
}

/* ── Technical Comparison Table ── */
.compare-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gray);
  background: var(--white);
  margin: 40px 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th,
.compare-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-gray);
  font-size: 0.95rem;
}

.compare-table th {
  background: var(--warm-sand);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-heading);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: var(--warm-bg);
}

.compare-route-link {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.compare-route-link:hover {
  color: var(--primary-dark);
}

/* ── Checklist Grids ── */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.6;
}

.checklist-icon {
  color: #27ae60;
  display: inline-flex;
  margin-top: 4px;
}

.checklist-icon.cross {
  color: #e74c3c;
}

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

/* ── Filter Tabs ── */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--warm-sand);
  color: var(--text-secondary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-gray);
}

.filter-tab.active,
.filter-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}

/* ── Multi-Step Quotation Wizard ── */
.quote-wizard {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 48px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-gray);
  z-index: 1;
}

.wizard-step-node {
  position: relative;
  z-index: 2;
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.wizard-step-node.active {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.wizard-step-node.completed {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.wizard-step-label {
  position: absolute;
  top: 48px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  white-space: nowrap;
  transform: translateX(0);
}

.wizard-step-node.active .wizard-step-label {
  color: var(--primary);
}

.wizard-pane {
  display: none;
}

.wizard-pane.active {
  display: block;
  animation: paneFadeIn 0.4s ease-out;
}

@keyframes paneFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-grid-full {
  width: 100%;
  margin-bottom: 24px;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-gray);
}

.quote-success-state {
  text-align: center;
  padding: 40px 0;
}

.success-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-orange);
}

@media (max-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .quote-wizard {
    padding: 32px 20px;
  }
  .wizard-step-label {
    display: none; /* Hide labels on mobile to prevent overlapping */
  }
}

/* ══════════════════════════════════════════
   SECTION 1.5 — MEGA MENU STYLING
   ══════════════════════════════════════════ */

.nav-dropdown {
  display: inline-block;
}

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

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform var(--transition-fast);
  margin-top: -3px;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

/* Mega Menu Dropdown Container */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(15, 23, 18, 0.97); /* Premium Deep Forest / Charcoal Glassmorphism */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glass);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  z-index: 999;
}

/* Transparent helper to bridge gap during hover */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: transparent;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px var(--container-padding);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
}

.mega-menu-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  align-content: start;
}

.mega-menu-grid.mega-menu-3col .mega-menu-links {
  grid-template-columns: repeat(3, 1fr);
}

/* Featured Teaser Card */
.mega-menu-featured {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.mega-menu-featured:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.featured-card-img {
  position: relative;
  height: 150px;
  overflow: hidden;
}

.featured-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-featured:hover .featured-card-img img {
  transform: scale(1.08);
}

.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 18, 0.9), transparent);
}

.featured-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.featured-card-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.featured-card-content p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.featured-card-content a {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  transition: color var(--transition-fast);
}

.featured-card-content a:hover {
  color: var(--primary-light);
}

/* Link items */
.mega-menu-link-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.mega-menu-link-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.link-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.link-title {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition-fast);
}

.mega-menu-link-item:hover .link-title {
  color: var(--primary);
}

.link-subtext {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* Route & Hike Success Badges */
.badge {
  display: inline-block;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-medium {
  background: rgba(255, 107, 0, 0.12);
  color: var(--primary-light);
  border: 1px solid rgba(255, 107, 0, 0.25);
}

.badge-high {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp);
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.badge-hard {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.badge-elite {
  background: rgba(234, 67, 53, 0.12);
  color: #EA4335;
  border: 1px solid rgba(234, 67, 53, 0.25);
}

/* Responsive Mobile Accordion Rules */
@media (max-width: 992px) {
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-toggle {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .nav-dropdown-toggle::after {
    content: '+';
    border: none;
    width: auto;
    height: auto;
    transform: none;
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 400;
  }
  
  .nav-dropdown.active .nav-dropdown-toggle::after {
    content: '−';
    transform: none;
    margin-top: 0;
  }
  
  .mega-menu {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .mega-menu.open {
    max-height: 1500px; /* high enough to avoid clipping */
  }
  
  .mega-menu-inner {
    padding: 12px 8px;
  }
  
  .mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .mega-menu-links {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }
  
  .mega-menu-link-item {
    padding: 8px 10px;
    border: none;
  }
  
  .mega-menu-link-item:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: none;
  }
  
  .link-title {
    color: var(--text-heading);
    font-size: 0.95rem;
  }
  
  .mega-menu-link-item:hover .link-title {
    color: var(--primary);
  }
  
  .link-subtext {
    color: var(--text-secondary);
    font-size: 0.8rem;
  }
  
  .mega-menu-featured {
    order: 2; /* push teaser cards to the bottom of the section on mobile */
    background: var(--white);
    border: 1px solid var(--border-gray);
  }
  
  .featured-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  }
  
  .featured-card-content h4 {
    color: var(--text-heading);
  }
  
  .featured-card-content p {
    color: var(--text-secondary);
  }
  
  .badge-medium {
    background: rgba(255, 107, 0, 0.08);
    color: var(--primary);
  }
  .badge-high {
    background: rgba(37, 211, 102, 0.08);
    color: #20bd5a;
  }
  .badge-hard {
    background: rgba(212, 175, 55, 0.08);
    color: var(--gold);
  }
  .badge-elite {
    background: rgba(234, 67, 53, 0.08);
    color: #EA4335;
  }
}

/* Desktop Simple Dropdown (non-fullwidth) */
@media (min-width: 993px) {
  .nav-dropdown-simple {
    position: relative;
  }
  .nav-dropdown-simple .mega-menu {
    left: 0;
    right: auto;
    width: 260px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-dropdown-simple .mega-menu-inner {
    padding: 20px;
  }
  .nav-dropdown-simple .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


