/* =============================================
   MALABAR STRENGTH FITNESS CLUB — style.css
   ============================================= */

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

:root {
  /* Colors */
  --clr-bg: #0d0d0d;
  --clr-bg-2: #141414;
  --clr-bg-3: #1a1a1a;
  --clr-card: #1e1e1e;
  --clr-card-2: #252525;
  --clr-border: #2d2d2d;
  --clr-orange: #ff5722;
  --clr-orange-l: #ff7043;
  --clr-gold: #f5a623;
  --clr-green: #39d353;
  --clr-white: #ffffff;
  --clr-text: #e0e0e0;
  --clr-text-2: #a0a0a0;
  --clr-text-3: #6e6e6e;

  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --section-py: 100px;
  --container: 1200px;
  --nav-h: 72px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --glow-orange: 0 0 25px rgba(255, 87, 34, 0.35);
}

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

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

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
}

.dark-section {
  background: var(--clr-bg-2);
}

.mt-sm {
  margin-top: 24px;
  display: inline-block;
}

.highlight {
  color: var(--clr-orange);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-orange);
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--clr-white);
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--clr-text-2);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

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

.section-header .section-subtitle {
  margin-top: 8px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-l));
  color: #fff;
  box-shadow: var(--glow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 87, 34, 0.5);
  background: linear-gradient(135deg, var(--clr-orange-l), var(--clr-orange));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid var(--clr-border);
}

.btn-outline:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #c8890a, var(--clr-gold));
  color: #fff;
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(245, 166, 35, 0.5);
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

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

.nav-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-l));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: var(--glow-orange);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--clr-white);
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-orange);
  font-weight: 600;
}

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

.nav-link {
  color: var(--clr-text-2);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.3s, background 0.3s;
}

.nav-link:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
  color: var(--clr-orange);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-l));
  color: #fff !important;
  padding: 10px 20px;
  font-weight: 700;
  box-shadow: var(--glow-orange);
}

.nav-link.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  /* Reserve space so stats bar doesn't overlap buttons */
  padding-bottom: 140px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform-origin: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 60%,
      rgba(255, 87, 34, 0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  max-width: 860px;
  animation: fadeInUp 1s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 87, 34, 0.15);
  border: 1px solid rgba(255, 87, 34, 0.4);
  color: var(--clr-orange-l);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 1.0;
  color: var(--clr-white);
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.title-thin {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.title-bold {
  background: linear-gradient(90deg, #fff 40%, var(--clr-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 36px;
  font-weight: 600;
}

/* Separator between words — no shimmer */
.hero-subtext span:not(:last-child)::after {
  content: '|';
  display: inline-block;
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.3);
  animation: none;
  background: none;
}

.hero-subtext span:not(.dot) {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.55) 30%,
      rgba(255, 255, 255, 1) 45%,
      rgba(255, 220, 150, 1) 50%,
      rgba(255, 255, 255, 1) 55%,
      rgba(255, 255, 255, 0.55) 70%,
      rgba(255, 255, 255, 0.55) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerText 3.5s linear infinite;
}

.hero-subtext span:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-subtext span:nth-child(3) {
  animation-delay: 1s;
}

.hero-subtext span:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes shimmerText {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

.hero-subtext .dot {
  color: var(--clr-orange);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--clr-orange);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: rgba(10, 10, 10, 0.9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-family: var(--font-body);
}

.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
}

/* === ABOUT SECTION === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-l));
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--glow-orange);
}

.badge-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.badge-city {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}



.about-description {
  color: var(--clr-text-2);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 8px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--clr-text);
}

.about-features li i {
  color: var(--clr-orange);
  font-size: 1rem;
  flex-shrink: 0;
}

/* === PROGRAMS SECTION === */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--clr-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 87, 34, 0.3);
}

.program-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-l));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: var(--glow-orange);
  z-index: 1;
}

.program-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-img {
  transform: scale(1.06);
}

.program-body {
  padding: 24px;
}

.program-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--clr-white);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.program-desc {
  color: var(--clr-text-2);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-orange);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.program-link:hover {
  gap: 12px;
  color: var(--clr-orange-l);
}

/* === MEMBERSHIP SECTION === */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.plan-card {
  background: var(--clr-card);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--clr-border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.plan-popular {
  border: 2px solid var(--clr-orange);
  box-shadow: var(--glow-orange);
  transform: scale(1.04);
}

.plan-popular:hover {
  transform: scale(1.04) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-l));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 28px;
}

.plan-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--clr-text-2);
}

.plan-icon.orange {
  background: rgba(255, 87, 34, 0.15);
  color: var(--clr-orange);
}

.plan-icon.gold {
  background: rgba(245, 166, 35, 0.12);
  color: var(--clr-gold);
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--clr-white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--clr-white);
}

.plan-price .currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-orange);
}

.plan-price .amount {
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 1px;
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--clr-text-2);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--clr-text);
}

.plan-features li i.fa-check {
  color: var(--clr-green);
}

.plan-features li i.fa-times {
  color: var(--clr-text-3);
}

.plan-feature-none {
  color: var(--clr-text-3) !important;
}

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

/* === GALLERY SECTION === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 87, 34, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  background: rgba(255, 87, 34, 0.35);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.lightbox-close:hover {
  background: var(--clr-orange);
}

/* === REVIEWS SECTION === */
.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.rating-stars {
  color: #f5c842;
  font-size: 1.5rem;
  display: flex;
  gap: 4px;
}

.rating-text {
  color: var(--clr-text-2);
  font-size: 1rem;
}

.reviews-slider-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.reviews-slider-container {
  overflow: hidden;
  padding: 20px 0;
}

