/* ═══════════════════════════════════════════════
   IMMORTALS MMA & BJJ — style.css
   Light/grey theme, red accent, Bebas Neue + Barlow
═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --red:        #CC1B1B;
  --red-light:  #e52222;
  --red-dark:   #9e1414;
  --grey-100:   #f5f5f3;
  --grey-200:   #ebebea;
  --grey-300:   #d8d8d6;
  --grey-400:   #b0b0ae;
  --grey-600:   #6b6b68;
  --grey-800:   #2e2e2c;
  --grey-900:   #1a1a18;
  --white:      #ffffff;
  --text-main:  #1e1e1c;
  --text-sub:   #4a4a48;
  --bg-main:    #f0efed;
  --bg-alt:     #e5e4e1;
  --nav-h:      72px;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; line-height: 1.05; }

/* ══════════════════════════════════════════
   LANGUAGE SPLASH SCREEN
══════════════════════════════════════════ */
#lang-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#lang-splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--grey-900) 0%, #2a0808 50%, var(--grey-900) 100%);
  backdrop-filter: blur(4px);
}
.splash-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: splashIn 0.6s ease both;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--red);
  box-shadow: 0 0 40px rgba(204,27,27,0.4);
}
.splash-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 2rem;
}
.splash-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.lang-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(204,27,27,0.35);
}
.lang-btn .flag { font-size: 2rem; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(240,239,237,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-300);
  z-index: 900;
  transition: box-shadow var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--red);
}
.nav-gym-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--text-main);
  line-height: 1;
}
.nav-gym-sub {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--red);
  background: rgba(204,27,27,0.08);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: var(--grey-200);
  border: 1px solid var(--grey-300);
  border-radius: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}
/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-main);
  border-top: 1px solid var(--grey-300);
  padding: 1rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-main);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.45) 50%,
    rgba(10,10,10,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
  animation: heroIn 0.9s ease 0.2s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(204,27,27,0.15);
  border: 1px solid rgba(204,27,27,0.4);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  line-height: 0.9;
  margin-bottom: 0.25rem;
}
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  margin: 0 auto;
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
  border-color: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204,27,27,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
/* Dark outline variant (on light backgrounds) */
section:not(#hero) .btn-outline {
  color: var(--text-main);
  border-color: var(--grey-400);
}
section:not(#hero) .btn-outline:hover {
  background: var(--grey-200);
  border-color: var(--grey-600);
  color: var(--text-main);
}
.btn.full-width { width: 100%; text-align: center; }

/* ══════════════════════════════════════════
   FREE LESSON BANNER
══════════════════════════════════════════ */
.free-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.9rem 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════ */
section { padding: 6rem 1.5rem; }
.alt-bg { background: var(--bg-alt); }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--text-main);
  margin-bottom: 3rem;
}

/* ══════════════════════════════════════════
   COACH SECTION
══════════════════════════════════════════ */
.coach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.coach-image-wrap {
  position: relative;
}
.coach-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  filter: grayscale(15%);
}
.coach-record-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 30px rgba(204,27,27,0.4);
}
.record-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}
.record-dash {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  opacity: 0.7;
}
.record-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 0.25rem;
  opacity: 0.9;
}
.coach-name {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}
.coach-titles {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.title-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: var(--grey-200);
  color: var(--text-sub);
  border: 1px solid var(--grey-300);
}
.title-pill:first-child {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.coach-bio {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 300;
}
.coach-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--grey-200);
  border-radius: var(--radius);
  border: 1px solid var(--grey-300);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.stat-desc {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-top: 0.25rem;
}

