/* ============================================
   POLLITOS DEL INFIERNO — STYLES
   Color Palette:
   - Dark Charcoal: #1A1A2E
   - Burnt Orange:  #E85D04
   - Electric Yellow:#FFBA08
   - White:         #FFFFFF
   - Deep Sky Blue: #0096C7
   ============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ----- ACCESSIBILITY UTILITIES ----- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.sr-only-focusable:focus {
  position: fixed; top: 8px; left: 8px; z-index: 99999;
  width: auto; height: auto; padding: 12px 24px;
  margin: 0; overflow: visible; clip: auto;
  background: var(--orange); color: #fff; border-radius: 8px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* Focus-visible for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

:root {
  --bg: #1A1A2E;
  --bg2: #16162a;
  --bg3: #111127;
  --text: #FFFFFF;
  --text-muted: #b0b0c8;
  --orange: #E85D04;
  --yellow: #FFBA08;
  --blue: #0096C7;
  --card-bg: rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.08);
  --nav-bg: rgba(26,26,46,0.92);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

[data-theme="light"] {
  --bg: #f5f5fa;
  --bg2: #eeeef5;
  --bg3: #e8e8f0;
  --text: #1A1A2E;
  --text-muted: #555;
  --card-bg: rgba(0,0,0,0.03);
  --card-border: rgba(0,0,0,0.08);
  --nav-bg: rgba(245,245,250,0.95);
  --shadow: 0 8px 32px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ----- COOKIE BANNER ----- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg2); color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px; z-index: 10000;
  border-top: 2px solid var(--orange);
  transform: translateY(0); transition: transform var(--transition);
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-buttons { display: flex; gap: 12px; }

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-transform: uppercase;
  letter-spacing: 1px; font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff; border-color: transparent;
}
.btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,4,0.4);
}
.btn-outline {
  background: transparent; border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover {
  background: var(--text); color: var(--bg);
}
.btn-outline-orange { border-color: var(--orange); color: var(--orange); }
.btn-outline-yellow { border-color: var(--yellow); color: var(--yellow); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.icon-btn {
  background: transparent; border: 1px solid var(--card-border);
  color: var(--text); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition); font-size: 1rem;
}
.icon-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.lang-label { font-weight: 700; font-size: 0.8rem; }

/* ----- NAVBAR ----- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  padding: 14px 0; background: transparent; transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(26,26,46,0.92); backdrop-filter: blur(24px) saturate(1.8);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4); padding: 6px 0;
  border-bottom: 1px solid rgba(232,93,4,0.15);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(232,93,4,0.4);
  box-shadow: 0 2px 12px rgba(232,93,4,0.3);
  transition: all var(--transition);
}
.navbar.scrolled .logo-img { width: 36px; height: 36px; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  letter-spacing: 3px; text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, var(--yellow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; gap: 24px;
}
.nav-links a {
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; position: relative; padding: 6px 0;
  transition: color var(--transition); color: rgba(255,255,255,0.75);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--yellow));
  transition: all var(--transition); transform: translateX(-50%);
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 6px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----- HERO ----- */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap iframe {
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-video-wrap video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.5) 0%, rgba(26,26,46,0.9) 100%);
  z-index: 0;
}
.hero-content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 24px; max-width: 900px;
}

/* ----- 15th ANNIVERSARY HERO BRAND ----- */
.hero-brand {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 24px;
}
.hero-logo-wrapper {
  position: relative; margin-bottom: 12px;
}
.hero-logo-glow {
  position: absolute; inset: -50px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,4,0.25) 0%, rgba(255,186,8,0.08) 50%, transparent 70%);
  animation: logo-pulse 4s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes logo-pulse {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}
