/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

body {
  /* background: #000; */
  color: #fff;
}

/* HEADER */
.header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  border-radius: 60px; */
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo img {
  width: 32px;
}

.nav {
  display: flex;
  gap: 22px;
  background: rgba(255,255,255,0.18);
  padding: 8px 16px;
  border-radius: 40px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.nav a.active {
  background: #d6ff2a;
  color: #000;
  font-weight: 600;
}

.join-btn {
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("assets/Hero.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.1));
}

.hero-content {
  position: relative;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.btn {
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: #d6ff2a;
  color: #000;
}

.btn.secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* STATS CARD */
.stats-card {
  position: absolute;
  right: 6%;
  bottom: 18%;
  background: #fff;
  color: #000;
  padding: 22px;
  border-radius: 24px;
  width: 280px;
}

.avatars {
  display: flex;
  margin-bottom: 12px;
}

.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

.stats-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.stats-card h3 span {
  font-size: 16px;
  font-weight: 500;
}

.stats-card p {
  font-size: 14px;
  opacity: 0.8;
}

.stats-card .arrow {
  position: absolute;
  right: -18px;
  top: 40%;
  background: #d6ff2a;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .stats-card {
    position: static;
    margin-top: 40px;
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}


/* EXPERIENCE STRIP */
.experience-strip {
  width: 100%;
  background: #d6ff2a; /* neon green */
  overflow: hidden;
  padding: 22px 0;
}

.marquee {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-left 18s linear infinite;
}

.marquee-track span {
  font-size: 48px;
  font-weight: 800;
  color: #0b1c1a;
  letter-spacing: 2px;
}

.marquee-track .ball {
  font-size: 36px;
  opacity: 0.25;
}

/* Animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marquee-track span {
    font-size: 32px;
  }
}


/* ABOUT SECTION */
.about {
  background: #fff;
  color: #0b1c1a;
  padding: 100px 8%;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.about-content {
  position: relative;
}

.about-thumb {
  width: 180px;
  margin-bottom: 24px;
}

.about-thumb img {
  width: 100%;
  border-radius: 18px;
}

/* TEXT */
.about-content h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 24px;
}

.small-text {
  font-size: 15px;
  margin-top: 14px;
}

/* FEATURES */
.features {
  display: flex;
  gap: 22px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.features span {
  background: #eaff7a;
  color: #0b1c1a;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* BUTTONS */
.about-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.btn {
  padding: 14px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn.lime {
  background: #d6ff2a;
  color: #000;
}

.btn.dark {
  background: #0b1c1a;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about {
    padding: 70px 6%;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-thumb {
    width: 140px;
  }

  .about-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* COACHING SECTION */
.coaching {
  background: #f4f6f5;
  padding: 100px 8%;
}

.coaching-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.coaching-header h2 {
  font-size: 42px;
  margin-bottom: 14px;
  color: #0b1c1a;
}

.coaching-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.coach-card {
  background: #fff;
  border-radius: 26px;
  padding: 22px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.coach-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 22px;
}

.coach-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0b1c1a;
}

.coach-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .coaching-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .coaching {
    padding: 70px 6%;
  }

  .coaching-header h2 {
    font-size: 32px;
  }

  .coaching-grid {
    grid-template-columns: 1fr;
  }
}


/* FACILITIES SECTION */
.facilities {
  background: #f4f6f5;
  padding: 110px 6%;
}

.facilities-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT MEDIA */
.facility-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.facility-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

/* RIGHT CONTENT */
.facility-content {
  background: linear-gradient(180deg, #061826, #04121d);
  color: #fff;
  padding: 50px 46px;
  border-radius: 30px;
}

.facility-content h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.facility-content .sub {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
}

/* LIST */
.facility-list {
  list-style: none;
  margin-bottom: 26px;
}

.facility-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.facility-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #d6ff2a;
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: bold;
}

/* NOTE */
.facility-content .note {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom: 34px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .facilities-container {
    grid-template-columns: 1fr;
  }

  .facility-content {
    padding: 40px 32px;
  }
}

@media (max-width: 600px) {
  .facilities {
    padding: 80px 6%;
  }

  .facility-content h2 {
    font-size: 30px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }
}


/* MEMBERSHIP SECTION */
.membership {
  background: #fff;
  padding: 110px 8%;
  color: #0b1c1a;
}

/* TOP LAYOUT */
.membership-top {
  display: grid;
  grid-template-columns: 1.2fr auto 0.8fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.membership-left h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.membership-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 26px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 180px;
  background: #ddd;
}

/* PRICE */
.membership-price {
  text-align: center;
}

.price-circle {
  width: 170px;
  height: 170px;
  background: radial-gradient(circle at top, #0a2235, #04121d);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.price {
  font-size: 46px;
  font-weight: 700;
  color: #fff;
}

.per {
  background: #d6ff2a;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* RIGHT */
.membership-right h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.membership-right p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* FEATURES */
.membership-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

.membership-features h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.membership-features p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .membership-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .divider {
    display: none;
  }

  .membership-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .membership {
    padding: 80px 6%;
  }

  .membership-left h2 {
    font-size: 32px;
  }

  .membership-features {
    grid-template-columns: 1fr;
  }
}



/* TESTIMONIALS SECTION */
.testimonials {
  background: #fff;
  padding: 110px 8%;
  color: #0b1c1a;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 70px;
}

/* LAYOUT */
.testimonials-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* FEATURED CARD */
.testimonial-featured {
  background: #f4f6f5;
  border-radius: 30px;
  padding: 24px;
}

.featured-img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 22px;
}

.featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* AVATARS */
.avatars {
  display: flex;
}

.avatars img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-left: -10px;
}

/* RATING */
.rating {
  text-align: right;
}

.rating .score {
  font-size: 42px;
  font-weight: 700;
}

.rating .stars {
  color: #000;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating .count {
  font-size: 14px;
  color: #555;
}

/* QUOTES */
.testimonial-quotes {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.quote-card {
  background: #f4f6f5;
  border-radius: 26px;
  padding: 28px 34px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 50px;
  color: #ccc;
}

.quote-card p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-left: 28px;
}

.quote-card strong {
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .featured-bottom {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .rating {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .testimonials {
    padding: 80px 6%;
  }

  .section-title {
    font-size: 32px;
  }
}


/* DIFFERENCE SECTION */
.difference-section {
  padding: 110px 6%;
  background: #fff;
}

.difference-wrapper {
  background: #f4f6f5;
  border-radius: 40px;
  padding: 90px 8%;
}

/* HEADER */
.difference-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.difference-header h2 {
  font-size: 42px;
  color: #0b1c1a;
}

.difference-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  column-gap: 40px;
  position: relative;
}

/* CARD */
.diff-card img {
  width: 42px;
  margin-bottom: 18px;
}

.diff-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0b1c1a;
}

.diff-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
}

/* DIVIDERS */
.divider-v {
  width: 1px;
  background: #d3d6d4;
}

.divider-h {
  grid-column: 1 / -1;
  height: 1px;
  background: #d3d6d4;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .difference-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
  }

  .divider-v,
  .divider-h {
    display: none;
  }
}

@media (max-width: 600px) {
  .difference-wrapper {
    padding: 60px 6%;
  }

  .difference-header h2 {
    font-size: 32px;
  }
}



/* FINAL CTA SECTION */
.final-cta {
  position: relative;
  height: 520px;
  margin: 0 4% 120px;
  border-radius: 30px;
  background: url("assets/Hero.png") center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 60px;
}

/* DARK OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 10, 20, 0.75) 35%,
    rgba(0, 10, 20, 0.35) 70%
  );
}

/* GLASS CARD */
.cta-card {
  position: relative;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 26px;
  padding: 48px;
  color: #fff;
  z-index: 1;
}

.cta-card h2 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-card p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .final-cta {
    height: auto;
    padding: 80px 6%;
    justify-content: center;
  }

  .cta-card {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .cta-card {
    padding: 36px 28px;
  }

  .cta-card h2 {
    font-size: 30px;
  }
}


/* STATS SECTION */
.stats-section {
  background: #fff;
  padding: 80px 6%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 54px;
  font-weight: 700;
  color: #d3d3d3;
  margin-bottom: 8px;
}

.stat p {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #0b1c1a;
  text-transform: uppercase;
}

.divider {
  width: 1px;
  height: 60px;
  background: #ddd;
}

/* Responsive */
@media (max-width: 800px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .divider {
    display: none;
  }
}



/* FOOTER */
.footer {
  background: linear-gradient(180deg, #04121d, #020b13);
  color: #fff;
  padding: 90px 6% 30px;
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* NEWSLETTER */
.footer-newsletter p {
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 6px;
  max-width: 420px;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 18px;
  color: #fff;
}

.newsletter-form button {
  background: #d6ff2a;
  border: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

/* LINKS */
.footer-links h4,
.footer-social h4 {
  margin-bottom: 18px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: 0.85;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons span {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 10px;
  }
}
