/* ============================================================
   ShePlays Karachi – style.css
   Empowering | Bold | Athletic | Feminine Strong | Modern
   ============================================================ */

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  /* ── Core Brand: Black & White ── */
  --purple:       #111111;   /* was deep purple  → near-black */
  --purple-dark:  #000000;   /* was darkest purple → true black */
  --purple-light: #333333;   /* was purple-light   → dark grey */

  /* ── Accent: high-contrast single pop colour ── */
  --pink:         #E8C547;   /* was neon pink  → bold gold accent */
  --pink-light:   #f0d47a;   /* was pink-light → light gold */
  --teal:         #E8C547;   /* was teal       → unified with gold */

  /* ── Neutrals ── */
  --white:        #FFFFFF;
  --off-white:    #F5F5F5;   /* was purple-tinted → clean light grey */
  --light-grey:   #EEEEEE;   /* was purple-tinted → pure light grey */
  --text-dark:    #0A0A0A;   /* near black for headings */
  --text-body:    #3A3A3A;   /* dark grey body text */
  --text-muted:   #888888;   /* mid grey muted text */

  /* ── Shadows / Borders ── */
  --border:       rgba(0, 0, 0, 0.10);
  --shadow-sm:    0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-md:    0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg:    0 16px 48px rgba(0, 0, 0, 0.18);
  --shadow-pink:  0 8px 32px rgba(232, 197, 71, 0.35); /* gold glow */

  /* ── Shape & Motion ── */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   0.3s ease;
  --font-head:    'Montserrat', sans-serif;
  --font-body:    'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(255, 45, 135, 0.08);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 45, 135, 0.2);
}

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-heading span { color: var(--purple); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink), #c9a227, var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #c0146a);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 45, 135, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-sport {
  background: var(--purple);
  color: var(--white);
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}
.btn-sport:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sport.featured-btn {
  background: linear-gradient(135deg, var(--pink), #c0146a);
}
.btn-sport.featured-btn:hover {
  box-shadow: var(--shadow-pink);
}

.btn-program {
  background: var(--light-grey);
  color: var(--purple);
  width: 100%;
  justify-content: center;
  border: 2px solid var(--border);
}
.btn-program:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--purple);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.full-width { width: 100%; justify-content: center; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { cursor: pointer; }

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px var(--pink));
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--pink); }

.footer-logo .logo-text { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-cta-btn {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #c0146a);
  padding: 10px 22px;
  border-radius: 50px;
  transition: all var(--transition);
  box-shadow: var(--shadow-pink);
  margin-left: 8px;
}
.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,45,135,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url("images/hero.jpg") no-repeat center/cover;
  background-color: #000000;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(20, 20, 20, 0.78) 50%,
    rgba(232, 197, 71, 0.10) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.4; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
  animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  animation: slideUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: slideUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
  animation: slideUp 0.8s ease 0.5s forwards;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: slideUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  width: fit-content;
  animation: slideUp 0.8s ease 0.7s forwards;
  opacity: 0;
}

.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.hstat strong {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.hstat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.hstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #111111, #2a2a2a);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  gap: 12px;
  font-size: 0.9rem;
}
.img-placeholder-content i { font-size: 3rem; }

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--pink), #c0146a);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-pink);
}
.about-accent-card i { font-size: 1.8rem; }
.about-accent-card p { font-size: 0.85rem; line-height: 1.4; }
.about-accent-card strong { font-family: var(--font-head); font-weight: 700; }

.about-text { padding-left: 20px; }

.about-para {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-item i {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.feature-item strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}
.feature-item p { color: var(--text-body); font-size: 0.88rem; }

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.counter-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.counter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-light);
}

.counter-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--purple);
}
.counter-plus { font-family: var(--font-head); font-weight: 900; color: var(--pink); font-size: 1.5rem; }
.counter-card p { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; margin-top: 4px; }

/* ============================================================
   SPORTS
   ============================================================ */
.sports { background: var(--white); }

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sport-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.sport-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(75, 0, 130, 0.18);
  border-color: var(--purple-light);
}

.sport-card.featured {
  border-color: var(--pink);
  box-shadow: 0 8px 40px rgba(255, 45, 135, 0.15);
}
.sport-card.featured:hover {
  box-shadow: 0 20px 60px rgba(255, 45, 135, 0.30);
  border-color: var(--pink);
}

.sport-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: linear-gradient(135deg, var(--pink), #c0146a);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.sport-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  overflow: hidden;
}

