/* =====================================================
   BUNGEE RISHIKESH — MAIN STYLESHEET
   Font: Inter (Google Fonts)
   Design: Dark Adventure Theme with Orange Accents
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&family=Montserrat:wght@400;700;900&display=swap');

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

:root {
  --orange:     #FF6B00;
  --orange-lt:  #FF8C3A;
  --orange-dk:  #CC5500;
  --teal:       #00C9A7;
  --teal-dk:    #00997E;
  --purple:     #7C3AED;
  --bg-dark:    #0A0A0F;
  --bg-card:    #111118;
  --bg-card2:   #16161F;
  --border:     rgba(255,255,255,0.08);
  --text:       #F0F0F5;
  --text-muted: #9090A8;
  --white:      #ffffff;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
  --glow-o:     0 0 40px rgba(255,107,0,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* =====================================================
   NAVIGATION
   ===================================================== */


/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,0,0.18) 0%, transparent 70%),
    linear-gradient(180deg, #0A0A0F 0%, #0D0D15 100%);
}

/* Animated particle grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,107,0,0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift { from { transform: translateY(0); } to { transform: translateY(50px); } }

.hero-rope {
  position: absolute; left: 50%; top: 0;
  width: 3px; height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,107,0,0.6) 100%);
  transform: translateX(-50%);
  animation: ropeSwing 4s ease-in-out infinite;
  transform-origin: top center;
}
@keyframes ropeSwing {
  0%, 100% { transform: translateX(-50%) rotate(-2deg); }
  50%       { transform: translateX(-50%) rotate(2deg); }
}

.hero-jumper {
  position: absolute;
  left: 50%; top: 44%;
  font-size: 4rem;
  transform: translate(-50%, -50%);
  animation: ropeSwing 4s ease-in-out infinite, bounceJumper 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,107,0,0.5));
}
@keyframes bounceJumper {
  0%, 100% { top: 44%; }
  50%       { top: 46%; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  margin-top: 40px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; pointer-events: none;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.15; filter: blur(2px) grayscale(0.5);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--orange-lt);
  font-size: 0.8rem; font-weight: 600;
  padding: 8px 20px; border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge span { display: inline-block; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 14vw, 10rem);
  line-height: 0.9;
  letter-spacing: 4px;
  color: var(--white);
  text-shadow: 0 0 80px rgba(255,107,0,0.3);
}
.hero-title .highlight { color: var(--orange); display: block; }
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  margin: 20px auto 40px;
  max-width: 560px;
  font-weight: 400;
}
.hero-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255,107,0,0.4);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(255,107,0,0.6); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #1AA34A);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { box-shadow: 0 12px 40px rgba(37,211,102,0.5); }

.btn-sm { padding: 12px 24px; font-size: 0.875rem; }

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 1px;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 80px 24px; scroll-margin-top: 130px; }
#packages { scroll-margin-top: 160px; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
}
.section-desc {
  max-width: 560px; margin: 16px auto 0;
  color: var(--text-muted); font-size: 1rem;
}
.container { max-width: 1200px; margin: 0 auto; }

/* =====================================================
   EXPERIENCE SECTION
   ===================================================== */
.experience-bg { background: var(--bg-card); }

.exp-grid {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

.exp-visual {
  position: relative;
  padding: 40px;
}
.exp-cliff {
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.02));
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.exp-cliff::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,107,0,0.12) 0%, transparent 60%);
}
.exp-height-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem; color: var(--orange);
  line-height: 1;
  text-shadow: var(--glow-o);
}
.exp-height-sub {
  font-size: 1rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase;
}
.exp-icon-row {
  display: flex; justify-content: center;
  gap: 20px; margin-top: 32px;
}
.exp-icon-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.exp-icon { font-size: 2rem; }
.exp-icon-label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.exp-text { text-align: center; }
.exp-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px; line-height: 1;
  margin-bottom: 24px;
}

