/* ============================================================
   Flemington Footy Academy – Main Stylesheet
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --green:       #158F5A;
  --green-dark:  #0F6B47;
  --green-light: #1FA868;
  --gold:        #bdad1e;
  --gold-light:  #d4c92f;
  --gold-dark:   #9a8816;
  --grey:        #59635E;
  --grey-light:  #7A8078;
  --grey-dark:   #3F4539;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --light-gray:  #E9ECEF;
  --mid-gray:    #59635E;
  --dark-text:   #2D3531;
  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.18);
  --transition:  0.3s ease;
  --max-width:   1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

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

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--green);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 6px 20px rgba(189,173,30,0.4); }

.btn-navy {
  background: var(--green);
  color: var(--white);
}
.btn-navy:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(21,143,90,0.4); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--green); }

.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-gold { background: var(--gold); color: var(--green); }
.badge-navy { background: var(--green); color: var(--white); }

/* ---------- Section Headings ---------- */
.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 620px;
  line-height: 1.7;
}

.section-title--white { color: var(--white); }
.section-subtitle--white { color: rgba(255,255,255,0.8); }
.section-label--white { color: var(--gold-light); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--green);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 0 24px;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

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

.nav-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.3px;
}

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

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

.nav-cta {
  margin-left: 8px;
  padding: 10px 24px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--green);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}

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

.mobile-nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover,
.mobile-nav-link.active { background: rgba(255,255,255,0.1); color: var(--gold); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 50%, #0d5a3b 100%);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(189,173,30,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(21,143,90,0.5) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.01) 60px,
      rgba(255,255,255,0.01) 61px
    );
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(189,173,30,0.12) 0%, transparent 70%);
  border-radius: 50%;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-badge-text {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title-accent { color: var(--gold); }

.hero-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Visual Panel */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 380px;
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.service-item:last-child { border-bottom: none; }

.service-item-info { display: flex; align-items: center; gap: 12px; }

.service-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.service-icon-1 { background: rgba(245,166,35,0.2); }
.service-icon-2 { background: rgba(26,122,74,0.2); }
.service-icon-3 { background: rgba(27,58,92,0.3); }

.service-item-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.service-item-desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.service-item-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--light-gray);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(1); }

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card-icon-gold { background: rgba(189,173,30,0.15); }
.service-card-icon-green { background: rgba(21,143,90,0.12); }
.service-card.featured .service-card-icon { background: rgba(255,255,255,0.12); }

.service-card-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}
.service-card.featured .service-card-name { color: var(--white); }

.service-card-desc {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-card.featured .service-card-desc { color: rgba(255,255,255,0.7); }

.service-card-pricing { margin-bottom: 24px; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}
.price-row:last-child { border-bottom: none; }
.service-card.featured .price-row { border-color: rgba(255,255,255,0.1); }

.price-label {
  font-size: 0.88rem;
  color: var(--mid-gray);
}
.service-card.featured .price-label { color: rgba(255,255,255,0.65); }

.price-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
}
.service-card.featured .price-value { color: var(--gold); }

.service-card-features {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--mid-gray);
}
.service-card.featured .feature-item { color: rgba(255,255,255,0.7); }

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }

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

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.why-feature {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  transition: transform var(--transition);
}
.why-feature:hover { transform: translateY(-4px); }

.why-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.why-feature-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
  margin-bottom: 6px;
}

.why-feature-desc {
  font-size: 0.85rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

.why-card-stack { position: relative; padding: 0 0 40px 40px; }

.trainer-card {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.trainer-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.trainer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
  object-fit: cover;
  object-position: center top;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
}

.trainer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.trainer-title-text {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}

.trainer-bio {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.trainer-stat {
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
}

.trainer-stat-number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
}

.trainer-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

.why-accent-card {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  box-shadow: var(--shadow);
}

.why-accent-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.why-accent-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
}
.why-accent-desc {
  font-size: 0.75rem;
  color: var(--green);
  opacity: 0.7;
}

/* ============================================================
   SCHEDULE PREVIEW / CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(189,173,30,0.1), transparent 60%);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-text .section-title { margin-bottom: 8px; }

.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payment-section { background: var(--off-white); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.payment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.payment-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(245,166,35,0.15);
}

.payment-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.payment-logo-cash { background: rgba(39,174,96,0.12); }
.payment-logo-venmo { background: rgba(0,125,188,0.1); }
.payment-logo-zelle { background: rgba(104,42,168,0.1); }

.payment-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 8px;
}

.payment-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(189,173,30,0.1), transparent 50%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.7;
}

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

.about-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--green);
  margin-bottom: 16px;
}

.about-text p {
  font-size: 0.98rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p strong { color: var(--green); }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  border-left: 4px solid var(--gold);
}

.highlight-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.highlight-content { display: flex; flex-direction: column; }
.highlight-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green);
  margin-bottom: 4px;
}
.highlight-text { font-size: 0.85rem; color: var(--mid-gray); }

.about-profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
  position: sticky;
  top: 100px;
}

.profile-card-header {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 48px 32px 36px;
  text-align: center;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 16px;
  border: 4px solid rgba(255,255,255,0.2);
}

.profile-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.profile-role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.profile-card-body {
  padding: 28px 32px;
}

.profile-bio {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

.profile-bio p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-text);
}

.profile-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-stat {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}

.profile-stat-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green);
  display: block;
}

.profile-stat-label {
  font-size: 0.75rem;
  color: var(--mid-gray);
  margin-top: 4px;
  display: block;
}

.profile-specialties { margin-bottom: 24px; }
.profile-specialties-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specialty-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(189,173,30,0.12);
  border: 1px solid rgba(189,173,30,0.3);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.values-section { background: var(--off-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--light-gray);
  transition: transform var(--transition), border-color var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.value-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(245,166,35,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.value-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 8px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ============================================================
   SCHEDULE PAGE
   ============================================================ */
