/* =============================================
   FITCORE GYM - Main Stylesheet
   Theme: Bold Dark + High Energy + Modern Sports
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700;900&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --primary: #000000;
  --secondary: #111111;
  --accent1: #FF3D00;
  --accent2: #00E676;
  --text-light: #FFFFFF;
  --bg: #0F0F0F;
  --bg-card: #1a1a1a;
  --bg-card2: #161616;
  --border: rgba(255,61,0,0.2);
  --shadow-red: 0 0 20px rgba(255,61,0,0.4);
  --shadow-green: 0 0 20px rgba(0,230,118,0.4);
  --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 90px 0;
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent1);
  border-radius: 3px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--text-light);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent1);
}

.section-subtitle {
  font-size: 16px;
  color: #aaa;
  max-width: 600px;
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--accent1);
  color: var(--text-light);
  animation: pulseBtn 2.5s infinite;
}

.btn-primary:hover {
  background: #e03500;
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent1);
}

.btn-secondary:hover {
  background: var(--accent1);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--accent2);
  color: #000;
}

.btn-green:hover {
  background: #00c764;
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,61,0,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(255,61,0,0); }
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,61,0,0.15);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(0,0,0,0.98);
  box-shadow: 0 4px 30px rgba(255,61,0,0.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--text-light);
}

.nav-logo span {
  color: var(--accent1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ccc;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent1);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #000 0%, #0f0f0f 50%, #1a0800 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,61,0,0.03) 80px,
      rgba(255,61,0,0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,61,0,0.03) 80px,
      rgba(255,61,0,0.03) 81px
    );
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,61,0,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,230,118,0.08) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,61,0,0.1);
  border: 1px solid rgba(255,61,0,0.3);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent1);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent1);
  border-radius: 50%;
  animation: blinkDot 1.5s infinite;
}

@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  font-size: clamp(52px, 8vw, 110px);
  color: var(--text-light);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--accent1);
  display: block;
  -webkit-text-stroke: 2px var(--accent1);
  color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  color: #aaa;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 42px;
  color: var(--accent1);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #555;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent1), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   HERO BANNER SLIDER
   ============================================= */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(15,8,0,0.75) 50%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.slider-dot.active {
  background: var(--accent1);
  border-color: var(--accent1);
  transform: scale(1.3);
}

.slider-dot:hover {
  background: rgba(255,61,0,0.6);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,61,0,0.15);
  border: 2px solid rgba(255,61,0,0.4);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: var(--accent1);
  border-color: var(--accent1);
  box-shadow: var(--shadow-red);
}

.slider-prev {
  left: 24px;
}

.slider-next {
  right: 24px;
}

/* Make sure hero content sits above slider */
.hero .hero-bg-pattern,
.hero .hero-glow,
.hero .hero-glow-2,
.hero .container,
.hero .hero-scroll {
  z-index: 2;
  position: relative;
}

.hero .hero-glow,
.hero .hero-glow-2 {
  position: absolute;
}

/* =============================================
   STATS COUNTER SECTION
   ============================================= */
.stats-section {
  background: var(--secondary);
  padding: 60px 0;
  border-top: 1px solid rgba(255,61,0,0.1);
  border-bottom: 1px solid rgba(255,61,0,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,61,0,0.2);
}

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 64px;
  color: var(--accent1);
  line-height: 1;
  display: block;
}

.stat-plus {
  color: var(--accent2);
}

.stat-label {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-top: 8px;
}

.stat-desc {
  font-size: 12px;
  color: #555;
  margin-top: 4px;
}

/* =============================================
   PROGRAMS SECTION
   ============================================= */
.programs-section {
  background: var(--bg);
}

.programs-header {
  margin-bottom: 60px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}

.program-card:hover {
  border-color: var(--accent1);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,61,0,0.2);
}

.program-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-img {
  transform: scale(1.08);
}

.program-img-wrapper {
  overflow: hidden;
  position: relative;
}

.program-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-card), transparent);
}

.program-body {
  padding: 24px;
}

.program-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,61,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,61,0,0.2);
  transition: var(--transition);
}

.program-card:hover .program-icon {
  background: var(--accent1);
  border-color: var(--accent1);
}

.program-title {
  font-size: 26px;
  margin-bottom: 10px;
}