.hero-logo-img {
  width: 240px; height: 240px; position: relative; z-index: 1;
  filter: drop-shadow(0 12px 48px rgba(232,93,4,0.5));
  animation: logo-float 6s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-brand-name {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 10px; text-transform: uppercase; color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

/* ----- 15th ANNIVERSARY CELEBRATION ----- */
.anniversary-celebration {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 8px; margin-bottom: 12px;
}
.anniversary-big-number {
  position: relative; line-height: 0.85; display: flex; align-items: flex-start;
}
.anniversary-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 22vw, 16rem);
  letter-spacing: 6px;
  color: #FFBA08;
  text-shadow:
    0 0 40px rgba(255,186,8,0.5),
    0 0 80px rgba(232,93,4,0.3),
    0 4px 8px rgba(0,0,0,0.4),
    2px 2px 0 #E85D04,
    4px 4px 0 #C62828;
  animation: anniversary-glow 3s ease-in-out infinite;
}
.anniversary-th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #FFBA08;
  text-shadow: 0 0 20px rgba(255,186,8,0.4), 0 2px 4px rgba(0,0,0,0.4);
  margin-top: 0.15em;
  letter-spacing: 2px;
}
@keyframes anniversary-glow {
  0%, 100% { text-shadow: 0 0 40px rgba(255,186,8,0.5), 0 0 80px rgba(232,93,4,0.3), 0 4px 8px rgba(0,0,0,0.4), 2px 2px 0 #E85D04, 4px 4px 0 #C62828; }
  50% { text-shadow: 0 0 60px rgba(255,186,8,0.8), 0 0 120px rgba(232,93,4,0.5), 0 4px 8px rgba(0,0,0,0.4), 2px 2px 0 #E85D04, 4px 4px 0 #C62828; }
}
.anniversary-meta {
  display: flex; align-items: center; gap: 16px;
  margin-top: -8px;
}
.anniversary-years-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 12px;
  color: var(--yellow);
  text-transform: uppercase;
}
.anniversary-divider {
  width: 3px; height: 28px;
  background: linear-gradient(180deg, transparent, var(--yellow), transparent);
  border-radius: 2px;
}
.anniversary-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  letter-spacing: 6px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.anniversary-era {
  display: flex; align-items: center; gap: 20px;
  margin-top: 12px;
}
.anniversary-era-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 8px;
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(255,186,8,0.4);
}
.anniversary-dash {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 4px; text-transform: uppercase; line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--yellow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem); color: var(--text-muted);
  margin-bottom: 32px; font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--text-muted); font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ----- STATS BAR ----- */
.stats-bar {
  background: var(--bg2); padding: 56px 0;
  border-top: 2px solid rgba(232,93,4,0.15);
  border-bottom: 2px solid rgba(232,93,4,0.15);
  position: relative;
}
.stats-bar::before {
  content: '15TH ANNIVERSARY \u2022 2011\u20142026 \u2022 15TH ANNIVERSARY \u2022 2011\u20142026 \u2022';
  position: absolute; top: 0; left: 0; right: 0;
  font-family: 'Bebas Neue', sans-serif; font-size: 0.7rem;
  letter-spacing: 6px; color: var(--orange); opacity: 0.2;
  text-align: center; padding: 6px 0;
  overflow: hidden; white-space: nowrap;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
.stat { position: relative; }
.stat::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--card-border);
}
.stat:last-child::after { display: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: inline;
}
.stat-suffix {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block; font-size: 0.85rem; color: var(--text-muted);
  margin-top: 4px; text-transform: uppercase; letter-spacing: 2px;
  font-weight: 600;
}

