/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0a0a0a;
  --dark:     #111111;
  --charcoal: #1a1a1a;
  --card-bg:  #161616;
  --gold:     #f0b429;
  --gold-dim: #c8942a;
  --gold-glow:rgba(240,180,41,0.18);
  --white:    #f5f0e8;
  --grey:     #9a9a9a;
  --border:   rgba(240,180,41,0.15);
  --radius-sm:8px;
  --radius:   14px;
  --radius-lg:22px;
  --shadow:   0 8px 32px rgba(0,0,0,0.45);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.bg-dark  { background: var(--dark); }

.gold { color: var(--gold); }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-tag { display: inline-flex; }
.section-header.centered .section-sub { margin: 0 auto; }

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; display: inline-flex; }
.w-full { width: 100%; justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(240,180,41,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #ffc94d, var(--gold));
  box-shadow: 0 6px 30px rgba(240,180,41,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}
.btn-lg { padding: 16px 34px; font-size: 15px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-energy {
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-fitness {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
}
.logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--grey);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245,240,232,0.75);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0a0a;
  font-weight: 700;
  padding: 9px 20px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img { height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.75) 50%,
    rgba(10,10,10,0.6) 100%
  );
}
.hero-glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240,180,41,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-top: 8px;
  margin-bottom: 28px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  text-align: center;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(245,240,232,0.75);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 36px;
  text-align: center;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  justify-content: center;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(26,26,26,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  width: fit-content;
  margin: 0 auto;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { padding-right: 0; }
.stat-item i { color: var(--gold); font-size: 20px; }
.stat-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }
.stat-item span  { display: block; font-size: 11px; color: var(--grey); white-space: nowrap; }
.stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span { font-size: 11px; letter-spacing: 2px; color: var(--grey); text-transform: uppercase; }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.8); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow);
}
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 200px;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--charcoal);
  box-shadow: var(--shadow);
}
.about-badge-float {
  position: absolute;
  top: 30px;
  right: -20px;
  z-index: 2;
}
.float-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0a0a;
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(240,180,41,0.4);
}
.float-num  { display: block; font-size: 28px; font-weight: 900; line-height: 1; }
.float-label{ display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; margin-top: 4px; }
.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.65;
}
.about-text {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 28px;
  line-height: 1.75;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(245,240,232,0.85);
}
.about-feat i { color: var(--gold); font-size: 14px; }

/* ===== WHY CHOOSE ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-glow), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(240,180,41,0.12);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  color: var(--gold);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
}
.feature-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.feature-card p {
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.6;
}

/* ===== PROGRAMS ===== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.program-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: var(--border);
}
.program-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.program-img-wrap img { transition: transform 0.6s ease; }
.program-card:hover .program-img-wrap img { transform: scale(1.08); }
.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
}
.program-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.program-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.program-info p {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 12px;
}
.program-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  margin-top: auto;
}
.program-link:hover { gap: 10px; }

/* ===== LADIES ===== */
.ladies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ladies-lead {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.65;
}
.ladies-features { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.ladies-feat { display: flex; gap: 18px; align-items: flex-start; }
.lf-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.ladies-feat h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ladies-feat p  { font-size: 13px; color: var(--grey); line-height: 1.6; }
.ladies-images { display: flex; flex-direction: column; gap: 14px; }
.ladies-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  box-shadow: var(--shadow);
}
.ladies-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ladies-img-grid img {
  border-radius: var(--radius);
  height: 160px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* ===== WELLNESS ===== */
.wellness-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.wellness-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.wellness-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: var(--border);
}
.wellness-img { position: relative; height: 200px; overflow: hidden; }
.wellness-img img { transition: transform 0.6s ease; }
.wellness-card:hover .wellness-img img { transform: scale(1.08); }
.wellness-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,22,22,0.95) 0%, transparent 60%);
}
.wellness-body {
  padding: 24px;
  position: relative;
  margin-top: -40px;
}
.wellness-icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 20px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(240,180,41,0.4);
}
.wellness-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.wellness-body p  { font-size: 13.5px; color: var(--grey); line-height: 1.65; }

/* ===== GLASS CARD ===== */
.glass-card {
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(12px);
}