.sport-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sport-card:hover .sport-img-wrap img { transform: scale(1.08); }

.sport-ph-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

.sport-overlay-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 24px 20px 12px;
}

.sport-body { padding: 24px; }

.sport-emoji { font-size: 2rem; margin-bottom: 10px; }

.sport-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.sport-body p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sport-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sport-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-body);
}
.sport-info li i {
  color: var(--purple);
  width: 16px;
  text-align: center;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs { background: var(--off-white); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.program-card.featured-program {
  background: linear-gradient(160deg, #000000, #1c1c1c);
  border-color: #333;
  color: var(--white);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(-12px);
}
.program-card.featured-program:hover {
  transform: translateY(-20px);
}

.program-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), #c0146a);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.program-icon { font-size: 3rem; margin-bottom: 16px; }

.program-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.featured-program h3 { color: var(--white); }

.program-price { margin-bottom: 28px; }
.price-label { display: block; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.featured-program .price-label { color: rgba(255,255,255,0.6); }
.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
}
.featured-program .price-amount { color: var(--white); }
.price-period { font-size: 0.85rem; color: var(--text-muted); }
.featured-program .price-period { color: rgba(255,255,255,0.6); }

.program-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  text-align: left;
}
.program-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}
.program-features li i { color: var(--pink); }
.featured-program .program-features li { color: rgba(255,255,255,0.85); }
.featured-program .program-features li i { color: var(--teal); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #111111, #2a2a2a);
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gph-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.25);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.8rem; }
.gallery-overlay span { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Gallery placeholder state */
.gallery-item.gph .gph-icon { color: rgba(255,255,255,0.5); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox-content img {
  max-height: 80vh;
  max-width: 90vw;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-content p {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
}
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--pink); border-color: var(--pink); transform: rotate(90deg); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); }

.testimonial-slider { position: relative; }

.testimonial-track {
  position: relative;
  min-height: 280px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  position: relative;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111111, var(--pink));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  font-family: var(--font-head);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }

.testimonial-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-top: 16px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.tctrl {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.tctrl:hover { background: var(--purple); color: var(--white); box-shadow: var(--shadow-md); }

.testimonial-dots { display: flex; gap: 8px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--purple);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,197,71,0.18), transparent);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,197,71,0.10), transparent);
  border-radius: 50%;
}

.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(75, 0, 130, 0.08);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0, 212, 100, 0.08);
  border: 1px solid rgba(0, 212, 100, 0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #00a855;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; }

.info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.info-item:last-child { border-bottom: none; }

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--light-grey);
  color: var(--purple);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.info-item strong {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.info-item p { font-size: 0.88rem; color: var(--text-body); }

.social-links {
  display: flex;
  gap: 12px;
  margin: 24px 0;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--white);
}
.social-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.social-link.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.facebook  { background: #1877F2; }
.social-link.tiktok    { background: #010101; }
.social-link.whatsapp  { background: #25D366; }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #000000; }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 300px;
}

.footer-links-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a,
.footer-links-col span {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-bottom strong { color: var(--pink); }

/* ============================================================
   IMG PLACEHOLDER (when images missing)
   ============================================================ */
.about-img-frame.img-placeholder img { display: none; }
.about-img-frame.img-placeholder .img-placeholder-content { display: flex; }

.sport-img-wrap.img-ph img { display: none; }
.sport-img-wrap.img-ph .sport-ph-icon { opacity: 0.6; }

.gallery-item.gph img { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .sports-grid,
  .programs-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .programs-grid { max-width: 420px; }
  .program-card.featured-program { transform: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }

  /* Navbar mobile */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 280px;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 32px;
    gap: 8px;
    transition: right var(--transition);
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { right: 0; }
  .nav-link, .nav-cta-btn { font-size: 1rem; padding: 12px 0; width: 100%; }
  .nav-cta-btn { margin-left: 0; margin-top: 16px; text-align: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .about-text { padding-left: 0; }
  .about-accent-card { right: 0; }
  .counters { grid-template-columns: repeat(3, 1fr); }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

  /* Hero */
  .hero-stats { flex-wrap: wrap; gap: 0; padding: 16px; }
  .hstat { padding: 12px 16px; }
  .hstat-divider { display: none; }

  /* Testimonials */
  .testimonial-card { padding: 32px 24px; }

  /* Program */
  .programs-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .counters { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; aspect-ratio: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .info-card { padding: 24px; }
}