/* ----- SECTIONS ----- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-muted); max-width: 700px;
  margin: 0 auto; font-weight: 300;
}

/* ----- DECORATED SUBTITLE ----- */
.subtitle-decorated {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 48px;
  padding: 24px 32px;
  position: relative;
  background: linear-gradient(135deg, rgba(232,93,4,0.04), rgba(255,186,8,0.03));
  border: 1px solid rgba(232,93,4,0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.subtitle-decorated .section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  letter-spacing: 0.3px;
}
.subtitle-accent-line {
  width: 60px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  border-radius: 3px;
}
.subtitle-accent-line:first-child { margin-bottom: 16px; }
.subtitle-accent-line:last-child { margin-top: 16px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff; padding: 6px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}

/* ----- ADVENTURE SUBTITLE BLOCK ----- */
.adventure-subtitle-block {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 48px; flex-wrap: wrap;
}
.adventure-accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 6px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.adventure-accent.adventure-highlight {
  color: var(--yellow);
  text-shadow: 0 0 20px rgba(255,186,8,0.3);
}
.adventure-dot {
  color: var(--orange); font-size: 1.4rem;
  text-shadow: 0 0 10px rgba(232,93,4,0.4);
}

/* ----- ADVENTURE CARDS ----- */
.adventure-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 1000px; margin: 0 auto;
}
.adventure-card {
  position: relative; height: 500px; border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: flex-end;
  cursor: pointer; transition: transform var(--transition);
}
.adventure-card:hover { transform: translateY(-8px); }
.adventure-card-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; transition: transform 0.6s ease;
}
.adventure-card:hover .adventure-card-bg { transform: scale(1.08); }
.adventure-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
}
.adventure-card-content {
  position: relative; z-index: 1; padding: 40px; color: #fff;
}
.adventure-icon { font-size: 2.5rem; color: var(--yellow); margin-bottom: 12px; }
.adventure-card-content h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.adventure-card-content p { color: rgba(255,255,255,0.8); margin-bottom: 16px; font-size: 0.95rem; }

/* ----- SKYDIVE & OFFROAD SECTIONS ----- */
.skydive-section { background: var(--bg); padding: 0; }
.skydive-section .container { padding-top: 80px; padding-bottom: 80px; }
.offroad-section { background: var(--bg2); }

/* Skydive Hero */
.skydive-hero {
  position: relative; height: 70vh; min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.skydive-hero-video {
  position: absolute; inset: 0;
}
.skydive-hero-video iframe {
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.skydive-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.85) 100%);
}
.skydive-hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px;
}
.skydive-hero-title { color: #fff; }

/* Off-Road Hero Content */
.offroad-hero-content { max-width: 800px; }
.offroad-hero-routes {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 20px 0 24px; flex-wrap: wrap;
}
.offroad-route-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px;
  background: rgba(232,93,4,0.15);
  border: 1px solid rgba(232,93,4,0.4);
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.offroad-route-badge:hover {
  background: rgba(232,93,4,0.3);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.offroad-route-badge i {
  color: var(--yellow); font-size: 1rem;
}
.offroad-route-badge span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 3px;
  text-transform: uppercase; color: #fff;
}
.offroad-hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 8px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

/* Skydive Overview */
.skydive-overview { text-align: center; margin-bottom: 80px; }
.skydive-overview .section-subtitle { max-width: 800px; }

/* Packages */
.skydive-packages { margin-bottom: 80px; }
.skydive-packages .section-title { text-align: center; margin-bottom: 40px; }
.packages-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.package-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 24px; text-align: center;
  position: relative; transition: transform var(--transition), box-shadow var(--transition);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange); }
.package-badge {
  position: absolute; top: -10px; right: 16px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff; padding: 4px 14px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1px;
}
.package-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.6rem; color: #fff;
}
.package-card h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  letter-spacing: 1px; margin-bottom: 12px;
}
.package-details {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px;
}
.package-details span {
  font-size: 0.82rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px; justify-content: center;
}
.package-details i { color: var(--orange); font-size: 0.75rem; width: 16px; }
.package-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.5; }

/* Jump Timeline */
.jump-timeline { margin-bottom: 80px; }
.jump-timeline .section-title { text-align: center; margin-bottom: 40px; }
.timeline-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.timeline-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  min-width: 80px;
}
.timeline-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--card-bg); border: 2px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange);
  transition: all var(--transition);
}
.timeline-step:hover .timeline-icon {
  background: var(--orange); border-color: var(--orange); color: #fff;
  transform: scale(1.1);
}
.highlight-step .timeline-icon {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-color: var(--yellow); color: #fff;
}
.timeline-step h5 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.timeline-arrow { color: var(--card-border); font-size: 0.8rem; }

