/* ===== THEME VARIABLES ===== */
:root {
  --bg-primary: #1D1C1B;
  --bg-secondary: #252422;
  --bg-card: #252422;
  --bg-navbar: rgba(29, 28, 27, 0.95);
  --bg-menu: rgba(29, 28, 27, 0.98);
  --bg-dropdown: rgba(37, 36, 34, 0.98);
  --bg-overlay: rgba(29, 28, 27, 0.65);
  --bg-overlay-strong: rgba(29, 28, 27, 0.95);
  --bg-overlay-medium: rgba(29, 28, 27, 0.6);
  --bg-tag: rgba(29, 28, 27, 0.75);
  --text-primary: #ffffff;
  --text-body: #9A9A9A;
  --text-muted: #7A7A7A;
  --text-light: #c8c8c8;
  --accent: #40683C;
  --accent-hover: #4e7e49;
  --accent-glow: rgba(64, 104, 60, 0.4);
  --accent-subtle: rgba(55, 58, 54, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow-card: rgba(0, 0, 0, 0.3);
  --shadow-heavy: rgba(0, 0, 0, 0.4);
}

.light-mode {
  --bg-primary: #F9F9F9;
  --bg-secondary: #F2F2F7;
  --bg-card: #FFFFFF;
  --bg-navbar: rgba(249, 249, 249, 0.95);
  --bg-menu: rgba(249, 249, 249, 0.98);
  --bg-dropdown: rgba(255, 255, 255, 0.98);
  --bg-overlay: rgba(249, 249, 249, 0.65);
  --bg-overlay-strong: rgba(249, 249, 249, 0.95);
  --bg-overlay-medium: rgba(249, 249, 249, 0.6);
  --bg-tag: rgba(242, 242, 247, 0.85);
  --text-primary: #1C1C1E;
  --text-body: #3D3D3D;
  --text-muted: #6E6E73;
  --text-light: #3D3D3D;
  --accent: #40683C;
  --accent-hover: #4e7e49;
  --accent-glow: rgba(64, 104, 60, 0.3);
  --accent-subtle: rgba(64, 104, 60, 0.08);
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.1);
  --shadow-card: rgba(0, 0, 0, 0.08);
  --shadow-heavy: rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

/* TASK COMPLETE: 6.8 Fonts — System font stack fallbacks */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

ul {
  list-style: none;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-outline {
  background: var(--bg-overlay);
  color: var(--text-primary);
  border-color: var(--border-light);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: none;
}

.btn-outline:hover::before {
  left: 100%;
  transition: left 0.6s ease;
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-pulse {
  position: relative;
  overflow: hidden;
}

.btn-pulse::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: none;
}

.btn-pulse:hover::before {
  left: 100%;
  transition: left 0.6s ease;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* ===== GLOWING CTA BUTTON ===== */
.btn-glow {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--border-light);
  background: transparent;
  color: var(--text-primary);
  animation: glowPulse 2s ease-in-out infinite;
}

.btn-glow:hover {
  background: var(--accent);
  border-color: var(--accent);
  animation: none;
  box-shadow: 0 0 20px var(--accent-glow);
}

.light-mode .btn-glow {
  border-color: var(--accent);
  color: #ffffff;
  background: var(--accent);
  animation: none;
}

.light-mode .btn-glow:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

/* Light mode: badge pills */
.light-mode .pricing-card__badge {
  color: #ffffff;
}

/* Light mode: accordion hover */
.light-mode .accordion-button:hover {
  background: #e8e8ed;
}

.light-mode .accordion-icon {
  color: var(--text-primary);
}

/* Light mode: override inline #c8c8c8 text */
.light-mode [style*="color: #c8c8c8"] {
  color: var(--text-body) !important;
}

/* Light mode: equipment list text */
.light-mode .equipment-item {
  color: var(--text-body) !important;
  border-bottom-color: var(--border-subtle) !important;
}

/* Light mode: service card headings */
.light-mode .service-card__content h3 {
  color: var(--accent);
}

/* Light mode: service card learn more */
.light-mode .service-card__link {
  color: var(--text-body);
}

.light-mode .hero svg,
.light-mode .hero__buttons .btn svg {
  color: #ffffff;
}

@keyframes glowPulse {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.05), inset 0 0 8px rgba(255, 255, 255, 0.02);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.2), inset 0 0 12px rgba(255, 255, 255, 0.06);
  }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-navbar);
  border-bottom: 1px solid var(--border-medium);
  padding: 0 24px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar__logo img {
  height: 50px;
  width: auto;
}

