* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #070707;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo span {
  color: #ff3b1f;
}

.nav-menu {
  display: flex;
  gap: 34px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #d7d7d7;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: #ff3b1f;
}

.nav-btn {
  padding: 12px 24px;
  border-radius: 40px;
  background: #ff3b1f;
  color: white;
  font-weight: 600;
  box-shadow: 0 12px 35px rgba(255, 59, 31, 0.35);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
}

/* HERO */
.hero {
  min-height: auto;
  padding: 135px 7% 115px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  background:
    radial-gradient(circle at top right, rgba(255, 59, 31, 0.14), transparent 40%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.96), rgba(15, 15, 15, 0.88)),
    url("https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  animation: fadeUp 0.9s ease forwards;
}

.hero-tag {
  color: #ff3b1f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 0.98;
  max-width: 760px;
  letter-spacing: -2.2px;
}

.hero-text {
  margin-top: 24px;
  max-width: 620px;
  color: #d6d6d6;
  line-height: 1.8;
  font-size: 17px;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: slideUp 1s ease forwards;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 15px;
  transition: 0.35s ease;
}

.primary-btn {
  background: #ff3b1f;
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 59, 31, 0.35);
}

.secondary-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-4px);
}

.secondary-btn:hover {
  border-color: rgba(255, 59, 31, 0.75);
  color: #ff3b1f;
}

.hero-stats {
  margin-top: 44px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  animation: slideUp 1.15s ease forwards;
}

.hero-stats div {
  padding: 20px 26px;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  transition: 0.4s ease;
}

.hero-stats div:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 59, 31, 0.45);
  box-shadow: 0 24px 70px rgba(255, 59, 31, 0.18);
}

.hero-stats h3 {
  font-size: 28px;
}

.hero-stats p {
  margin-top: 4px;
  color: #cfcfcf;
  font-size: 14px;
}

.hero-card {
  justify-self: end;
  max-width: 390px;
  padding: 36px;
  background: rgba(25, 25, 25, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  animation: fadeUp 1.05s ease forwards;
}

.hero-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.hero-card p {
  color: #dddddd;
  line-height: 1.7;
  margin-bottom: 26px;
}

.hero-card a {
  display: inline-block;
  padding: 14px 22px;
  background: #25d366;
  color: #071007;
  font-weight: 800;
  border-radius: 35px;
}

/* COMMON SECTION */
.section {
  padding: 90px 7%;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-heading p,
.small-title {
  color: #ff3b1f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-heading h2,
.why-section h2,
.contact-section h2 {
  font-size: clamp(34px, 4vw, 56px);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2 span {
  display: block;
}

.cards-grid,
.pricing-grid,
.trainer-grid {
  display: grid;
  gap: 24px;
}

/* PROGRAMS */
.programs-section {
  padding-top: 90px;
  padding-bottom: 90px;
  background:
    radial-gradient(circle at left center, rgba(255, 70, 30, 0.12), transparent 60%),
    #050505;
}

.cards-grid {
  grid-template-columns: repeat(4, 1fr);
}

.program-card,
.price-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 36px 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.program-card:hover,
.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 80, 40, 0.3);
  box-shadow: 0 30px 70px rgba(255, 80, 40, 0.18);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 28px;
  background: rgba(255, 59, 31, 0.12);
  border: 1px solid rgba(255, 59, 31, 0.22);
  border-radius: 18px;
}

.program-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.program-card p,
.price-card p,
.why-section p,
.contact-section p {
  color: #cfcfcf;
  line-height: 1.75;
}

/* WHY CHOOSE US */
.why-section {
  margin: 20px 7%;
  padding: 90px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background:
    radial-gradient(circle at left center, rgba(255, 70, 30, 0.12), transparent 60%),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.why-section p {
  margin-top: 22px;
}

.why-list {
  display: grid;
  gap: 18px;
}

.why-list div {
  padding: 22px 24px;
  background: rgba(22, 22, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.4s ease;
}

.why-list div:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 40, 0.35);
  box-shadow: 0 20px 45px rgba(255, 90, 40, 0.15);
}

.why-list span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 59, 31, 0.12);
  border: 1px solid rgba(255, 59, 31, 0.25);
  font-size: 20px;
}

/* PRICING */
.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
}

.price-card:not(.featured) {
  padding: 30px 30px;
}