.schedule-section { background: var(--off-white); }

.schedule-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Calendar */
.calendar-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.calendar-header {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calendar-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.cal-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.cal-nav-btn:hover { background: rgba(255,255,255,0.2); }

.calendar-body { padding: 20px; }

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}

.calendar-weekday {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--mid-gray);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: default;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.cal-day.other-month { color: var(--light-gray); pointer-events: none; }
.cal-day.past { color: var(--light-gray); pointer-events: none; }
.cal-day.today {
  background: var(--green);
  color: var(--white);
}
.cal-day.has-slots {
  cursor: pointer;
  color: var(--green);
}
.cal-day.has-slots:hover {
  background: rgba(189,173,30,0.15);
  color: var(--green);
}
.cal-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day.selected {
  background: var(--gold) !important;
  color: var(--green) !important;
}
.cal-day.selected::after { background: var(--green); }

/* Slots Panel */
.slots-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  margin-top: 24px;
}

.slots-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slots-date {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}

.slots-count {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

.slots-body { padding: 16px; }

.time-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 8px;
  border: 1px solid var(--light-gray);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.time-slot:hover {
  border-color: var(--gold);
  background: rgba(189,173,30,0.04);
}

.time-slot.booked {
  cursor: default;
  opacity: 0.5;
  background: var(--off-white);
}
.time-slot.booked:hover { border-color: var(--light-gray); background: var(--off-white); }

.slot-time {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
}

.slot-type {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-top: 2px;
}

.slot-status {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.slot-status.available { background: rgba(39,174,96,0.12); color: var(--green); }
.slot-status.booked { background: rgba(108,117,125,0.12); color: var(--mid-gray); }

.no-slots-msg {
  text-align: center;
  padding: 40px 24px;
  color: var(--mid-gray);
  font-size: 0.9rem;
}
.no-slots-msg .no-slots-icon { font-size: 2.5rem; margin-bottom: 12px; }

/* Sidebar */
.schedule-sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.sidebar-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--light-gray);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sidebar-card-body { padding: 16px 20px; }

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--dark-text);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot.available { background: var(--gold); }
.legend-dot.booked { background: var(--mid-gray); }
.legend-dot.today { background: var(--green); }
.legend-dot.selected { background: var(--gold); border: 2px solid var(--gold-dark); }

.booking-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: var(--mid-gray);
}
.booking-info-item:last-child { border-bottom: none; }
.booking-info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.booking-info-label {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green);
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.service-select-card { border-bottom: none; }
.service-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  margin-bottom: 4px;
}
.service-select-option:hover { background: var(--off-white); }
.service-select-option.active { background: rgba(189,173,30,0.1); }

.service-select-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green);
}
.service-select-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-dark);
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }

.modal-header {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 24px 28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.modal-close {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.2); }

.modal-body { padding: 28px; }

.modal-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.modal-info-box {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.modal-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--mid-gray);
  margin-bottom: 4px;
}
.modal-info-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
}

.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-text);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.form-select:focus { border-color: var(--gold); }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--dark-text);
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.modal-footer {
  padding: 0 28px 28px;
  display: flex;
  gap: 12px;
}

/* Success Screen */
.booking-success {
  padding: 40px 28px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(39,174,96,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.success-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 8px;
}

.success-text {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.success-details {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  margin-bottom: 24px;
}
.success-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--light-gray);
}
.success-detail-row:last-child { border-bottom: none; }
.success-detail-label { color: var(--mid-gray); }
.success-detail-value { font-weight: 600; color: var(--green); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--light-gray);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--transition), border-color var(--transition);
}
.contact-info-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(189,173,30,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--green);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.6;
}

.contact-payment-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--light-gray);
}

.contact-payment-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 16px;
}

.payment-method-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--dark-text);
}
.payment-method-row:last-child { border-bottom: none; }

.payment-method-icon { font-size: 1.3rem; flex-shrink: 0; }
.payment-method-name { font-weight: 600; }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light-gray);
}

.contact-form-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 6px;
}

.contact-form-desc {
  font-size: 0.9rem;
  color: var(--mid-gray);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-success-msg {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success-msg.show { display: block; }
.form-success-msg .success-icon { margin: 0 auto 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 64px 0 32px;
}

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

.footer-brand { max-width: 320px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}

.footer-brand-sub {
  font-size: 0.68rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-link:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.4rem, 5vw, 3.5rem); }
  .why-grid { grid-template-columns: 1fr; }
  .why-card-stack { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .schedule-layout { grid-template-columns: 1fr; }
  .schedule-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .about-story { grid-template-columns: 1fr; }
  .about-profile-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 100px 0 56px; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .schedule-sidebar { grid-template-columns: 1fr; }
  .modal { margin: 0 8px; }
  .contact-form-card { padding: 28px 24px; }
  .profile-stat-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .trainer-stats { grid-template-columns: 1fr 1fr 1fr; }
  .modal-info-row { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-wrap: wrap; }
  .values-grid { grid-template-columns: 1fr; }
  .trainer-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* Intersection observer triggers.
   The 'js-reveal' class is added to <body> by main.js once the page is
   ready, so elements remain fully visible when JS hasn't run yet. */
body.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }

/* Page-specific top padding for fixed nav */
.page-top-pad { padding-top: 72px; }