.exp-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.exp-bullets { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.exp-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem;
}
.exp-bullets li::before {
  content: '✓';
  display: inline-flex;
  width: 22px; height: 22px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 50%;
  color: var(--orange); font-size: 0.75rem;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Jump Styles Grid */
.jump-styles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
.jump-style-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px; text-align: center;
  transition: var(--transition);
}
.jump-style-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.js-icon { font-size: 1.8rem; margin-bottom: 8px; }
.js-content h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; color: var(--white); }
.js-content p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; margin: 0; }

/* Info Grid (Highlights & Eligibility) */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 24px;
}
.info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.info-card h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--orange-lt);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
.info-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.info-card li { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 8px; }

/* =====================================================
   PACKAGES / PRICING
   ===================================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}
.pkg-card.orange::before { background: linear-gradient(90deg, var(--orange), var(--orange-lt)); }
.pkg-card.teal::before   { background: linear-gradient(90deg, var(--teal), #00FFCC); }
.pkg-card.purple::before { background: linear-gradient(90deg, var(--purple), #A855F7); }

.pkg-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow);
}
.pkg-badge {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.orange .pkg-badge { background: rgba(255,107,0,0.15); color: var(--orange-lt); }
.teal   .pkg-badge { background: rgba(0,201,167,0.15); color: var(--teal); }
.purple .pkg-badge { background: rgba(124,58,237,0.15); color: #A78BFA; }

.pkg-name {
  font-size: 1.3rem; font-weight: 800;
  margin-bottom: 8px;
  line-height:1.2;
}
.pkg-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--teal);
  background: rgba(0,201,167,0.1);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.pkg-best {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 24px;
}
.pkg-price {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 8px;
}
.pkg-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--white);
  line-height: 1;
}
.pkg-currency { font-size: 1.5rem; font-weight: 700; align-self: flex-start; margin-top: 8px; }
.pkg-original {
  font-size: 1rem; color: var(--text-muted);
  text-decoration: line-through;
}
.pkg-duration {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 28px;
}
.pkg-features { list-style: none; margin-bottom: 32px; }
.pkg-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
}
.pkg-features li:last-child { border-bottom: none; }
.pkg-features li .check { font-size: 0.85rem; flex-shrink: 0; }
.orange .check { color: var(--orange); }
.teal   .check { color: var(--teal); }
.purple .check { color: #A78BFA; }

.pkg-btn {
  width: 100%;
  display: flex; justify-content: center; align-items: center;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
}
.orange .pkg-btn { background: var(--orange); color: var(--white); box-shadow: 0 4px 20px rgba(255,107,0,0.3); }
.orange .pkg-btn:hover { box-shadow: 0 8px 30px rgba(255,107,0,0.5); transform: translateY(-2px); }
.teal   .pkg-btn { background: var(--teal); color: #0A0A0F; box-shadow: 0 4px 20px rgba(0,201,167,0.3); }
.teal   .pkg-btn:hover { box-shadow: 0 8px 30px rgba(0,201,167,0.5); transform: translateY(-2px); }
.purple .pkg-btn { background: var(--purple); color: var(--white); box-shadow: 0 4px 20px rgba(124,58,237,0.3); }
.purple .pkg-btn:hover { box-shadow: 0 8px 30px rgba(124,58,237,0.5); transform: translateY(-2px); }

/* =====================================================
   SAFETY SECTION
   ===================================================== */
.safety-bg {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,107,0,0.06) 0%, transparent 70%),
    var(--bg-card);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.safety-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.safety-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(255,107,0,0.1);
}
.safety-icon { font-size: 2.5rem; margin-bottom: 16px; }
.safety-title { font-weight: 700; margin-bottom: 10px; }
.safety-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item::after {
  content: '🔍 View';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  font-size: 0.8rem;
  z-index: 3;
  opacity: 0.9;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(255,107,0,0.2);
  transform: translateY(-4px);
}
.testi-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 16px; }
.testi-text {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.testi-text::before { content: '"'; font-size: 3rem; font-family: Georgia, serif; color: var(--orange); line-height: 0; vertical-align: -0.6em; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.95rem; }
.testi-city { font-size: 0.8rem; color: var(--text-muted); }

/* =====================================================
   FAQ
   ===================================================== */
.faq-bg { background: var(--bg-card); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(255,107,0,0.3); }
.faq-q {
  width: 100%;
  background: none;
  color: var(--text);
  font-size: 1rem; font-weight: 600;
  text-align: left;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--orange-lt); }