.navbar__logo-light {
  display: none;
}

.light-mode .navbar__logo-dark {
  display: none;
}

.light-mode .navbar__logo-light {
  display: block;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.navbar__links a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
  line-height: 1;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--border-light);
}

.navbar__socials a {
  color: var(--text-muted);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar__socials a:hover {
  color: var(--text-primary);
}

.navbar__socials a::after {
  display: none;
}

.navbar__cta {
  margin-left: 16px;
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  background: var(--border-light);
  border-radius: 13px;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  padding: 0;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--text-primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.light-mode .theme-toggle {
  background: var(--accent);
}

.light-mode .theme-toggle::after {
  transform: translateX(22px);
  background: #ffffff;
}

.theme-toggle__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #b0b0b0;
  transition: opacity 0.3s ease;
}

.theme-toggle__icon--moon {
  left: 5px;
  opacity: 1;
}

.theme-toggle__icon--sun {
  right: 4px;
  opacity: 0.5;
  font-size: 16px;
  width: auto;
  height: auto;
}

.light-mode .theme-toggle__icon--moon {
  opacity: 0.5;
}

.light-mode .theme-toggle__icon--sun {
  opacity: 1;
}

/* ===== SERVICES DROPDOWN ===== */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-toggle {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
}

.navbar__dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar__dropdown-toggle:hover,
.navbar__dropdown-toggle.active {
  color: var(--text-primary);
}

.navbar__dropdown-toggle:hover::after,
.navbar__dropdown-toggle.active::after {
  width: 100%;
}

.navbar__dropdown-toggle .arrow {
  display: inline-block;
  font-size: 0.7rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.navbar__dropdown.open .navbar__dropdown-toggle .arrow {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dropdown);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.navbar__dropdown:hover .navbar__dropdown-menu,
.navbar__dropdown.open .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar__dropdown-menu li {
  padding: 0;
}

.navbar__dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--text-muted);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.navbar__dropdown-menu a::after {
  display: none;
}

.navbar__dropdown-menu a:hover {
  background: var(--accent-subtle);
  color: var(--text-primary);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-overlay);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-light);
}

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

/* ===== SECTIONS ===== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 56px;
  color: var(--text-body);
  font-size: 1.1rem;
}

/* ===== FEATURE CARDS ===== */
.features {
  background: var(--accent-subtle);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-card);
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== SERVICE QUICK LINKS ===== */
.services {
  background: var(--bg-secondary);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: none;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-size: cover;
  background-position: center;
}

.service-card--coaching { background-image: url('../images/services/service-coaching.webp'); }
.service-card--nutrition { background-image: url('../images/services/service-nutrition.webp'); }
.service-card--technique { background-image: url('../images/services/service-technique.webp'); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(64, 104, 60, 0.4);
  border: 2px solid #40683C;
  justify-content: flex-end;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  transition: background 0.4s ease;
}

.service-card__overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  z-index: 2;
  transition: none;
}

.service-card:hover .service-card__overlay::before {
  left: 150%;
  transition: left 0.7s ease;
}

.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, var(--bg-overlay-strong) 40%, var(--bg-overlay-medium) 100%);
}

.service-card__content {
  position: relative;
  z-index: 2;
  padding: 32px;
  text-align: center;
}

