/* ═══════════════════════════════════════════════════════════
   GYM WEBSITE — style.css
   Theme: Light, Modern Fitness
   Fonts: Oswald (headings) + Inter (body)
═══════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --bg:          #F7F7F7;
  --white:       #FFFFFF;
  --text:        #222222;
  --text-muted:  #666666;
  --accent:      #4CAF50;
  --accent-dark: #388E3C;
  --accent-light:#E8F5E9;
  --border:      #EAEAEA;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;
  --max-w:       1200px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 100px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  color: var(--text);
}
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,175,80,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76,175,80,0.30);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── REVEAL ANIMATION ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.1s; }
.feature-card:nth-child(5) { transition-delay: 0.2s; }
.feature-card:nth-child(6) { transition-delay: 0.3s; }
.plan-card:nth-child(2) { transition-delay: 0.15s; }
.plan-card:nth-child(3) { transition-delay: 0.3s; }
.trainer-card:nth-child(2) { transition-delay: 0.1s; }
.trainer-card:nth-child(3) { transition-delay: 0.2s; }
.trainer-card:nth-child(4) { transition-delay: 0.3s; }
.testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonial-card:nth-child(3) { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  padding: 14px 0;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  transition: var(--transition);
  flex-shrink: 0;
}
.logo i { color: var(--accent); font-size: 20px; }
.navbar.scrolled .logo { color: var(--text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-link { color: var(--text-muted); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--accent);
  background: var(--accent-light);
}
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 13px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--text); }
.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
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.75) 0%,
    rgba(20,20,20,0.55) 60%,
    rgba(10,30,10,0.45) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.35);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title span { color: var(--accent); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════ */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.feature-icon i {
  font-size: 22px;
  color: var(--accent);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--accent);
}
.feature-card:hover .feature-icon i { color: #fff; }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img {
  border-radius: var(--radius-md);
  object-fit: cover;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 78%;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 52%;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg);
}
.about-badge {
  position: absolute;
  top: 42%;
  left: 58%;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transform: translate(-50%, -50%);
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  opacity: 0.9;
}
.about-content .section-title { text-align: left; }
.about-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 8px;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.pillar i { color: var(--accent); font-size: 16px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   CLASSES BANNER
═══════════════════════════════════════════════════════════ */
.classes-banner {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 30%;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 100%);
}
.banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 600px;
}
.banner-content h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.banner-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   MEMBERSHIP
═══════════════════════════════════════════════════════════ */
.membership { background: var(--white); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.plan-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.plan-featured {
  background: var(--text);
  border-color: var(--text);
  transform: scale(1.04);
}
.plan-featured:hover { transform: scale(1.04) translateY(-8px); }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}
.currency {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}
.plan-featured .currency { color: #fff; }
.amount {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.plan-featured .amount { color: #fff; }
.period {
  font-size: 16px;
  color: var(--text-muted);
}
.plan-featured .period { color: rgba(255,255,255,0.55); }
.plan-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-featured .plan-tagline {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.12);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.plan-featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li i {
  width: 18px;
  font-size: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.plan-features li.disabled {
  opacity: 0.4;
}
.plan-features li.disabled i { color: #999; }
.plan-featured .plan-features li i { color: var(--accent); }
.plan-cta { width: 100%; text-align: center; justify-content: center; }
.plan-featured .plan-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.plan-featured .plan-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ═══════════════════════════════════════════════════════════
   TEAM
═══════════════════════════════════════════════════════════ */
.team { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trainer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.trainer-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.trainer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.trainer-card:hover .trainer-img-wrap img {
  transform: scale(1.06);
}
.trainer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: var(--transition);
}
.trainer-card:hover .trainer-overlay { opacity: 1; }
.trainer-social {
  display: flex;
  gap: 12px;
}
.trainer-social a {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
}
.trainer-social a:hover {
  background: var(--accent);
  color: #fff;
}
.trainer-info {
  padding: 20px 22px 24px;
}
.trainer-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 4px;
}
.trainer-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.trainer-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars i { color: #F59E0B; font-size: 13px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-item i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
  width: 18px;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
}
.form-note {
  font-size: 13px;
  text-align: center;
  margin-top: -8px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .logo-light { color: #fff; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-list li:last-child { border: none; }
.footer-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ─── BACK TO TOP ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid {
    gap: 48px;
  }
  .about-images { height: 420px; }
  .plans-grid { gap: 20px; }
  .plan-featured { transform: scale(1.02); }
  .plan-featured:hover { transform: scale(1.02) translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-link {
    color: var(--text-muted) !important;
    width: 100%;
    padding: 10px 16px;
    font-size: 14px;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--accent) !important;
    background: var(--accent-light) !important;
  }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .navbar { padding: 16px 0; background: rgba(0,0,0,0.8); }
  .navbar.scrolled { background: rgba(255,255,255,0.97); }

  /* Hero */
  .hero-content { padding-top: 120px; padding-bottom: 60px; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { gap: 12px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 24px; }
  .hero-scroll { display: none; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 16px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 340px; }
  .about-content .section-title { text-align: left; }
  .about-pillars { grid-template-columns: 1fr; gap: 10px; }

  /* Banner */
  .classes-banner { height: auto; padding: 64px 0; }
  .banner-bg { object-position: center; }

  /* Membership */
  .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .plan-featured { transform: scale(1); }
  .plan-featured:hover { transform: translateY(-8px); }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trainer-img-wrap { height: 200px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

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

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .hero-title { font-size: 40px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 13px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .about-images { height: 280px; }
  .about-badge { padding: 10px 14px; }
  .badge-num { font-size: 28px; }
  .contact-form-wrap { padding: 24px 18px; }
}