/* Safety */
.skydive-safety { margin-bottom: 80px; }
.skydive-safety .section-title { text-align: center; margin-bottom: 40px; }
.safety-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.safety-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px; text-align: center;
  transition: transform var(--transition);
}
.safety-item:hover { transform: translateY(-4px); }
.safety-item i { font-size: 2rem; color: var(--blue); margin-bottom: 16px; }
.safety-item h5 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 1px; margin-bottom: 8px; }
.safety-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* Gallery Section */
.skydive-gallery-section { margin-bottom: 80px; }
.skydive-gallery-section .section-title { text-align: center; margin-bottom: 40px; }

/* FAQ Accordion */
.skydive-faq { margin-bottom: 80px; max-width: 800px; margin-left: auto; margin-right: auto; }
.skydive-faq .section-title { text-align: center; margin-bottom: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 24px; background: none; border: none;
  color: var(--text); font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question i {
  transition: transform var(--transition); font-size: 0.8rem;
  color: var(--text-muted);
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Skydive CTA */
.skydive-cta {
  background: linear-gradient(135deg, var(--orange), rgba(255,186,8,0.8));
  border-radius: var(--radius); padding: 48px 32px; text-align: center;
  margin-bottom: 60px;
}
.skydive-cta h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  letter-spacing: 2px; color: #fff; margin-bottom: 20px;
}
.skydive-cta .btn-primary {
  background: #fff; color: var(--orange); border-color: #fff;
}
.skydive-cta .btn-primary:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.skydive-cta-text { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.skydive-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.skydive-cta-outline { border-color: #fff; color: #fff; }
.offroad-cta-margin { margin-top: 48px; }

/* Photo Grid — Masonry Columns */
.masonry-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 60px;
}
.masonry-col { display: flex; flex-direction: column; gap: 12px; }
.photo-item {
  position: relative; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
}
.photo-item img {
  width: 100%; height: auto; display: block; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.08); }
.photo-overlay {
  position: absolute; inset: 0; background: rgba(232,93,4,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  font-size: 1.5rem; color: #fff;
}
.photo-item:hover .photo-overlay { opacity: 1; }

/* Instagram Row */
.instagram-row { margin-top: 60px; }
.instagram-row h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
  text-align: center;
}
.insta-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px; justify-items: center;
}
.insta-grid .instagram-media {
  min-width: 300px !important; max-width: 400px !important;
  margin: 0 !important;
}

/* ----- INSTAGRAM REEL GRID ----- */
.insta-subtitle {
  text-align: center; color: var(--text-muted); font-size: 1rem;
  margin-bottom: 32px;
}
.insta-reel-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; justify-items: center; margin-bottom: 32px;
}
.insta-reel-card {
  width: 100%; max-width: 400px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.insta-reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(225,48,108,0.2);
}
.insta-reel-card .instagram-media {
  min-width: 100% !important; max-width: 100% !important;
  margin: 0 !important; border: none !important;
}
.btn-outline-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid #e1306c; color: #e1306c;
  background: transparent; padding: 12px 28px;
  border-radius: 50px; font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-instagram:hover {
  background: #e1306c; color: #fff;
  box-shadow: 0 8px 24px rgba(225,48,108,0.3);
}
.instagram-row { text-align: center; margin-top: 48px; }

/* ----- VIDEO SHOWCASE ----- */
.video-showcase { margin-bottom: 60px; }
.video-showcase h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 32px;
  text-align: center;
}
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.video-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 16/9; }
.video-thumb iframe { width: 100%; height: 100%; }
.video-info { padding: 16px; }
.video-info h4 { font-size: 1rem; margin-bottom: 4px; }
.video-views { font-size: 0.85rem; color: var(--text-muted); }

