:root {
  --bg: #050505;
  --bg-soft: #0f0f11;
  --text: #f7f7f7;
  --text-muted: #bfbfbf;
  --accent: #ff2d2d;
  --accent-2: #ff7a18;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% 10%, #1a0b0b 0%, var(--bg) 35%, #020202 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
}

h1,
h2,
.brand {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.03em;
}

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

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff8a8a;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.88rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 10px 22px rgba(255, 45, 45, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 45, 45, 0.45);
  filter: saturate(1.15);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.35);
}

.btn-small {
  padding: 0.62rem 1.2rem;
  font-size: 0.92rem;
}

.header {
  position: relative;
}

.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  margin-top: 1rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.68);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.navbar.scrolled {
  margin-top: 0.35rem;
  background: rgba(5, 5, 5, 0.9);
}

.brand {
  font-size: 1.8rem;
  color: #fff;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1.1rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -8% -8% 0 -8%;
  background-image: url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 50%, rgba(255, 45, 45, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 8rem;
}

.tagline {
  color: #ffb0b0;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  font-size: 0.84rem;
}

.hero h1 {
  font-size: clamp(2.9rem, 6.2vw, 5rem);
  max-width: 850px;
  margin: 0 auto 1rem;
}

.subtext {
  max-width: 630px;
  margin: 0 auto 2rem;
  color: #e3e3e3;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stats {
  margin-top: -3rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.4rem;
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  font-size: 2rem;
  color: #fff;
}

.stat-card p {
  color: var(--text-muted);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-media img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.about-content p {
  color: #dfdfdf;
  margin-bottom: 1.1rem;
}

.about-content ul {
  display: grid;
  gap: 0.55rem;
}

.about-content li {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
}

.facilities {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.glass-card span {
  font-size: 1.4rem;
}

.glass-card h3 {
  margin: 0.7rem 0 0.4rem;
}

.glass-card p {
  color: var(--text-muted);
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 45, 45, 0.45);
  box-shadow: 0 16px 34px rgba(255, 0, 0, 0.18);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  padding: 1.6rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(255, 0, 0, 0.2);
}

.pricing-card h3 {
  font-size: 1.6rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.4rem 0 1rem;
}

.price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card ul {
  margin-bottom: 1.2rem;
  display: grid;
  gap: 0.55rem;
}

.pricing-card li::before {
  content: "• ";
  color: #ff5f5f;
}

.pricing-card.featured {
  border-color: rgba(255, 55, 55, 0.55);
  background: linear-gradient(180deg, rgba(255, 45, 45, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: 0 16px 34px rgba(255, 26, 26, 0.28);
}

.badge {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ff2d2d, #ffa126);
}

.gallery {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.02));
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-grid img {
  height: 250px;
  transition: transform 0.45s ease;
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  font-weight: 600;
}

.gallery-grid figure:hover img {
  transform: scale(1.08);
}

.trainer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trainer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card img {
  height: 270px;
}

.trainer-card h3,
.trainer-card p,
.trainer-card small {
  padding: 0 0.9rem;
}

.trainer-card h3 {
  margin: 0.85rem 0 0.2rem;
}

.trainer-card p {
  color: #d8d8d8;
}

.trainer-card small {
  color: #ff9f9f;
  display: block;
  margin: 0.45rem 0 1rem;
}

.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(255, 0, 0, 0.22);
}

.testimonials {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem;
}

.testimonial-card p {
  color: #e2e2e2;
  margin-bottom: 0.9rem;
}

.cta {
  text-align: center;
}

.cta-content {
  padding: 3.1rem 1rem;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255, 45, 45, 0.16), rgba(255, 122, 24, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form-wrap,
.contact-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 5, 5, 0.65);
  color: #fff;
  padding: 0.7rem 0.75rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 45, 45, 0.5);
  border-color: transparent;
}

.map-placeholder {
  border-radius: 10px;
  min-height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #f2f2f2;
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.25), rgba(255, 122, 24, 0.2));
  border: 1px dashed rgba(255, 255, 255, 0.25);
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 0.85rem;
  background: #1fa855;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.footer {
  padding: 2.5rem 0 1.2rem;
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer h3,
.footer h4 {
  margin-bottom: 0.6rem;
}

.footer p,
.footer li,
.socials a {
  color: #c2c2c2;
}

.footer ul {
  display: grid;
  gap: 0.4rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.copyright {
  text-align: center;
  margin-top: 1.3rem;
  color: #9f9f9f;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .stats,
  .card-grid,
  .pricing-grid,
  .trainer-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .navbar .btn-small {
    display: none;
  }
}

@media (max-width: 760px) {
  .navbar {
    width: calc(100% - 1rem);
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: 220px;
    border-radius: 12px;
    padding: 0.8rem;
    border: 1px solid var(--border);
    background: rgba(5, 5, 5, 0.93);
    backdrop-filter: blur(12px);
    flex-direction: column;
    transform-origin: top right;
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: 0.24s ease;
  }

  .navbar.menu-open .nav-links {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .gallery-grid,
  .stats,
  .card-grid,
  .pricing-grid,
  .trainer-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }
}