.program-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-meta {
  display: flex;
  gap: 16px;
}

.program-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.program-meta span i {
  color: var(--accent1);
}

/* =============================================
   MEMBERSHIP PLANS SECTION
   ============================================= */
.plans-section {
  background: var(--secondary);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-8px);
}

.plan-card.featured {
  border-color: var(--accent1);
  background: linear-gradient(135deg, #1a0800, #1a1a1a);
  transform: scale(1.03);
}

.plan-card.featured::before {
  background: var(--accent1);
  box-shadow: var(--shadow-red);
}

.plan-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.plan-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 22px;
  letter-spacing: 3px;
  color: #aaa;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}

.plan-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  padding-bottom: 8px;
}

.plan-amount {
  font-family: 'Bebas Neue', cursive;
  font-size: 72px;
  color: var(--accent1);
  line-height: 1;
}

.plan-period {
  font-size: 14px;
  color: #666;
  padding-bottom: 12px;
}

.plan-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 28px;
}

.plan-features {
  margin-bottom: 36px;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: #ccc;
}

.plan-feature:last-child {
  border-bottom: none;
}

.plan-feature i {
  color: var(--accent2);
  font-size: 14px;
  flex-shrink: 0;
}

.plan-feature.disabled {
  color: #444;
}

.plan-feature.disabled i {
  color: #333;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(255,61,0,0.2);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent1);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
}

.about-img-badge strong {
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  display: block;
  color: #fff;
  line-height: 1;
}

.about-img-badge span {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content {
  padding: 20px 0;
}

.about-features {
  margin: 36px 0;
  display: grid;
  gap: 20px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,61,0,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent1);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,61,0,0.2);
}

.about-feature-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-light);
}

.about-feature-text p {
  font-size: 13px;
  color: #777;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section {
  background: var(--secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent1);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  border-color: rgba(255,61,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,61,0,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,61,0,0.15);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--accent1);
  box-shadow: var(--shadow-red);
  border-color: var(--accent1);
}

.why-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}

/* =============================================
   TRAINERS SECTION
   ============================================= */
.trainers-section {
  background: var(--bg);
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.trainer-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.trainer-card:hover {
  border-color: var(--accent1);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255,61,0,0.15);
}

.trainer-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.trainer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
}

.trainer-card:hover .trainer-img {
  transform: scale(1.06);
}

.trainer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.trainer-card:hover .trainer-overlay {
  opacity: 1;
}

.trainer-social {
  display: flex;
  gap: 12px;
}

.trainer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.trainer-social a:hover {
  background: var(--accent1);
  border-color: var(--accent1);
}

.trainer-body {
  padding: 20px;
}

.trainer-name {
  font-size: 22px;
  margin-bottom: 4px;
}

.trainer-role {
  font-size: 12px;
  color: var(--accent1);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trainer-tag {
  background: rgba(255,61,0,0.1);
  border: 1px solid rgba(255,61,0,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  color: #aaa;
}

/* =============================================
   TRANSFORMATION SECTION
   ============================================= */
.transform-section {
  background: var(--secondary);
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.transform-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.transform-card:hover {
  border-color: var(--accent2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,230,118,0.1);
}

.transform-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  position: relative;
}

.transform-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.transform-card:hover .transform-img {
  transform: scale(1.04);
}

.transform-imgs-wrapper {
  overflow: hidden;
}

.transform-label {
  position: absolute;
  bottom: 8px;
  background: rgba(0,0,0,0.8);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.label-before {
  left: 8px;
  color: #ff6b6b;
  border: 1px solid rgba(255,107,107,0.3);
}

.label-after {
  right: 8px;
  color: var(--accent2);
  border: 1px solid rgba(0,230,118,0.3);
}

.transform-body {
  padding: 20px;
}

.transform-name {
  font-size: 22px;
  margin-bottom: 4px;
}

.transform-result {
  color: var(--accent2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.transform-quote {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  font-style: italic;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(255,61,0,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.testimonial-quote-icon {
  font-size: 48px;
  color: var(--accent1);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent1), #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  border: 2px solid rgba(255,61,0,0.3);
}

.testimonial-name {
  font-size: 16px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--accent1);
  font-weight: 600;
}

.testimonial-stars {
  color: #ffd700;
  font-size: 13px;
  margin-top: 4px;
}

/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section {
  background: var(--secondary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(255,61,0,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.blog-img-wrapper {
  overflow: hidden;
  height: 220px;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #1a0800, #0f0f0f);
}

.blog-card:hover .blog-img {
  transform: scale(1.08);
}

.blog-body {
  padding: 24px;
}

.blog-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.2;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--accent1);
}

.blog-excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 16px;
}

.blog-date {
  font-size: 12px;
  color: #555;
}

.blog-read-more {
  font-size: 13px;
  color: var(--accent1);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.blog-card:hover .blog-read-more {
  gap: 10px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(255,61,0,0.3);
  box-shadow: 0 8px 30px rgba(255,61,0,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-card);
  cursor: pointer;
  border: none;
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-card2);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(255,61,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent1);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(255,61,0,0.2);
}

.faq-item.active .faq-icon {
  background: var(--accent1);
  transform: rotate(45deg);
  border-color: var(--accent1);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--bg-card2);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* =============================================
   CTA BANNER SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #FF3D00 0%, #e03000 50%, #b02800 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(0,0,0,0.05) 30px,
      rgba(0,0,0,0.05) 31px
    );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(42px, 6vw, 80px);
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--accent1);
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-top: 60px;
}

.contact-info {
  padding: 40px;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(255,61,0,0.1);
}

.contact-info-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-info-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,61,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent1);
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,61,0,0.2);
}