.price-card.featured {
  background:
    radial-gradient(circle at top, rgba(255, 90, 40, 0.35), transparent 55%),
    linear-gradient(180deg, #ff3b1f, #111111);
  transform: scale(1.04);
  box-shadow:
    0 0 60px rgba(255, 70, 30, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.42);
}

.price-card.featured:hover {
  transform: translateY(-10px) scale(1.04);
}

.price-card label {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  color: #ff3b1f;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 13px;
}

.price-card h3 {
  font-size: 24px;
}

.price-card h2 {
  font-size: 42px;
  margin: 18px 0 8px;
}

.price-card ul {
  margin: 28px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #e5e5e5;
}

.price-card li::before {
  content: "🔥";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 15px;
}

.price-card.featured li::before {
  content: "✓";
  color: #ffffff;
  font-weight: 900;
}

.price-card a {
  display: inline-block;
  padding: 14px 26px;
  background: #ffffff;
  color: #111111;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.price-card a:hover {
  background: #ff5a28;
  color: #ffffff;
  transform: scale(1.03);
}

/* TRAINERS */
.dark-section {
  background:
    radial-gradient(circle at center top, rgba(255, 70, 30, 0.12), transparent 60%),
    #050505;
}

.trainer-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trainer-card {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.trainer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 80, 40, 0.3);
  box-shadow: 0 25px 60px rgba(255, 80, 40, 0.12);
}

.trainer-img {
  position: relative;
  overflow: hidden;
  height: 320px;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 65%),
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
  margin-bottom: 24px;
}

.trainer-2 {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 65%),
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1609899464726-209befaac5bd?auto=format&fit=crop&w=900&q=80");
}

.trainer-3 {
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 65%),
    linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
    url("https://images.unsplash.com/photo-1567013127542-490d757e51fc?auto=format&fit=crop&w=900&q=80");
}

.trainer-card h3 {
  font-size: 30px;
  line-height: 1.2;
}

.trainer-card p {
  color: #ff3b1f;
  margin-top: 8px;
  margin-bottom: 20px;
}

.trainer-card::after {
  content: "Book Session";
  display: inline-flex;
  margin-top: 6px;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(255, 59, 31, 0.12);
  border: 1px solid rgba(255, 59, 31, 0.28);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.35s ease;
}

.trainer-card:hover::after {
  background: #ff5a28;
  border-color: #ff5a28;
  transform: scale(1.03);
}

/* CONTACT */
.contact-section {
  margin: 70px 7%;
  padding: 90px 20px;
  background:
    radial-gradient(circle, rgba(255, 59, 31, 0.18), transparent 65%),
    rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.contact-section p {
  margin: 18px auto 28px;
  max-width: 620px;
  text-align: center;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.whatsapp-btn,
.email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 200px;
    padding: 15px 26px;
  font-size: 15px;

  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.whatsapp-btn::before {
  content: "💬";
  font-size: 18px;
}

.whatsapp-btn {
  background: #25d366;
  color: #041007;
}

.email-btn {
  background: #ff3b1f;
  color: white;
}
.email-btn::before {
  content: "✉️";
  font-size: 18px;
}
.whatsapp-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25);
}
.email-btn:hover {
  background: #ff5a28;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 80, 40, 0.22);
}

.whatsapp-btn:hover {
  transform: translateY(-4px);
}

footer {
  position: relative;
  padding: 34px 7%;
  text-align: center;
  color: #aaa;
  background: #050505;
  border-top: none;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 80, 40, 0.4),
    transparent
  );
}
footer p {
  font-size: 14px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 14px;
  color: #cfcfcf;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #ff5a28;
}

/* TABLET */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .trainer-grid,
  .why-section {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 5%;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .whatsapp-btn,
  .email-btn {
    width: 100%;
  }

  footer {
    padding: 30px 5%;
  }
  .footer-links {
    gap: 16px;
  }

  footer::before {
    left: 5%;
    right: 5%;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 115px 5% 85px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.03;
    letter-spacing: -1.3px;
  }

  .hero-buttons {
    gap: 14px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-card {
    padding: 28px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 5%;
  }

  .cards-grid,
  .pricing-grid,
  .trainer-grid {
    grid-template-columns: 1fr;
  }

  .why-section,
  .contact-section {
    margin: 45px 5%;
    padding: 70px 22px;
  }


  .trainer-card {
    padding: 26px;
  }

  .trainer-card h3 {
    font-size: 26px;
  }

  .trainer-img {
    height: 260px;
  }
  
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}