/* =====================================================
   JAIPUR SUPER BIKERS — style.css
   Mixed Light/Dark Premium Theme — Ride With Pride
   ===================================================== */

/* ---- CSS VARIABLES (LIGHT default — used by: stats, about, rides,
       gallery, testimonials, why-join, contact) ---- */
:root {
  --yellow: #F5C518;
  --yellow-soft: #FFE68A;
  --yellow-glow: rgba(245, 197, 24, 0.25);
  --cream: #FFFDF5;
  --beige: #F8F1DD;
  --beige-border: #E8DFC7;
  --orange-accent: #E66A1F;
  --black: #171717;
  --charcoal: #3A3A3A;
  --gray-mid: #6B6B6B;
  --gray-light: #B0A898;
  --white: #FFFFFF;
  --surface: #FFFFFF;
  --text: #171717;

  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Poppins', 'Inter', sans-serif;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --shadow-yellow: 0 8px 32px rgba(245,197,24,0.22);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --nav-h: 76px;
  --section-gap: 110px;
  --container: 1220px;

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

/* ---- DARK SECTIONS OVERRIDE ----
   Applied to: navbar, page-loader, hero, heritage-banner,
   events, safety, join-cta, footer.
   Everything else (stats, about, rides, gallery, testimonials,
   why-join, contact) stays on the light defaults above. */
.navbar,
.page-loader,
.hero,
.heritage-banner,
.events,
.safety,
.join-cta,
.footer {
  --cream: #0A0A0A;
  --beige: #141414;
  --beige-border: #262626;
  --orange-accent: #FF8A45;
  --charcoal: #C9C4B8;
  --gray-mid: #9C9686;
  --gray-light: #6E6858;
  --surface: #161616;
  --text: #F5F0E6;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.35);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITIES ---- */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-accent);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--yellow-soft); }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  color: var(--text);
  letter-spacing: 0.02em;
}
.section-sub {
  font-size: 1.02rem;
  color: var(--gray-mid);
  margin-top: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.highlight { color: var(--yellow); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-yellow);
}
.btn-primary:hover { background: #e5b710; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(245,197,24,0.35); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--beige-border);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--yellow); background: var(--yellow-glow); }

.btn-ride {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 16px;
}
.btn-ride:hover { background: var(--yellow); color: var(--black); }

.btn-event {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 12px;
  box-shadow: var(--shadow-yellow);
}
.btn-event:hover { background: #e5b710; transform: translateY(-1px); }

.btn-fb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #1877F2;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-fb:hover { background: #166fe5; transform: translateY(-2px); }

/* Ripple effect */
.ripple { position: relative; overflow: hidden; }
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

/* ---- PAGE LOADER ---- */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  letter-spacing: 0.15em;
  animation: pulse 1s ease-in-out infinite alternate;
}
@keyframes pulse { from { opacity: 0.6; } to { opacity: 1; } }
.loader-bar {
  width: 180px; height: 3px;
  background: var(--beige-border);
  border-radius: 99px;
  margin: 16px auto 10px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 99px;
  animation: loadFill 1.5s ease forwards;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }
.loader-text { font-size: 0.8rem; color: var(--gray-mid); letter-spacing: 0.1em; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--beige-border);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); background: rgba(10,10,10,0.97); }
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.loader-logo {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.instagram-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.instagram-float:hover {
  transform: scale(1.1);
}

.nav-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 10px;
}
.nav-logo-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1.1;
}
.brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--orange-accent);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 6px 12px;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--yellow);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.btn-join {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  transition: var(--transition);
  flex-shrink: 0;
  box-shadow: var(--shadow-yellow);
  letter-spacing: 0.03em;
}
.btn-join:hover { background: #e5b710; transform: translateY(-1px); }
.btn-join-mobile { display: none; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO (dark) ---- */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--yellow-glow);
}
.hero-circle-1 { width: 520px; height: 520px; top: -100px; right: -60px; }
.hero-circle-2 { width: 300px; height: 300px; bottom: 60px; right: 200px; background: rgba(255,138,69,0.10); }
.hero-palace-silhouette {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 800 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 L0 130 L40 130 L40 80 L60 80 L60 50 L80 30 L100 50 L100 80 L120 80 L120 100 L150 100 L150 60 L170 60 L170 30 L190 10 L210 30 L210 60 L230 60 L230 100 L260 100 L260 70 L280 70 L280 40 L300 20 L320 40 L320 70 L340 70 L340 100 L380 100 L380 80 L400 80 L400 130 L800 130 L800 200 Z' fill='%23FF8A45' opacity='0.08'/%3E%3C/svg%3E") no-repeat bottom center / cover;
  opacity: 0.7;
}
.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-accent);
  margin-bottom: 20px;
}
.eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.5vw, 6rem);
  line-height: 0.95;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-social-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack img, .avatar-more {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.avatar-more {
  background: var(--yellow);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-proof-text { font-size: 0.88rem; color: var(--charcoal); }
.social-proof-text strong { color: var(--text); }

/* Hero Right */
.hero-right { position: relative; display: flex; flex-direction: column; gap: 16px; }
.hero-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.hero-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
}
.float-badge, .float-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige-border);
  z-index: 2;
}
.float-est {
  top: 30px; left: -28px;
  padding: 16px 20px;
  text-align: center;
  background: var(--yellow);
  border-color: var(--yellow);
  animation: floatY 3s ease-in-out infinite;
}
.badge-year { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; color: rgba(23,23,23,0.7); }
.badge-num { display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--black); }
.float-km {
  bottom: 100px; left: -36px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floatY 4s ease-in-out infinite 1s;
}
.float-km i, .float-trips i {
  font-size: 1.4rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.float-km strong, .float-trips strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
.float-km span, .float-trips span {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-mid);
}
.float-trips {
  top: 120px; right: -28px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: floatY 3.5s ease-in-out infinite 0.5s;
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-tyre-track {
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  overflow: hidden;
}
.hero-tyre-track svg { width: 100%; }
.tyre-path { stroke-dashoffset: 200; animation: drawPath 3s linear infinite; }
@keyframes drawPath { to { stroke-dashoffset: 0; } }

/* ---- STATS STRIP (light) ---- */
.stats-strip {
  position: relative;
  z-index: 5;
  margin: -40px 24px 0;
  max-width: calc(var(--container) - 48px);
  margin-left: auto;
  margin-right: auto;
}
.stats-container {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--beige-border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--beige-border);
  transition: var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--beige); transform: translateY(-2px); }
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--yellow-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--yellow);
  flex-shrink: 0;
  border: 1px solid rgba(245,197,24,0.2);
}
.stat-info strong { font-family: var(--font-display); font-size: 2rem; color: var(--text); }
.stat-info span { font-family: var(--font-display); font-size: 1.6rem; color: var(--yellow); }
.stat-info p { font-size: 0.82rem; color: var(--gray-mid); margin-top: 2px; }