.contact-detail-text h4 {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
  font-family: 'Roboto', sans-serif;
}

.contact-detail-text p, 
.contact-detail-text a {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--accent1);
}

.contact-form-wrapper {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-form-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-light);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 0 3px rgba(255,61,0,0.1);
}

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  padding: 0;
  height: 450px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #050505;
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,61,0,0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-brand-logo span {
  color: var(--accent1);
}

.footer-brand-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent1);
  border-color: var(--accent1);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--text-light);
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--accent1);
  font-size: 18px;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--text-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--accent1);
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.footer-bottom {
  background: #000;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: #555;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: #555;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent1);
}

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.float-btns {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
}

.float-whatsapp {
  background: #25D366;
  color: #fff;
  animation: floatPulse 3s infinite;
}

.float-call {
  background: var(--accent1);
  color: #fff;
  animation: floatPulse 3s infinite 0.5s;
}

.float-top {
  background: var(--secondary);
  color: var(--accent1);
  border: 1px solid rgba(255,61,0,0.3);
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
  50% { box-shadow: 0 4px 30px rgba(255,61,0,0.4); }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   PAGE HEADER (Inner Pages)
   ============================================= */
.page-header {
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,61,0,0.2);
}

/* Dark overlay so text stays readable over any image */
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.80) 0%, rgba(10,3,0,0.75) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 60px,
    rgba(255,61,0,0.04) 60px, rgba(255,61,0,0.04) 61px
  ),
  repeating-linear-gradient(
    90deg, transparent, transparent 60px,
    rgba(255,61,0,0.04) 60px, rgba(255,61,0,0.04) 61px
  );
}

.page-header-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.page-header-title {
  font-size: clamp(48px, 6vw, 80px);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #888;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--accent1);
}

.breadcrumb span {
  color: var(--accent1);
}

/* =============================================
   MISC UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-accent { color: var(--accent1); }
.text-green { color: var(--accent2); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--accent1);
  margin: 20px 0;
  border-radius: 2px;
}

.divider-center {
  margin: 20px auto;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 48px;
  letter-spacing: 6px;
  color: var(--text-light);
  animation: preloadAnim 1.5s ease-in-out infinite;
}

.preloader-logo span {
  color: var(--accent1);
}

@keyframes preloadAnim {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .transform-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(0,0,0,0.97);
    padding: 24px 20px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(255,61,0,0.1);
    align-items: flex-start;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .hamburger { display: flex; }

  .hero-title { font-size: clamp(44px, 10vw, 80px); }
  .hero-stats { gap: 28px; }
  
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-8px); }
  
  .why-grid { grid-template-columns: 1fr; }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .transform-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .about-img-badge { right: 0; }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-stat-number { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trainers-grid { grid-template-columns: 1fr; }
  .float-btns { bottom: 20px; right: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
