/* ===== GOOGLE FONTS FALLBACK ===== */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --gold: #D4960A;
  --gold-light: #F5B800;
  --gold-dim: rgba(212,150,10,0.15);
  --red: #C0392B;
  --red-bright: #E53935;
  --black: #080808;
  --dark: #0F0F0F;
  --dark2: #161616;
  --dark3: #1E1E1E;
  --surface: #242424;
  --white: #FFFFFF;
  --off: #F4EFE6;
  --muted: #888;
  --green: #25D366;
  --radius: 10px;
  --shadow-gold: 0 8px 32px rgba(212,150,10,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== INFO BAR ===== */
.infobar {
  background: linear-gradient(90deg, #1a0e00, #2c1800, #1a0e00);
  border-bottom: 1px solid rgba(212,150,10,0.3);
  padding: 9px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  gap: 8px;
  flex-wrap: wrap;
}
.infobar-left { display: flex; align-items: center; gap: 6px; color: #ddd; }
.infobar-left svg { color: var(--gold); flex-shrink: 0; }
.infobar-right { display: flex; align-items: center; gap: 16px; }
.infobar-right a { color: var(--off); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.infobar-right a:hover { color: var(--gold-light); }
.infobar-right svg { flex-shrink: 0; }
.wa-pill {
  background: var(--green);
  color: #fff !important;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212,150,10,0.2);
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo img { height: 82px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all .2s;
}
.nav-links a:hover { color: var(--gold-light); background: rgba(212,150,10,0.08); }
.nav-links a.active { color: var(--gold-light); }
.btn-trial {
  background: var(--red);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background .2s, transform .15s !important;
  white-space: nowrap;
}
.btn-trial:hover { background: var(--red-bright) !important; transform: translateY(-1px) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mob-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}
.mob-nav.open { display: flex; }
.mob-nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .2s;
}
.mob-nav a:hover { background: rgba(212,150,10,0.1); color: var(--gold-light); }
.mob-nav .btn-trial-mob {
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  justify-content: center;
  margin-top: 8px;
  font-weight: 700;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.75) 50%, rgba(8,8,8,0.4) 100%),
    linear-gradient(to top, rgba(8,8,8,1) 0%, transparent 40%);
}
.hero-accent {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(212,150,10,0.05) 50%, transparent 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-lines::before {
  content: '';
  position: absolute;
  left: -100px;
  top: 50%;
  width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,150,10,0.3), transparent);
  transform: rotate(-20deg) translateY(-80px);
}
.hero-lines::after {
  content: '';
  position: absolute;
  left: -100px;
  top: 50%;
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,150,10,0.15), transparent);
  transform: rotate(-20deg) translateY(40px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 40px 60px;
  max-width: 760px;
  margin-left: max(40px, 6vw);
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,150,10,0.12);
  border: 1px solid rgba(212,150,10,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeUp .9s .1s ease both;
}
.hero-tag svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 9vw, 116px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp .9s .2s ease both;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  display: block;
  -webkit-text-stroke: 1px var(--gold);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 10px;
  max-width: 520px;
  animation: fadeUp .9s .3s ease both;
}
.hero-styles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeUp .9s .35s ease both;
}
.hero-style-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  animation: fadeUp .9s .4s ease both;
}
.hero-stars { color: var(--gold-light); font-size: 16px; letter-spacing: 2px; }
.hero-trust-text { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); }
.hero-trust-text strong { color: var(--off); }
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .9s .5s ease both;
}
.btn-cta-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(192,57,43,0.45);
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-cta-red:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(192,57,43,0.55); }
.btn-cta-red svg, .btn-cta-wa svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  transition: all .25s;
}
.btn-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  z-index: 2;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}
.hero-img-panel {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.6) 0%, transparent 60%);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: max(40px, 6vw);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ===== SECTION BASE ===== */
section { padding: 88px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
h2.sec-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
h2.sec-heading span { color: var(--gold-light); }
.sec-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; }

/* ===== PROGRAMS ===== */
.programs { background: var(--dark); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.prog-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .35s;
}
.prog-card:hover { transform: translateY(-6px); }
.prog-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.prog-card:hover img { transform: scale(1.06); }
.prog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.prog-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color .3s;
}
.prog-card:hover .prog-border { border-color: var(--gold); }
.prog-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}
.prog-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(212,150,10,0.15);
  border: 1px solid rgba(212,150,10,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: var(--gold-light);
  transition: background .3s;
}
.prog-card:hover .prog-icon-wrap { background: rgba(212,150,10,0.3); }
.prog-icon-wrap svg { width: 22px; height: 22px; }
.prog-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.prog-info p { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }
.prog-age {
  display: inline-block;
  margin-top: 8px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.programs-cta { text-align: center; margin-top: 44px; }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .25s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }
.btn-outline-gold svg { width: 16px; height: 16px; }