.service-card__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  transition: color 0.3s ease, margin-bottom 0.3s ease, background 0.4s ease;
  background: var(--bg-tag);
  padding: 10px 20px;
  border-radius: 6px;
  display: inline-block;
}

.service-card:hover .service-card__content {
  text-align: left;
}

.service-card:hover .service-card__content h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  background: transparent;
  padding: 0;
}

.service-card__content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.service-card:hover .service-card__content p {
  max-height: 200px;
  opacity: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  opacity: 0;
  transition: opacity 0.4s ease, gap 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.service-card__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.service-card:hover .service-card__link::after {
  width: 100%;
}

.service-card:hover .service-card__link {
  opacity: 1;
  gap: 10px;
}

/* Mobile tap-to-reveal active state */
.service-card.active {
  justify-content: flex-end;
}

.service-card.active .service-card__overlay {
  background: linear-gradient(to top, var(--bg-overlay-strong) 40%, var(--bg-overlay-medium) 100%);
}

.service-card.active .service-card__content {
  text-align: left;
}

.service-card.active .service-card__content h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  background: transparent;
  padding: 0;
}

.service-card.active .service-card__content p {
  max-height: 200px;
  opacity: 1;
}

.service-card.active .service-card__link {
  opacity: 1;
  gap: 10px;
}

.service-card.active .service-card__link::after {
  width: 100%;
}

/* Always-revealed service cards (mobile quicklinks) */
.services--mobile {
  display: none;
}

@media (max-width: 768px) {
  .services:not(.services--mobile) {
    display: none;
  }

  .services--mobile {
    display: block;
  }
}

.service-card--revealed {
  justify-content: flex-end;
}

.service-card--revealed .service-card__overlay {
  background: linear-gradient(to top, var(--bg-overlay-strong) 40%, var(--bg-overlay-medium) 100%);
}

.service-card--revealed .service-card__content {
  text-align: left;
}

.service-card--revealed .service-card__content h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
  background: transparent;
  padding: 0;
}

.service-card--revealed .service-card__content p {
  max-height: 200px;
  opacity: 1;
}

.service-card--revealed .service-card__link {
  opacity: 1;
  gap: 10px;
}

.service-card--revealed .service-card__link::after {
  width: 100%;
}

/* Instant reveal on mobile — no transition delays */
@media (hover: none) {
  .service-card {
    transition: none;
  }

  .service-card__overlay {
    transition: none;
  }

  .service-card__content h3 {
    transition: none;
  }

  .service-card__content p {
    transition: none;
  }

  .service-card__link {
    transition: none;
  }

  .service-card__link::after {
    transition: none;
  }
}

/* ===== NUTRITION IMAGE CAROUSEL ===== */
.nutrition-carousel {
  background: var(--bg-secondary);
  padding: 40px 0 0;
}

.nutrition-carousel__heading {
  text-align: center;
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.nutrition-carousel .container {
  max-width: 600px;
}

.nutrition-carousel__track {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}

.nutrition-carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.nutrition-carousel__slide.active {
  opacity: 1;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ===== PRICING ===== */
.pricing--parallax {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -40% 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.parallax-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-overlay-strong);
}

.parallax-bg--equipment::after {
  background: var(--bg-overlay-strong);
}

.pricing--parallax .parallax-bg {
  background-image: url('../images/backgrounds/membership-bg.webp');
}

.pricing--parallax > .container {
  position: relative;
  z-index: 1;
}

.equipment--parallax {
  position: relative;
  overflow: hidden;
}

.parallax-bg--equipment {
  background-image: url('../images/backgrounds/our-equipment-bg.webp');
}

.equipment--parallax > .container {
  position: relative;
  z-index: 1;
}

.parallax-bg--nutrition {
  background-image: url('../images/backgrounds/nutrition-addon-bg.webp');
}

.nutrition--parallax > .container {
  position: relative;
  z-index: 1;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card .btn {
  margin-top: auto;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-card);
}

.pricing-card--popular {
  border-color: var(--accent);
  transform: scale(1.03);
}

.pricing-card--popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-primary);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card ul {
  margin: 24px 0 32px;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card li::before {
  content: '✓';
  color: #40683C;
  font-weight: 700;
}

.pricing-card__savings {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  color: #40683C;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-card .btn {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: none;
}

.pricing-card .btn:hover::before {
  left: 100%;
  transition: left 0.6s ease;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--accent-subtle);
  overflow: hidden;
}

