/* ============================================================
   GLOBAL RESET
   ============================================================ */

::selection {
  background: #D70000;
  color: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #000;
  margin: 0;
}


/* ============================================================
   BANNER
   ============================================================ */

.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner-img-2.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 0, 0.3);
  /* light overlay */
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.93) 0%,
      rgba(0, 0, 0, 0.78) 30%,
      rgba(0, 0, 0, 0.30) 58%,
      rgba(0, 0, 0, 0.05) 100%),
    radial-gradient(ellipse 50% 70% at 12% 65%, rgba(160, 8, 8, 0.30) 0%, transparent 65%); */
}


/* ── Spark Particles ── */

.sparks {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.spark {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 120, 0, 0.95), rgba(232, 25, 44, 0.4) 60%, transparent);
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }

  15% {
    opacity: 0.9;
  }

  80% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(-320px) scale(0.3);
  }
}


/* ── Laser Streaks ── */

.streak {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

/* Left streaks */
.streak-l1 {
  left: -80px;
  top: 37%;
  width: 520px;
  height: 5px;
  transform: rotate(-16deg);
  filter: blur(1.5px);
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(232, 25, 44, 0.0) 10%,
      rgba(232, 25, 44, 1.0) 55%,
      rgba(255, 80, 60, 0.5) 80%,
      transparent 100%);
  box-shadow:
    0 0 14px 3px rgba(232, 25, 44, 0.6),
    0 0 30px 6px rgba(200, 10, 10, 0.3);
}

.streak-l2 {
  left: -60px;
  top: 44%;
  width: 380px;
  height: 3px;
  transform: rotate(-16deg);
  filter: blur(2px);
  background: linear-gradient(90deg, transparent, rgba(232, 25, 44, 0.7) 60%, transparent);
}

.streak-l3 {
  left: -30px;
  top: 50%;
  width: 260px;
  height: 2px;
  transform: rotate(-16deg);
  filter: blur(2px);
  background: linear-gradient(90deg, transparent, rgba(232, 25, 44, 0.4) 70%, transparent);
}

/* Right streaks */
.streak-r1 {
  right: -80px;
  top: 33%;
  width: 480px;
  height: 5px;
  transform: rotate(16deg);
  filter: blur(1.5px);
  background: linear-gradient(270deg,
      transparent 0%,
      rgba(232, 25, 44, 0.0) 10%,
      rgba(232, 25, 44, 1.0) 55%,
      rgba(255, 80, 60, 0.5) 80%,
      transparent 100%);
  box-shadow:
    0 0 14px 3px rgba(232, 25, 44, 0.6),
    0 0 28px 6px rgba(200, 10, 10, 0.3);
}

.streak-r2 {
  right: -60px;
  top: 40%;
  width: 340px;
  height: 3px;
  transform: rotate(16deg);
  filter: blur(2px);
  background: linear-gradient(270deg, transparent, rgba(232, 25, 44, 0.6) 60%, transparent);
}


/* ── Dot Pattern Overlays ── */

.dots {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle, #D70000 1px, transparent 1px);
  background-size: 16px 16px;
}

.dots-left {
  left: 0;
  bottom: 0;
  width: 180px;
  height: 280px;
}

.dots-right {
  right: 0;
  top: 0;
  width: 160px;
  height: 240px;
}


/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
}

.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 0 6px rgba(232, 25, 44, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #D70000;
}

.nav-cta {
  background: #D70000;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #ff1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(215, 0, 0, 0.4);
}


/* ============================================================
   BANNER CONTENT
   ============================================================ */

.banner-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 2% 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 100vh;
}


/* ── Hero Left ── */

.banner-left {
  flex: 0 0 auto;
  max-width: 600px;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
}

.banner-left.show {
  opacity: 1;
  transform: translateX(0);
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(62px, 7vw, 118px);
  line-height: 0.7;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}