/* ---- ABOUT (light) ---- */
.about {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.about .section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images { position: relative; height: 560px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-img-main img { width: 100%; height: 420px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--surface);
  z-index: 3;
}
.about-img-secondary img { width: 100%; height: 220px; object-fit: cover; }
.about-exp-badge {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-yellow);
  min-width: 110px;
  animation: floatY 3s ease-in-out infinite;
}
.exp-num { display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; color: var(--black); }
.exp-text { display: block; font-size: 0.7rem; font-weight: 600; color: rgba(23,23,23,0.75); letter-spacing: 0.04em; margin-top: 4px; }
.about-right .section-heading { margin-bottom: 20px; }
.about-text { font-size: 0.97rem; color: var(--charcoal); margin-bottom: 16px; line-height: 1.8; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--yellow-soft); }
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--yellow-glow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--yellow);
  flex-shrink: 0;
  border: 1px solid rgba(245,197,24,0.25);
}
.feature-card strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.feature-card p { font-size: 0.78rem; color: var(--gray-mid); line-height: 1.5; }

/* ---- TILT CARD ---- */
.tilt-card { transform-style: preserve-3d; }

/* ---- HERITAGE BANNER (dark) ---- */
.heritage-banner {
  position: relative;
  background: var(--beige);
  border-top: 1px solid var(--beige-border);
  border-bottom: 1px solid var(--beige-border);
  padding: 80px 24px;
  overflow: hidden;
  text-align: center;
}
.heritage-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 160 L20 120 L40 160 L60 100 L80 140 L100 80 L120 130 L140 90 L160 150 L180 70 L200 120 L220 60 L240 110 L260 80 L280 130 L300 90 L320 140 L340 100 L360 150 L380 110 L400 160' stroke='%23FF8A45' stroke-width='0.8' fill='none' opacity='0.16'/%3E%3C/svg%3E");
  background-size: 400px 200px;
  background-repeat: repeat-x;
  background-position: bottom;
  opacity: 0.5;
}
.heritage-road {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
}
.heritage-road svg { width: 100%; }
.road-line { stroke-dashoffset: 300; animation: drawPath 5s linear infinite; }
.heritage-content { position: relative; z-index: 1; }
.heritage-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-accent);
  margin-bottom: 16px;
}
.heritage-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.heritage-sub { font-size: 1rem; color: var(--charcoal); }

