/* FitZone CSS Design System & Theme Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800;900&display=swap');

/* CSS Variables (Design Tokens) */
:root {
  --primary-color: #ff5f1f; /* Neon Orange */
  --secondary-color: #ffffff;
  --text: #ffffff;
  --muted: #a0a0a0;
  --bg: #080808; /* Deep Pitch Black */
  --bg-offset: #121212; /* Dark Grey Accent */
  --bg-card: rgba(255, 255, 255, 0.03); /* Glassmorphism background */
  --border-card: rgba(255, 255, 255, 0.08); /* Semi-transparent border */
  --radius: 30px; /* Pill radius */
  --radius-card: 16px; /* Card border radius */
  --space: 1.5rem;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --glow-shadow: 0 0 20px rgba(255, 95, 31, 0.45);
}

/* Reset and Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-offset);
  border: 2px solid var(--bg);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  color: var(--muted);
  font-weight: 300;
}

/* Focus and Active States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

/* Section Containers */
section {
  padding: 80px 5% ;
  position: relative;
  overflow: hidden;
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 95, 31, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255, 95, 31, 0.05);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
}

/* Standardized Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: fit-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  padding: 8px 12px 8px 25px; /* Leave space on right for arrow badge */
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.3);
}

.btn-primary:hover {
  background: #ff7236;
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 95, 31, 0.5);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  background: rgba(255, 95, 31, 0.05);
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.1);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* Button circular arrow badge */
.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  color: #000;
  font-weight: 900;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(2px);
}

.btn-secondary .btn-arrow {
  background: var(--primary-color);
  color: #fff;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(2px);
}

/* Disabled & Loading States */
.btn-primary:disabled, .btn-secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 5%;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link,
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 35px;
  height: 35px;
  fill: var(--primary-color);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  line-height: 0.85;
}

.logo-text span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.25em;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  position: relative;
  padding: 5px 0;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.header-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 20px;
  justify-content: space-between;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: var(--transition);
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: 25px;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: rgba(255, 95, 31, 0.2);
  transform: translateY(-5px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 220px; /* Reserve space for absolute bottom stats */
  background-color: var(--bg);
  position: relative;
  z-index: 1;
}

.hero-glow-bg {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 95, 31, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.hero-badge-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary-color);
}

.hero-title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 25px;
}

.hero-title span.text-orange {
  color: var(--primary-color);
  display: block;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
}

.hero-feat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 95, 31, 0.1);
  color: var(--primary-color);
}

.hero-feat-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-feat-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.2;
}

/* Hero Right: Athlete & Floating Stats */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-neon-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 95, 31, 0.3);
  z-index: -1;
  animation: rotateCircle 60s linear infinite;
}

@keyframes rotateCircle {
  100% { transform: rotate(360deg); }
}

.hero-neon-circle::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

.athlete-img {
  width: 100%;
  max-width: 480px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: 0 0 100px 100px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Floating glassmorphic cards */
.floating-stat-card {
  position: absolute;
  z-index: 10;
  width: 200px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.floating-stat-card.rating {
  top: 15%;
  right: -5%;
}

.floating-stat-card.since {
  top: 45%;
  right: -10%;
}

.floating-stat-card.hours {
  bottom: 15%;
  right: -5%;
}

.floating-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 95, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.floating-card-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.floating-card-content {
  display: flex;
  flex-direction: column;
}

.floating-card-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
}

.floating-card-lbl {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.2;
  margin-top: 3px;
}

/* Hero Bottom Stats Row */
.hero-bottom-stats {
  position: absolute;
  bottom: 80px;
  left: 5%;
  width: 90%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  z-index: 15;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.hero-stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat-box:last-child {
  border-right: none;
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 95, 31, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.hero-stat-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-stat-info {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 4px;
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  z-index: 20;
}

.scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid var(--muted);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* About Section (Intro on Home, full details elsewhere) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img-box::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  z-index: -1;
}

.about-img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.about-info-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-color);
  color: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  font-family: var(--font-display);
  box-shadow: var(--glow-shadow);
}

.about-info-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-info-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-bullet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.about-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}

.about-bullet svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-color);
}

/* Programs/Services Section */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  z-index: 1;
}

.program-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: var(--transition);
}

.program-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0) 40%, rgba(8, 8, 8, 0.95) 90%);
  z-index: -1;
}

