/* ================= RESPONSIVE BREAKPOINTS ================= */
/*
Desktop (Large screens):   1200px and above
Laptop (Standard):         992px – 1199px
Tablet (Medium):           768px – 991px
Mobile (Small):            below 768px
*/

:root {
  --red: #e53935;
  --red-light: #ff6b63;
  --bg: #ffffff;
  --surface: #f6f6f7;
  --border: #e4e4e4;
  --text: #1f1f1f; /* minimal black */
  --subtext: #555555;
  --shadow: rgba(0, 0, 0, 0.05);
}
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap");

/* ---------- RESET ---------- */
/* BODY FONT */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HEADING FONT */
h1,
h2,
h3,
h4,
h5,
h6,
p,
.logo {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

#loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
}

#loader {
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
}

#loader-video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: cover;
}

/* ---------- NAVBAR ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.49);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 18px var(--shadow);
}
.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  padding: 6px 8px;
  border-radius: 6px;
}
.nav-links a:hover {
  color: var(--red);
  background: rgba(229, 57, 53, 0.1);
}

/* Mobile */
.menu-btn {
  display: none;
  font-size: 26px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    display: none;
    z-index: 1001;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 16px 20px;
    border-radius: 0;
    border-bottom: 1px solid #eee;
  }
  .menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
  }
}
/* Extra: Ensure images and iframes are responsive */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Extra: Make grid and flex containers wrap on small screens */
.grid,
.timing-grid,
.videos-grid {
  width: 100%;
  box-sizing: border-box;
}

/* Accessibility: Focus styles */
a:focus,
button:focus,
input:focus,
select:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.25s;
}

/* red primary */
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #c62828;
}

/* outline button */
.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  min-height: 90vh;
  padding: 0 6%;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

/* Background Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.85),
    rgba(255, 255, 255, 0.3)
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #e53935;
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: 999px;
}

/* Heading */
.hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  line-height: 1.1;
  color: #111;
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: #e53935;
}

/* Text */
.hero-content p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
}

/* ================= OWNER HERO ADVANCED ================= */

.owner-animate {
  position: absolute;
  right: 5px;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: ownerSlideUp 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes ownerSlideUp {
  from {
    transform: translateY(60px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.owner-animate img {
  min-height: 250px;
  max-height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
  animation: ownerFloat 6s ease-in-out infinite;
}

/* Floating effect */
@keyframes ownerFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.owner-glow {
  position: absolute;
  bottom: 120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
.owner-info {
  margin-top: -36px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 26px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #e53935;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.owner-name {
  font-size: 24px;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: 4px;
}

.owner-role {
  display: block;
  font-size: 16px;
  font-weight: 100;
  color: #e53935;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.owner-brand {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #555;
  margin-top: 2px;
}
.owner-animate:hover img {
  transform: scale(1.03);
  filter: drop-shadow(0 45px 70px rgba(0, 0, 0, 0.55));
}

.owner-animate:hover .owner-info {
  transform: translateY(-4px);
}
/* ================= OWNER HOVER INFO ================= */

.owner-hover-info {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);

  transition: all 0.4s ease;
}
.owner-animate:hover .owner-hover-info {
  opacity: 1;
  max-height: 120px;
  transform: translateY(0);
}
.owner-hover-info p {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}
.owner-animate:hover .owner-info {
  padding-bottom: 20px;
}

/* ================= MOBILE OWNER FIX (FINAL) ================= */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    min-height: 70vh;
    padding: 0 2%;
    align-items: flex-start;
    overflow: visible;
    padding-bottom: 40px;
  }
  .hero-content {
    max-width: 100%;
    padding-top: 40px;
    text-align: center;
  }
  .owner-animate {
    position: static;
    margin: 0 auto 24px auto;
    width: 100%;
    align-items: center;
    animation: none;
    opacity: 1;
  }
  .owner-animate img {
    min-height: 150px;
    max-height: 220px;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    animation: none;
  }
  .owner-info {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    margin-top: 0;
    padding: 10px 10px;
    border-radius: 10px;
    font-size: 15px;
  }
  .owner-hover-info {
    opacity: 1 !important;
    max-height: none !important;
    transform: none !important;
    overflow: visible;
    padding-top: 4px;
    font-size: 13px;
  }
  .owner-animate:hover .owner-hover-info {
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
  }
  .owner-name {
    font-size: 20px;
  }
  .owner-role {
    font-size: 13px;
  }
  .owner-brand {
    font-size: 14px;
  }
  .bmi-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .section {
    padding: 40px 8px;
  }
}

/* ================= TEXT REVEAL ================= */

.reveal-text {
  opacity: 0;
  transform: translateY(24px);
  animation: revealUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .hero-trainer img {
    max-height: 70vh;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-trainer {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .why-card {
    padding: 16px 8px;
    font-size: 14px;
  }
  .why-card h3 {
    font-size: 17px;
  }
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bmi-card,
  .bmi-result-card {
    padding: 14px 6px;
  }
  .bmi-value {
    font-size: 30px;
  }
  .stat-box {
    padding: 12px 4px;
  }
  .faq-section h2 {
    font-size: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* Extra: Footer grid mobile fix */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .footer a {
    display: block;
    margin: 2px 0;
  }
}

/* ---------- SECTIONS ---------- */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}
.section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
}

/* Scroll Animation Base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-zoom {
  transform: scale(0.85);
}
.reveal-zoom.active {
  transform: scale(1);
}

/* Floating WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ---------- GYM TIMING SECTION ---------- */

.gym-timing h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

/* Grid layout */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 20px;
}

/* Timing Cards */
.timing-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 24px var(--shadow);
  text-align: center;
  transition: 0.25s ease;
  border-color: var(--red);
  box-shadow: 0 16px 34px rgba(229, 57, 53, 0.18);
}

.timing-card:hover {
  transform: translateY(-8px);
}

/* Heading */
.timing-card h3 {
  color: var(--text);
  font-size: 22px;
  margin-bottom: 6px;
}
.timing-card .icon {
  width: 30px;
  margin-right: 6px;
  vertical-align: middle;
}

/* Timing Hours */
.timing-card .time {
  font-size: 20px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 4px;
}

/* Days */
.timing-card .days {
  color: var(--subtext);
  font-size: 15px;
}

/* ================= WHY ALS FITNESS ================= */
.why-als {
  background: #f7f7f7;
}

.why-als h2 {
  margin-bottom: 30px;
}

/* Grid stays responsive */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Card */
.why-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 26px 24px;
  box-shadow: 0 10px 26px var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

/* Title */
.why-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
  font-family: "Oswald", sans-serif;
}

