/* update.css - Add this file, link it AFTER styles.css in every page */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Re-use root variables if not inherited */
:root {
  --secondary-color: #af0000ff;
  --text-light: #d1d5db;
  --white: #ffffff;
  --primary-color-light: #1f2125;
}

/* Active nav link */
.nav__links .link a.active,
.nav__links .link a:hover {
  color: var(--secondary-color);
}
.nav__links .link a.active::after,
.link a:hover::after {
  width: 50%;
}

/* Program & Service Cards - Larger */
.program__grid,
.service__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.program__card,
.service__card {
  background: var(--primary-color-light);
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  border: 2px solid transparent;
}

.program__card:hover,
.service__card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px rgba(175, 0, 0, 0.2);
}

.program__card img,
.service__card img {
  height: 250px;
  object-fit: cover;
}

.program__card__content,
.service__card__content {
  padding: 2rem;
}

.program__card h3,
.service__card h3 {
  font-size: 1.8rem;
  margin: 1rem 0;
  color: var(--white);
}

.program__card p,
.service__card p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: center;
}

.about__image img {
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.about__content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.about__content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.trainer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trainer__card {
  text-align: center;
  padding: 2rem;
  background: var(--primary-color-light);
  border-radius: 15px;
}

.trainer__card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--secondary-color);
  margin-bottom: 1rem;
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10rem;
  margin-top: 3rem;
}

.contact__form {
  background: var(--primary-color-light);
  padding: 3rem;
  border-radius: 15px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: #111317;
  border: 1px solid #444;
  border-radius: 8px;
  color: white;
  font-family: "Poppins", sans-serif;
}

.contact__form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact__info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.contact__info p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact__info i {
  color: var(--secondary-color);
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Mobile Adjustments */
@media (max-width: 900px) {
  .about__grid,
  .contact__container {
    grid-template-columns: 1fr;
  }
  .about__content h2 {
    font-size: 2.5rem;
  }
}

/* Stroke Text Effect - Same as your homepage */
.stroke-text {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.stroke-text span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
@media (max-width: 768px) {
  .stroke-text { font-size: 3rem; }
}

/* Feature List - Clean & Modern */
.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-light);
}
.feature i {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .about__features {
    grid-template-columns: 1fr;
  }
}
.review__slider {
  position: relative;
  overflow: hidden;
}

.review__content {
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.review__content.active {
  opacity: 1;
  position: relative;
}

.review__nav {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
}

.review__nav span {
  width: 50px;
  height: 50px;
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.review__nav span:hover {
  background: var(--secondary-color);
  color: white;
}

.quote-icon {
  font-size: 8rem;
  color: var(--secondary-color);
  opacity: 0.1;
  position: absolute;
  z-index: -1;
}

.quote-icon:first-child { top: -2rem; left: -2rem; }
.quote-icon.bottom { bottom: -4rem; right: -2rem; transform: rotate(180deg); }

/* Fix black stars → make them your brand red/gold */
.review__rating i {
  color: var(--secondary-color) !important;   /* #af0000 - your red */
  font-size: 1.6rem;
  margin-right: 4px;
}

/* Optional: make full stars slightly glow on hover */
.review__content:hover .review__rating i {
  color: #ff3333;
  filter: drop-shadow(0 0 8px rgba(175,0,0,0.6));
}
/* Mobile Menu – Hidden by default on small screens */
.nav__links {
  transition: all 0.4s ease;
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 350px;
    background-color: var(--primary-color-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 999;
    transition: right 0.4s ease;
  }

  .nav__links.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  }

  .nav__menu__btn {
    display: block !important;
    font-size: 2rem;
    cursor: pointer;
    z-index: 1000;
  }

  /* Optional dark overlay when menu open */
  .nav__links.active::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: -1;
  }
}/* Discount Badge - Top Right Corner */
.price__badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--secondary-color);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(175, 0, 0, 0.4);
}

.popular-badge {
  background: #ff3333;
  animation: pulse 2s infinite;
}

