/* =========================================================
   REVOLUTION BJJ — Global Styles
   ========================================================= */

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

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #0A0A0A;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

:root {
  --red:    #C8102E;
  --dark:   #0A0A0A;
  --mid:    #1A1A1A;
  --light:  #F5F5F5;
  --gold:   #D4AF37;
  --blue:   #1D4ED8;
  --green:  #16A34A;
  --amber:  #D97706;
  --gray:   #6B7280;
}

/* ── Typography ── */
.font-heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  letter-spacing: 0.03em;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 60%, transparent 100%);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid rgba(200,16,46,0.2);
}

#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(200,16,46,0.3);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  background: #ffffff;
  padding: 7px 12px;
  border-radius: 4px;
  display: block;
  filter: none;
}
.nav-logo-text { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #E5E7EB;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.nav-links a:hover { color: #fff; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #E5E7EB;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.nav-dropdown-btn:hover { color: #fff; }
.nav-dropdown-btn svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: #0A0A0A;
  border: 1px solid rgba(200,16,46,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.18s ease;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #D1D5DB;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: rgba(200,16,46,0.1); color: #fff; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #E5E7EB;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}
.nav-phone:hover { color: #fff; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  height: 56px;
  padding: 0 1.5rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: #a50d25; }
.btn-cta:active { transform: scale(0.97); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ── Mobile Menu ── */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; }
.mobile-nav a {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-sub a {
  font-size: 1.75rem;
  color: #fff;
  padding: 0.3rem 0 0.3rem 1.5rem;
  border-left: 2px solid var(--red);
  margin: 0.2rem 0;
}
.mobile-cta {
  display: block;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  padding: 1rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  margin-top: 1.5rem;
}
.mobile-phone { color: #9CA3AF; font-size: 0.875rem; margin-top: 1.5rem; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a50d25; transform: scale(1.02); }
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { background: #fff; color: #0A0A0A; transform: scale(1.02); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--red);
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 1rem 2.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-white:hover { background: #F5F5F5; transform: scale(1.02); }

.btn-sm {
  font-size: 1.125rem;
  padding: 0.75rem 2rem;
}

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Section Labels ── */
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: #fff;
}
.section-heading.dark { color: #0A0A0A; }
.section-heading.red { color: var(--red); }
.section-subheading { color: #9CA3AF; font-size: 1.125rem; margin-top: 1rem; }

/* ── GSAP animation base states ── */
.gsap-fade-up { opacity: 0; transform: translateY(40px); }
.gsap-fade-left { opacity: 0; transform: translateX(-40px); }
.gsap-fade-right { opacity: 0; transform: translateX(40px); }
.gsap-stagger-item { opacity: 0; transform: translateY(30px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -60px;
  z-index: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a0505 45%, #0A0A0A 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 15%, rgba(200,16,46,0.20) 0%, transparent 55%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.25;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 6rem;
  max-width: 1280px;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.hero-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(70px, 11vw, 128px);
  line-height: 1;
  overflow: hidden;
  opacity: 0;
}
.hero-line.red { color: var(--red); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  animation: bounce 1.8s ease-in-out infinite;
}
.scroll-indicator span { color: #6B7280; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-indicator svg { color: var(--red); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── Social Proof Bar ── */
.stats-bar { background: #1A1A1A; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 1.25rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-stars { display: flex; gap: 2px; justify-content: center; margin-bottom: 0.25rem; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; }
.stat-label { color: #6B7280; font-size: 0.7rem; margin-top: 0.1rem; }

/* ── Benefit Cards ── */
.benefit-card {
  background: #1A1A1A;
  border-top: 2px solid var(--red);
  padding: 2rem;
  transition: transform 0.2s ease;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon { margin-bottom: 1.25rem; }
.benefit-heading { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; }
.benefit-body { color: #9CA3AF; font-size: 0.875rem; line-height: 1.7; }

/* ── Class Cards ── */
.class-card {
  position: relative;
  background: #0A0A0A;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.class-card:hover { transform: scale(1.02) translateY(-4px); }
.class-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.class-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  display: inline-block;
  align-self: flex-start;
  margin: 1.5rem;
}
.class-card-content { padding: 0 1.5rem 1.5rem; margin-top: auto; }
.class-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; color: #fff; margin-bottom: 0.75rem; }
.class-card-desc { color: #9CA3AF; font-size: 0.8rem; line-height: 1.6; margin-bottom: 1rem; }
.class-card-link { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.5rem; transition: gap 0.2s; }
.class-card:hover .class-card-link { gap: 0.75rem; }

/* ── Steps ── */
.step-number { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; line-height: 1; color: var(--red); opacity: 0.9; }
.step-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.step-desc { color: #9CA3AF; font-size: 0.875rem; line-height: 1.7; }

/* ── Testimonials ── */
.testimonial-card { background: #0A0A0A; border: 1px solid rgba(255,255,255,0.06); padding: 2.5rem; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1.5rem; }
.testimonial-quote { color: #E5E7EB; font-size: 1.125rem; line-height: 1.7; font-style: italic; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar { width: 48px; height: 48px; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: #fff; flex-shrink: 0; }
.testimonial-name { font-weight: 600; color: #fff; }
.testimonial-role { font-size: 0.8rem; color: #6B7280; margin-top: 0.15rem; }

/* Carousel controls */
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot { height: 4px; background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: all 0.3s; }
.carousel-dot.active { width: 32px; background: var(--red); }
.carousel-dot:not(.active) { width: 8px; }
.carousel-arrows { display: flex; gap: 0.5rem; }
.carousel-arrow { width: 40px; height: 40px; background: #1A1A1A; border: none; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.carousel-arrow:hover { background: var(--red); }

/* ── Footer ── */
footer { background: #0A0A0A; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 3rem; padding: 4rem 0; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-icon { width: 40px; height: 40px; background: #1A1A1A; display: flex; align-items: center; justify-content: center; color: #9CA3AF; text-decoration: none; transition: background 0.2s, color 0.2s; }
.social-icon:hover { background: var(--red); color: #fff; }
.footer-heading { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.1em; color: #fff; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #9CA3AF; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item address { color: #9CA3AF; font-size: 0.875rem; line-height: 1.5; text-decoration: none; font-style: normal; }
.footer-contact-item a:hover { color: #fff; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
.footer-bar p { color: #4B5563; font-size: 0.7rem; }

/* ── Forms ── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: #6B7280; margin-bottom: 0.4rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #4B5563; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); }
.form-input.error, .form-select.error { border-color: #EF4444; }
.form-error { color: #EF4444; font-size: 0.7rem; margin-top: 0.25rem; }
.form-select { background-color: #1A1A1A; cursor: pointer; }
.form-select option { background: #1A1A1A; }
.form-textarea { resize: none; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; background: var(--red); color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; padding: 1rem; border: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-submit:hover { background: #a50d25; transform: scale(1.01); }
.form-submit:active { transform: scale(0.99); }
.form-note { color: #4B5563; font-size: 0.7rem; text-align: center; margin-top: 0.75rem; }

/* ── Page Hero ── */
.page-hero {
  position: relative;
  padding-top: 9rem;
  padding-bottom: 5rem;
  background: #0A0A0A;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(200,16,46,0.16) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 8vw, 96px); line-height: 1; color: #fff; margin-bottom: 1.25rem; }

/* ── Schedule ── */
.schedule-filter { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #1A1A1A;
  color: #9CA3AF;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-btn:hover { color: #fff; background: #252525; }
.filter-btn.active { background: var(--red); color: #fff; }

.schedule-legend { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #6B7280; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }

.schedule-desktop { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; }
.schedule-day-col { display: flex; flex-direction: column; }
.schedule-day-header { background: #1A1A1A; padding: 0.75rem 0.5rem; text-align: center; }
.schedule-day-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: #fff; }
.schedule-day-classes { display: flex; flex-direction: column; gap: 0.375rem; }

.class-pill {
  background: #0A0A0A;
  border-left: 3px solid;
  padding: 0.5rem 0.6rem;
  cursor: default;
  transition: background 0.15s;
  position: relative;
}
.class-pill:hover { background: #1A1A1A; }
.class-pill-time { font-size: 0.65rem; color: #6B7280; display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.2rem; }
.class-pill-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.class-pill-name { font-size: 0.75rem; font-weight: 600; color: #fff; line-height: 1.3; }
.class-pill[data-cat="bjj"] { border-left-color: var(--red); }
.class-pill[data-cat="kids"] { border-left-color: var(--blue); }
.class-pill[data-cat="kickboxing"] { border-left-color: var(--green); }
.class-pill[data-cat="muaythai"] { border-left-color: var(--amber); }
.class-pill[data-cat="open"] { border-left-color: var(--gray); }

/* Tooltip */
.class-pill .tooltip {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 30;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  padding: 0.75rem;
  min-width: 180px;
  font-size: 0.75rem;
  color: #9CA3AF;
  line-height: 1.5;
}
.class-pill:hover .tooltip { display: block; }
.tooltip a { color: var(--red); font-weight: 600; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.05em; text-decoration: none; display: block; margin-top: 0.5rem; }

/* Mobile accordion */
.schedule-mobile { display: none; }
.accordion-item { border: 1px solid rgba(255,255,255,0.05); margin-bottom: 0.5rem; overflow: hidden; }
.accordion-header { background: #1A1A1A; padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: background 0.2s; }
.accordion-header:hover { background: #222; }
.accordion-day { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; }
.accordion-count { font-size: 0.7rem; color: #6B7280; background: #0A0A0A; padding: 0.15rem 0.5rem; }
.accordion-chevron { color: #9CA3AF; transition: transform 0.2s; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0.75rem; background: #0A0A0A; }
.accordion-item.open .accordion-body { display: flex; flex-direction: column; gap: 0.5rem; }

/* ── Membership Cards ── */
.pricing-card { border: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; height: 100%; position: relative; transition: transform 0.2s; }
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured { border-color: var(--gold); }
.pricing-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #0A0A0A; font-family: 'Bebas Neue', sans-serif; font-size: 0.875rem; letter-spacing: 0.1em; padding: 0.25rem 1rem; white-space: nowrap; }
.pricing-inner { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.pricing-name { font-family: 'Bebas Neue', sans-serif; font-size: 0.875rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.pricing-card.featured .pricing-name { color: var(--gold); }
.pricing-price { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-note { font-size: 0.7rem; color: #6B7280; margin-top: 0.25rem; }
.pricing-card.featured .pricing-note { color: rgba(212,175,55,0.6); }
.pricing-desc { font-size: 0.875rem; color: #9CA3AF; line-height: 1.6; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 1rem; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.75); border-bottom-color: rgba(212,175,55,0.15); }
.pricing-features { list-style: none; flex: 1; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pricing-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: #D1D5DB; }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }
.pricing-feature svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .pricing-feature svg { color: var(--gold); }
.pricing-cta { display: block; text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.1em; padding: 0.875rem; background: var(--red); color: #fff; text-decoration: none; transition: background 0.2s; }
.pricing-card.featured .pricing-cta { background: var(--gold); color: #0A0A0A; }
.pricing-cta:hover { opacity: 0.9; }

/* ── Trust signals (free-class page) ── */
.trust-card { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem; }

/* ── Utility ── */
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-gray { color: #9CA3AF; }
.bg-dark { background-color: #0A0A0A; }
.bg-mid { background-color: #1A1A1A; }
.bg-red { background-color: var(--red); }
.bg-light { background-color: #F5F5F5; }
.stars { display: flex; gap: 2px; }

/* ── Page Inner Hero accent variants ── */
.page-hero.blue::before { background: radial-gradient(ellipse at 70% 0%, rgba(29,78,216,0.18) 0%, transparent 60%); }
.page-hero.green::before { background: radial-gradient(ellipse at 70% 0%, rgba(22,163,74,0.18) 0%, transparent 60%); }

/* ── Alternating class section ── */
.class-alt-section { padding: 5rem 0; }
.class-alt-section.bg-mid { background: #1A1A1A; }
.class-alt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.class-alt-visual { position: relative; min-height: 380px; overflow: hidden; }
.class-alt-visual-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.class-alt-visual-accent { position: absolute; top: 0; left: 0; width: 4px; height: 100%; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.feature-item { display: flex; align-items: flex-start; gap: 0.75rem; color: #D1D5DB; font-size: 0.875rem; }
.feature-item svg { flex-shrink: 0; margin-top: 1px; }

/* ── About Page ── */
.team-card { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; }
.team-photo { height: 200px; background: #111; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; }
.team-avatar { width: 64px; height: 64px; background: rgba(200,16,46,0.2); border: 1px solid rgba(200,16,46,0.3); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--red); }
.team-photo-label { color: #4B5563; font-size: 0.7rem; }
.team-info { padding: 1.5rem; }
.team-role { font-family: 'Bebas Neue', sans-serif; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--red); margin-bottom: 0.25rem; }
.team-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.75rem; }
.team-bio { color: #9CA3AF; font-size: 0.8rem; line-height: 1.7; }

.value-card { background: #0A0A0A; border-top: 2px solid var(--red); padding: 1.5rem; text-align: center; height: 100%; }
.value-icon { display: flex; justify-content: center; margin-bottom: 1rem; }
.value-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.value-desc { color: #9CA3AF; font-size: 0.8rem; line-height: 1.7; }

.gallery-item { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.05); position: relative; overflow: hidden; }
.gallery-label { position: absolute; bottom: 0.75rem; left: 0.75rem; right: 0.75rem; color: #4B5563; font-size: 0.7rem; line-height: 1.4; }
.gallery-accent { position: absolute; top: 0; left: 0; width: 40px; height: 3px; background: var(--red); }

/* ── Schedule snippet ── */
.sched-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #0A0A0A;
  border-left: 2px solid var(--red);
  padding: 0.75rem 1rem;
}
.sched-day { font-family: 'Bebas Neue', sans-serif; font-size: 0.875rem; color: var(--red); width: 80px; flex-shrink: 0; }
.sched-time { color: #6B7280; font-size: 0.7rem; width: 120px; flex-shrink: 0; }
.sched-name { color: #fff; font-size: 0.875rem; font-weight: 500; }

/* ── Success state ── */
.success-icon { width: 80px; height: 80px; background: var(--red); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }

/* ── Map ── */
.map-wrap { filter: invert(90%) hue-rotate(180deg); }
.map-wrap iframe { display: block; }

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── FAQ ── */
.faq-item { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.05); padding: 1.5rem; }
.faq-q { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: #fff; margin-bottom: 0.75rem; }
.faq-a { color: #9CA3AF; font-size: 0.875rem; line-height: 1.7; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .schedule-desktop { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(even) { border-right: none; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .class-alt-grid { grid-template-columns: 1fr; }
  .class-alt-section .reverse { order: -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .schedule-desktop { display: none; }
  .schedule-mobile { display: block; }

  .form-grid-2 { grid-template-columns: 1fr; }
  .free-class-grid { grid-template-columns: 1fr; }

  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline, .btn-white { width: 100%; max-width: 320px; justify-content: center; }

  .section-heading { font-size: clamp(40px, 8vw, 64px); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .schedule-filter { gap: 0.375rem; }
  .filter-btn { font-size: 0.7rem; padding: 0.375rem 0.75rem; }
}

/* ── Free Class page grid ── */
.free-class-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

/* =========================================================
   LEAD CAPTURE MODAL
   ========================================================= */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.87);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-panel {
  background: #0A0A0A;
  border: 1px solid rgba(200,16,46,0.22);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    0 0 60px rgba(200,16,46,0.10),
    0 48px 96px rgba(0,0,0,0.75);
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.985);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--red) #1A1A1A;
}
.modal-panel::-webkit-scrollbar { width: 4px; }
.modal-panel::-webkit-scrollbar-track { background: #0A0A0A; }
.modal-panel::-webkit-scrollbar-thumb { background: var(--red); }
.modal-overlay.open .modal-panel {
  transform: translateY(0) scale(1);
}
.modal-header {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.modal-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, #a50d25 100%);
}
.modal-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.4rem;
}
.modal-subtitle {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.5;
}
.modal-trust-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.modal-trust-stars { display: flex; gap: 2px; }
.modal-trust-text { font-size: 0.7rem; color: #6B7280; }
.modal-close-btn {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.07);
  color: #4B5563;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  margin-top: -0.1rem;
}
.modal-close-btn:hover {
  background: rgba(200,16,46,0.1);
  border-color: rgba(200,16,46,0.3);
  color: #fff;
}
.modal-body { padding: 1.5rem 1.75rem 2rem; }
.modal-optional {
  color: #4B5563;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin-left: 0.2rem;
}
.required-star { color: var(--red); margin-left: 1px; }

/* ── Program Selector (Modal) ── */
.program-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.program-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  color: #6B7280;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  transition: all 0.18s ease;
}
.program-btn:hover {
  background: #1A1A1A;
  color: #E5E7EB;
  border-color: rgba(255,255,255,0.12);
}
.program-btn-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.program-btn.selected .program-btn-dot { transform: scale(1.3); }
.program-btn.selected { color: #fff; }
.program-btn.selected[data-program="adult-bjj"]   { border-color: rgba(200,16,46,0.45);  background: rgba(200,16,46,0.07); }
.program-btn.selected[data-program="kids-bjj"]    { border-color: rgba(29,78,216,0.45);  background: rgba(29,78,216,0.07); }
.program-btn.selected[data-program="kickboxing"]  { border-color: rgba(22,163,74,0.45);  background: rgba(22,163,74,0.07); }
.program-btn.selected[data-program="muay-thai"]   { border-color: rgba(217,119,6,0.45);  background: rgba(217,119,6,0.07); }

.modal-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 1.25rem 0; }
.modal-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.875rem;
}
.modal-footer-links a {
  color: #4B5563;
  font-size: 0.7rem;
  text-decoration: none;
  transition: color 0.2s;
}
.modal-footer-links a:hover { color: #9CA3AF; }
.modal-footer-links span { color: #2A2A2A; font-size: 0.7rem; }

/* =========================================================
   BOOKING PAGE
   ========================================================= */

.booking-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 80px; /* navbar height */
}

/* Progress bar */
.booking-progress {
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 80px;
  z-index: 100;
}
.booking-progress-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 0;
}
.booking-step-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.5rem;
  flex-shrink: 0;
}
.booking-step-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.booking-step-item.done   .booking-step-icon { background: #1A3A1A; border: 1.5px solid #16A34A; color: #16A34A; }
.booking-step-item.active .booking-step-icon { background: var(--red); color: #fff; box-shadow: 0 0 0 4px rgba(200,16,46,0.18); }
.booking-step-item.pending .booking-step-icon { background: #1A1A1A; border: 1px solid rgba(255,255,255,0.08); color: #4B5563; }
.booking-step-text {}
.booking-step-sublabel {
  font-size: 0.65rem;
  color: #4B5563;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.booking-step-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  line-height: 1;
}
.booking-step-item.done   .booking-step-label { color: #4B5563; }
.booking-step-item.active .booking-step-label { color: #fff; }
.booking-step-item.pending .booking-step-label { color: #2A2A2A; }
.booking-step-connector {
  height: 1px;
  flex: 1;
  min-width: 32px;
  background: rgba(255,255,255,0.06);
  margin: 0 0.25rem;
}
.booking-step-connector.done { background: rgba(22,163,74,0.3); }

/* Alert banner */
.booking-alert {
  background: var(--red);
  padding: 0.75rem 1.5rem;
}
.booking-alert-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}
.booking-alert-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  animation: alertPulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes alertPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
.booking-alert-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
}
.booking-alert-tag {
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.85);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  flex-shrink: 0;
  border-radius: 2px;
}

/* Header section */
.booking-header {
  background: #0A0A0A;
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.booking-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.booking-greeting {
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.booking-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5rem;
}
.booking-headline span { color: var(--red); }
.booking-subline {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.6;
  max-width: 520px;
}
.booking-subline strong { color: #9CA3AF; }

/* Program tabs */
.booking-tabs {
  background: #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.875rem 0;
}
.booking-tabs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.booking-tabs-label {
  font-size: 0.7rem;
  color: #4B5563;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.booking-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.25rem;
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  color: #6B7280;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.18s ease;
}
.booking-tab:hover {
  background: #1A1A1A;
  color: #E5E7EB;
}
.booking-tab-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.booking-tab.active { color: #fff; }
.booking-tab.active[data-program="adult-bjj"]  { background: rgba(200,16,46,0.1);  border-color: rgba(200,16,46,0.4); }
.booking-tab.active[data-program="kids-bjj"]   { background: rgba(29,78,216,0.1);  border-color: rgba(29,78,216,0.4); }
.booking-tab.active[data-program="kickboxing"] { background: rgba(22,163,74,0.1);  border-color: rgba(22,163,74,0.4); }
.booking-tab.active[data-program="muay-thai"]  { background: rgba(217,119,6,0.1);  border-color: rgba(217,119,6,0.4); }

/* Calendar area */
.booking-calendar-area {
  flex: 1;
  background: #050505;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 372px);
}
.booking-calendar-panel {
  display: none;
  flex: 1;
  flex-direction: column;
}
.booking-calendar-panel.active {
  display: flex;
}
.booking-calendar-panel iframe {
  flex: 1;
  width: 100%;
  min-height: calc(100vh - 372px);
  border: none;
  display: block;
  background: #050505;
}
.booking-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: calc(100vh - 372px);
}
.booking-empty-icon {
  width: 72px; height: 72px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.booking-empty-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.625rem;
}
.booking-empty-sub {
  color: #4B5563;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 340px;
}
.booking-empty-arrow {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

/* ── Booking page responsive ── */
@media (max-width: 768px) {
  .booking-step-sublabel { display: none; }
  .booking-step-label { font-size: 0.75rem; }
  .booking-step-icon { width: 22px; height: 22px; font-size: 0.7rem; }
  .booking-tabs-label { display: none; }
  .booking-tab { padding: 0.5rem 0.875rem; font-size: 0.75rem; }
  .program-selector { grid-template-columns: 1fr; }
  .modal-panel { max-height: 96vh; }
  .booking-alert-text { font-size: 0.85rem; letter-spacing: 0.12em; }
  .booking-calendar-area,
  .booking-calendar-panel iframe,
  .booking-empty-state { min-height: 400px; }
}