.program-content {
  width: 100%;
  transform: translateY(20px);
  transition: var(--transition);
}

.program-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 15px;
}

.program-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
}

.program-card-title {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.program-card-desc {
  font-size: 0.85rem;
  opacity: 0;
  transition: var(--transition);
}

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

.program-card:hover .program-content {
  transform: translateY(0);
}

.program-card:hover .program-card-desc {
  opacity: 1;
}

/* Personal Training Showcase */
.pt-section {
  background: linear-gradient(90deg, #080808 0%, #121212 100%);
}

.pt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.pt-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.pt-feat-item {
  display: flex;
  gap: 15px;
}

.pt-feat-check {
  width: 24px;
  height: 24px;
  background: rgba(255, 95, 31, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pt-feat-check svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.pt-feat-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Membership/Pricing Section */
.membership-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.toggle-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.toggle-label.active {
  color: var(--primary-color);
}

.pricing-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--bg-offset);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  cursor: pointer;
}

.pricing-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: var(--primary-color);
  border-radius: 50%;
  transition: var(--transition);
}

.pricing-switch.yearly::after {
  left: 33px;
}

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

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 95, 31, 0.1);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 4px 30px;
  transform: rotate(45deg);
}

.pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.pricing-name {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.pricing-item.disabled {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.pricing-item svg {
  width: 14px;
  height: 14px;
  fill: var(--primary-color);
  flex-shrink: 0;
}

.pricing-item.disabled svg {
  fill: rgba(255, 255, 255, 0.2);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  display: flex;
}

/* Facilities Gallery */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.facility-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  height: 250px;
  z-index: 1;
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.2) 30%, rgba(8, 8, 8, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: var(--transition);
}

.facility-title {
  font-size: 1.1rem;
  color: #fff;
  transform: translateY(5px);
  transition: var(--transition);
}

.facility-card:hover .facility-img {
  transform: scale(1.1);
}

.facility-card:hover .facility-overlay {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.4) 30%, rgba(255, 95, 31, 0.9) 100%);
}

/* Trainers Grid Section */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.trainer-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--bg-offset);
}

.trainer-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.trainer-social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 95, 31, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: var(--transition);
  z-index: 5;
}

