/* ===========================
   REVAMP FITNESS — DESIGN TOKENS
   =========================== */
:root {
  --bg-base: #0A0A0A;
  --bg-surface: #161616;
  --bg-surface-alt: #1C1C1C;
  --border-subtle: #2A2A2A;
  --accent-red: #E1262C;
  --accent-red-hover: #C71F25;
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --radius-card: 14px;
  --radius-btn: 50px;
  --container-max: 1280px;
  --section-pad: 88px;
  --grid-gap: 22px;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select { font-family: inherit; }

/* ===========================
   UTILITIES
   =========================== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }
.text-red { color: var(--accent-red); }

.section-eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent-red);
  text-align: center; margin-bottom: 12px;
}
.section-heading {
  font-size: 36px; font-weight: 800; text-align: center;
  line-height: 1.15; margin-bottom: 16px;
}
.section-subtext {
  font-size: 15px; color: var(--text-secondary); text-align: center;
  max-width: 560px; margin: 0 auto 48px; line-height: 1.6;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; background: var(--accent-red); color: #fff;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; border-radius: var(--radius-btn);
  border: 2px solid var(--accent-red); transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--accent-red-hover); border-color: var(--accent-red-hover);
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(225,38,44,0.35);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; background: transparent; color: #fff;
  font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,0.25); transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

/* ===========================
   INTRO LOADER
   =========================== */
.intro-loader {
  position: fixed; inset: 0; background: #000; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.intro-loader.fade-out {
  opacity: 0; transform: scale(1.1); pointer-events: none;
}
.intro-logo {
  font-size: 42px; font-weight: 800; display: flex; align-items: center; gap: 15px;
  opacity: 0; transform: scale(0.5) translateZ(0);
  animation: introZoom 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@media (max-width: 600px) { .intro-logo { font-size: 28px; } }
@keyframes introZoom {
  0% { opacity: 0; transform: scale(0.5) translateZ(0); }
  25% { opacity: 1; transform: scale(1.05) translateZ(0); }
  85% { opacity: 1; transform: scale(1) translateZ(0); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.5) translateZ(0); filter: blur(10px); }
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent; transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95); border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; z-index: 10;
}
.logo-icon { flex-shrink: 0; }
.logo-highlight { color: var(--accent-red); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 14px; color: var(--text-secondary); font-weight: 500;
  transition: color 0.3s; position: relative;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--accent-red); border-radius: 1px;
}
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-cta { padding: 10px 24px; font-size: 13px; }

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px; width: 24px; z-index: 10;
}
.mobile-menu-toggle span {
  display: block; height: 2px; width: 100%; background: #fff;
  border-radius: 2px; transition: all 0.3s ease;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 80% center; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--bg-base) 15%, rgba(10,10,10,0.65) 50%, transparent 85%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; background: linear-gradient(transparent, var(--bg-base)); z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; max-width: 560px; padding-top: 80px;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent-red); margin-bottom: 20px;
}
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.05; margin-bottom: 20px; }
.hero-subtitle {
  font-size: 15px; color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--bg-base); position: relative; z-index: 2;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { text-align: center; padding: 32px 16px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 25%; height: 50%;
  width: 1px; background: var(--border-subtle);
}
.stat-number { font-size: 30px; font-weight: 800; color: #fff; }
.stat-suffix { font-size: 30px; font-weight: 800; color: var(--accent-red); }
.stat-label {
  display: block; font-size: 12px; text-transform: uppercase;
  color: var(--text-secondary); letter-spacing: 0.06em; margin-top: 4px;
}

/* ===========================
   EQUIPMENT SHOWCASE
   =========================== */
.equipment-section { padding: var(--section-pad) 0; }
.equipment-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); padding: 28px;
}
.equipment-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-pill {
  padding: 10px 24px; border-radius: var(--radius-btn);
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  transition: all 0.3s ease;
}
.tab-pill:hover { color: #fff; background: rgba(255,255,255,0.05); }
.tab-pill.active { background: var(--accent-red); color: #fff; }
.equipment-body { display: flex; gap: 32px; align-items: flex-start; }
.equipment-image {
  flex: 0 0 45%; border-radius: 12px; overflow: hidden;
}
.equipment-image img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.6s ease;
}
.equipment-image:hover img { transform: scale(1.03); }
.equipment-info { flex: 1; }
.equipment-title { font-size: 24px; font-weight: 700; margin-bottom: 20px; }
.equipment-list { display: flex; flex-direction: column; gap: 14px; }
.equipment-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.5;
}
.equipment-list li::before {
  content: '✓'; color: var(--accent-red); font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* ===========================
   TRAINERS
   =========================== */
.trainers-section { padding: var(--section-pad) 0; }
.trainers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap); margin-top: 48px;
}
.trainer-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.trainer-img { aspect-ratio: 4/5; overflow: hidden; }
.trainer-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.trainer-card:hover .trainer-img img { transform: scale(1.05); }
.trainer-info { padding: 20px; }
.trainer-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.trainer-role { font-size: 14px; color: var(--text-secondary); margin-bottom: 4px; }
.trainer-spec { font-size: 13px; color: var(--text-muted); }

