/* ============================================
   STOCK RIDER ACADEMY — Premium Styles
   Black & Gold Luxury Theme
   ============================================ */

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ============ CSS VARIABLES ============ */
:root {
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #a07810;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.7);
  --border-gold: rgba(212,160,23,0.2);
  --border-gold-hover: rgba(212,160,23,0.5);
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.grid-4-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }

/* Flex utilities */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }

/* Text utilities */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }
.text-white { color: #fff; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* Spacing */
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-64 { margin-top: 64px; }

/* ============ TYPOGRAPHY ============ */
.font-display { font-family: 'Playfair Display', serif; }

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 60px; }

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
  overflow: hidden;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-gold);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(212,160,23,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background 0.3s;
}
.nav-logo:hover .nav-logo-icon { background: rgba(212,160,23,0.2); }
.nav-logo-text-top {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-logo-text-bottom {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212,160,23,0.25));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 4px 14px rgba(212,160,23,0.45));
}
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212,160,23,0.2));
  margin-bottom: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Mobile menu button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  padding: 8px;
  line-height: 1;
}

/* Mobile menu */
#mobileMenu {
  display: none;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: rgba(10,10,10,0.99);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
  box-sizing: border-box;
}
#mobileMenu.open { display: block; }
.mobile-nav-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.mobile-nav-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,160,23,0.08);
  transition: color 0.2s, padding-left 0.2s;
  white-space: normal;
  word-break: break-word;
}
.mobile-nav-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-join-btn {
  display: block;
  text-align: center;
  margin-top: 12px;
  white-space: normal;
  width: 100%;
  box-sizing: border-box;
}

/* ============ BUTTONS ============ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.4);
  filter: brightness(1.08);
}
.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212,160,23,0.45);
  filter: brightness(1.08);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(212,160,23,0.5);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.1);
  transform: translateY(-2px);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1da851);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.35);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.2) 100%);
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to top, #0a0a0a, transparent);
  z-index: 2;
}
.hero-glow-1 {
  position: absolute;
  top: 20%; right: 20%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 140px 0 80px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212,160,23,0.4);
  border-radius: 100px;
  padding: 7px 18px;
  margin-bottom: 32px;
  background: rgba(212,160,23,0.06);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(212,160,23,0.15);
}
.hero-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(212,160,23,0.2);
  align-self: stretch;
}
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
  color: rgba(212,160,23,0.6);
  font-size: 1.1rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Animation classes */
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ SECTION BACKGROUNDS ============ */
.bg-dark   { background-color: var(--dark); }
.bg-dark-2 { background-color: var(--dark-2); }
.bg-black  { background-color: #000; }

/* ============ SECTION GLOW BG ============ */
.has-glow { position: relative; }
.has-glow::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,160,23,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.has-glow > * { position: relative; z-index: 1; }

/* ============ FEATURE CARDS ============ */
.feature-card {
  background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(17,17,17,0.95));
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 30px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.4), transparent);
}
.feature-card:hover {
  border-color: rgba(212,160,23,0.45);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 24px rgba(212,160,23,0.08);
}
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

/* ============ MENTOR CARD SECTION ============ */
.mentor-img-wrap {
  position: relative;
}
.mentor-img-glow {
  position: absolute;
  inset: -16px;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  border-radius: 24px;
}
.mentor-img {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(212,160,23,0.25);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 40px rgba(212,160,23,0.08);
  object-fit: cover;
}
.mentor-badge {
  position: absolute;
  bottom: -12px; right: 0;
  background: rgba(10,10,10,0.9);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.check-item i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.15);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--gold); font-size: 1.6rem; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(20,15,0,0.95);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: background 0.2s, transform 0.2s;
}
.lightbox-close:hover { background: rgba(212,160,23,0.25); transform: scale(1.1); }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  border: 1px solid rgba(212,160,23,0.3);
  object-fit: contain;
}

/* ============ TESTIMONIALS ============ */
.testimonial-slider { overflow: hidden; }
.testimonial-slide { display: none; animation: fadeSlide 0.45s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeSlide { from { opacity:0; transform:translateX(20px); } to { opacity:1; transform:translateX(0); } }

.testimonial-card {
  background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(17,17,17,0.98));
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 20px;
  padding: 44px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 32px;
  font-size: 7rem;
  color: rgba(212,160,23,0.08);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  pointer-events: none;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-text { color: rgba(255,255,255,0.8); font-size: 1.05rem; font-style: italic; line-height: 1.8; margin-bottom: 28px; }
.testimonial-author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-author-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-author-role { color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }

.slider-controls {
  position: relative;
  margin-top: 8px;
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
  z-index: 5;
}
.slider-btn:hover { background: rgba(212,160,23,0.22); }
.slider-prev { left: -24px; }
.slider-next { right: -24px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212,160,23,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.slider-dot.active { background: var(--gold); transform: scale(1.35); }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* ============ CONTACT CARDS ============ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(26,26,26,0.8);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 18px;
}
.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-value { color: var(--text-muted); font-size: 0.875rem; }
.contact-info-value a { color: var(--gold); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold-light); }