/* ----- GALLERY / MEDIA HUB ----- */
.gallery-section { background: var(--bg); }
.media-hub-links {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.media-link {
  display: flex; align-items: center; gap: 16px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  padding: 20px 32px; border-radius: var(--radius);
  transition: all var(--transition); min-width: 280px;
}
.media-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.media-link i:first-child { font-size: 2rem; }
.youtube-link:hover { border-color: #ff0000; }
.youtube-link i:first-child { color: #ff0000; }
.instagram-link:hover { border-color: #e1306c; }
.instagram-link i:first-child { color: #e1306c; }
.media-link div { text-align: left; }
.media-link div strong { display: block; font-size: 1.1rem; }
.media-link div span { font-size: 0.85rem; color: var(--text-muted); }
.media-link i:last-child { margin-left: auto; color: var(--text-muted); font-size: 0.85rem; }
.yt-channel-embed { max-width: 800px; margin: 0 auto; }
.yt-channel-embed iframe { width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); }

/* ----- ABOUT ----- */
.about-section { background: var(--bg2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 60px; align-items: center;
}
.about-image img {
  border-radius: var(--radius); width: 100%;
  box-shadow: var(--shadow);
}
.about-text .section-title { text-align: left; }
.about-text p { margin-bottom: 16px; color: var(--text-muted); }
.about-values {
  display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap;
}
.value-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  padding: 12px 20px; border-radius: 50px;
}
.value-item i { color: var(--orange); }

/* ----- CONTACT ----- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px; max-width: 900px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.contact-item {
  display: flex; align-items: center; gap: 12px; font-size: 1.05rem;
}
.contact-item i { font-size: 1.3rem; color: var(--orange); width: 24px; text-align: center; }
.contact-item a:hover { color: var(--orange); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--card-bg); border: 1px solid var(--card-border);
  padding: 14px 20px; border-radius: var(--radius-sm);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 1rem;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--orange);
}
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--bg); color: var(--text); }

/* ----- FOOTER ----- */
.footer { background: var(--bg3); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; align-items: start; padding-bottom: 40px;
  border-bottom: 1px solid var(--card-border);
}
.footer-logo { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 16px; justify-content: flex-end; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card-bg); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 0.85rem; color: var(--text-muted); }

/* ----- WHATSAPP WIDGET ----- */
.whatsapp-widget {
  position: fixed; bottom: 84px; right: 24px; z-index: 8000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-widget:hover { transform: scale(1.1); }

/* ----- SCROLL TO TOP ----- */
.scroll-top-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: #fff; border: none;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,93,4,0.4);
  opacity: 0; visibility: hidden; transform: translateY(20px);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
.scroll-top-btn.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.scroll-top-btn:hover {
  background: #ff6d1a; transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232,93,4,0.5);
}

/* ----- PRELOADER ----- */
.preloader {
  position: fixed; inset: 0; z-index: 999999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-spinner {
  width: 48px; height: 48px;
  border: 3px solid rgba(232,93,4,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader-text {
  margin-top: 16px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 3px; color: var(--text-muted);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ----- PROGRESS BAR ----- */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 99999;
  background: linear-gradient(90deg, var(--orange), var(--yellow));
  width: 0%; transition: width 0.1s linear;
}

/* ----- LIGHTBOX ----- */
.lightbox {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.95); display: none;
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-sm); }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute; background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer; padding: 16px;
  transition: color var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--orange); }
.lightbox-close { top: 16px; right: 24px; font-size: 2.5rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .adventure-cards { grid-template-columns: 1fr; max-width: 500px; }
  .adventure-card { height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text .section-title { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .event-card { flex-direction: column; align-items: flex-start; }
  .event-card .btn { align-self: flex-start; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--nav-bg);
    backdrop-filter: blur(20px); padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat::after { display: none; }
  .video-grid { grid-template-columns: 1fr; }
  .masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.2rem, 8vw, 4rem); }
  .hero-logo-img { width: 180px; height: 180px; }
  .hero-brand-name { font-size: 1.6rem; letter-spacing: 5px; }
  .anniversary-meta { gap: 12px; }
  .anniversary-years-label { letter-spacing: 8px; }
  .anniversary-tagline { letter-spacing: 4px; }
  .anniversary-dash { width: 40px; }
  .gear-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .map-route-item { flex: 1 1 100%; }
  .merch-preview { flex-direction: column; align-items: center; gap: 24px; }
  .timeline-strip-item { flex: 0 0 160px; }
  .timeline-strip-item img { width: 160px; height: 160px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .masonry-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .masonry-col { gap: 8px; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .cookie-banner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-logo-img { width: 140px; height: 140px; }
  .hero-brand-name { font-size: 1.3rem; letter-spacing: 4px; }
  .anniversary-meta { flex-direction: column; gap: 4px; margin-top: -4px; }
  .anniversary-divider { width: 28px; height: 2px; }
  .anniversary-years-label { letter-spacing: 6px; }
  .anniversary-tagline { letter-spacing: 3px; font-size: 0.8rem; }
  .anniversary-era-text { letter-spacing: 5px; }
  .anniversary-dash { width: 24px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .timeline-steps { flex-direction: column; gap: 32px; }
  .timeline-step::after { display: none; }
  .skydive-hero { min-height: 50vh; }
  .skydive-hero h2 { font-size: 2rem; }
  .skydive-cta-banner h3 { font-size: 1.5rem; }
  .faq-question { font-size: 1rem; padding: 16px; }
}

/* ----- PARALLAX ----- */
.parallax-divider {
  height: 300px; background-attachment: fixed; background-size: cover;
  background-position: center; position: relative;
}
.parallax-bg {
  background-attachment: fixed; background-size: cover;
  background-position: center; position: relative;
}

/* ----- BLOG / STORIES ----- */
.blog-section { background: var(--bg2); }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.blog-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-start;
  justify-content: flex-end; padding: 12px;
}
.blog-tag {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #fff; padding: 4px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-body { padding: 24px; }
.blog-body time {
  font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-body h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  letter-spacing: 1px; margin: 8px 0 12px; line-height: 1.3;
}
.blog-body p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 600; font-size: 0.9rem;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 12px; }

/* ----- EVENTS / TRIPS ----- */
.events-section { background: var(--bg); }
.events-timeline { display: flex; flex-direction: column; gap: 24px; max-width: 900px; margin: 0 auto; }
.event-card {
  display: flex; align-items: center; gap: 24px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateX(8px); box-shadow: var(--shadow); }
.event-date {
  text-align: center; min-width: 80px; padding: 16px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: var(--radius-sm); color: #fff;
}
.event-month { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.event-day { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; line-height: 1; }
.event-year { display: block; font-size: 0.7rem; opacity: 0.8; }
.event-info { flex: 1; }
.event-type {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 4px;
}
.skydive-type { color: var(--blue); }
.offroad-type { color: var(--orange); }
.event-info h4 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 1px; margin-bottom: 4px; }
.event-info p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.event-spots { font-size: 0.85rem; color: var(--yellow); font-weight: 600; }

/* ----- BOOKING CTA ----- */
.booking-section {
  min-height: 450px; display: flex; align-items: center;
  justify-content: center; text-align: center;
}
.booking-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(232,93,4,0.5) 100%);
}
.booking-content { position: relative; z-index: 1; }
.booking-content .section-title { color: #fff; }
.booking-content .section-subtitle { color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.booking-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.booking-cta .btn-outline { border-color: #fff; color: #fff; }
.booking-cta .btn-outline:hover { background: #fff; color: var(--bg); }

/* ----- SOUND TOGGLE ----- */
#sound-toggle.playing i { color: var(--yellow); }

/* ----- PHOTO TIMELINE STRIP ----- */
.timeline-strip-section { background: var(--bg2); overflow: hidden; }
.timeline-strip { position: relative; padding-bottom: 24px; }
.timeline-strip::before,
.timeline-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px;
  z-index: 2; pointer-events: none;
}
.timeline-strip::before {
  left: 0; background: linear-gradient(to right, var(--bg2), transparent);
}
.timeline-strip::after {
  right: 0; background: linear-gradient(to left, var(--bg2), transparent);
}
.timeline-strip-track {
  display: flex; gap: 32px; overflow-x: auto;
  padding: 0 24px 16px; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--orange) transparent;
}
.timeline-strip-track::-webkit-scrollbar { height: 4px; }
.timeline-strip-track::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }
.timeline-strip-item {
  flex: 0 0 200px; scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
}
.timeline-strip-year {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  color: var(--orange); letter-spacing: 2px;
}
.timeline-strip-item img {
  width: 200px; height: 200px; object-fit: cover;
  border-radius: var(--radius); border: 2px solid var(--card-border);
  transition: all var(--transition);
}
.timeline-strip-item:hover img {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(232,93,4,0.3);
  transform: scale(1.05);
}
.timeline-strip-caption {
  font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1px; text-align: center;
}
.timeline-strip-line {
  position: absolute; bottom: 0; left: 24px; right: 24px;
  height: 2px; background: linear-gradient(90deg, transparent, var(--orange), var(--yellow), var(--orange), transparent);
}

/* ----- GEAR & SETUP ----- */
.gear-section { background: var(--bg); }
.gear-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.gear-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gear-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gear-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; margin-bottom: 16px;
}
.gear-card h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  letter-spacing: 1px; margin-bottom: 16px;
}
.gear-list { display: flex; flex-direction: column; gap: 10px; }
.gear-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.4;
}
.gear-list li i { color: var(--orange); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

/* ----- ADVENTURE MAP ----- */
.adventure-map-section { background: var(--bg2); }

/* ----- LEAFLET MAP ----- */
.leaflet-map-container {
  width: 100%;
  height: 600px;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  overflow: hidden;
}
@media (max-width: 768px) {
  .leaflet-map-container { height: 400px; }
}
.leaflet-custom-pin { background: none !important; border: none !important; }
.leaflet-popup-content-wrapper {
  background: rgba(26,26,46,0.95) !important;
  color: #fff !important;
  border-radius: 12px !important;
  border: 1px solid rgba(232,93,4,0.3) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
  font-family: 'Inter', sans-serif !important;
}
.leaflet-popup-content { font-size: 13px !important; line-height: 1.6 !important; margin: 12px 16px !important; }
.leaflet-popup-tip { background: rgba(26,26,46,0.95) !important; }
.leaflet-popup-close-button { color: rgba(255,255,255,0.5) !important; font-size: 18px !important; }
.leaflet-popup-close-button:hover { color: #E85D04 !important; }
.leaflet-control-zoom a {
  background: rgba(26,26,46,0.9) !important;
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.leaflet-control-zoom a:hover {
  background: rgba(232,93,4,0.9) !important;
  color: #fff !important;
}
@keyframes map-pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(2.2); opacity: 0; }
}

/* ----- MERCH TEASER ----- */
.merch-section { background: var(--bg3); }
.merch-content { text-align: center; max-width: 700px; margin: 0 auto; }
.merch-badge {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  box-shadow: 0 8px 32px rgba(232,93,4,0.3);
}
.merch-preview {
  display: flex; justify-content: center; gap: 40px;
  margin: 40px 0;
}
.merch-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.merch-item-icon {
  width: 80px; height: 80px; border-radius: var(--radius);
  background: var(--card-bg); border: 2px dashed var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--text-muted);
  transition: all var(--transition);
}
.merch-item:hover .merch-item-icon {
  border-color: var(--yellow); color: var(--yellow);
  transform: scale(1.08);
}
.merch-item span {
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted);
}

/* ----- GSAP REVEAL ----- */
.gsap-reveal { opacity: 0; transform: translateY(40px); }