/* ===== VIDEO SECTION ===== */
.video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  margin-top: 56px;
}
.video-side-grid { display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 16px; }
.video-placeholder {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  min-height: 120px;
}
.vp-large { min-height: 420px; }
.video-placeholder img { height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.video-placeholder:hover img { transform: scale(1.05); }
.vp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: var(--transition);
}
.video-placeholder:hover .vp-overlay { background: rgba(10,10,10,0.35); }
.play-btn {
  width: 64px;
  height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 0 0 12px rgba(240,180,41,0.2);
  transition: var(--transition);
}
.play-btn.sm { width: 44px; height: 44px; font-size: 14px; }
.video-placeholder:hover .play-btn { transform: scale(1.1); box-shadow: 0 0 0 16px rgba(240,180,41,0.25); }
.vp-label { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: 0.5px; }

/* ===== FACILITY GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 14px;
  margin-top: 56px;
}
.gallery-wide { grid-column: span 2; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  border-left: 3px solid var(--gold);
  padding-left: 10px;
}

/* ===== MEMBERSHIP ===== */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
  align-items: stretch;
}
.membership-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}
.membership-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.membership-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(240,180,41,0.08) 0%, var(--card-bg) 60%);
  box-shadow: 0 0 0 1px var(--gold), 0 20px 50px rgba(240,180,41,0.15);
}
.mem-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.mem-header { text-align: center; margin-bottom: 24px; }
.mem-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin: 0 auto 14px;
}
.gold-icon { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.mem-header h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.mem-tag {
  display: inline-block;
  background: rgba(255,255,255,0.07);
  color: var(--grey);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.gold-tag { background: var(--gold-glow); color: var(--gold); border: 1px solid var(--border); }
.mem-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.mem-features li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(245,240,232,0.8); }
.mem-features li i { color: var(--gold); font-size: 12px; }
.membership-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.mem-note-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--white); }
.mem-note-item i { color: var(--gold); }