.trainer-social-link {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.trainer-social-link:hover {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

.trainer-info {
  padding: 20px;
  text-align: center;
}

.trainer-specialty {
  font-size: 0.75rem;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.trainer-name {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 5px;
}

.trainer-card:hover .trainer-img {
  transform: scale(1.05);
}

.trainer-card:hover .trainer-social-overlay {
  opacity: 1;
}

/* Testimonials System */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--text);
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* FAQ Accordion System */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-body p {
  padding: 15px 0 10px;
  font-size: 0.95rem;
}

.faq-item.active .faq-body {
  max-height: 500px; /* high enough threshold */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Call to Action Section */
.cta-section {
  text-align: center;
  background: linear-gradient(rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.8)), url('../images/cta-bg.jpg') no-repeat center center/cover;
  padding: 100px 5%;
  border-top: 1px solid rgba(255, 95, 31, 0.1);
  border-bottom: 1px solid rgba(255, 95, 31, 0.1);
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-description {
  max-width: 600px;
  margin: 0 auto 35px;
  font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  margin-top: 50px;
}

.coach-request-container {
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

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

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 95, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-info-details h4 {
  font-size: 1.05rem;
  margin-bottom: 5px;
}

.contact-info-details p,
.contact-info-details a {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-info-details a:hover {
  color: var(--primary-color);
}

.contact-form-container {
  padding: 40px;
}

.form-title {
  margin-bottom: 25px;
  font-size: 1.6rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

/* Form success & error message states */
.form-message {
  margin-top: 15px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  display: none;
  font-weight: 600;
}

.form-message.success {
  color: #4caf50;
  display: block;
}

.form-message.error {
  color: #f44336;
  display: block;
}

/* Map Container */
.map-container {
  height: 400px;
  background: var(--bg-offset);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-card);
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle, #1a1a1a 0%, #080808 100%);
  color: var(--muted);
  gap: 15px;
}

.map-placeholder svg {
  width: 44px;
  height: 44px;
  fill: var(--primary-color);
  filter: drop-shadow(0 0 10px rgba(255, 95, 31, 0.3));
}

/* Footer Section */
.site-footer {
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 80px 5% 30px;
}

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

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-desc {
  font-size: 0.9rem;
}

.footer-col-title {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 25px;
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-link:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.footer-social-wrapper {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.footer-social-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
  transform: translateY(-2px);
}

.footer-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-newsletter-desc {
  font-size: 0.85rem;
}

.newsletter-form {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.01);
}

.newsletter-input {
  background: transparent;
  border: none;
  padding: 12px 18px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  flex-grow: 1;
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 0 20px;
  cursor: pointer;
}

.newsletter-btn:hover {
  background: #ff7236;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  font-size: 0.8rem;
  text-align: center;
}

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

.footer-bottom-link {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-bottom-link:hover {
  color: var(--primary-color);
}

/* Empty data-slots layout fallback */
div[data-slot]:empty {
  display: none;
}

/* Page Header component for secondary pages */
.page-header {
  padding: 140px 5% 60px;
  background: linear-gradient(180deg, #121212 0%, #080808 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  position: relative;
}

.page-header-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 95, 31, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-title {
  font-size: 3.5rem;
  margin-bottom: 15px;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumbs-item {
  color: var(--muted);
}

.breadcrumbs-item.active {
  color: var(--primary-color);
}

.breadcrumbs-separator {
  color: rgba(255, 255, 255, 0.2);
}

/* Program Schedule Section (in Services) */
.schedule-table-wrapper {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-card);
  background: var(--bg-card);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  text-align: left;
}

.schedule-table th, 
.schedule-table td {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.schedule-table th {
  background: rgba(255, 95, 31, 0.05);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
}

.schedule-cell {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.schedule-class-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
}

.schedule-class-time {
  font-size: 0.75rem;
  color: #fff;
}

.schedule-class-trainer {
  font-size: 0.7rem;
  color: var(--muted);
}

/* Pricing Table (in Pricing) */
.pricing-table-wrapper {
  overflow-x: auto;
  margin-top: 60px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  text-align: center;
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-table th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #fff;
}

.pricing-table td:first-child,
.pricing-table th:first-child {
  text-align: left;
  font-weight: 600;
}

.pricing-table tr:hover {
  background: rgba(255, 255, 255, 0.01);
}

.pricing-table svg.check {
  fill: #4caf50;
  width: 16px;
  height: 16px;
}

.pricing-table svg.cross {
  fill: #f44336;
  width: 14px;
  height: 14px;
}

/* Responsive Button Classes */
.mobile-menu-btn {
  display: none !important;
}

/* Floating Actions Button (WhatsApp / Back to Top) */
.floating-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-offset);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.floating-btn:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: var(--glow-shadow);
  transform: translateY(-3px);
}

.floating-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.floating-btn.whatsapp-widget {
  background: #25d366;
  border-color: #25d366;
}

.floating-btn.whatsapp-widget:hover {
  background: #20ba5a;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 1024px) {
  .hero-section { padding-bottom: 80px; flex-direction: column; }
  h1 { font-size: 4rem; }
  .hero-title { font-size: 3.8rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-features { max-width: 600px; margin: 0 auto; }
  .hero-image-wrapper { margin-top: 40px; }
  
  /* Adjusted floating stats positioning to prevent viewport overflows */
  .floating-stat-card.rating { right: 2%; }
  .floating-stat-card.since { left: 2%; right: auto; }
  .floating-stat-card.hours { right: 2%; }

  .hero-bottom-stats { position: relative; bottom: 0; left: 0; width: 100%; grid-template-columns: repeat(2, 1fr); margin-top: 50px; }
  .hero-stat-box { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 15px; }
  .hero-stat-box:nth-child(n+3) { border-bottom: none; padding-bottom: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-box { max-width: 500px; margin: 0 auto 30px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .pt-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .pt-features { max-width: 600px; margin: 0 auto; text-align: left; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .testimonial-card,
  .about-section .glass-card,
  .testimonials-grid .glass-card {
    flex: 0 0 calc(60% - 10px);
    scroll-snap-align: center;
  }
  .contact-container,
  .coach-request-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }

  /* Enable mobile navigation menu below 1024px to prevent horizontal menu text overlap */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #080808;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 100px 30px;
    align-items: flex-start;
    gap: 25px;
    transition: var(--transition);
    z-index: 1050;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  /* Animate menu hamburger */
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .header-actions-wrapper {
    margin-right: 15px;
  }

  /* Mobile menu Join Now styling overrides */
  .header-desktop-btn {
    display: none !important;
  }
  .mobile-menu-btn {
    display: inline-flex !important;
    margin-top: 20px;
    width: 100%;
    justify-content: space-between;
    padding: 10px 15px 10px 25px;
  }
}

/* Responsive Grid Adjustments (Mobile View) */
@media (max-width: 767px) {
  .hero-section { padding-bottom: 60px; }
  section { padding: 60px 4%; }
  .section-title { font-size: 2rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-bottom-stats { grid-template-columns: 1fr; }
  .hero-stat-box { border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 15px; }
  .hero-stat-box:nth-child(n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 15px; }
  .hero-stat-box:last-child { border-bottom: none; padding-bottom: 0; }
  .floating-stat-card { display: none; } /* Hide floating stats on tiny mobile screens to avoid overlap */
  .programs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .testimonials-grid .glass-card,
  .testimonial-card {
    flex: 0 0 85%;
  }
  .trainers-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .trainers-grid::-webkit-scrollbar {
    display: none;
  }
  .trainers-grid .trainer-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
  .form-group-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2.3rem; }
  .btn-primary, .btn-secondary { font-size: 0.85rem; padding: 6px 10px 6px 15px; }
  .btn-arrow { width: 28px; height: 28px; font-size: 0.95rem; }
  .hero-features { grid-template-columns: 1fr; }
}

/* --- Moved Inline Styles (Refactored Classes) --- */
.section-bg-offset {
  background-color: var(--bg-offset);
}

.footer-copyright a {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

/* Trainers page */
.trainer-social-link svg {
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
}

.trainer-info p {
  font-size: 0.8rem;
}



.coach-request-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.coach-request-info h2 {
  font-size: 2rem;
  line-height: 1.2;
}

#reqFocus {
  background: #121212;
}

#trainerRequestForm button[type="submit"] {
  margin-top: 15px;
}

/* Services page */
.programs-grid .glass-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.programs-grid .glass-card h3 {
  color: #fff;
  font-size: 1.3rem;
}

.glass-card.featured {
  border-color: var(--primary-color) !important;
}

.glass-card.featured .program-icon {
  background-color: var(--primary-color);
}

/* Actions */
.programs-action {
  text-align: center;
  margin-top: 50px;
}

.pt-action {
  margin-top: 25px;
}

/* Pricing page policies */
.policy-card h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 15px;
}

/* Contact page details */
.contact-info-cards .section-title {
  font-size: 2rem;
  text-align: left;
}

.contact-info-cards p {
  margin-bottom: 20px;
}

.map-placeholder h3 {
  color: #fff;
  font-size: 1.15rem;
}

.map-placeholder p {
  font-size: 0.85rem;
  max-width: 400px;
  text-align: center;
}

.glass-card .program-icon {
  margin-bottom: 20px;
}

.about-section .glass-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #fff;
}

/* Leaflet Custom Style Overrides to match the dark neon theme */
.leaflet-container {
  background: #080808 !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
}

.leaflet-popup-content-wrapper {
  background: #121212 !important;
  border: 1px solid var(--border-card) !important;
  border-radius: 8px !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
}

.leaflet-popup-tip {
  background: #121212 !important;
  border-left: 1px solid var(--border-card) !important;
  border-bottom: 1px solid var(--border-card) !important;
}

.leaflet-popup-close-button {
  color: var(--muted) !important;
}

.leaflet-bar a {
  background-color: #121212 !important;
  color: #fff !important;
  border: 1px solid var(--border-card) !important;
}

.leaflet-bar a:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

/* Custom Map Marker */
.custom-map-marker {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-color, #ff5f1f);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color, #ff5f1f);
  z-index: 2;
}

.marker-pulse {
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(255, 95, 31, 0.4);
  border-radius: 50%;
  animation: markerPulse 2s infinite ease-out;
  z-index: 1;
}

@keyframes markerPulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.map-popup-content h4 {
  color: var(--primary-color);
  margin: 0 0 5px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.map-popup-content p {
  color: #ffffff;
  margin: 0;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.4;
}