.reviews-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--clr-card);
  border-radius: 20px;
  padding: 28px 28px 24px;
  border: 1px solid var(--clr-border);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.slider-btn:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--glow-orange);
}

.prev-btn {
  left: -70px;
}

.next-btn {
  right: -70px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--clr-orange);
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .prev-btn {
    left: -20px;
  }

  .next-btn {
    right: -20px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 100%;
  }

  .reviews-slider-wrapper {
    padding: 0 10px;
  }

  .prev-btn {
    left: -5px;
  }

  .next-btn {
    right: -5px;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    background: var(--clr-bg-2);
    /* More visible on mobile */
  }
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(255, 87, 34, 0.12);
  pointer-events: none;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 87, 34, 0.2);
}

.review-stars {
  color: #f5c842;
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-text {
  color: var(--clr-text-2);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--clr-border);
  padding-top: 18px;
}

.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-l));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--clr-white);
  font-size: 0.95rem;
}

.reviewer-loc {
  font-size: 0.8rem;
  color: var(--clr-text-3);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* === REGISTER SECTION === */
.register-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.register-desc {
  color: var(--clr-text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 16px 0 28px;
}

.register-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--clr-text);
}

.register-perks li i {
  color: var(--clr-orange);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
}

.register-form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-2);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
  background: var(--clr-bg-3);
  border: 1.5px solid var(--clr-border);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--clr-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a0a0a0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group select option {
  background: var(--clr-bg-3);
  color: var(--clr-white);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12);
}

.form-group input.input-error,
.form-group select.input-error {
  border-color: #ff4444;
  box-shadow: 0 0 0 4px rgba(255, 68, 68, 0.1);
}

.error-msg {
  color: #ff4444;
  font-size: 0.78rem;
  margin-top: 4px;
  min-height: 18px;
  font-weight: 500;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.error-msg.visible {
  opacity: 1;
}

.form-group input::placeholder {
  color: var(--clr-text-3);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1.05rem;
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-icon {
  width: 72px;
  height: 72px;
  background: rgba(57, 211, 83, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--clr-green);
}

.modal h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.modal p {
  color: var(--clr-text-2);
  margin-bottom: 28px;
  line-height: 1.65;
}

.modal-close {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid var(--clr-border);
  color: var(--clr-text-2);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 12px;
  transition: border-color 0.3s;
}

.modal-close:hover {
  border-color: var(--clr-text-2);
  color: var(--clr-white);
}

/* === LOCATION SECTION === */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.loc-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 20px 24px;
  transition: border-color 0.3s;
}

.loc-card:hover {
  border-color: rgba(255, 87, 34, 0.3);
}

.loc-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 87, 34, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-orange);
  flex-shrink: 0;
}

.loc-card h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-text-2);
  margin-bottom: 6px;
  font-weight: 600;
}

.loc-card p {
  font-size: 0.97rem;
  color: var(--clr-text);
  line-height: 1.6;
}

.loc-card p a {
  color: var(--clr-text);
  transition: color 0.3s;
}

.loc-card p a:hover {
  color: var(--clr-orange);
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  filter: grayscale(0.3) contrast(1.05);
}

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

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 48px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-about {
  font-size: 0.92rem;
  color: var(--clr-text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-2);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--glow-orange);
}

.footer-links h4,
.footer-programs h4,
.footer-contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-white);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-programs ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-programs a {
  color: var(--clr-text-3);
  font-size: 0.92rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-links a:hover,
.footer-programs a:hover {
  color: var(--clr-orange);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-text-3);
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--clr-orange);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact-list a {
  color: var(--clr-text-3);
  transition: color 0.3s;
}

.footer-contact-list a:hover {
  color: var(--clr-orange);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding: 20px 0;
}

.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--clr-text-3);
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    height: 360px;
  }

  .about-badge-card {
    bottom: -16px;
    right: 16px;
  }

  .about-image-wrap {
    order: -1;
  }

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

  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .plan-popular {
    transform: none;
  }

  .plan-popular:hover {
    transform: translateY(-6px);
  }

  .plan-card {
    padding: 28px 22px;
  }

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

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }


  .register-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --nav-h: 64px;
  }

  /* Navbar */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 0 28px;
    gap: 4px;
    border-bottom: 1px solid var(--clr-border);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 28px;
    font-size: 1.05rem;
    width: 100%;
    text-align: left;
  }

  .nav-link.nav-cta {
    margin: 12px 24px 0;
    width: auto;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(2.5rem, 11vw, 4.5rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat-item {
    padding: 8px 20px;
  }

  .stat-divider {
    height: 32px;
  }

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

  .hero-btns .btn {
    min-width: 220px;
    width: 80vw;
    max-width: 320px;
    justify-content: center;
  }

  /* Hide Join Now on mobile — show only Call Now */
  #joinNowBtn {
    display: none;
  }

  /* About */
  .about-badge-card {
    right: 16px;
  }

  /* Programs */
  .programs-grid {
    grid-template-columns: 1fr;
  }

  /* Membership */
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Reviews */

  /* Register */
  .register-form-wrap {
    padding: 28px 20px;
  }

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

  .footer-bottom-grid {
    flex-direction: column;
    text-align: center;
  }

  /* WhatsApp */
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-subtext {
    font-size: 0.85rem;
  }

  .stat-item {
    padding: 8px 14px;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .plan-card {
    padding: 28px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .register-form-wrap {
    padding: 24px 16px;
  }

  .modal {
    padding: 36px 24px;
  }

  .footer-top {
    padding: 48px 0 32px;
  }
}

/* Scroll reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}