* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  color: #ff6b00;
  padding: 6px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,107,0,0.2);
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.7;
}

#preloader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.loader {
  width: 46px;
  height: 46px;
  border: 4px solid #222;
  border-top-color: #ff6b00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* === Section Background Colors === */

.bg-dark1 { background: #0a0a0a; }
.bg-dark2 { background: #0d0d0d; }
.bg-navy { background: #0a1628; }
.bg-maroon { background: #1a0a0a; }
.bg-purple { background: #140a1e; }
.bg-teal { background: #0a1a1a; }
.bg-green { background: #0a140a; }
.bg-charcoal { background: #111111; }
.bg-deep { background: #0e0e1a; }

/* === Navbar === */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.logo i { color: #ff6b00; margin-right: 8px; }
.logo span { color: #ff6b00; }

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b00;
  transition: all 0.3s ease;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6b00;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,0,0.3); }

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

.hamburger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero === */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a, #1a0a00, #0a0a0a);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.08) 0%, transparent 60%);
}

.hero-slider { position: absolute; inset: 0; z-index: 0; }

.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover !important;
  background-position: center !important;
}

.hero-slider .slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 5;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover { background: #ff6b00; border-color: transparent; transform: scale(1.1); }

.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dots .dot.active { background: #ff6b00; width: 30px; border-radius: 5px; }

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  color: #ff6b00;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 1px solid rgba(255,107,0,0.2);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 0.8s ease;
}

.hero h1 .highlight { color: #ff6b00; }

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeInUp 1.2s ease;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6b00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,107,0,0.3); }

.btn-primary.btn-large { padding: 18px 42px; font-size: 17px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}

.btn-secondary:hover { border-color: #ff6b00; color: #ff6b00; transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 1.4s ease;
}

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

.stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #ff6b00;
}

.stat-plus {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ff6b00;
}

.stat-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Features === */

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

.feature-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ff6b00;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

.feature-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.2); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 54px;
  height: 54px;
  background: rgba(255,107,0,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  color: #ff6b00;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon { background: #ff6b00; color: #fff; }

.feature-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.feature-card p { opacity: 0.6; font-size: 14px; line-height: 1.7; }

/* === Plans === */

.plans-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
}

.plans-toggle span { font-size: 14px; font-weight: 500; opacity: 0.6; }

.save-badge {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  color: #ff6b00;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 6px;
}

.toggle { position: relative; width: 52px; height: 26px; display: inline-block; }
.toggle input { display: none; }

.slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #ff6b00;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle input:checked + .slider::before { transform: translateX(26px); }

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

.plan-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.plan-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.2); }

.plan-card.featured {
  border-color: #ff6b00;
  background: rgba(255,107,0,0.06);
  transform: scale(1.05);
  z-index: 2;
}

.plan-card.featured:hover { transform: scale(1.05) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: 18px;
  right: -32px;
  background: #ff6b00;
  color: #fff;
  padding: 5px 36px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(45deg);
}

.plan-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.4;
  margin-bottom: 14px;
  display: inline-block;
}

.plan-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.plan-price { margin-bottom: 24px; }

.plan-price .price {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 700;
  color: #ff6b00;
}

.plan-price .period { font-size: 14px; opacity: 0.5; }

.plan-features { margin-bottom: 28px; }

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  opacity: 0.7;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-features li i { font-size: 15px; color: #ff6b00; }

.plan-features li.disabled { opacity: 0.25; }
.plan-features li.disabled i { color: #555; }

.btn-plan {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #ff6b00;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-plan:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,0,0.3); }

/* === Schedule === */

.schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

.schedule-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.schedule-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,0.2); }

.schedule-card.highlight-card {
  background: #ff6b00;
  border-color: transparent;
}

.schedule-day span {
  display: block;
  font-size: 13px;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.schedule-day strong {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

/* === Workouts === */

.workout-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.tab-btn:hover { border-color: rgba(255,107,0,0.3); color: #fff; }

.tab-btn.active { background: #ff6b00; color: #fff; border-color: transparent; }

.workout-content { display: none; animation: fadeInUp 0.5s ease; }
.workout-content.active { display: block; }

.workout-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }

.workout-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.workout-desc { opacity: 0.6; margin-bottom: 20px; font-size: 14px; line-height: 1.7; }

.workout-benefits { margin-bottom: 20px; }

.workout-benefits h4, .workout-exercises h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ff6b00;
}

.workout-benefits ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

.workout-benefits ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  opacity: 0.7;
}

.workout-benefits ul li i { color: #ff6b00; }

.exercise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

.exercise-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.exercise-item:hover { border-color: rgba(255,107,0,0.2); transform: translateX(4px); }

.exercise-item i { color: #ff6b00; font-size: 13px; }
.exercise-item span { flex: 1; font-size: 12px; font-weight: 500; }
.exercise-item small { color: #ff6b00; font-weight: 600; font-size: 11px; }

.workout-img {
  height: 360px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b00, #e55d00);
}

/* === Programs === */

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

.program-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
}

.program-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.2); }

.program-img {
  width: 140px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.program-body { padding: 24px; flex: 1; }

.program-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.program-body > p { opacity: 0.6; font-size: 13px; margin-bottom: 14px; line-height: 1.7; }

.program-body ul { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }

.program-body ul li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  opacity: 0.7;
}

.program-body ul li i { color: #ff6b00; font-size: 11px; }

/* === Trainers === */

.trainers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.trainer-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.trainer-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.2); }

.trainer-img { position: relative; overflow: hidden; }

.trainer-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

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

.trainer-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transition: all 0.3s ease;
}

.trainer-card:hover .trainer-social { bottom: 0; }

.trainer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,107,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 15px;
}

.trainer-social a:hover { background: #ff6b00; transform: translateY(-3px); }

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

.trainer-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.trainer-role {
  display: block;
  font-size: 12px;
  color: #ff6b00;
  font-weight: 600;
  margin-bottom: 8px;
}

.trainer-body p { font-size: 12px; opacity: 0.6; margin-bottom: 10px; line-height: 1.6; }

.trainer-certs { display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; }

.trainer-certs span {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 600;
  color: #ff6b00;
}

/* === Transformations === */

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

.transform-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.transform-card:hover { transform: translateY(-6px); border-color: rgba(255,107,0,0.2); }

.transform-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: rgba(255,255,255,0.12);
  position: relative;
}

.transform-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: #ff6b00;
}