/* ===========================
   STORY
   =========================== */
.story-section { padding: var(--section-pad) 0; }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.story-heading { font-size: 36px; font-weight: 800; line-height: 1.15; margin-bottom: 24px; }
.story-text {
  font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px;
}
.story-stats { display: flex; gap: 32px; margin-top: 32px; }
.story-stat { text-align: center; }
.story-stat-number {
  display: block; font-size: 28px; font-weight: 800; color: var(--accent-red);
}
.story-stat-label {
  font-size: 12px; text-transform: uppercase; color: var(--text-secondary);
  letter-spacing: 0.04em;
}
.story-images { position: relative; padding-left: 40px; padding-bottom: 40px; }
.story-img-main {
  width: 100%; border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.story-img-secondary {
  position: absolute; bottom: 0; left: 0; width: 45%;
  border-radius: var(--radius-card); border: 4px solid var(--bg-base);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* ===========================
   PRICING
   =========================== */
.pricing-section { padding: var(--section-pad) 0; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap); align-items: stretch;
}
.pricing-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); padding: 28px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.pricing-card.featured {
  border-color: var(--accent-red); transform: scale(1.04);
  box-shadow: 0 20px 50px rgba(225,38,44,0.15); z-index: 2;
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-badge {
  position: absolute; top: -1px; right: 20px;
  background: var(--accent-red); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 6px 14px; border-radius: 0 0 8px 8px; letter-spacing: 0.04em;
}
.pricing-name {
  font-size: 14px; color: var(--text-secondary); font-weight: 500;
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em;
}
.pricing-price { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.pricing-card.featured .pricing-price { color: var(--accent-red); }
.currency { font-size: 20px; vertical-align: super; margin-right: 2px; }
.pricing-period { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.pricing-divider { height: 1px; background: var(--border-subtle); margin-bottom: 20px; }
.pricing-features {
  display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px; color: var(--text-secondary);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before {
  content: '✓'; color: var(--accent-red); font-weight: 700; font-size: 14px;
}
.pricing-btn { width: 100%; text-align: center; padding: 14px; font-size: 13px; }

/* ===========================
   RESULTS / TRANSFORMATIONS
   =========================== */
.results-section { padding: var(--section-pad) 0; }
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.result-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); padding: 24px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.result-name { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.result-photos { display: flex; gap: 12px; margin-bottom: 20px; }
.result-photo { flex: 1; text-align: center; }
.result-photo img {
  width: 100%; height: 200px; object-fit: cover; border-radius: 10px;
}
.result-photo.before img {
  filter: grayscale(100%) brightness(0.7); transition: filter 0.5s;
}
.result-card:hover .result-photo.before img { filter: grayscale(60%) brightness(0.8); }
.result-photo span {
  display: block; font-size: 11px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 8px; letter-spacing: 0.06em; font-weight: 600;
}
.result-stats {
  display: flex; align-items: center; padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.result-stat { flex: 1; text-align: center; }
.result-stat-value { display: block; font-size: 16px; font-weight: 700; color: #fff; }
.result-stat-label {
  font-size: 11px; text-transform: uppercase; color: var(--text-muted);
  letter-spacing: 0.04em;
}
.result-stat-divider { width: 1px; height: 36px; background: var(--border-subtle); flex-shrink: 0; }

/* ===========================
   FACILITIES
   =========================== */
.facilities-section { padding: var(--section-pad) 0; }
.facilities-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap); margin-top: 48px;
}
.facility-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card); padding: 24px;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.facility-card:hover {
  transform: translateY(-6px); border-color: rgba(225,38,44,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.facility-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(225,38,44,0.1); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.facility-icon svg {
  width: 24px; height: 24px; stroke: var(--accent-red);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.facility-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.facility-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Trust Badges */
.trust-badges {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; background: rgba(225, 38, 44, 0.08);
  border: 1px solid var(--accent-red); border-radius: 30px;
  font-size: 14px; color: #fff; font-weight: 600;
  box-shadow: 0 0 15px rgba(225, 38, 44, 0.15);
  transition: all 0.3s ease;
}
.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(225, 38, 44, 0.3);
  background: rgba(225, 38, 44, 0.15);
}
.trust-badge svg {
  stroke: var(--accent-red); fill: none; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS + BMI
   =========================== */
.testimonials-section { padding: var(--section-pad) 0; }
.testimonials-grid {
  display: grid; grid-template-columns: 55fr 45fr;
  gap: 40px; align-items: start;
}
.section-heading-left {
  font-size: 32px; font-weight: 800; line-height: 1.15; margin-bottom: 24px;
}

/* Review Summary */
.review-summary {
  display: flex; gap: 24px; align-items: center; margin-bottom: 28px;
  padding: 20px; background: var(--bg-surface); border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
}
.review-rating { text-align: center; flex-shrink: 0; min-width: 80px; }
.review-score { font-size: 40px; font-weight: 800; display: block; }
.review-stars { color: #FBBF24; font-size: 16px; margin: 4px 0; letter-spacing: 2px; }
.review-count { font-size: 12px; color: var(--text-muted); }
.star-breakdown { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.star-row { display: flex; align-items: center; gap: 8px; }
.star-label { font-size: 12px; color: var(--text-muted); width: 24px; flex-shrink: 0; }
.star-bar {
  flex: 1; height: 6px; background: var(--bg-surface-alt);
  border-radius: 3px; overflow: hidden;
}
.star-fill {
  height: 100%; background: #FBBF24; border-radius: 3px;
  transition: width 1s ease;
}

/* Testimonial Items */
.testimonial-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-subtle); }
.testimonial-item:last-of-type { border-bottom: none; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.testimonial-stars { color: #FBBF24; font-size: 12px; font-weight: 400; margin-left: 6px; }
.testimonial-text {
  font-size: 14px; color: var(--text-secondary); line-height: 1.55; font-style: italic;
}

/* Taekwondo Card */
.taekwondo-card {
  position: relative; border-radius: var(--radius-card); overflow: hidden;
  margin-top: 24px; transition: transform 0.4s ease;
}
.taekwondo-card:hover { transform: translateY(-4px); }
.taekwondo-img { width: 100%; height: 200px; object-fit: cover; }
.taekwondo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  display: flex; align-items: center; gap: 12px;
}
.taekwondo-badge {
  background: var(--accent-red); color: #fff;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 6px;
}
.taekwondo-rating { color: #FBBF24; font-size: 13px; font-weight: 600; }

/* BMI Calculator */
.bmi-card {
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 16px; padding: 28px; position: sticky; top: 100px;
}
.bmi-tabs {
  display: flex; gap: 4px; margin-bottom: 24px;
  background: var(--bg-surface-alt); border-radius: var(--radius-btn); padding: 4px;
}
.bmi-tab {
  flex: 1; padding: 9px 12px; border-radius: var(--radius-btn);
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
  text-align: center; transition: all 0.3s ease;
}
.bmi-tab:hover { color: #fff; }
.bmi-tab.active { background: var(--accent-red); color: #fff; }
.bmi-title { font-size: 22px; font-weight: 700; margin-bottom: 22px; }
.bmi-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-select, .form-input {
  width: 100%; padding: 12px 16px; background: var(--bg-surface-alt);
  border: 1px solid var(--border-subtle); border-radius: 10px;
  color: #fff; font-size: 14px; outline: none; transition: border-color 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  cursor: pointer;
}
.form-select:focus, .form-input:focus { border-color: var(--accent-red); }
.form-input::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bmi-calculate { width: 100%; margin-top: 6px; }

/* BMI Result */
.bmi-result {
  margin-top: 22px; padding: 22px; background: var(--bg-surface-alt);
  border-radius: 12px; text-align: center;
  animation: fadeInUp 0.4s ease;
}
.bmi-result-value { font-size: 38px; font-weight: 800; margin-bottom: 4px; }
.bmi-result-category { font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.bmi-result-bar { margin-top: 4px; }
.bmi-bar-track {
  height: 8px; border-radius: 4px; position: relative;
  background: linear-gradient(90deg, #3B82F6 0%, #22C55E 30%, #FBBF24 65%, #EF4444 100%);
}
.bmi-bar-indicator {
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
  border: 3px solid var(--bg-base); position: absolute; top: -3px;
  transition: left 0.6s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.bmi-bar-labels {
  display: flex; justify-content: space-between; margin-top: 8px;
}
.bmi-bar-labels span { font-size: 10px; color: var(--text-muted); }

/* ===========================
   CONTACT FORM
   =========================== */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.contact-direct { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-direct .footer-contact-item { font-size: 16px; font-weight: 500; }
.contact-direct .footer-contact-item svg { width: 22px; height: 22px; }
.contact-form-wrapper { background: var(--bg-surface); padding: 40px; border-radius: 20px; border: 1px solid var(--border-subtle); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

/* ===========================
   FOOTER
   =========================== */
.footer { border-top: 1px solid var(--border-subtle); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr 1.2fr 1fr; gap: 40px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
}
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; color: var(--text-secondary);
}
.social-icon:hover {
  background: var(--accent-red); border-color: var(--accent-red); color: #fff;
  transform: translateY(-3px);
}
.social-icon svg {
  width: 18px; height: 18px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.footer-heading { font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--text-muted); }
.footer-link:hover { color: var(--accent-red); }
.footer-contact-item {
  display: flex; gap: 10px; margin-bottom: 14px;
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.footer-contact-item svg {
  width: 18px; height: 18px; stroke: var(--accent-red);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; margin-top: 2px;
}
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent-red); }
.footer-hours-status { display: flex; align-items: center; gap: 6px; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  display: inline-block; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.footer-map { border-radius: 12px; overflow: hidden; margin-bottom: 12px; }
.footer-directions {
  font-size: 13px; color: var(--accent-red); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s ease;
}
.footer-directions:hover { gap: 10px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; margin-top: 48px; border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 13px; color: var(--text-muted); }
.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-privacy { font-size: 13px; color: var(--text-muted); }
.footer-privacy:hover { color: var(--accent-red); }
.footer-sep { color: var(--text-muted); font-size: 12px; }

/* ===========================
   CHAT BUBBLE
   =========================== */
.chat-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-chat 2s infinite;
}
.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
.chat-bubble svg { width: 28px; height: 28px; }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes pulse-chat {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Staggered entrance for grid children */
.trainers-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.trainers-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.pricing-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.facilities-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.facilities-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.facilities-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.facilities-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.facilities-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.4s; }
.results-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.results-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* ===========================
   RESPONSIVE — TABLET
   =========================== */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===========================
   RESPONSIVE — MOBILE
   =========================== */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 20px; }

  /* Navbar */
  .nav-links {
    display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 28px; z-index: 5;
  }
  .nav-links.active { display: flex; }
  .nav-links .nav-link { font-size: 20px; }
  .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  /* Hero */
  .hero-title { font-size: 36px; }
  .hero-content { max-width: 100%; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  /* Equipment */
  .equipment-body { flex-direction: column; }
  .equipment-image { flex: none; width: 100%; }
  .equipment-image img { height: 220px; }

  /* Trainers */
  .trainers-grid {
    grid-template-columns: 1fr; max-width: 400px;
    margin-left: auto; margin-right: auto;
  }

  /* Story */
  .story-grid { grid-template-columns: 1fr; }
  .story-images { margin-top: 32px; }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr; max-width: 400px;
    margin-left: auto; margin-right: auto;
  }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr; max-width: 480px;
    margin-left: auto; margin-right: auto;
  }

  /* Facilities */
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Headings */
  .section-heading { font-size: 28px; }
  .story-heading { font-size: 28px; }
  .section-heading-left { font-size: 26px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .facilities-grid { grid-template-columns: 1fr; }
  .review-summary { flex-direction: column; text-align: center; }
  .stat-item { padding: 24px 12px; }
  .stat-number, .stat-suffix { font-size: 24px; }
}