/* ══════════════════════════════════════════
   SCHEDULE SECTION
══════════════════════════════════════════ */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.schedule-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-300);
}
.day-header {
  background: var(--grey-800);
  padding: 0.75rem 1rem;
  text-align: center;
}
.day-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.class-item {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.class-item:last-child { border-bottom: none; }
.class-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey-600);
}
.class-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-main);
}
.class-item.kids { border-left: 3px solid #e67e22; }
.class-item.adults { border-left: 3px solid var(--red); }
.class-item.mma.adults { border-left: 3px solid #2980b9; }
.class-item.kids.mma { border-left: 3px solid #8e44ad; }

/* ══════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 8px 40px rgba(204,27,27,0.18);
  transform: translateY(-8px);
}
.pricing-card.featured:hover {
  transform: translateY(-12px);
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.special-badge { background: var(--grey-800); }
.plan-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}
.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
}
.price-period {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  color: var(--grey-600);
}
.plan-price-extra {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  padding-top: 0.25rem;
  border-top: 1px dashed var(--grey-300);
  margin-top: 0.5rem;
}
.price-amount-small {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--grey-800);
}
.price-period-small {
  font-size: 0.85rem;
  color: var(--grey-600);
}
.plan-features {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.plan-features li {
  font-size: 0.9rem;
  color: var(--text-sub);
}
.plan-features li.highlight-feature {
  color: var(--red-dark);
  font-weight: 600;
}
.pricing-note {
  text-align: center;
  font-size: 1rem;
  color: var(--text-sub);
  font-style: italic;
  padding: 1rem;
  background: var(--grey-200);
  border-radius: var(--radius);
  border: 1px solid var(--grey-300);
}

/* ══════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════ */
.gallery-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.gallery-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-photo:hover img { transform: scale(1.05); }
.gallery-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-300);
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: var(--grey-900);
}
.video-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
  padding: 0.75rem 1rem;
  text-align: center;
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-free-lesson {
  background: rgba(204,27,27,0.08);
  border: 1px solid rgba(204,27,27,0.25);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--red-dark);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon { font-size: 1.4rem; margin-top: 0.1rem; color: var(--grey-600); }
.contact-icon--ig { color: #E1306C; }
.contact-icon--fb { color: #1877F2; }
.contact-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 0.15rem;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
  transition: color var(--transition);
}
.contact-value:hover { color: var(--red); }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-300);
  box-shadow: var(--shadow);
}
/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-300);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--grey-100);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(204,27,27,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  margin-top: 1rem;
  color: #2e7d32;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem;
  background: rgba(46,125,50,0.1);
  border-radius: var(--radius);
}
.form-success.visible { display: block; }

.reviews-google-btn {
  background: #ffffff;
  color: var(--grey-900);
  border-color: #ffffff;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}
.reviews-google-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(204,27,27,0.45);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--grey-900);
  color: var(--white);
  padding: 3rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--red);
  margin: 0 auto 1rem;
}
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 1.3rem;
  color: var(--grey-400);
  transition: var(--transition);
}
.footer-social:hover          { transform: translateY(-3px); }
.footer-social--ig:hover      { background: #E1306C; border-color: #E1306C; color: var(--white); }
.footer-social--fb:hover      { background: #1877F2; border-color: #1877F2; color: var(--white); }
.footer-social--phone:hover   { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--grey-600);
}
.footer-accreditation {
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--grey-600);
  opacity: 0.75;
  max-width: 620px;
  margin: 0 auto 1rem;
  padding: 0 0.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════════
   GALLERY CTA
══════════════════════════════════════════ */
.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.gallery-coming-soon {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--red);
  padding: 1rem 2.5rem;
  border: 2px dashed var(--red);
  border-radius: var(--radius);
  background: rgba(204, 27, 27, 0.05);
  text-transform: uppercase;
}
[data-lang="gr"] .gallery-coming-soon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   REVIEWS SLIDER
══════════════════════════════════════════ */
#reviews { background: var(--grey-900); }
#reviews .section-label { color: #e8b84b; }
#reviews .section-title { color: var(--white); }

.reviews-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.reviews-track-wrap {
  flex: 1;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
}
.review-stars {
  color: #e8b84b;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.review-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
}
.reviews-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.reviews-arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.reviews-dot.active {
  background: var(--red);
  transform: scale(1.3);
}
.reviews-cta {
  text-align: center;
}
#reviews .btn-outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
}
#reviews .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .coach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .coach-img { max-width: 100%; aspect-ratio: 4/3; }
  .coach-record-badge { right: 0.5rem; bottom: -1rem; }
  .coach-stats { grid-template-columns: repeat(2, 1fr); }

  .schedule-grid { grid-template-columns: repeat(3, 1fr); }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-4px); }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .review-card { flex: 0 0 calc(50% - 0.625rem); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤600px)
══════════════════════════════════════════ */
@media (max-width: 600px) {
  section { padding: 4rem 1rem; }

  .schedule-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-photos { grid-template-columns: 1fr; }
  .gallery-videos { grid-template-columns: 1fr; }

  .coach-stats { grid-template-columns: repeat(2, 1fr); }

  .hero-cta-group { flex-direction: column; align-items: center; }

  .coach-record-badge {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }
  .coach-image-wrap { text-align: center; }

  .contact-form-wrap { padding: 1.5rem; }

  .review-card { flex: 0 0 100%; }
  .reviews-arrow { display: none; }
  .nav-gym-name { font-size: 1.1rem; }
}