/* Description */
.why-card p {
  color: var(--subtext);
  line-height: 1.6;
  margin-bottom: 22px;
  font-size: 15.5px;
}

/* Explore Button */
.card-btn {
  align-self: flex-start;
  padding: 10px 18px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #e53935;
  color: #e53935;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.card-btn:hover {
  background: #e53935;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .why-card {
    padding: 22px 20px;
  }

  .why-card h3 {
    font-size: 20px;
  }
}

/* ================= STEP VIDEO CAROUSEL ================= */

.videos-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.videos-track {
  display: flex;
  gap: 22px;
  transition: transform 0.6s ease-in-out;
}

/* VIDEO CARD SIZE (DESKTOP) */
.video-card {
  flex: 0 0 calc(25% - 16px); /* 4 per row */
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* iframe */
.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Badge */
.video-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.video-badge.yt {
  background: #e53935;
}

.video-badge.ig {
  background: linear-gradient(45deg, #e1306c, #f77737, #fcaf45);
}
@media (max-width: 768px) {
  .video-card {
    flex: 0 0 100%;
  }
}


/* ---------- BMI Section ---------- */

.bmi-section {
  background: #f7f7f7;
}
.bmi-section h2 {
  font-size: 34px;
  margin-bottom: 25px;
}

.bmi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

#heightCmBox,
#heightFeetBox {
  margin-top: 12px;
}
.height-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.bmi-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 820px) {
  .bmi-container {
    grid-template-columns: 1fr;
  }
}

.bmi-card,
.bmi-result-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 10px 26px var(--shadow);
  transition: 0.25s;
  box-shadow: 0 16px 34px rgba(229, 57, 53, 0.18);
}

.bmi-card:hover,
.bmi-result-card:hover {
  transform: translateY(-6px);
}

/* BMI result value */
.bmi-value {
  font-size: 46px;
  font-weight: 700;
  color: var(--red);
}

/* Hidden by default */
#bmiTips,
#bmiPlan {
  display: none;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
}

/* Stylish cards */
.bmi-tips,
.bmi-plan {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 10px 26px var(--shadow);
  position: relative;
  overflow: hidden;
}

/* Red accent bar on left */
.bmi-tips::before,
.bmi-plan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #e53935, #ff6b63);
}

/* Icon styling inside heading */
.bmi-tips h3,
.bmi-plan h3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Text inside */
.bmi-tips p,
.bmi-plan p {
  font-size: 15px;
  color: var(--subtext);
}