.best-value {
  background: linear-gradient(45deg, #af0000, #ff3333);
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* Crossed-out Old Price */
.price-wrapper {
  position: relative;
  margin: 1rem 0;
}

.old-price {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 1.2rem;
  color: #666;
  text-decoration: line-through;
  font-weight: 500;
}

/* Make popular card stand out */
.price__card.popular {
  transform: scale(1.05);
  border: 3px solid var(--secondary-color);
  box-shadow: 0 20px 40px rgba(175, 0, 0, 0.2);
  z-index: 5;
}

/* Pulse animation for "Most Popular" */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 51, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 51, 51, 0); }
}

@media (max-width: 768px) {
  .price__card.popular { transform: scale(1); }
  .old-price { font-size: 1rem; top: -8px; }
}
.trainer__section {
  padding: 5rem 0;
  text-align: center;
}

.trainer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.trainer__card {
  background: var(--primary-color-light);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.trainer__card:hover {
  transform: translateY(-15px);
  border-color: var(--secondary-color);
  box-shadow: 0 20px 40px rgba(175, 0, 0, 0.3);
}

.trainer__img {
  position: relative;
  overflow: hidden;
}

.trainer__img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: 0.5s;
}

.trainer__card:hover img {
  transform: scale(1.1);
}

.trainer__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(175,0,0,0.8));
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2rem;
}

.trainer__card:hover .trainer__overlay {
  opacity: 1;
}

.trainer__socials a {
  width: 45px;
  height: 45px;
  background: white;
  color: var(--secondary-color);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin: 0 8px;
  transition: 0.3s;
}

.trainer__socials a:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-5px);
}

.trainer__info {
  padding: 1.5rem;
  text-align: center;
}

.trainer__info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.trainer__info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.specialty {
  display: block;
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-top: 0.8rem;
  font-weight: 600;
}
.about__carousel__section {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.carousel {
  position: relative;
  max-width: 1100px;
  margin: 3rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.carousel__slides {
  position: relative;
  height: 500px;
}

.carousel__slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel__slide.active {
  opacity: 1;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 4rem 2rem 2rem;
  color: white;
}

.carousel__caption h3 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--secondary-color);
  text-shadow: 0 0 20px rgba(175,0,0,0.8);
}

.carousel__caption p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Arrows */
.carousel__prev, .carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(175,0,0,0.7);
  color: white;
  border: none;
  width: 60px; height: 60px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.carousel__prev:hover, .carousel__next:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel__prev { left: 20px; }
.carousel__next { right: 20px; }

/* Dots */
.carousel__dots {
  text-align: center;
  padding: 1.5rem 0;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 8px;
  background-color: #555;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: 0.4s;
}

.dot.active, .dot:hover {
  background-color: var(--secondary-color);
  transform: scale(1.3);
}

/* Mobile */
@media (max-width: 768px) {
  .carousel__slides { height: 400px; }
  .carousel__caption h3 { font-size: 1.8rem; }
  .carousel__prev, .carousel__next { width: 50px; height: 50px; font-size: 1.5rem; }
}
.map__container {
  margin-top: 4rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(175, 0, 0, 0.15);
  height: 500px; /* Slightly taller for better immersion */
  border: 3px solid var(--secondary-color);
  position: relative;
  transition: box-shadow 0.3s ease;
}