.reviews__marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.reviews__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}

.reviews__track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  min-width: min(340px, 85vw);
  max-width: min(340px, 85vw);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card__google {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.review-card__stars {
  color: #f4b400;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

.review-card__author {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== TEAM CAROUSEL ===== */
.team-section {
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.team-section .container {
  position: relative;
  z-index: 10;
}

.team-header {
  text-align: center;
  margin-bottom: 48px;
}

.team-header .team-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #40683C;
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-header .team-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 768px;
  margin: 0 auto;
  line-height: 1.6;
}

.carousel-container {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.carousel-slide {
  width: 100%;
  flex-shrink: 0;
}

/* Slide + fade variant (homepage) */
.carousel-fade .carousel-track {
  transition: none;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  padding: 0 8px;
}

.team-profile {
  text-align: center;
  padding-top: 8px;
}

.team-image-container {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.team-image {
  width: 256px;
  height: 256px;
  object-fit: cover;
  border-radius: 24px;
}

.team-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: #22c55e;
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.live-icon {
  width: 8px;
  height: 8px;
  background: var(--text-primary);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.team-info {
  margin-top: 16px;
  padding: 0 16px;
}

.team-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-position {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #40683C;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.team-accordion {
  margin-top: 8px;
  max-width: 448px;
  margin-left: auto;
  margin-right: auto;
}

.team-accordion-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-align: center;
}

.accordion-item {
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.accordion-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.accordion-button {
  width: 100%;
  padding: 12px 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-secondary);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.accordion-button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.accordion-question {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-right: 16px;
  line-height: 1.3;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion-content {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  max-height: 0;
  opacity: 0;
}

.accordion-content.active {
  max-height: 600px;
  opacity: 1;
}

.accordion-answer {
  padding: 0 20px 16px;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Carousel Nav Buttons */
.nav-button {
  position: absolute;
  top: 30%;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
}

.nav-button:hover {
  transform: translateY(-50%) scale(1.1);
  background: #335230;
}

.nav-button-left {
  left: 8px;
}

.nav-button-right {
  right: 8px;
}

.nav-button svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

/* Dots Indicator */
.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.dot:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.dot.active:hover {
  transform: scale(1.25);
  background: var(--accent);
}

.member-counter {
  text-align: center;
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .team-image {
    width: 288px;
    height: 288px;
  }

  .team-badge {
    bottom: 16px;
    right: 16px;
    padding: 8px 16px;
    font-size: 0.875rem;
  }

  .team-name {
    font-size: 1.875rem;
  }

  .team-position {
    font-size: 1.25rem;
  }

  .nav-button {
    top: 50%;
  }

  .nav-button-left {
    left: 16px;
  }

  .nav-button-right {
    right: 16px;
  }

  .dot {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .team-profile {
    padding-top: 20px;
  }

  .team-image {
    width: 320px;
    height: 320px;
  }

  .team-accordion {
    margin-top: 0;
    padding-right: 64px;
  }

  .team-accordion-title {
    text-align: left;
    font-size: 1.5rem;
  }
}

/* ===== GALLERY PLACEHOLDERS ===== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__placeholder {
  background: var(--bg-secondary);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT GYM ===== */
.about-gym {
  background: var(--accent-subtle);
}

.about-gym__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-gym__content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== CONTACT ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.contact__info p {
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact__info-block {
  margin-bottom: 32px;
}

.contact__info-block h3::before {
  margin-right: 8px;
}

.contact__form {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px;
}

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

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

.form-group label {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.modal__close:hover {
  color: var(--text-primary);
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Form modal — taller, scrollable */
.modal--form {
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  padding-top: 56px;
}
.modal__back {
  position: absolute;
  top: 16px;
  left: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.modal__back:hover {
  color: var(--text-primary);
}

/* Form selector cards */
.form-selector-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-selector-card:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}
.form-selector-card h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 6px 0;
}
.form-selector-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* Required marker */
.required {
  color: #FF3B30;
}

/* Radio group */
.radio-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  font-size: 0.95rem;
  cursor: pointer;
}
.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Star rating (1-10 number buttons) */
.star-rating {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.star-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: 'Inter', sans-serif;
}
.star-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.star-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

/* ===== MAP ===== */
.map {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--border-subtle);
}

.map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #151413;
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0;
}

.light-mode .footer {
  background: var(--bg-secondary);
}

.footer__logo-light {
  display: none;
}

.light-mode .footer__logo-dark {
  display: none;
}

.light-mode .footer__logo-light {
  display: block;
}

.light-mode .footer [style*="color: #7A7A7A"] {
  color: var(--text-muted) !important;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--popular {
    transform: scale(1);
  }

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

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

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__socials {
    display: none;
  }

  .navbar .container {
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--bg-menu);
    padding: 24px 16px;
    gap: 20px;
    order: 10;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
    align-items: center;
  }

  .navbar__links.open .navbar__socials {
    display: flex;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .navbar__cta-wrapper {
    list-style: none;
  }

  .navbar__cta-wrapper .navbar__cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-left: 0;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Mobile dropdown — always visible */
  .navbar__dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: 0;
    padding: 0;
    max-height: 300px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
  }

  .navbar__dropdown-toggle .arrow {
    display: none;
  }

  .navbar__dropdown-menu a {
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  .navbar__dropdown-menu a:hover {
    background: transparent;
  }

  .btn {
    width: 100%;
  }

  .hero {
    padding: 80px 0 60px;
  }

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

  .section-subtitle {
    margin-bottom: 36px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 28px;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-grid {
    gap: 28px;
  }

  .team__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .reviews__track {
    gap: 16px;
    animation-duration: 25s;
  }

  .reviews__marquee {
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  }

  .review-card {
    padding: 24px;
  }

  .map iframe {
    height: 280px;
  }

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

  .footer__links {
    gap: 16px;
  }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 40px 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero p {
    margin-bottom: 28px;
  }

  .navbar .container {
    height: 64px;
  }

  .navbar__logo img {
    height: 40px;
  }

  .navbar__links.open {
    padding-top: 16px;
  }

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

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

  .service-card {
    min-height: 260px;
  }

  .modal {
    padding: 24px;
  }

  .modal-overlay {
    padding: 16px;
  }

  .modal--form {
    max-height: 85vh;
    padding: 20px;
    padding-top: 52px;
  }

  .modal--form .form-group label {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .modal--form .form-group textarea {
    min-height: 100px;
  }

  .form-selector-card {
    padding: 16px 18px;
  }

  .form-selector-card h3 {
    font-size: 1rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .radio-label,
  .checkbox-label {
    font-size: 0.9rem;
    min-height: 44px;
    align-items: center;
  }

  .radio-label input[type="radio"],
  .checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
  }

  .checkbox-label {
    align-items: flex-start;
  }

  .checkbox-label input[type="checkbox"] {
    margin-top: 0;
  }

  .star-rating {
    gap: 4px;
  }

  .star-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    border-radius: 6px;
  }

  .contact__form {
    padding: 24px;
  }

  .map iframe {
    height: 220px;
  }

  .team-image {
    width: 200px;
    height: 200px;
  }

  .team-header {
    margin-bottom: 32px;
  }

  .team-header .team-subtitle {
    font-size: 1rem;
  }

  .review-card {
    padding: 20px;
  }
}

/* ===== PHASE 4: FOOTER COLUMNS ===== */
.footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.footer__columns h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__columns li {
  margin-bottom: 10px;
}

.footer__columns a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__columns a:hover {
  color: var(--text-primary);
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__socials a {
  color: var(--text-light);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.footer__socials a:hover {
  color: var(--text-primary);
}

.footer__map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.footer__map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  display: block;
  filter: grayscale(0.3) brightness(0.85);
}

.light-mode .footer__map iframe {
  filter: none;
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer__bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

/* ===== PHASE 4: TRUST BAR ===== */
.trust-bar {
  background: var(--bg-secondary);
  padding: 24px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-bar__item svg {
  flex-shrink: 0;
}

/* ===== PHASE 4: TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.testimonial-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--text-muted);
}

.testimonial-card__name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.testimonial-card__stars {
  color: #f4b400;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__review {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== PLAN POPUP MODAL ===== */
.plan-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.plan-modal.open {
  display: flex;
}

.plan-modal__content {
  background: var(--bg-secondary, #1a1a1a);
  border: 1px solid var(--border-subtle, rgba(255,255,255,0.1));
  border-radius: 16px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  position: relative;
  text-align: center;
}

.plan-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted, #999);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.plan-modal__close:hover {
  color: var(--text-primary, #fff);
}

.plan-modal__title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.4rem;
  color: var(--text-primary, #fff);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-modal__options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan-modal__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: all 0.3s ease;
}

.plan-modal__option:hover {
  border-color: #40683C;
  background: rgba(64, 104, 60, 0.15);
  transform: translateY(-2px);
}

.plan-modal__option-name {
  color: var(--text-primary, #fff);
  font-weight: 600;
  font-size: 1rem;
}

.plan-modal__option-price {
  color: #40683C;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== PHASE 4: FACILITY GRID ===== */
.facility__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ===== PHASE 4: RESPONSIVE ===== */
@media (max-width: 992px) {
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__columns p[style*="display: flex"] {
    justify-content: center;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .facility__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GALLERY SLIDESHOW ===== */
.gallery-slideshow {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.gallery-slideshow__track {
  position: relative;
  width: 600px;
  height: 400px;
  max-width: 100%;
}

.gallery-slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.gallery-slideshow__slide.active {
  opacity: 1;
}

.gallery-slideshow__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.gallery-slideshow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.gallery-slideshow__dot.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
}

.gallery-slideshow__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-overlay-medium);
  border: none;
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s ease;
}

.gallery-slideshow__arrow:hover {
  background: var(--bg-overlay-strong);
}

.gallery-slideshow__arrow--prev {
  left: 12px;
}

.gallery-slideshow__arrow--next {
  right: 12px;
}

/* ===== CONTENT GRIDS ===== */
.equipment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

/* ===== COMPREHENSIVE RESPONSIVE ===== */
@media (max-width: 992px) {
  .equipment__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .gallery-slideshow__track {
    width: 100%;
    height: 300px;
  }

  .gallery-slideshow__arrow {
    width: 32px;
    height: 32px;
  }

  .gallery-slideshow__arrow--prev {
    left: 8px;
  }

  .gallery-slideshow__arrow--next {
    right: 8px;
  }

  .equipment__grid {
    gap: 24px;
  }

  .content__grid {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-bar {
    padding: 20px 0;
  }

  .gallery-slideshow__track {
    height: 250px;
  }

  .gallery-slideshow__dots {
    bottom: 10px;
    gap: 6px;
  }

  .gallery-slideshow__dot {
    width: 8px;
    height: 8px;
  }

  .gallery-slideshow__arrow {
    width: 28px;
    height: 28px;
  }

  .gallery-slideshow__arrow svg {
    width: 16px;
    height: 16px;
  }
}