/* ===== ABOUT ===== */
.about { background: var(--black); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  left: 0; top: 0;
  width: 72%;
  height: 88%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 52%;
  height: 55%;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute;
  left: -16px;
  bottom: 80px;
  background: var(--gold);
  color: var(--black);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.about-badge-float .num { font-size: 44px; line-height: 1; }
.about-badge-float .lbl { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.about-text .sec-heading { margin-bottom: 20px; }
.about-text p { color: #bbb; line-height: 1.8; font-size: 16px; margin-bottom: 20px; }
.about-bullets { list-style: none; margin: 24px 0 32px; }
.about-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  font-weight: 500;
  color: var(--off);
}
.about-bullets li svg {
  color: var(--gold);
  width: 20px; height: 20px;
  flex-shrink: 0;
  background: rgba(212,150,10,0.1);
  border-radius: 50%;
  padding: 3px;
}

/* ===== WHY ===== */
.why { background: var(--off); }
.why .sec-label { color: #8a6500; }
.why .sec-label::before { background: #8a6500; }
.why h2.sec-heading { color: #111; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark, #a07000), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px;
  background: rgba(212,150,10,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 16px; font-weight: 800; color: #111; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.why-card p { font-size: 14px; color: #555; line-height: 1.7; }

/* ===== CLASSES ===== */
.classes { background: var(--dark2); }
.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.class-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.class-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.class-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.class-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.class-card:hover .class-img img { transform: scale(1.06); }
.class-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.class-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.class-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.class-icon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.class-icon-row svg { width: 20px; height: 20px; }
.class-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.class-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.ctag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
}
.class-body .btn-sm-gold {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .2s;
  align-self: flex-start;
}
.class-body .btn-sm-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.class-body .btn-sm-gold svg { width: 14px; height: 14px; }

/* ===== STATS ===== */
.stats {
  background: var(--dark);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,150,10,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192,57,43,0.04) 0%, transparent 60%);
}
.stats-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.stat-item:last-child { border-right: none; }
.stat-ico {
  width: 48px; height: 48px;
  background: rgba(212,150,10,0.1);
  border: 1px solid rgba(212,150,10,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  margin: 0 auto 14px;
}
.stat-ico svg { width: 24px; height: 24px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--black); }
.gallery-masonry {
  columns: 3;
  column-gap: 12px;
  margin-top: 52px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item img { width: 100%; display: block; transition: transform .5s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gallery-cta { text-align: center; margin-top: 40px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.testi-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(212,150,10,0.3); }
.quote-mark {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(212,150,10,0.08);
  line-height: 1;
  select: none;
}
.testi-stars { color: var(--gold-light); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.testi-text { font-size: 15px; line-height: 1.75; color: #ccc; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.testi-av img { width: 100%; height: 100%; object-fit: cover; }
.testi-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.testi-info span { font-size: 12px; color: var(--muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: url('../images/cta-bg.jpg') center / cover no-repeat;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.88);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 8vw, 88px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.cta-section h2 span { color: var(--gold-light); }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 40px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 52px;
}
.contact-branches { display: flex; flex-direction: column; gap: 24px; }
.branch-card {
  background: var(--dark2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(212,150,10,0.12);
  transition: border-color .3s;
}
.branch-card:hover { border-color: rgba(212,150,10,0.35); }
.branch-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.branch-icon {
  width: 40px; height: 40px;
  background: rgba(212,150,10,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.branch-icon svg { width: 20px; height: 20px; }
.branch-header h3 { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.ci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: #bbb;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ci:last-of-type { border-bottom: none; }
.ci-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; }
.ci a { color: var(--gold); }
.ci a:hover { color: var(--gold-light); }
.branch-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--green);
  color: #fff;
  padding: 11px 22px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  transition: all .2s;
}
.branch-wa-btn:hover { transform: translateY(-1px); opacity: .9; }
.branch-wa-btn svg { width: 16px; height: 16px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(212,150,10,0.15);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 1px solid rgba(212,150,10,0.18);
  padding: 56px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand img { height: 86px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 300px; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 15px;
  transition: all .2s;
}
.soc-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.soc-btn svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links a svg { width: 14px; height: 14px; opacity: .5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom a { color: var(--gold); }

/* ===== FLOATING WA ===== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9998;
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat-item:nth-child(3), .stat-item:nth-child(6) { border-right: none; }
  .stat-item:nth-child(4), .stat-item:nth-child(5), .stat-item:nth-child(6) { border-bottom: none; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-right { display: none; }
  .hero-content { max-width: 100%; margin: 0; padding: 100px 24px 80px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-styles { justify-content: center; }
  .hero-scroll-hint { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 380px; }
  .about-badge-float { left: 0; bottom: 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 20px; }
  section { padding: 64px 20px; }
  .programs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .classes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .infobar { flex-direction: column; gap: 6px; text-align: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.05); }
  .stat-item:nth-child(4) { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .stat-item:nth-child(2), .stat-item:nth-child(4), .stat-item:nth-child(6) { border-right: none; }
  .stat-item:nth-child(5), .stat-item:nth-child(6) { border-bottom: none; }
}
@media (max-width: 480px) {
  .programs-grid { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .hero h1 { font-size: 52px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .wa-float { bottom: 20px; right: 16px; }
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.btn {
  transition: all 0.25s ease !important;
}

.btn-primary {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--black) !important;
  font-weight: 700;
}

.btn-primary:hover {
  background-color: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
  transform: translateY(-2px);
}