/* ---- RIDES (light) ---- */
.rides {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.rides-slider-wrapper { position: relative; }
.rides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.ride-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.ride-card:hover { box-shadow: var(--shadow-lg); }
.ride-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.ride-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ride-card:hover .ride-img-wrap img { transform: scale(1.07); }
.ride-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.ride-route-icon {
  position: absolute;
  bottom: 16px; right: 16px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--orange-accent);
  backdrop-filter: blur(8px);
}
.ride-body { padding: 24px; }
.ride-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.ride-meta {
  display: flex;
  gap: 18px;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 12px;
}
.ride-meta i { color: var(--yellow); margin-right: 4px; }
.ride-desc { font-size: 0.88rem; color: var(--charcoal); line-height: 1.6; }
.slider-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--beige-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.slider-dots { display: flex; gap: 7px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--beige-border);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--yellow); transform: scale(1.3); }

/* ---- EVENTS (dark) ---- */
.events {
  padding: var(--section-gap) 0;
  background: var(--beige);
}
.events-timeline { display: flex; flex-direction: column; gap: 28px; }
.timeline-item {
  display: grid;
  grid-template-columns: 90px 40px 1fr;
  align-items: start;
  gap: 0;
}
.timeline-date-col { padding-top: 24px; }
.date-badge {
  background: var(--yellow);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-align: center;
  box-shadow: var(--shadow-yellow);
  display: inline-block;
  min-width: 70px;
}
.date-day { display: block; font-family: var(--font-display); font-size: 1.8rem; line-height: 1; color: var(--black); }
.date-month { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(23,23,23,0.6); margin-top: 2px; }
.timeline-line {
  width: 2px;
  background: var(--beige-border);
  margin: 28px auto 0;
  min-height: 100%;
  position: relative;
}
.timeline-line::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--surface);
  box-shadow: var(--shadow-yellow);
}
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  margin-left: 16px;
  transition: var(--transition);
}
.timeline-card:hover { box-shadow: var(--shadow-md); }
.event-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-accent);
  margin-bottom: 8px;
}
.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.event-meta {
  display: flex;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-bottom: 10px;
}
.event-meta i { color: var(--yellow); margin-right: 4px; }
.timeline-card p { font-size: 0.88rem; color: var(--charcoal); }

