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

html{
    scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #28292b;
}

/* HERO WRAPPER */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* NAVBAR */
.navbar {
  position: sticky;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.logo a{
  text-decoration: none;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #a7a6a6;
  font-size: 14px;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  color: rgb(212, 212, 212);
}

.nav-btn {
  text-decoration: none;
  background: #ffffff;
  color: #111;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 80px 40px;
  color: #fff;
}

.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 15px;
  color: #e5e7eb;
  margin-bottom: 28px;
}

/* HERO BUTTONS */
.hero-actions {
  display: flex;
  gap: 14px;
}

.btn-primary {
  background: #f97316;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.btn-primary:hover {
  background: #ea580c;
}

.btn-secondary {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-wrapper {
    height: auto;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* TRANSFORMATIONS SECTION */
.transformations {
  padding: 90px 40px;
  background: #f6f7f8;
}

.transformations-header {
  text-align: center;
  margin-bottom: 48px;
}

.transformations-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.transformations-header p {
  color: #64748b;
  font-size: 14px;
}

/* GRID */
.transformations-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* CARD */
.transformation-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-6px);
}

/* BEFORE AFTER IMAGES */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.ba-box {
  position: relative;
}

.ba-box img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}

.ba-box span {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 11px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}

/* TEXT */
.transformation-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.transformation-card p {
  font-size: 13px;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 600px) {
  .ba-box img {
    height: 150px;
  }
}

/* WHY THIS GYM SECTION */
.why-gym {
  padding: 90px 40px;
  background: #ffffff;
}

.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.why-header p {
  font-size: 14px;
  color: #64748b;
}

/* GRID */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* CARD */
.why-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* ICON */
.why-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

/* TEXT */
.why-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.why-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* PROGRAMS SECTION */
.programs {
  padding: 90px 40px;
  background: #f6f7f8;
}

.programs-header {
  text-align: center;
  margin-bottom: 50px;
}

.programs-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.programs-header p {
  font-size: 14px;
  color: #64748b;
}

/* GRID */
.programs-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

/* CARD */
.program-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}

/* ICON */
.program-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

/* TEXT */
.program-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.program-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* TRAINERS SECTION */
.trainers {
  padding: 90px 40px;
  background: #ffffff;
}

.trainers-header {
  text-align: center;
  margin-bottom: 50px;
}

.trainers-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.trainers-header p {
  font-size: 14px;
  color: #64748b;
}

/* GRID */
.trainers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

/* CARD */
.trainer-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* IMAGE */
.trainer-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

/* TEXT */
.trainer-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.trainer-card span {
  font-size: 13px;
  color: #f97316;
  display: block;
  margin-bottom: 6px;
}

.trainer-card p {
  font-size: 13px;
  color: #64748b;
}

/* BADGE */
.trainer-card.popular .badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
}

/* PRICING SECTION */
.pricing {
  padding: 90px 40px;
  background: #f6f7f8;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.pricing-header p {
  font-size: 14px;
  color: #64748b;
}

/* GRID */
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD */
.pricing-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/* POPULAR */
.pricing-card.popular {
  border: 2px solid #f97316;
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: #fff;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 12px;
}

/* TEXT */
.pricing-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
}

.price {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  color: #64748b;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  margin-bottom: 26px;
}

.pricing-card ul li {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
}

/* BUTTON */
.pricing-btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
}

.pricing-btn.primary {
  background: #f97316;
  color: #ffffff;
  border: none;
}

/* FINAL CTA SECTION */
.final-cta {
  padding: 100px 40px;
  background: linear-gradient(
    135deg,
    rgba(249,115,22,0.9),
    rgba(234,88,12,0.9)
  );
  text-align: center;
  color: #ffffff;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 12px;
}

.final-cta p {
  font-size: 15px;
  margin-bottom: 28px;
  opacity: 0.95;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #f97316;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 70px 40px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* BRAND */
.footer-brand h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
}

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

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer {
    padding: 60px 24px 30px;
  }
}

/* ================= MOBILE MENU ================= */

.menu-icon {
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .menu-icon {
    display: block;
    z-index: 9999;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 9999;
    display: flex;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 16px;
    color: #ffffff;
  }

  .nav-btn {
    display: none;
  }

  .mobile-join {
    margin-top: 20px;
    background: #f97316;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    color: #fff;
    font-weight: 500;
  }
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(39, 39, 39, 0.226);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}