.transform-badge i { margin-right: 5px; font-size: 11px; color: #ffd700; }

.transform-body { padding: 20px; }

.transform-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.transform-body p {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 14px;
  line-height: 1.6;
  font-style: italic;
}

.transform-stats { display: flex; gap: 10px; }

.transform-stats span {
  padding: 5px 14px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: #ff6b00;
}

/* === Testimonials === */

.testimonials-slider { max-width: 650px; margin: 0 auto; position: relative; }

.testimonial-card { display: none; text-align: center; padding: 36px; animation: fadeInUp 0.5s ease; }
.testimonial-card.active { display: block; }

.testimonial-stars { margin-bottom: 20px; }
.testimonial-stars i { color: #ffd700; font-size: 18px; margin: 0 2px; }

.testimonial-card > p {
  font-size: 16px;
  opacity: 0.75;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.testimonial-author div strong { display: block; font-size: 15px; margin-bottom: 2px; }
.testimonial-author div span { font-size: 12px; opacity: 0.5; }

.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active { background: #ff6b00; width: 30px; border-radius: 5px; }

/* === CTA === */

.cta-section { position: relative; overflow: hidden; }

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,107,0,0.06) 0%, transparent 60%);
}

.cta-content { text-align: center; max-width: 650px; margin: 0 auto; position: relative; z-index: 1; }

.cta-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-content p { font-size: 17px; opacity: 0.7; margin-bottom: 32px; }

.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* === FAQ === */

.faq-grid { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { border-color: rgba(255,107,0,0.15); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 { font-size: 15px; font-weight: 600; }
.faq-question i { opacity: 0.4; transition: all 0.3s ease; font-size: 13px; }
.faq-item.active .faq-question i { transform: rotate(180deg); opacity: 1; color: #ff6b00; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 300px; padding: 0 22px 18px; }

.faq-answer p { opacity: 0.6; font-size: 13px; line-height: 1.7; }

/* === Contact === */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

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

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

.contact-item i {
  width: 48px;
  height: 48px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ff6b00;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover i { background: #ff6b00; color: #fff; }

.contact-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-item p { font-size: 13px; opacity: 0.6; line-height: 1.6; }

.contact-social { display: flex; gap: 10px; margin-top: 10px; }

.contact-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-social a:hover { background: #ff6b00; opacity: 1; color: #fff; transform: translateY(-3px); border-color: transparent; }

.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-container iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(180deg); }

/* === Footer === */

.footer { background: #050505; padding: 50px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }

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

.footer-brand .logo { display: inline-block; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; opacity: 0.5; line-height: 1.7; max-width: 280px; }

.footer-links h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links ul li { margin-bottom: 8px; }

.footer-links ul li a { font-size: 13px; opacity: 0.5; transition: all 0.3s ease; }

.footer-links ul li a:hover { opacity: 1; color: #ff6b00; padding-left: 4px; }

.footer-newsletter h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-newsletter p { font-size: 13px; opacity: 0.5; margin-bottom: 14px; line-height: 1.6; }

.newsletter-form { display: flex; gap: 0; border-radius: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: #fff;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-form button {
  padding: 12px 18px;
  background: #ff6b00;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
}

.newsletter-form button:hover { background: #e55d00; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 20px 0; text-align: center; }

.footer-bottom p { font-size: 13px; opacity: 0.4; }
.footer-bottom i { color: #ff6b00; }

/* === Floating Buttons === */

.float-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-btn:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }

.whatsapp-btn { background: #25D366; }
.email-btn { background: #EA4335; }

/* === Reveal Animation === */

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === Scrollbar === */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #ff6b00; }

/* === Responsive === */

@media (max-width: 1024px) {
  .plans-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 56px; }
  .section-header h2 { font-size: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    padding: 70px 28px 28px;
    gap: 18px;
    transition: all 0.3s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
    z-index: 999;
  }

  .nav-links.active { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.6) !important; }

  .hamburger { display: flex; }
  .btn-nav { display: none; }

  .hero h1 { font-size: 38px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stats .stat-num { font-size: 28px; }

  .features-grid, .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }

  .workout-detail { grid-template-columns: 1fr; }
  .workout-img { height: 220px; order: -1; }

  .program-card { flex-direction: column; }
  .program-img { width: 100%; height: 100px; }

  .workout-benefits ul, .exercise-grid, .program-body ul { grid-template-columns: 1fr; }

  .trainers-grid, .transformations-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 28px; }
  .cta-content h2 { font-size: 32px; }

  .testimonial-card { padding: 20px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .btn-primary.btn-large { padding: 14px 24px; font-size: 14px; }
  .hero-slider-arrows { display: none; }
  .hero-slider-dots { bottom: 16px; }
  .float-buttons { bottom: 14px; right: 14px; }
  .float-btn { width: 44px; height: 44px; font-size: 20px; }
  .trainer-img img { height: 220px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }
  .section-header h2 { font-size: 24px; }
  .plan-price .price { font-size: 36px; }
  .container { padding: 0 14px; }
}