@media (max-width: 400px) {
  .schedule-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   GREEK LANGUAGE FONTS
══════════════════════════════════════════ */
[data-lang="gr"] h1,
[data-lang="gr"] h2,
[data-lang="gr"] h3,
[data-lang="gr"] .hero-title,
[data-lang="gr"] .coach-name,
[data-lang="gr"] .section-title,
[data-lang="gr"] .plan-name,
[data-lang="gr"] .day-name,
[data-lang="gr"] .stat-num,
[data-lang="gr"] .record-num,
[data-lang="gr"] .nav-gym-name {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

[data-lang="gr"] body,
[data-lang="gr"] p,
[data-lang="gr"] a,
[data-lang="gr"] li,
[data-lang="gr"] .coach-bio,
[data-lang="gr"] .review-text,
[data-lang="gr"] .class-name,
[data-lang="gr"] .contact-value,
[data-lang="gr"] .plan-features li {
  font-family: 'Montserrat', sans-serif;
}

[data-lang="gr"] .hero-tagline {
  font-family: 'Montserrat', sans-serif !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  font-weight: 400 !important;
}

[data-lang="gr"] .section-label,
[data-lang="gr"] .hero-badge,
[data-lang="gr"] .hero-sub,
[data-lang="gr"] .btn,
[data-lang="gr"] .title-pill,
[data-lang="gr"] .stat-desc,
[data-lang="gr"] .nav-links a,
[data-lang="gr"] .nav-mobile a,
[data-lang="gr"] .class-time,
[data-lang="gr"] .review-author,
[data-lang="gr"] .contact-label,
[data-lang="gr"] .form-group label,
[data-lang="gr"] .price-period,
[data-lang="gr"] .footer-tagline {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════
   GYM TEASER SECTION (homepage)
   Add this to the bottom of style.css
══════════════════════════════════════════ */

#the-gym {
  background: var(--bg-main);
}

.gym-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

/* Standard card */
.gym-teaser-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.gym-teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

/* Photo area */
.gym-teaser-photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grey-800);
}
.gym-teaser-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gym-teaser-card:hover .gym-teaser-photo img {
  transform: scale(1.05);
}

/* Placeholder (before real photos are added) */
.gym-teaser-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--grey-800) 0%, var(--grey-900) 100%);
  border-bottom: 2px dashed rgba(255,255,255,0.08);
}
.gym-teaser-placeholder-icon { font-size: 2.5rem; opacity: 0.35; }
.gym-teaser-placeholder-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* Card body */
.gym-teaser-body {
  padding: 1.5rem;
}
.gym-teaser-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--grey-300);
  line-height: 1;
  margin-bottom: -0.25rem;
}
.gym-teaser-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.gym-teaser-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.65;
  font-weight: 300;
}

/* Highlight card (24/7 access) */
.gym-teaser-card--highlight {
  background: var(--grey-900);
  border-color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gym-teaser-card--highlight:hover {
  border-color: var(--red-light);
  box-shadow: 0 12px 40px rgba(204,27,27,0.25);
}
.gym-teaser-highlight-inner {
  padding: 2rem 1.75rem;
  text-align: center;
}
.gym-teaser-highlight-icon {
  width: 56px;
  height: 56px;
  background: rgba(204,27,27,0.15);
  border: 1px solid rgba(204,27,27,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
  color: var(--red-light);
}
.gym-teaser-highlight-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  line-height: 1;
}
.gym-teaser-highlight-desc {
  font-size: 0.9rem;
  color: var(--grey-400);
  line-height: 1.65;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 900px) {
  .gym-teaser-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gym-teaser-card--highlight {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .gym-teaser-grid {
    grid-template-columns: 1fr;
  }
  .gym-teaser-card--highlight {
    grid-column: 1;
  }
}

/* ═══════════════════════════════════════════
   GYM PREVIEW SECTION (homepage teaser)
═══════════════════════════════════════════ */
.section-intro {
  text-align: center;
  color: var(--text-sub);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.gym-preview-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto 2.5rem;
}

.gym-preview-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
}

.gym-preview-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gym-preview-photo:hover img {
  transform: scale(1.04);
}

.gym-preview-cta {
  text-align: center;
}

@media (max-width: 600px) {
  .gym-preview-photos {
    grid-template-columns: 1fr;
  }
}