/* 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;
  }

  .nav.menu-open::after {
    opacity: 1;
    visibility: visible;
  }
}