.hero-title span {
  font-size: 80px;
  font-weight: 800;
  opacity: 0.8;
  letter-spacing: 4px;
}

.tagline-red {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 17px);
  color: #D70000;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tagline-white {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.7vw, 17px);
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 38px;
}

.line {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

/* Common icon style */
.custom-list .icon {
  color: #D70000;
  margin-right: 10px;
}

/* First item style */
.item-one {
  margin-bottom: 8px;
  font-weight: 600;
  color: #ffffff;
}

/* Second item style */
.item-two {

  color: #ffffff;
}

.line.show {
  opacity: 1;
  transform: translateY(0);
}


/* ── Hero Buttons ── */

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-red {
  background: #D70000;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2.5px;
  padding: 15px 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(232, 25, 44, 0.35);
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
}

.btn-red:hover {
  background: #D70000;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(232, 25, 44, 0.5);
}

.btn-red .arr {
  font-size: 20px;
  font-weight: 900;
}

.btn-ghost {
  background: transparent;
  border: 2px solid #D70000;
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 10px 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: #D70000;
  color: #D70000;
  transform: translateY(-3px);
}


/* ── Hero Stats ── */

.hero-stats {
  /* display: flex; */
  align-items: center;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 10px;
}

.stat+.stat {
  padding-left: 10px;
  border-left: 1px solid #D70000;
}

.stat-icon {
  font-size: 24px;
}

.stat-icon img {
  height: 25px;
  width: auto;
  display: block;
}

.stat-num {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.3rem;
}


/* ── Feature Card (Right) ── */

.banner-right {
  flex: 0 0 auto;
  align-self: center;
  opacity: 0;
  transform: translateX(40px);
  transition: all 2.5s ease;
}

.banner-right.show {
  opacity: 1;
  transform: translateX(0);
}

.feature-card {
  border-radius: 12px;
  background: rgba(8, 8, 8, 0.2);
  border: 1.5px solid rgba(232, 25, 44, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 200px;
  overflow: hidden;
  box-shadow:
    0 0 50px rgba(232, 25, 44, 0.12),
    inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.fc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #D70000;
  width: fit-content;
  margin: 18px auto 0;
}

.fc-header span {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 2.5px;
  color: #fff;
  text-transform: uppercase;
  background: none;
}

.fc-body {
  padding: 6px 13px 5px;
}

.fc-row {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fc-row:last-child {
  border-bottom: none;
}

.fc-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.fc-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

@media(max-width:768px) {
  .hero-title span {
    font-size: 60px;

  }

  .streak {
    display: none;
  }

  .stat-num {
    text-align: center;
    font-size: 18px;

  }
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section {
  background: #fff;
  padding: 100px 5% 150px;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: stretch;
  /* CHANGE THIS */
  gap: 60px;
}

.about-img {
  flex: 1;
  order: 1;
  display: flex;
  /* ADD THIS */
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.about-img.show {
  opacity: 1;
  transform: translateX(0);
}

.about-img img {
  width: 100%;
  height: 100%;
  /* ADD THIS */
  object-fit: cover;
  /* ADD THIS */
  border-radius: 20px;
  display: block;
}

.about-content {
  flex: 1;
  order: 2;

  flex-direction: column;
  /* ADD THIS */
  justify-content: center;
  /* ADD THIS */
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease;
}

.about-content.show {
  opacity: 1;
  transform: translateX(0);
}

.about-tag {
  display: inline-block;
  background: rgba(215, 0, 0, 0.15);
  color: #D70000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 45px;
  border-radius: 14px;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.about-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.coach {
  display: flex;
  align-items: center;
  gap: 15px;
}

.coach img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.coach h4 {
  font-size: 18px;
  margin: 0;
}

.coach span {
  font-size: 14px;
  color: #666;
}

.about-btn {
  background: #D70000;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.5px;
  padding: 16px 40px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(215, 0, 0, 0.4);
}



@media (max-width: 768px) {

  .about-container {
    display: flex;
    flex-direction: column-reverse;
    /* THIS is the key */
  }

  .about-img {
    margin-top: 20px;
  }

  .about-img img {
    height: auto;
  }
}

/* ============================================================
   OFFER / VIDEO SECTION
   ============================================================ */

.offer-section {
  background: #0c1a26;
  padding: 80px 5%;
  color: #fff;
}

.video-banner {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: -150px auto 60px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 5;
  aspect-ratio: 16 / 8;
}

.video-banner iframe {
  width: 100%;
  aspect-ratio: 16 / 8;
  display: block;
  border: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}

.video-overlay h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: #D70000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 10px;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(215, 0, 0, 0.6);
}

.video-overlay span {
  font-size: 14px;
}

.offer-header {
  text-align: center;
  margin-bottom: 50px;
}

.offer-tag {
  display: inline-block;
  background: rgba(215, 0, 0, 0.2);
  color: #D70000;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.offer-header h2 {
  font-size: 42px;
  font-weight: 800;
}

.offer-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.offer-card {
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  color: #000;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.progress {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin: 10px 0;
  background-color: transparent;
}

.bar {
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
}

.bar div {
  height: 100%;
  background: #D70000;
  border-radius: 10px;
}


/* ── Offer Slider ── */

.offer-slider {
  padding: 40px 0;
}

.swiper-pagination {
  bottom: -7px !important;
}

.swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #D70000;
}

/* -- Boxing Group Classes -- */

.boxing-classes {
  max-width: 1140px;
  margin: 0 auto;
}

.boxing-header h2 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 2px;
}

.boxing-subheadline {
  max-width: 820px;
  margin: 14px auto 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.boxing-overview {
  max-width: 920px;
  margin: 0 auto 44px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.boxing-overview p {
  margin: 0 0 14px;
}

.boxing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.boxing-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 24px;
}

.boxing-card h3 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.boxing-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.boxing-card p {
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.boxing-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.time-block h4 {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #D70000;
}

.time-block ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.boxing-note {
  margin: 16px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.72);
}

.boxing-cta {
  margin-top: 54px;
  text-align: center;
}

.boxing-cta-title {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 900;
}

.boxing-btns {
  justify-content: center;
  margin-bottom: 18px;
}

.boxing-closing {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 992px) {
  .boxing-grid {
    grid-template-columns: 1fr;
  }

  .boxing-times {
    grid-template-columns: 1fr;
  }

  .boxing-header h2 {
    font-size: 44px;
  }
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials-section {
  background: #0b1620;
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.testi-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.testi-header.show {
  opacity: 1;
  transform: translateY(0);
}

.testi-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin: 15px 0 12px;
}

.testi-header p {
  color: #8a9bae;
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Featured Row ── */

.testi-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.testi-card {
  background: #111f2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease;
}

.testi-card.show {
  opacity: 1;
  transform: translateY(0);
}

.testi-card:hover {
  border-color: rgba(215, 0, 0, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testi-card.highlight {
  border-color: rgba(215, 0, 0, 0.5);
  background: linear-gradient(145deg, #1a0a0a, #111f2e);
  position: relative;
  overflow: hidden;
}

.testi-card.highlight::before {
  content: "⭐ Featured";
  position: absolute;
  top: 14px;
  right: 14px;
  background: #D70000;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
}

.testi-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  flex: 1;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-author.light strong {
  color: #fff;
}

.testi-author.light span {
  color: #8a9bae;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.testi-author span {
  font-size: 12px;
  color: #8a9bae;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(215, 0, 0, 0.15);
  border: 1.5px solid rgba(215, 0, 0, 0.4);
  color: #D70000;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testi-avatar.red {
  background: #D70000;
  border-color: #D70000;
  color: #fff;
}

.testi-avatar.sm {
  width: 36px;
  height: 36px;
  font-size: 11px;
}

/* ── Transformation Story ── */

.testi-transformation {
  background: #0f1b28;
  border: 1px solid rgba(215, 0, 0, 0.25);
  border-left: 5px solid #D70000;
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.6s ease 0.2s;
}

.testi-transformation.show {
  opacity: 1;
  transform: translateY(0);
}

.transform-badge {
  display: inline-block;
  background: rgba(215, 0, 0, 0.15);
  color: #D70000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.testi-transformation blockquote {
  font-size: clamp(16px, 2.2vw, 16px);
  font-weight: 600;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 24px;
  font-style: italic;
}

/* ── Grid Row ── */

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.testi-card.small {
  padding: 22px;
  gap: 14px;
}

.testi-card.community {
  border-color: rgba(215, 0, 0, 0.3);
}

/* ── Rating Summary ── */

.testi-summary {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #111f2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 32px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease 0.3s;
}

.testi-summary.show {
  opacity: 1;
  transform: translateY(0);
}

.summary-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.big-score {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.summary-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.summary-score span {
  font-size: 13px;
  color: #8a9bae;
}

.summary-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.summary-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-text strong {
  font-size: 16px;
  color: #fff;
}

.summary-text span {
  font-size: 13px;
  color: #8a9bae;
}

.summary-btn {
  padding: 12px 28px;
  font-size: 14px;
  white-space: nowrap;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testi-featured {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .summary-divider {
    display: none;
  }

  .testi-transformation {
    padding: 24px 20px;
  }
}

/* ============================================================
   WHY CHOOSE SECTION
   ============================================================ */

.why-kembo {
  background: #fff;
  padding: 60px 5%;
  font-family: "Poppins", sans-serif;
}

.why-kembo .container {
  max-width: 1140px;
  margin: 0 auto;
}

.why-kembo .section-title {
  font-size: 48px;
  font-weight: 900;
  color: #000;
  margin-bottom: 50px;
}

.why-flex-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.why-nav {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-nav-item {
  background: #121921;
  color: #fff;
  padding: 18px 30px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.why-nav-item.active {
  background: #D70000;
}

.why-nav-item.show {
  opacity: 1;
  transform: translateY(0);
}

.curve-line {
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.why-main-card {
  flex: 1;
  background: #121921;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

.why-main-card.show {
  opacity: 1;
  transform: translateX(0);
}

.why-card-inner {
  display: flex;
  gap: 30px;
  align-items: center;
}

.why-image {
  flex: 1.2;
}

.why-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.why-content {
  flex: 1;
}

.promise-icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 30px;
}

.icon-bg-gray {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: #555;
  z-index: 1;
}

.icon-red {
  position: absolute;
  inset: 0;
  background: #D70000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2;
}

.why-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
}

.why-content p {
  font-size: 14px;
  color: #b0b8c1;
  line-height: 1.6;
  margin-bottom: 30px;
}

.coach-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.coach-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coach-profile img {
  width: 45px;
  height: 45px;
  border-radius: 4px;
}

.coach-text strong {
  display: block;
  font-size: 13px;
}

.coach-text span {
  font-size: 11px;
  color: #888;
}

.call-box {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 15px;
  text-align: right;
}

.call-box .label {
  display: block;
  font-size: 11px;
  color: #888;
}

.call-box .phone {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.call-box .phone a {
  color: #fff;
  text-decoration: none;
}

.why-cta-btn {
  background: #D70000;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 14px 40px;
  cursor: pointer;
  text-transform: uppercase;
}

.why-cta-btn:hover {
  background: #ff1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(215, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  .why-flex-wrapper {
    display: block;
  }

  /* Hide original card on mobile */
  .why-main-card {
    display: none;
  }

  /* Mobile inserted card */
  .mobile-card {
    display: block;
    margin-top: 15px;
    background: #121921;
    padding: 20px;
    border-radius: 16px;
    animation: fadeSlide 0.4s ease;
  }

  @keyframes fadeSlide {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .phoneile-card .why-card-inner {
    flex-direction: column;
  }
}


/* ============================================================
   AMENITIES SECTION
   ============================================================ */

.amenities-section {
  background: #fff;
  padding: 50px 5%;
  font-family: "Poppins", sans-serif;
}

.amenities-container {
  max-width: 1300px;
  margin: 0 auto;
}

.amenities-header {
  margin-bottom: 50px;
}

.offer-pill {
  display: inline-block;
  background: #FDE2E4;
  color: #D70000;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.amenities-header h2 {
  font-size: clamp(40px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: #000;
  margin-bottom: 20px;
}

.amenities-header p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
}

.amenities-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 25px;
  align-items: stretch;
  position: relative;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amenity-card {
  background: #171c22;
  padding: 15px 30px;
  border-radius: 16px;
  color: #fff;
  opacity: 1;
  /* show cards immediately */
  transform: translateY(0);
  position: relative;
  cursor: pointer;
  transition: transform 0.7s ease, background 0.5s ease, border-color 0.3s ease;
  overflow: hidden;
  border: 2px solid transparent;
}

/* Hover effect */
.amenity-card:hover,
.amenity-card.active {
  border-color: #D70000;
  transform: scale(1.1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Specific background images for each card */
.amenities-grid .amenity-card:nth-child(1):hover {
  background-image: url('../images/about-img.jpg');
}

.amenities-grid .amenity-card:nth-child(2):hover {
  background-image: url('../images/access-img.jpg');
}

.amenities-grid .amenity-card:nth-child(3):hover {
  background-image: url('../images/stregnth-img.jpg');
}

.amenities-grid .amenity-card:nth-child(4):hover {
  background-image: url('../images/changing-room.jpg');
}

.amenities-grid .amenity-card:nth-child(5):hover {
  background-image: url('../images/infrared.jpg');
}

.amenity-card.show {
  opacity: 1;
  transform: translateY(0);
}

.amenity-card.show:hover {
  transform: translateY(-5px);
}

.amenity-card.wide {
  grid-column: span 2;
}

.a-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.amenity-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
}

.amenity-card p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.5;
}

.amenities-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}

.amenities-image-box.show {
  opacity: 1;
  transform: translateX(0);
}

.amenities-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.premium-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #D70000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 10px;
  border-radius: 12px;
  width: 50%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ---------- Hover Background Effect ---------- */
.amenities-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease, background-image 0.4s ease;
}

.amenities-content.hover-bg-active::before {
  opacity: 1;
}

.amenities-grid,
.amenities-image-box {
  position: relative;
  z-index: 2;
  /* Above background overlay */
}


/* ============================================================
   FOOTER CONTACT SECTION
   ============================================================ */

.footer-contact {
  background: #111821;
  padding: 60px 5%;
  color: #fff;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-header {
  text-align: center;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.footer-header.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-header .pill-label {
  background: #2a0b0d;
  color: #D70000;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 10px;
  text-transform: uppercase;
}

.footer-header h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin: 20px 0 10px;
}

.footer-header p {
  color: #888;
  font-size: 16px;
}

.footer-overview {
  max-width: 920px;
  margin: 0 auto 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.footer-overview p {
  margin: 0 0 14px;
}

.footer-offer-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-times {
  display: grid;
  gap: 16px;
}

.footer-times-block strong {
  display: block;
  margin-bottom: 8px;
  color: #D70000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-times-block ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-price {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.footer-price-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.footer-cta {
  margin-top: 60px;
  text-align: center;
}

.footer-cta-title {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 900;
}

.footer-closing {
  margin: 16px 0 0;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.6s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}



.footer-col.show {
  opacity: 1;
  transform: translateY(0);
}

.footer-col>.contact-card {
  flex-grow: 1;
  align-items: flex-start;
}

.footer-col>*:last-child {
  margin-top: auto;
}

.footer-col h3 {
  text-align: start;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}

.contact-card {
  background: #00000061;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.map-box {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.2);
  transition: 0.3s ease;
}

.map-box iframe:hover {
  filter: grayscale(0%);
}

.contact-card.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.contact-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  transition: 0.4s ease;
}

.contact-card:hover::after {
  width: 100%;
}

.contact-card.small {
  padding: 24px 20px;
}

.contact-card.small:hover {
  transform: translateX(8px);
  background: rgb(0 0 0 / 54%);
}

.red-accent {
  border-left: 4px solid #D70000;
}

.card-content strong {
  display: block;
  font-size: 16px;
  text-align: left;
}

.card-content span {
  font-size: 14px;
  color: #fff;
}

.card-content small {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.btn-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(90deg, #5c59f2 0%, #d82d7e 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  margin: 18px 0 15px;
  transition: all 0.3s ease;
}

.btn-instagram:hover {
  transform: translateY(-3px);
  color: #e8192c;
}

.btn-instagram:hover .inst-icon {
  transform: scale(1.2) rotate(10deg);
}

.footer-cta-btns {
  display: flex;
  gap: 10px;
}

.btn-red-solid {

  background: #D70000;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 800;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}

.btn-red-solid:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(232, 25, 44, 0.4);
}

.btn-outline {
  flex: 1;
  background: transparent;
  border: 1px solid #D70000;
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-outline:hover {
  background: #e8192c;
  color: #fff;
  transform: translateY(-3px);
}

.hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #2a333d;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hour-row:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.hour-row:hover .red-text {
  color: #ff3b3b;
}

.red-text {
  color: #D70000;
  font-weight: 700;
  margin-right: 5px;
}

.badge-open {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 6px;
  text-transform: lowercase;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 24px;
}

.booking-steps .step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: default;
}

.booking-steps .step:hover {
  background: rgba(215, 0, 0, 0.08);
  border-color: rgba(215, 0, 0, 0.4);
  transform: translateX(5px);
}

.booking-steps .step-num {
  width: 26px;
  height: 26px;
  background: transparent;
  border: 1.5px solid #D70000;
  color: #D70000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.booking-steps .step:hover .step-num {
  background: #D70000;
  color: #fff;
  box-shadow: 0 0 10px rgba(215, 0, 0, 0.4);
}

.booking-steps .step-title {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.free-session-box {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding: 15px;
  border: 1px solid #4a1114;
  border-radius: 12px;
  background: rgba(215, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s ease;
}

.free-session-box.show {
  opacity: 1;
  transform: translateY(0);
}

.free-session-box:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(232, 25, 44, 0.3);
}

.free-session-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
}

.free-session-box:hover::before {
  left: 100%;
}

.free-session-box h4 {
  color: #D70000;
  font-size: 16px;
  margin-bottom: 5px;
}

.free-session-box p {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}

.card-content {
  font-size: 14px;
}

.card-list {
  padding: 16px;
}


.instagram-dropdown {
  margin-top: 10px;
}

.inst-toggle {
  width: 100%;
  background: transparent;
  display: flex;
  border: 1px solid #e63946;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 13px;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 3px;
}

.inst-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 10px;
}

.pricing-list li {
  cursor: pointer;
  transition: color 0.2s ease;
}

.pricing-list li:hover {
  color: #D70000;
}

.instagram-dropdown.active .inst-content {
  max-height: 220px;
  padding-top: 10px;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.pricing-list li:last-child {
  border-bottom: none;
}


.left-content {
  display: flex;
  align-items: center;
  gap: 6px;
}

.arrow {
  font-size: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.tagline-section {
  position: relative;
  width: 100%;
  min-height: 150px;
  background: #111821;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

canvas#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tagline-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
}

.tagline-text {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -1px;
  user-select: none;
}

.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) skewX(-6deg);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin: 0 6px;
}

.word.visible {
  opacity: 1;
  transform: translateY(0) skewX(0deg);
}

.word.accent {
  color: #D70000;
  position: relative;
  display: inline-block;
}

.word.accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0%;
  height: 3px;
  background: #D70000;
  transition: width 0.5s ease 0.3s;
  border-radius: 2px;
}

.word.accent.visible::after {
  width: 100%;
}

.word.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    text-shadow: 0 0 0px rgba(215, 0, 0, 0);
  }

  50% {
    text-shadow: 0 0 20px rgba(215, 0, 0, 0.6), 0 0 40px rgba(215, 0, 0, 0.3);
  }
}

.cursor-bar {
  display: inline-block;
  width: 4px;
  height: 0.85em;
  background: #D70000;
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 0.9s step-end infinite;
  opacity: 0;
  transition: opacity 0.3s;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.glitch-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(215, 0, 0, 0.03) 2px,
      rgba(215, 0, 0, 0.03) 4px);
  animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 100px;
  }
}

@media(max-width:768px) {
  .tagline-overlay {

    padding: 40px 25px;
  }
}


/* ============================================================
   FINAL FOOTER
   ============================================================ */

.final-footer {
  background-color: #D70000;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
}

.bottom-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  text-align: start;
}

.brand-title {
  font-size: clamp(40px, 8vw, 45px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
  color: #fff;
  margin: 0;
}

.brand-title span {
  color: #1a1a1a;
}

.bottom-tagline {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 10px;
  opacity: 0.9;
}

.bottom-socials {
  display: flex;
  justify-content: start;
  gap: 25px;
  margin: 40px 0;
}

.social-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icon img {
  width: 30px;
  height: 30px;
}

.social-icon:hover {
  transform: scale(1.15);
}

.bottom-info {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bottom-info p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.8;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet — 1100px */
@media (max-width: 1100px) {
  .why-flex-wrapper {
    flex-direction: column;
  }

  .why-nav {
    width: 100%;
    flex: none;
  }

  .curve-line {
    display: none;
  }

  .amenities-content {
    grid-template-columns: 1fr;
  }

  .amenities-image-box {
    height: 500px;
  }
}

/* Tablet — 960px */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .banner-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding-top: 120px;
  }

  .banner-right {
    width: 100%;
  }

  .feature-card {
    max-width: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-col {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}

/* Tablet — 900px */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-content {
    order: 1;
  }

  .about-img {
    order: 2;
  }

  .about-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .about-btn {
    width: 100%;
    text-align: center;
  }
}

/* Mobile — 768px */
@media (max-width: 768px) {

  .banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to right,
        rgba(0, 0, 0, 0.93) 0%,
        rgba(0, 0, 0, 0.78) 30%,
        rgba(0, 0, 0, 0.30) 58%,
        rgba(0, 0, 0, 0.05) 100%),
      radial-gradient(ellipse 50% 70% at 12% 65%, rgba(160, 8, 8, 0.30) 0%, transparent 65%);
  }

  .banner-left,
  .banner-right {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  p.tagline-red.line.show {
    text-align: center;
  }

  .hero-title,
  .tagline-red,
  .tagline-white {
    text-align: center;
  }

  .hero-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .stat {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    /* width: 100%; */
  }

  .stat-label {
    text-align: center;
    font-size: 12px;
  }

  .banner-right {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .feature-card {
    width: 100%;
    max-width: 320px;
  }

  .video-banner iframe {
    height: 250px;
  }

  .video-overlay h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .why-card-inner {
    flex-direction: column;
  }

  .section-title {
    font-size: 32px;
  }

  .amenity-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .amenity-card .a-icon {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .amenity-card p {
    max-width: 90%;
  }

  .btn-instagram {
    margin: 20px 0 15px;
  }

  .footer-contact {
    padding: 30px 5%;
  }

  .final-footer {
    padding: 40px 15px;
  }

  .bottom-tagline {
    font-size: 15px;
  }

  .bottom-socials {
    gap: 15px;
    margin: 30px 0;
  }

  .social-icon img {
    width: 36px;
    height: 36px;
  }

  .bottom-info p {
    font-size: 12px;
  }
}

/* Mobile — 650px */
@media (max-width: 650px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card.wide {
    grid-column: span 1;
  }

  .amenities-header h2 {
    font-size: 36px;
  }

  .premium-badge {
    font-size: 18px;
    padding: 15px 20px;
    width: 70%;
  }

  .hour-row {

    padding: 7px;
  }
}

/* Mobile — 560px */
@media (max-width: 560px) {
  .hero-title {
    font-size: 62px;
    line-height: 0.9;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-red,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    /* flex-direction: column;
    gap: 14px; */
  }

  .stat+.stat {
    border-left: none;
    padding-left: 0;
  }

  .stat {
    padding-right: 16px;
  }

  .line.show {

    text-align: start;
  }

  .footer-col h3 {

    margin-bottom: 30px;
  }

}

@media (max-width: 768px) {
  .video-banner {
    aspect-ratio: 16 / 8;
  }
}


/*=============================================
======popup==================================*/

/* ============================================================
   MEMBERSHIP MODAL
   ============================================================ */

.membership-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.membership-overlay.active {
  opacity: 1;
  visibility: visible;
}

.membership-modal {
  background: #0c1a26;
  border: 1px solid rgba(215, 0, 0, 0.25);
  border-radius: 24px;
  padding: 50px 44px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(40px) scale(0.97);
  transition: transform 0.35s ease;
  scrollbar-width: thin;
  scrollbar-color: #D70000 #111f2e;
}

.membership-overlay.active .membership-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: #D70000;
  border-color: #D70000;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 44px;
  color: #fff;
  display: block;
}

.modal-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin: 14px 0 10px;
}

.modal-header p {
  color: #8a9bae;
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
}

/* ── Membership Cards ── */

.membership-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mem-card {
  background: #111f2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 0, 0, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.mem-card.highlight {
  border-color: rgba(215, 0, 0, 0.55);
  background: linear-gradient(160deg, #1a0a0a 0%, #111f2e 60%);
  position: relative;
}

.mem-card.highlight::after {
  content: "★ Top Choice";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #D70000;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}

.mem-icon {
  font-size: 32px;
  line-height: 1;
}

.mem-tag {
  display: inline-block;
  background: rgba(215, 0, 0, 0.12);
  color: #D70000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 6px;
  width: fit-content;
}

.mem-tag.red {
  background: #D70000;
  color: #fff;
}

.mem-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 4px 0 0;
  line-height: 1.3;
}

.mem-sub {
  font-size: 13px;
  color: #8a9bae;
  line-height: 1.5;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mem-list li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.mem-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #D70000;
  font-weight: 900;
  font-size: 12px;
}

.mem-cta {
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  width: 100%;
  background: #D70000;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 13px 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.mem-cta:hover {
  background: #ff1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(215, 0, 0, 0.4);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .membership-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-modal {
    padding: 40px 28px;
  }
}

@media (max-width: 560px) {
  .membership-cards {
    grid-template-columns: 1fr;
  }

  .membership-modal {
    padding: 36px 20px;
    border-radius: 16px;
  }

  .modal-header h2 {
    font-size: 26px;
  }
}

.spoty-text {
  font-size: 15px;
}

/* ── Live Animation Indicator ── */
.live-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #D70000;
  border-radius: 50%;
  box-shadow: 0 0 8px #D70000;
  animation: pulseLive 1.5s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes pulseLive {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(215, 0, 0, 0.7);
    opacity: 1;
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(215, 0, 0, 0);
    opacity: 0.8;
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(215, 0, 0, 0);
    opacity: 1;
  }
}