/* Animation keyframes */
@keyframes tipsFadeUp {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Class added by JS when showing tips */
.tips-show {
  animation: tipsFadeUp 0.45s ease-out forwards;
}
.bmi-status {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================== STATS SECTION ================== */

.stats-section {
  padding: 60px 6%;
  text-align: center;
  background: linear-gradient(
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.92)
    ),
    url(assets/img/bg.jpg) center / cover fixed;
}

/* Container */
.container-cus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Stat Card */
.stat-box {
  width: 250px;
  padding: 24px 30px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

/* Counter Number */
.stat-counter {
  font-size: 3rem;
  font-weight: 700;
  color: #e53935; /* PRIMARY RED */
  position: relative;
  line-height: 1;
}

/* Plus sign */
.stat-counter::after {
  content: "+";
  margin-left: 4px;
  font-weight: 600;
  color: #e53935;
}

/* Label */
.stat-box p {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .stat-box {
    width: 100%;
  }

  .stat-counter {
    font-size: 2.5rem;
  }

  .stat-box p {
    font-size: 1rem;
  }
}

/* ================= FAQ SECTION ================= */

.faq-section {
  background: #f7f7f7;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Question button */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

/* Icon */
.faq-icon {
  font-size: 22px;
  font-weight: 700;
  color: #e53935;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Hover */
.faq-question:hover {
  background: rgba(229, 57, 53, 0.04);
}

/* Mobile */
@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
    padding: 16px 18px;
  }
}

/* ---------- GOOGLE REVIEWS SECTION ---------- */

.google-reviews {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 6%;
  background: #ffffff;
  overflow: hidden;
}

/* Header */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

/* Google badge */
.google-badge {
  font-weight: 700;
  font-size: 20px;
}

.g-red {
  color: #db4437;
}
.g-yellow {
  color: #f4b400;
}
.g-green {
  color: #0f9d58;
}
.g-blue {
  color: #4285f4;
}

.badge-text {
  margin-left: 6px;
  color: #555;
}

/* Rating */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-score {
  font-size: 24px;
  font-weight: 700;
}

.rating-stars {
  color: #f4b400;
}

.google-btn {
  margin-left: 10px;
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.google-btn:hover {
  background: #db4437;
  color: #fff;
  border-color: #db4437;
}

/* Slider */
.reviews-wrapper {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollReviews 35s linear infinite;
}

/* Pause on hover */
.reviews-wrapper:hover .reviews-track {
  animation-play-state: paused;
}

/* Review card */
.review-card {
  max-width: 450px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.review-card .stars {
  color: #f4b400;
  margin-bottom: 6px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-weight: 600;
}

.reviewer img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

/* Gradient fades */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #f6f6f6, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #f6f6f6, transparent);
}

/* TRUE SEAMLESS LOOP */
@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .review-card {
    min-width: 250px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--surface);
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}
.footer h4 {
  margin-bottom: 10px;
  color: var(--text);
}
.footer a {
  display: block;
  margin-bottom: 6px;
  color: var(--subtext);
  text-decoration: none;
}
.footer a:hover {
  color: var(--red);
}
.copyright {
  text-align: center;
  margin-top: 20px;
  color: #777;
}

/* ---------- INPUT FIELDS ---------- */
.input {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
}
.input:focus {
  border-color: var(--red);
  outline: none;
}

/* ================= LARGE SCREENS ================= */
@media (min-width: 1200px) {
  body {
    font-size: 17px;
  }

  .section,
  .navbar,
  .footer-grid {
    max-width: 1280px;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-trainer img {
    max-height: 90vh;
  }

  .grid,
  .timing-grid,
  .videos-grid {
    gap: 32px;
  }
}

/* ================= TABLETS ================= */
@media (max-width: 991px) {
  /* NAVBAR */
  .nav-links {
    top: 70px;
    width: 100%;
    right: -100%;
  }

  .nav-links.open {
    right: 0;
  }

  /* HERO */
  .hero-section {
    padding: 120px 6% 80px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-trainer {
    display: none;
  }

  /* BMI */
  .bmi-container {
    grid-template-columns: 1fr;
  }

  /* STATS */
  .container-cus {
    gap: 20px;
  }

  .stat-box {
    width: 45%;
  }
}

/* ================= MOBILE PHONES ================= */
@media (max-width: 767px) {
  /* GLOBAL */
  body {
    font-size: 15px;
  }

  .section {
    padding: 55px 16px;
  }

  h2 {
    font-size: 26px;
  }

  /* NAVBAR */
  .navbar {
    padding: 14px 16px;
  }

  .logo {
    font-size: 20px;
  }

  /* HERO */
  .hero-content h1 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* GYM TIMINGS */
  .timing-card h3 {
    font-size: 18px;
  }

  .timing-card .time {
    font-size: 17px;
  }

  /* STATS */
  .stat-box {
    width: 100%;
  }

  .stat-counter {
    font-size: 2.4rem;
  }

  /* FOOTER */
  .footer-grid {
    gap: 24px;
    text-align: center;
  }
}