.contact-card-lg {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(26,26,26,0.9), rgba(17,17,17,0.95));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px 28px;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-card-lg:hover {
  border-color: var(--border-gold-hover);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35), 0 0 20px rgba(212,160,23,0.1);
}
.contact-icon-lg {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.contact-icon-whatsapp { color: #25d366; background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.35); }
.contact-card-title { font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.contact-card-info { color: var(--text-muted); font-size: 0.9rem; }

/* ============ FORM ============ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 10px;
  padding: 13px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-input::placeholder { color: rgba(255,255,255,0.22); }
.form-input option { background: #1a1a1a; }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
}
.form-success-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

/* ============ FAQ ============ */
.faq-item {
  background: rgba(26,26,26,0.7);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(212,160,23,0.3); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.faq-icon { color: var(--gold); transition: transform 0.3s; flex-shrink: 0; font-size: 1rem; }
.faq-icon.rotated { transform: rotate(45deg); }
.faq-body {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============ MAP ============ */
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ GLASS CARD ============ */
.glass-card {
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 12px;
}

/* ============ TIMELINE ============ */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: flex;
  gap: 24px;
  padding-left: 0;
  position: relative;
  padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--dark);
  z-index: 1;
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-line {
  width: 1px;
  flex: 1;
  background: rgba(212,160,23,0.2);
  margin: 4px 0 0;
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-content {
  background: rgba(26,26,26,0.6);
  border: 1px solid rgba(212,160,23,0.1);
  border-radius: 14px;
  padding: 20px 24px;
  flex: 1;
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-title { font-weight: 700; margin-bottom: 8px; }
.timeline-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ============ STATS ============ */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(17,17,17,0.95));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 40px 28px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label { color: var(--text-muted); font-size: 0.875rem; margin-top: 10px; display: block; }

/* ============ ACHIEVEMENT CARDS ============ */
.achievement-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(26,26,26,0.6);
  border: 1px solid rgba(212,160,23,0.12);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.achievement-card:hover { border-color: rgba(212,160,23,0.35); transform: translateY(-3px); }
.achievement-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============ COURSE CARDS ============ */
.course-card {
  background: linear-gradient(135deg, rgba(26,26,26,0.95), rgba(17,17,17,0.98));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 38px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 32px rgba(212,160,23,0.1);
}
.course-card.featured {
  border-color: rgba(212,160,23,0.5);
  background: linear-gradient(135deg, rgba(30,25,8,0.98), rgba(18,15,3,0.99));
  box-shadow: 0 0 40px rgba(212,160,23,0.08);
}
.course-badge-wrap {
  position: absolute;
  top: 20px; right: 20px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(212,160,23,0.07);
}
.badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  border: none;
  font-weight: 700;
}
.course-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.course-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.course-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.course-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.course-feature { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.75); }
.course-feature i { color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(26,26,26,0.6);
  border: 1px solid rgba(212,160,23,0.1);
  border-radius: 12px;
}
.curriculum-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ VMV CARDS (Vision/Mission/Values) ============ */
.vmv-card {
  background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(17,17,17,0.95));
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.vmv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.vmv-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 22px;
}

/* ============ ARMY SECTION ============ */
.army-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(22,18,5,0.8);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: 14px;
  padding: 20px;
}
.army-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============ FLOATING ACTION BUTTONS ============ */
.floating-actions {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}
.fab-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold);
  font-size: 1.1rem;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  transition: width 0.25s, border-radius 0.25s, padding 0.25s, background 0.25s, box-shadow 0.25s;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  cursor: pointer;
  position: relative;
}
.fab-btn:hover {
  width: auto;
  min-width: 52px;
  border-radius: 30px;
  padding: 0 18px 0 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.fab-label {
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  display: none;
  margin-left: 6px;
}
.fab-btn:hover .fab-label { display: block; }
.fab-whatsapp { color: #25d366; border-color: rgba(37,211,102,0.35); }
.fab-whatsapp:hover { background: rgba(37,211,102,0.12); }
.fab-call:hover { background: rgba(212,160,23,0.12); }
.fab-directions { color: #60a5fa; border-color: rgba(96,165,250,0.3); }
.fab-directions:hover { background: rgba(96,165,250,0.1); }

/* ============ FOOTER ============ */
.footer {
  background: #000;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.social-icon:hover { background: rgba(212,160,23,0.18); color: var(--gold); transform: translateY(-2px); }
.footer-col-title {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-link:hover { color: var(--gold); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { color: var(--text-muted); font-size: 0.82rem; }
.footer-tagline { color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; }

/* ============ HERO PAGE VARIANTS ============ */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: #000;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  object-position: center 20%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.95) 100%);
}
.page-hero-content { position: relative; z-index: 5; }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-sub { color: var(--text-dim); font-size: 1.05rem; max-width: 600px; line-height: 1.7; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============ UTILITY ============ */
.divider-gold {
  border: none;
  border-top: 1px solid rgba(212,160,23,0.18);
  margin: 0;
}
.badge-patriot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,153,51,0.4);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #FF9933;
  background: rgba(255,153,51,0.1);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .slider-prev { left: -8px; }
  .slider-next { right: -8px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .menu-btn { display: flex; align-items: center; }
  .testimonial-card { padding: 28px 24px; }
  .slider-prev { left: 0; }
  .slider-next { right: 0; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
  .fab-btn { width: 48px; height: 48px; font-size: 1rem; }
  .page-hero { padding: 130px 0 60px; }
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn-gold-lg, .btn-group .btn-outline, .btn-group .btn-whatsapp { justify-content: center; }
  .course-card { padding: 26px; }
  .vmv-card { padding: 28px; }
  /* Mobile menu button overrides */
  #mobileMenu .btn-gold,
  #mobileMenu .mobile-join-btn {
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
    display: block;
    text-align: center;
    justify-content: center;
  }
}