.faq-icon {
  font-size: 1.2rem; color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted); line-height: 1.8; font-size: 0.95rem;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 22px;
}

/* =====================================================
   CONTACT / BOOKING
   ===================================================== */
.contact-grid {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}
.contact-info p { color: var(--text-muted); margin: 0 auto 36px; line-height: 1.8; max-width: 500px; }
.contact-items { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 16px; 
  margin-bottom: 40px; 
  text-align: left;
}
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: var(--transition);
}
.contact-item:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-2px); }
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-val { font-weight: 700; font-size: 1rem; color: var(--white); }
.contact-actions { display: flex; gap: 16px; justify-content: center; }

/* Form styles removed */

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex; align-items: center; gap: 12px;
}
.whatsapp-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted);
  opacity: 0; transform: translateX(20px);
  transition: var(--transition);
  white-space: nowrap;
}
.whatsapp-float:hover .whatsapp-bubble { opacity: 1; transform: translateX(0); }
.whatsapp-btn-float {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #1AA34A);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  flex-shrink: 0;
}
.whatsapp-btn-float:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.9rem;
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 2px;
}
.footer-logo span { color: var(--orange); }
.footer-col h4 {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-copy a { color: var(--orange); }
.cache-badge {
  font-size: 0.7rem;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.2);
  color: var(--teal);
  padding: 4px 12px; border-radius: 4px;
}
/* Vendor Tabs (Capacity Group Selection) - STICKY */
/* Vendor Tabs (Capacity Group Selection) - STICKY */
.vendor-tabs-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
/* Subtle hint for horizontal scroll */
.vendor-tabs-wrapper::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to left, var(--bg-dark) 20%, transparent);
  pointer-events: none;
  z-index: 1001;
  opacity: 0.6;
}

.vendor-tabs {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 16px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  flex-wrap: nowrap;
  margin-left: -24px;
  margin-right: -24px;
}
.vendor-tabs::-webkit-scrollbar { display: none; }

.vendor-tab {
  flex: 0 0 auto;
  min-width: 200px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  scroll-snap-align: start;
}
.vendor-tab:hover { border-color: var(--text-muted); transform: translateY(-2px); }

/* Active States with Sophisticated Glow */
.vendor-tab.active.orange { 
  background: rgba(255,107,0,0.12); 
  border-color: var(--orange); 
  box-shadow: 0 8px 32px rgba(255,107,0,0.25); 
}
.vendor-tab.active.teal { 
  background: rgba(0,201,167,0.12); 
  border-color: var(--teal); 
  box-shadow: 0 8px 32px rgba(0,201,167,0.25); 
}
.vendor-tab.active.purple { 
  background: rgba(124,58,237,0.12); 
  border-color: var(--purple); 
  box-shadow: 0 8px 32px rgba(124,58,237,0.25); 
}

.vtab-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.vtab-info { display: flex; flex-direction: column; gap: 1px; }
.vtab-from { font-size: 0.6rem; font-weight: 800; color: var(--text-muted); letter-spacing: 1px; opacity: 0.8; }
.vtab-name { font-size: 1.05rem; font-weight: 900; color: var(--text); letter-spacing: 0.5px; line-height: 1.1; }
.vtab-price { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-top: 2px; }