/* ---- WHY JOIN (light) ---- */
.why-join {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-wrap img { width: 100%; height: 540px; object-fit: cover; }
.why-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,197,24,0.3) 0%, transparent 60%);
}
.why-badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-yellow);
}
.why-right .section-heading { margin-bottom: 28px; }
.why-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.why-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.check-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--yellow-glow);
  border: 1.5px solid rgba(245,197,24,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- GALLERY (light) ---- */
.gallery {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--yellow);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---- LIGHTBOX (always dark overlay) ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.6rem; color: var(--white);
  background: rgba(255,255,255,0.12);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--yellow); color: var(--black); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 1.2rem; color: var(--white);
  background: rgba(255,255,255,0.12);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.lightbox-nav:hover { background: var(--yellow); color: var(--black); }

/* ---- SAFETY (dark) ---- */
.safety {
  padding: var(--section-gap) 0;
  background: var(--surface);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.safety-card {
  background: var(--cream);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.safety-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yellow-soft);
  background: var(--surface);
  transform: translateY(-4px);
}
.safety-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--yellow-glow);
  border: 1.5px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow);
  margin: 0 auto 16px;
}
.safety-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.safety-card p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.6; }
.safety-cta { text-align: center; }

/* ---- TESTIMONIALS (light) ---- */
.testimonials {
  padding: var(--section-gap) 0;
  background: var(--beige);
}
.testimonials-slider-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius-lg);
  padding: 36px 36px 28px;
  box-shadow: var(--shadow-sm);
  flex: 0 0 calc(100% / 3 - 20px);
  min-width: calc(100% / 3 - 20px);
}
.stars { color: var(--yellow); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.97rem;
  color: var(--charcoal);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  border-left: 3px solid var(--yellow);
  padding-left: 16px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--yellow-soft); }
