/* assets/css/style.css */
:root {
  --black: #0d0d0d;
  --red: #e83535;
  --red-dark: #8e0505;
  --white: #b6b6b6;
  --gray: #181818;
  --muted: rgba(255, 255, 255, 0.68);
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.15);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader span {
  color: var(--red);
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #ff7a8c);
}

.cursor-glow {
  position: fixed;
  z-index: 999;
  width: 280px;
  height: 280px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 31, 61, 0.18), transparent 68%);
  transform: translate(-50%, -50%);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 72px);
  background: rgba(13, 13, 13, 0.64);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.92);
  border-color: var(--border);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.logo {
  font-weight: 950;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.logo span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--red);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--glass);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.section,
.page-hero {
  padding: 105px clamp(18px, 5vw, 76px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 150px clamp(18px, 5vw, 76px) 80px;
  overflow: hidden;
  background: #111;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.94), rgba(13, 13, 13, 0.42)),
    radial-gradient(circle at 75% 40%, rgba(255, 31, 61, 0.32), transparent 36%),
    url("../images/hero.jpg") center/cover;
}

.hero-content {
  position: relative;
  max-width: 850px;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 9vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-sub {
  min-height: 68px;
  max-width: 650px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 900;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: rgba(255, 31, 61, 0.8);
  box-shadow: 0 18px 42px rgba(255, 31, 61, 0.28);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(255, 31, 61, 0.26);
}

.stats-grid {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 70px;
}

.stats-grid article,
.glass-card,
.service-card,
.price-card,
.bmi-card,
.contact-form,
.contact-info,
.mini-card,
.trainer-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stats-grid article {
  padding: 24px;
}

.stats-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 950;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 44px;
}

.feature-grid,
.service-grid,
.pricing-grid,
.trainer-grid,
.gallery-grid,
.testimonial-grid,
.icon-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-grid,
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-grid,
.icon-grid {
  grid-template-columns: repeat(3, 1fr);
}

.glass-card,
.service-card,
.price-card,
.bmi-card,
.contact-form,
.contact-info,
.mini-card {
  padding: 28px;
}

.glass-card:hover,
.service-card:hover,
.price-card:hover,
.mini-card:hover,
.trainer-card:hover,
.gallery-item:hover {
  border-color: rgba(255, 31, 61, 0.65);
  transform: translateY(-8px);
}

.mini-card {
  min-height: 96px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 850;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.image-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--border);
}

.image-card img {
  min-height: 430px;
}

.bmi-card {
  max-width: 680px;
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--white);
  font: inherit;
}

textarea {
  min-height: 130px;
  padding-top: 16px;
  resize: vertical;
}

.bmi-result,
#formStatus {
  color: var(--red);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 950px;
}

details {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  background: var(--glass);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

.page-hero {
  min-height: 58vh;
  display: grid;
  align-items: end;
  padding-top: 160px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 31, 61, 0.22), transparent 34%),
    linear-gradient(180deg, #161616, var(--black));
}

.price-card {
  position: relative;
  min-height: 260px;
}

.price {
  color: var(--white);
  font-size: 3rem;
  font-weight: 950;
}

.popular {
  background: linear-gradient(145deg, rgba(255, 31, 61, 0.24), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 31, 61, 0.75);
}

.popular span {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.trainer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trainer-card {
  overflow: hidden;
}

.trainer-card img {
  height: 360px;
}

.trainer-card div {
  padding: 26px;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  margin: 0;
  border-radius: 28px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
}

.gallery-item img {
  height: 100%;
  min-height: 310px;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.72);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.map-section {
  padding: 0 clamp(18px, 5vw, 76px) 90px;
}

.map-section iframe {
  width: 100%;
  min-height: 430px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--gray);
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding: 62px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--border);
  background: #070707;
}

.footer h3,
.footer h4 {
  margin-top: 0;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer a:hover {
  color: var(--red);
}

.whatsapp,
.back-top {
  position: fixed;
  z-index: 900;
  border: 0;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.whatsapp {
  right: 20px;
  bottom: 86px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
}

.back-top {
  right: 20px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
}.nav-menu a {
  position: relative;
}

.nav-menu a.active {
  color: #ff1f3d;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background: linear-gradient(90deg, #ff1f3d, #ff6b7d);
  box-shadow: 0 0 16px rgba(255, 31, 61, 0.8);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #ff1f3d;
  background: rgba(255, 31, 61, 0.1);
  border: 1px solid rgba(255, 31, 61, 0.28);
  box-shadow: 0 16px 34px rgba(255, 31, 61, 0.14);
  transition: 0.25s ease;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-card:hover .feature-icon,
.service-card:hover .feature-icon {
  color: #ffffff;
  background: #ff1f3d;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 45px rgba(255, 31, 61, 0.35);
}

.service-icon {
  margin-bottom: 20px;
}

h2,
.section-heading h2 {
  font-family: "montserrat", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 6vw, 4.8rem);
  word-break: normal;
}

@media (max-width: 600px) {
  h2,
  .section-heading h2 {
    font-weight: 700;
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
  }
}

.section-heading {
  max-width: 900px;
}

@media (max-width: 600px) {
  .section-heading {
    max-width: 100%;
  }
}
.google-rating-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 31, 61, 0.18), transparent 35%),
    linear-gradient(180deg, #0d0d0d, #070707);
}

.google-rating-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.google-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #ff1f3d;
  background: rgba(255, 31, 61, 0.12);
  border: 1px solid rgba(255, 31, 61, 0.35);
  font-weight: 900;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 22px 0;
}

.rating-score strong {
  font-size: clamp(3rem, 7vw, 5rem);
  color: #ffffff;
  line-height: 1;
}

.stars {
  color: #ff1f3d;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(255, 31, 61, 0.55);
}

.rating-review {
  display: flex;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .google-rating-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .rating-score {
    align-items: flex-start;
  }
}