/* Active Typographic Polishing */
.vendor-tab.active .vtab-name  { color: var(--white); }
.vendor-tab.active .vtab-price { color: var(--white); opacity: 0.9; }
.vendor-tab.active.orange .vtab-from { color: var(--orange-lt); }
.vendor-tab.active.teal   .vtab-from { color: var(--teal); }
.vendor-tab.active.purple .vtab-from { color: #C4B5FD; }

/* =====================================================
   VENDOR BANNER
   ===================================================== */
.vendor-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.vendor-banner.orange { border-color: rgba(255,107,0,0.3); background: rgba(255,107,0,0.05); }
.vendor-banner.teal   { border-color: rgba(0,201,167,0.3); background: rgba(0,201,167,0.05); }
.vendor-banner.purple { border-color: rgba(124,58,237,0.3); background: rgba(124,58,237,0.05); }
.vendor-banner-left  { display: flex; align-items: center; gap: 16px; }
.vendor-banner-icon  { font-size: 2.2rem; }
.vendor-banner-name  { font-size: 1.2rem; font-weight: 800; }
.vendor-banner-tagline { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }

.vendor-inclusions {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.vendor-inclusions span:first-child {
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Vendor Gallery (Horizontal Scroll - Cinema Style) */
.vendor-gallery-container {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.vendor-gallery-container::-webkit-scrollbar { display: none; }

.vendor-gallery {
  display: flex;
  gap: 0;
}

.vgal-item {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 1/1; /* Square on mobile */
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  background: var(--bg-card);
}

@media (min-width: 768px) {
  .vgal-item {
    width: 80%;
    aspect-ratio: 21/9; /* Wide on desktop */
    aspect-ratio: 21/9; /* Wide on desktop */
    border-right: 2px solid var(--bg-dark);
  }
}

/* Scroller Indicators for Gallery */
.vgal-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.vdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.vdot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,107,0,0.4);
}

.vgal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.vgal-item:hover img { transform: scale(1.05); }

.vgal-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem; color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  max-width: max-content;
  box-shadow: var(--shadow-md);
  pointer-events: none;
}

/* Quill Editor Styles (for dynamic descriptions) */
.ql-editor {
  padding: 0 !important;
}
.ql-editor p { margin-bottom: 0.75rem; }
.ql-editor p:last-child { margin-bottom: 0; }
.ql-editor ul, .ql-editor ol { 
  padding-left: 1.25rem; 
  margin-bottom: 1rem; 
}
.ql-editor li { 
  margin-bottom: 0.4rem; 
  position: relative;
}
.ql-editor strong { font-weight: 800; color: inherit; }

.vendor-banner-highlights { display: flex; flex-wrap: wrap; gap: 8px; }
.vendor-hl {
  font-size: 0.75rem; font-weight: 600;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  color: var(--text-muted);
}
.vendor-banner.orange .vendor-hl { border-color: rgba(255,107,0,0.2); color: var(--orange-lt); }
.vendor-banner.teal   .vendor-hl { border-color: rgba(0,201,167,0.2); color: var(--teal); }
.vendor-banner.purple .vendor-hl { border-color: rgba(124,58,237,0.2); color: #A78BFA; }

/* =====================================================
   POCKETBASE DESCRIPTION (Quill editor output)
   ===================================================== */
.pb-description p  { margin-bottom: 12px; }
.pb-description h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 20px 0 8px; text-transform: uppercase; letter-spacing: 1px; }
.pb-description ol { list-style: none; padding: 0; margin-bottom: 12px; }
.pb-description ol li { display: flex; align-items: flex-start; gap: 8px; padding: 5px 0; font-size: 0.9rem; }
.pb-description ol li::before { content: '✓'; color: var(--orange); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }
.pb-description .ql-ui { display: none; }
.pb-description strong { color: var(--text); font-weight: 600; }
.pb-description br { display: none; }

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE — TABLET (≤1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .safety-grid   { grid-template-columns: repeat(2, 1fr); }

}

/* =====================================================
   RESPONSIVE — MOBILE (≤768px)
   ===================================================== */
@media (max-width: 768px) {


  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content  { padding: 0 16px; margin-top: 64px; }
  .hero-badge    { font-size: 0.7rem; padding: 6px 14px; }
  .hero-title    { font-size: clamp(3.5rem, 18vw, 7rem); letter-spacing: 2px; }
  .hero-subtitle { font-size: 0.9rem; margin: 14px auto 28px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content  { padding: 0 16px; margin-top: 64px; }
  .hero-badge    { font-size: 0.7rem; padding: 6px 14px; }
  .hero-title    { font-size: clamp(3.5rem, 18vw, 7rem); letter-spacing: 2px; }
  .hero-subtitle { font-size: 0.9rem; margin: 14px auto 28px; }
  .hero-actions  {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-actions .btn {
    justify-content: center;
    padding: 15px 20px;
    font-size: 0.95rem;
  }
  .hero-rope  { display: none; }
  .hero-jumper { display: none; }

  /* Stats */
  .stats { padding: 28px 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-value { font-size: 2.2rem; }
  .stat-label { font-size: 0.75rem; }

  /* Sections */
  .section { padding: 64px 16px; }
  .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-header { margin-bottom: 40px; }
  .container { padding: 0; }

  /* Experience */
  .exp-grid { grid-template-columns: 1fr; gap: 32px; }
  .exp-visual { padding: 0; }
  .exp-cliff { padding: 32px 20px; }
  .exp-height-label { font-size: 4rem; }
  .exp-text h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); text-align: center; margin-bottom: 32px; }

  .jump-styles-grid { grid-template-columns: 1fr; gap: 12px; }
  .jump-style-card { display: flex; align-items: center; text-align: left; gap: 16px; }
  .js-icon { margin-bottom: 0; font-size: 2rem; }
  .js-content h4 { font-size: 0.95rem; }
  .js-content p { font-size: 0.8rem; }

  .info-grid { grid-template-columns: 1fr; }
  .info-card { padding: 16px; }

  /* Vendor tabs — horizontal scroll on mobile */
  .vendor-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 4px;
  }
  .vendor-tabs::-webkit-scrollbar { display: none; }
  .vendor-tab {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 14px 16px;
  }
  .vtab-name { font-size: 0.85rem; }

  /* Vendor banner */
  .vendor-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 14px;
  }
  .vendor-banner-name { font-size: 1rem; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-card { padding: 20px; border-radius: var(--radius-sm); }
  .pkg-name { font-size: 1.1rem; margin-bottom: 4px; }
  .pkg-tag { margin-bottom: 12px; font-size: 0.7rem; }
  .pkg-price { margin-bottom: 0px; }
  .pkg-amount { font-size: 2.2rem; }
  .pkg-currency { font-size: 1.2rem; }
  .pkg-features { margin-bottom: 20px; }
  .pkg-features li { padding: 6px 0; font-size: 0.85rem; }

  /* Safety */
  .safety-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .safety-card { padding: 20px 14px; }
  .safety-icon { font-size: 1.8rem; }
  .safety-title { font-size: 0.85rem; }
  .safety-desc  { font-size: 0.78rem; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 24px 20px; }
  .testi-text { font-size: 0.9rem; }
  .testi-text::before { font-size: 2.2rem; }

  /* FAQ */
  .faq-q { font-size: 0.9rem; padding: 18px 16px; }
  .faq-a  { font-size: 0.88rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-items { grid-template-columns: 1fr; }
  .contact-info h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .contact-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .contact-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 40px 16px 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; font-size: 0.85rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 16px; right: 16px; }
  .whatsapp-btn-float { width: 52px; height: 52px; font-size: 1.5rem; }
  .whatsapp-bubble { display: none; }
}

/* =====================================================
   RESPONSIVE — SMALL PHONES (≤420px)
   ===================================================== */
@media (max-width: 420px) {
  .hero-title    { font-size: clamp(3rem, 20vw, 5rem); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .safety-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }

  .section-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .btn { padding: 14px 18px; font-size: 0.9rem; }
}