/* ===== STATS ===== */
.stats-section { background: var(--charcoal); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-block {
  background: var(--card-bg);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-block:hover { background: rgba(240,180,41,0.06); }
.stat-num {
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 13px; color: var(--grey); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.testi-card {
  background: rgba(22,22,22,0.8);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 14px; color: rgba(245,240,232,0.8); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; min-width: 44px; border-radius: 50%; overflow: hidden; border: 2px solid var(--border); }
.testi-author h4 { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-author span { font-size: 12px; color: var(--grey); }

/* ===== INSTAGRAM ===== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 56px;
}
.insta-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.insta-item img { transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(240,180,41,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 22px;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; margin-top: 36px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img { height: 100%; object-position: center 30%; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.75) 100%);
}
.cta-content { position: relative; z-index: 2; }
.centered-tag { display: inline-flex; }
.cta-title {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(245,240,232,0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-buttons { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 56px;
}
.contact-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 17px;
}
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item p, .contact-item a { font-size: 14px; color: rgba(245,240,232,0.75); line-height: 1.65; }
.contact-item a:hover { color: var(--gold); }
.contact-socials { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 16px;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  position: relative;
  border: 1px solid var(--border);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg) brightness(0.85) contrast(0.95);
}
.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 100%);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.map-overlay-text { display: flex; align-items: center; gap: 10px; }
.map-overlay-text i { color: var(--gold); font-size: 16px; }
.map-overlay-text span { font-size: 13px; font-weight: 600; color: var(--white); }

.contact-form-wrap { }
.contact-form {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--grey); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(240,180,41,0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,154,154,0.6); }
.form-group select option { background: var(--dark); color: var(--white); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.footer-tagline { font-size: 13.5px; color: var(--grey); line-height: 1.65; max-width: 260px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 15px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: var(--grey); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-address { font-size: 13.5px; color: var(--grey); line-height: 1.7; }
.footer-hours { font-size: 13.5px; color: var(--grey); line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-bottom p { font-size: 13px; color: var(--grey); }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(4, 1fr); }
  .programs-grid  { grid-template-columns: repeat(3, 1fr); }
  .insta-grid     { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .about-grid, .ladies-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary, .about-badge-float { display: none; }
  .features-grid  { grid-template-columns: repeat(3, 1fr); }
  .programs-grid  { grid-template-columns: repeat(2, 1fr); }
  .wellness-grid  { grid-template-columns: 1fr 1fr; }
  .membership-grid{ grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: repeat(3, 1fr); }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .video-grid     { grid-template-columns: 1fr; }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-large  { grid-column: span 2; grid-row: span 1; height: 280px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(10,10,10,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 24px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }

  /* Center about & ladies text content */
  .about-content,
  .ladies-content { text-align: center; }
  .about-features { justify-content: center; }
  .about-feat { justify-content: center; }
  .about-content .mt-32,
  .ladies-content .mt-32 { display: flex; justify-content: center; }
  .ladies-features { align-items: center; }
  .ladies-feat { flex-direction: column; align-items: center; text-align: center; }
  .section-sub { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .programs-grid  { grid-template-columns: 1fr 1fr; }
  .wellness-grid  { grid-template-columns: 1fr; }
  .membership-grid{ grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .stat-block     { padding: 28px 16px; }
  .stat-num       { font-size: 32px; }
  .stat-label     { font-size: 12px; }
  .stats-grid .stat-block:last-child:nth-child(odd) { grid-column: span 2; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-large  { grid-column: span 2; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .hero-title     { font-size: clamp(32px, 9vw, 52px); }
  .hero-buttons   { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats     { flex-direction: column; gap: 16px; align-items: flex-start; width: fit-content; margin: 0 auto; }
  .stat-divider   { width: 100%; height: 1px; }
  .stat-item      { padding: 0; justify-content: flex-start; text-align: left; }
  .stat-item strong, .stat-item span { text-align: left; }
  .cta-buttons    { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin: 0 auto; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
  .about-features { grid-template-columns: 1fr; }
  .insta-grid     { grid-template-columns: repeat(4, 1fr); }
  .form-row       { grid-template-columns: 1fr; }
  .ladies-img-grid{ display: none; }
  .contact-form   { padding: 24px 18px; }

  /* ---- Universal mobile centering ---- */

  /* Section tags, titles, subtitles */
  .section-tag    { display: inline-flex; }
  .section-header { text-align: center; }
  .section-header .section-sub { margin-left: auto; margin-right: auto; }

  /* About */
  .about-content  { text-align: center; }
  .about-lead, .about-text { text-align: center; }
  .about-features { grid-template-columns: 1fr; width: fit-content; margin: 0 auto; }
  .about-feat     { justify-content: flex-start; }
  .about-content .btn { width: 100%; max-width: 320px; justify-content: center; display: flex; margin-left: auto; margin-right: auto; }

  /* Ladies */
  .ladies-content { text-align: center; }
  .ladies-lead    { text-align: center; }
  .ladies-features{ align-items: center; }
  .ladies-feat    { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .ladies-content .btn { width: 100%; max-width: 320px; justify-content: center; display: flex; margin-left: auto; margin-right: auto; }

  /* Feature cards */
  .feature-card   { text-align: center; }

  /* Programs */
  .program-info   { text-align: center; }
  .program-link   { justify-content: center; }

  /* Wellness */
  .wellness-body  { text-align: center; }
  .wellness-icon  { margin-left: auto; margin-right: auto; }

  /* Stats */
  .stat-block     { text-align: center; }

  /* Testimonials */
  .testi-card     { text-align: center; }
  .testi-author   { justify-content: center; }

  /* Membership */
  .membership-card { text-align: center; }
  .mem-header     { text-align: center; }
  .mem-features   { width: fit-content; margin: 0 auto 28px; align-items: flex-start; }
  .mem-features li { justify-content: flex-start; }
  .membership-card .btn { width: 100%; justify-content: center; }

  /* Contact */
  .contact-card   { text-align: center; }
  .contact-item   { flex-direction: column; align-items: center; text-align: center; }
  .contact-socials{ justify-content: center; }
  .map-overlay    { flex-direction: column; align-items: center; gap: 10px; }
  .map-overlay-text { justify-content: center; }
  .map-overlay .btn { width: auto; }

  /* Footer */
  .footer-brand   { text-align: center; }
  .footer-tagline { margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
  .footer-col     { text-align: center; }
  .footer-col ul li a:hover { padding-left: 0; }
  .footer-col .btn { width: 100%; max-width: 240px; justify-content: center; display: flex; margin-left: auto; margin-right: auto; }

  /* CTA banner buttons */
  .cta-sub { text-align: center; }

  /* Ensure no button overflows its container */
  .btn { max-width: 100%; box-sizing: border-box; }
  .contact-form .btn,
  .contact-form button { width: 100%; justify-content: center; }
}