.testimonial-author strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text); }
.testimonial-author span { display: block; font-size: 0.78rem; color: var(--gray-mid); }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* ---- JOIN CTA (dark) ---- */
.join-cta {
  position: relative;
  padding: 140px 24px;
  text-align: center;
  overflow: hidden;
}
.join-bg {
  position: absolute; inset: 0; z-index: 0;
}
.join-bg img { width: 100%; height: 100%; object-fit: cover; }
.join-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.90) 0%, rgba(20,16,4,0.82) 60%, rgba(10,10,10,0.92) 100%);
}
.join-road-anim {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
}
.join-road-anim svg { width: 100%; }
.road-line-cta { stroke-dashoffset: 300; animation: drawPath 5s linear infinite; }
.join-content {
  position: relative; z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.join-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--text);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.join-text { font-size: 1.05rem; color: var(--charcoal); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.join-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- CONTACT (light) ---- */
.contact {
  padding: var(--section-gap) 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-heading { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--yellow-glow);
  border: 1px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--yellow);
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: 0.95rem; color: var(--charcoal); transition: color var(--transition); }
.contact-detail a:hover { color: var(--yellow); }
.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.contact-socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--beige-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-socials a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--beige-border);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group-full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.05em; text-transform: uppercase; }
.form-group input, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--beige-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-glow);
  background: var(--surface);
}
.form-group input.error, .form-group textarea.error { border-color: #ef4444; }
.form-error { font-size: 0.75rem; color: #ef4444; min-height: 16px; }
.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

/* ---- FOOTER (dark) ---- */
.footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}
.footer-tagline { display: block; font-size: 0.65rem; letter-spacing: 0.2em; color: var(--yellow); text-transform: uppercase; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.footer-links-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col li, .footer-links-col a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links-col a:hover { color: var(--yellow); }
.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ---- FLOATING ELEMENTS ---- */
.whatsapp-float {
  position: fixed;
  bottom: 88px; right: 24px; z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.back-to-top {
  position: fixed;
  bottom: 28px; right: 24px; z-index: 900;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-yellow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #e5b710; }

/* ---- TOAST (always dark) ---- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--black);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  border-left: 3px solid var(--yellow);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---- SCROLL REVEAL ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ---- TABLET ---- */
@media (max-width: 1100px) {
  :root { --section-gap: 80px; }
  .hero-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-heading { font-size: clamp(3rem, 5.5vw, 4.8rem); }
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--beige-border); }
  .about .section-container, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 460px; }
  .about-img-main { width: 70%; }
  .why-img-wrap img { height: 400px; }
  .rides-grid { grid-template-columns: repeat(3, 1fr); }
  .safety-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .hero-right { display: none; }
  .hero-heading { font-size: clamp(2.8rem, 8vw, 4.5rem); }
  .rides-grid { grid-template-columns: 1fr; }
  .slider-controls { display: flex; }
  .rides-grid .ride-card:not(:first-child) { display: none; }
  .rides-grid.show-all .ride-card { display: block; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .testimonials-track { flex-direction: column; }
  .testimonial-card { flex: 0 0 100%; min-width: 100%; }
  .timeline-item { grid-template-columns: 80px 30px 1fr; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- MOBILE (ALAG HEADER DESIGN) ---- */
@media (max-width: 640px) {
  :root { --section-gap: 60px; --nav-h: 60px; }




.nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
  }
  .nav-close:hover {
    background: var(--yellow);
    color: var(--black);
  }

  /* ===== MOBILE NAVBAR ===== */
  .navbar {
    background: var(--black);
    border-bottom: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.5);
  }
  .navbar.scrolled { background: var(--black); }

  .nav-container { padding: 0 16px; gap: 10px; }

  .nav-logo { width: 40px; height: 40px; margin-right: 0; }
  .brand-tagline { display: none; }
  .brand-name {
    font-size: 0.7rem;
    color: var(--white);
    letter-spacing: 0.05em;
  }
  .nav-brand { gap: 8px; }

  .btn-join { display: none; }

  /* Hamburger — circular yellow button */
  .hamburger {
    display: flex;
    width: 38px; height: 38px;
    background: var(--yellow);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0;
  }
  .hamburger span {
    width: 16px; height: 2px;
    background: var(--black);
  }
  .hamburger.open { background: var(--white); }
  .hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* ===== SIDE DRAWER MENU ===== */
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--nav-h) + 20px) 26px 26px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-link {
    width: 100%;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-link.active, .nav-link:hover { color: var(--yellow); }
  .nav-link::after { display: none; }

  .btn-join-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 50px;
    margin-top: 24px;
    box-shadow: var(--shadow-yellow);
  }

  /* Dark overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 998;
  }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  /* HERO */
  .hero-container { padding: 40px 20px 40px; }
  .hero-heading { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; justify-content: center; }

  /* STATS */
  .stats-strip { margin: -20px 16px 0; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 18px 14px; }
  .stat-card:nth-child(2) { border-right: 1px solid var(--beige-border); }
  .stat-card:nth-child(4) { border-right: none; }
  .stat-info strong { font-size: 1.5rem; }

  /* ABOUT */
  .about-features { grid-template-columns: 1fr; }
  .about-images { height: 380px; }
  .about-img-main { width: 85%; }
  .about-img-secondary { right: -10px; }

  /* EVENTS TIMELINE */
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-date-col { padding-top: 0; margin-bottom: 10px; }
  .timeline-line { display: none; }
  .timeline-card { margin-left: 0; }

  /* GALLERY */
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.gallery-tall { grid-row: span 1; }

  /* SAFETY */
  .safety-grid { grid-template-columns: 1fr 1fr; }

  /* CONTACT */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }

  /* FOOTER */
  .footer-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-links-col:last-child { display: none; }

  /* JOIN CTA */
  .join-btns { flex-direction: column; align-items: center; }
  .join-btns .btn-primary, .join-btns .btn-fb { width: 100%; max-width: 280px; justify-content: center; }

  /* LIGHTBOX */
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}



   
.page{font-family:sans-serif;background:#0a0a0a;border-radius:20px;overflow:hidden;max-width:1400px;margin:0 auto}

.top-grid{display:grid;grid-template-columns:1fr 1fr}
.brand-panel{padding:2.5rem 2rem;display:flex;flex-direction:column;justify-content:center}
.brand-tag{font-size:11px;letter-spacing:3px;text-transform:uppercase;color:#f5c400;margin-bottom:1.2rem;display:flex;align-items:center;gap:8px}
.brand-tag::before{content:'';display:block;width:24px;height:1.5px;background:#f5c400}
.brand-title{font-size:38px;font-weight:500;color:#fff;line-height:1.1;margin-bottom:0.5rem}
.brand-title span{color:#f5c400}
.brand-desc{font-size:13px;color:#9c9686;margin-top:1rem;line-height:1.6;max-width:260px}
.numbers-panel{background:#141414;display:flex;flex-direction:column;justify-content:center;border-left:1px solid #222}

.num-row{padding:1.25rem 1.5rem;border-bottom:1px solid #222}
.num-row:last-child{border-bottom:none}
.num-big{font-size:36px;font-weight:500;color:#f5c400;line-height:1}
.num-tag{font-size:12px;color:#8a8577;margin-top:4px;letter-spacing:1px;text-transform:uppercase}

.yellow-bar{height:4px;background:#f5c400;width:100%}

.pres-band{background:#f5c400;padding:1.5rem 2rem;display:flex;align-items:center;gap:1.5rem}
.pres-circle{width:52px;height:52px;min-width:52px;border-radius:50%;background:#0a0a0a;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:500;color:#f5c400}
.pres-fullname{font-size:17px;font-weight:500;color:#0a0a0a}
.pres-title{font-size:11px;color:#7a6000;letter-spacing:2px;text-transform:uppercase;margin-top:2px}
.pres-msg{font-size:13px;color:#3d2d00;margin-top:6px;line-height:1.5;font-style:italic}

.goals-wrap{background:#0a0a0a;padding:2rem}
.sub-eyebrow{font-size:11px;letter-spacing:3px;text-transform:uppercase;color:#f5c400;margin-bottom:1.25rem;display:flex;align-items:center;gap:8px}
.sub-eyebrow::before{content:'';display:block;width:18px;height:1.5px;background:#f5c400}
.goals-table{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:#222;border:1px solid #222;border-radius:12px;overflow:hidden}
.goal-cell{background:#0a0a0a;padding:1.25rem 1rem;display:flex;flex-direction:column;gap:10px}
.goal-ico{font-size:20px;color:#f5c400}
.goal-copy{font-size:12px;color:#9c9686;line-height:1.55}

/* Team roster panel kept LIGHT for contrast against the dark blocks around it */
.team-wrap{background:#fff;padding:2rem}
.team-wrap .sub-eyebrow{color:#c89b00}
.team-wrap .sub-eyebrow::before{background:#c89b00}
.team-cols{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:0.25rem}
.member-box{background:#fafafa;border:0.5px solid #e5e5e0;border-radius:10px;padding:0.85rem 1rem;display:flex;align-items:center;gap:12px}
.member-badge{width:36px;height:36px;min-width:36px;border-radius:8px;background:#0e0e0e;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:500;color:#f5c400;letter-spacing:0.5px}
.member-name{font-size:13px;font-weight:500;color:#111}
.member-role{font-size:11px;color:#888;margin-top:2px;line-height:1.3}

.bottom-bar{background:#f5c400;padding:1rem 2rem;display:flex;align-items:center;justify-content:space-between}
.bottom-left{font-size:13px;font-weight:500;color:#0a0a0a;letter-spacing:1px}
.bottom-right{font-size:12px;color:#7a6000;text-transform:uppercase;letter-spacing:2px}

@media(max-width:600px){
  .top-grid{grid-template-columns:1fr}
  .numbers-panel{flex-direction:row;border-left:none;border-top:1px solid #222}
  .num-row{border-bottom:none;border-right:1px solid #222;flex:1;padding:1rem}
  .num-row:last-child{border-right:none}
  .goals-table{grid-template-columns:repeat(2,1fr)}
  .team-cols{grid-template-columns:1fr}
}

/* Close (X) button drawer ke andar */
  .nav-close {
    display: none; /* desktop pe hidden */
  }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
  }
  .nav-close:hover {
    background: var(--yellow);
    color: var(--black);
  }