.map__container:hover {
  box-shadow: 0 25px 50px rgba(175, 0, 0, 0.25), 0 0 0 1px rgba(175, 0, 0, 0.5);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .map__container {
    height: 400px;
    margin-top: 2rem;
  }

/* === MOBILE MENU – FULLY FIXED === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  margin-bottom:20px;
  width: 100%;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 17, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(175, 0, 0, 0.2);
}
.header__container{
    padding-top:100px;
}
.menu__container{
    padding-top:100px;
}

.nav__logo img {
  height: 50px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav__links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: #af0000;
}

.nav__links .btn {
  background: #af0000;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
}
}
/* MOBILE MENU BUTTON – ALWAYS WHITE */
.nav__menu__btn {
  display: none;
  font-size: 1.8rem;
  color: white !important;
  cursor: pointer;
  z-index: 1001;
}

/* MOBILE MENU – SLIDE IN FROM RIGHT */
@media (max-width: 768px) {
  .nav__menu__btn {
    display: block !important;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: linear-gradient(135deg, #0f1115 0%, #1a1d21 100%);
    flex-direction: column;
    justify-content: start;
    padding-top: 120px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.6);
    z-index: 1000;
  }

  .nav__links.active {
    right: 0;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
    margin: 1rem 0;
  }

  .nav__links a {
    font-size: 1.4rem;
    display: block;
    padding: 1rem;
  }

  .login-link {
    margin-top: 2rem;
  }

  /* Overlay when menu is open */
  .nav::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 999;
  }
  .header__image {
  display: none;
}

  .nav.menu-open::after {
    opacity: 1;
    visibility: visible;
  }
}

  /* ===== HERO SECTION MODERNIZATION ===== */
  .header__container {
    gap: 3rem;
    padding-top: 1.5rem;
  }

  .header__content {
    max-width: 620px;
  }

  .header__content h4 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
  }

  .header__content h1 {
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 1.08;
    margin-bottom: 1.2rem;
  }

  .header__content p {
    max-width: 58ch;
    line-height: 1.75;
    color: var(--text-light);
  }

  .header__actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
  }

  .header__actions .btn {
    border-radius: 10px;
    padding: 0.9rem 1.5rem;
    font-weight: 600;
  }

  .btn--ghost {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--white);
  }

  .btn--ghost:hover {
    background: var(--secondary-color);
  }

  .header__trust {
    margin-top: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.95rem;
  }

  .header__trust i {
    color: var(--secondary-color);
    font-size: 1.1rem;
  }

  .header__stats {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
  }

  .header__stat {
    background: var(--primary-color-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 0.75rem;
  }

  .header__stat h5 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
  }

  .header__stat span {
    color: var(--text-light);
    font-size: 0.78rem;
  }

  .header__image img {
    max-width: 420px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  }

  @media (max-width: 1024px) {
    .header__container {
      grid-template-columns: 1fr;
      gap: 2.2rem;
    }

    .header__content {
      max-width: 100%;
    }

    .header__stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    .header__container {
      padding-top: 1.5rem;
    }

    .header__actions {
      gap: 0.7rem;
    }

    .header__actions .btn {
      width: 100%;
    }

    .header__trust {
      font-size: 0.88rem;
      line-height: 1.5;
      align-items: flex-start;
    }

    .header__stats {
      grid-template-columns: 1fr;
    }
  }

/* ===== STRUCTURE UPGRADE SECTIONS ===== */
.yb__heading {
  margin-bottom: 2rem;
}

.yb__eyebrow {
  color: var(--secondary-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.ybspace__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.ybspace__card {
  background: var(--primary-color-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ybspace__card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
}

.ybspace__card img {
  height: 210px;
  object-fit: cover;
}

.ybspace__content {
  padding: 1rem;
}

.ybspace__content h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.ybspace__content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.ybfocus__container {
  margin-top: 1rem;
}

.ybfocus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ybfocus__card {
  background: var(--primary-color-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.4rem;
}

.ybfocus__card span {
  color: var(--secondary-color);
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.ybfocus__card h4 {
  color: var(--white);
  margin-bottom: 0.55rem;
}

.ybfocus__card p {
  color: var(--text-light);
  line-height: 1.7;
}

.ybfocus__stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ybfocus__stats div {
  background: var(--primary-color-light);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ybfocus__stats h3 {
  color: var(--white);
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
}

.ybfocus__stats p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.ybtestimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ybtestimonial__card {
  background: var(--primary-color-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.4rem;
}

.ybstars {
  color: var(--secondary-color);
  margin-bottom: 0.7rem;
}

.ybtestimonial__card p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 0.8rem;
}

.ybtestimonial__card h5 {
  color: var(--white);
  font-size: 0.95rem;
}

.ybcta__box {
  background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.ybcta__box h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.7rem;
}

.ybcta__box p {
  color: var(--text-light);
  line-height: 1.7;
}

.ybcta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ybcta__actions .btn {
  text-align: center;
}

@media (max-width: 1024px) {
  .ybspace__grid,
  .ybfocus__grid,
  .ybtestimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ybfocus__stats,
  .ybcta__box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ybspace__grid,
  .ybfocus__grid,
  .ybtestimonials__grid,
  .ybfocus__stats {
    grid-template-columns: 1fr;
  }

  .ybspace__card img {
    height: 240px;
  }

  .ybcta__box {
    padding: 1.4rem;
  }
}

/* ===== SHARED INNER PAGE SYSTEM ===== */
.page__hero {
  padding-top: 1.5rem;
}

.page__hero .section__header {
  text-align: left;
  margin-bottom: 0.75rem;
}

.page__hero .section__subheader {
  margin: 0;
  max-width: 680px;
  text-align: left;
}

.page__kpis {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.page__kpis div {
  background: var(--primary-color-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem;
}

.page__kpis h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.page__kpis p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.ybband__section {
  padding-top: 0;
}

.ybband {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ybband__item {
  background: var(--primary-color-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.2rem;
}

.ybband__item h4 {
  color: var(--white);
  margin-bottom: 0.45rem;
}

.ybband__item p {
  color: var(--text-light);
  line-height: 1.7;
}

.ybpage__cta {
  padding-top: 0;
}

.ybpage__cta .ybcta__box {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .page__kpis,
  .ybband {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .page__hero {
    padding-top: 1.5rem;
  }

  .page__kpis,
  .ybband {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT MAP SYSTEM ===== */
.map__container {
  position: relative;
}

.map__click-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
  background: transparent;
}

.map__pin-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -120%);
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.map__pin-label i {
  font-size: 1.1rem;
}

.map__container::after {
  content: "Click map for directions";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  border-radius: 18px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
}

.map-toggle-wrapper {
  text-align: center;
  margin: 1.6rem 0;
}

@media (max-width: 768px) {
  .map__pin-label {
    font-size: 0.83rem;
    padding: 0.62rem 0.95rem;
    white-space: nowrap;
  }
}

/* ===== PREMIUM PRICING REDESIGN ===== */
.price__grid.price__grid--modern {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.2rem;
}

.price__container .price__card {
  position: relative;
  background: linear-gradient(165deg, rgba(31, 33, 37, 0.95), rgba(17, 19, 23, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.3rem;
}

.price__container .price__card:hover {
  border-color: rgba(175, 0, 0, 0.7);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.price__container .price__card.popular {
  transform: translateY(-8px);
  border: 2px solid var(--secondary-color);
}

.price__meta h4 {
  margin-bottom: 0.25rem;
  color: var(--white);
}

.price__meta span {
  color: var(--text-light);
  font-size: 0.82rem;
}

.price__container .price-wrapper {
  margin: 1rem 0 0.9rem;
}

.price__container .price-wrapper h3 {
  border-bottom: none;
  margin: 0;
  padding: 0;
  font-size: 2rem;
  line-height: 1.15;
}

.price__container .price-wrapper h3 small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
}

.price__features {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.price__features li {
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.55;
  font-size: 0.93rem;
}

.price__features i {
  color: var(--secondary-color);
  margin-top: 0.08rem;
}

.price__container .price__btn {
  width: 100%;
  text-align: center;
  color: var(--white) !important;
  border: none;
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

@media (max-width: 768px) {
  .price__container .price__card.popular {
    transform: none;
  }
}

/* ===== TRAINER SECTION: ONE NOW, MORE LATER ===== */
.trainer__grid.trainer__grid--future {
  grid-template-columns: repeat(auto-fit, minmax(280px, 330px));
  justify-content: center;
  gap: 1.4rem;
}

.trainer__section .trainer__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trainer__card--active {
  padding: 0;
  overflow: hidden;
}

.trainer__card--active .trainer__img img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  border: none;
  border-radius: 0;
}

.trainer__card--coming {
  padding: 2rem 1.4rem;
  border-style: dashed;
  display: grid;
  place-items: center;
  min-height: 460px;
  text-align: center;
}

.trainer__coming__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(175, 0, 0, 0.5);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.trainer__coming__icon i {
  color: var(--secondary-color);
  font-size: 2rem;
}