.header {
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  border-bottom: 1px solid #00ff99;
  box-shadow:
  inset 0 0 6px rgba(0,120,101,0.3),
    0 0 12px rgba(0,255,153,0.25);
  backdrop-filter: blur(6px);
}

html, body {
  overflow-x: hidden;
}

body {
  background: #0d0d0d;
  color: #e5e7eb;
  font-family: Montserrat, sans-serif;
  margin: 0;
  padding: 0;
}
.footer, .hero-card {
  font-family: Domine, sans-serif;
  letter-spacing: 1px;
}
.hero-text h1 {
  font-family: "Manrope", sans-serif;
}

.pricing-intro {
  text-align: center;
  margin: 60px auto 60px auto;
}

.pricing-intro h2 {
  font-size: 2.2rem;
  font-family: Electrolize, sans-serif;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.pricing-intro p {
  font-family: Electrolize, sans-serif;
  font-size: 1.1rem;
  color: #00ff99;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* SERVICE BACKGROUND */

.services-bg {
  position: relative;
  padding: 20px 0;
  overflow: hidden;

  background:
    radial-gradient(
      ellipse at top left,
      rgba(0,120,101,0.18),
      rgba(0,0,0,0.95) 70%
    ),
    linear-gradient(
      to bottom,
      #040807,
      #010302
    );
}

.services-bg::before {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;

  background:
    linear-gradient(
      135deg,
      transparent 30%,
      rgba(0,255,153,0.22) 45%,
      transparent 60%
    ),
    linear-gradient(
      135deg,
      transparent 55%,
      rgba(0,200,140,0.18) 68%,
      transparent 80%
    );

  filter: blur(18px);
  opacity: 0.55;
}


/* FREE PLAN */
.service.free-plan {
  box-shadow: none;
  background: none;
  padding: 0;
}


.hero-card-image {
  position: relative;
  background-image: url("/static/images/_DSC6299.jpg");
  background-size: cover;
  background-position: center;
  height: min(95vh, 1100px);
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #00ff99;
  box-shadow:
    0 0 0 1px rgba(0,120,101,0.25),
    0 0 22px rgba(0,120,101,0.35),
    0 0 55px rgba(0,120,101,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 45%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

.hero-card-text {
  position: relative;
  z-index: 1;
  max-width: 420px;
  padding: 1.2rem 2rem 2rem 2rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  text-align: center;
  color: #fff;
  box-shadow:
    0 0 12px rgba(0,120,101,0.35),
    0 0 28px rgba(0,120,101,0.2);
}

.hero-card-text h2 {
  font-family: "Electrolize", sans-serif;
  font-size: 2rem;
  color: #00ff99;
  margin-bottom: 1rem;
}

.hero-card-text p {
  font-family: Montserrat, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: white;
}


.cta-button {
  font-family: Montserrat, sans-serif;
  display: inline-block;
  padding: 12px 24px;
  background: #00ff99;
  color: #0d0d0d;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #00ffaa;
}


/* SERVICES */
.services-container {
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
}

.services-container h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #00ff99;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px 30px;
  margin-bottom: 40px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-5px);
}

.service p {
  line-height: 1.7;
  margin-bottom: 10px;
}

/* PRICING SECTION */
.pricing-section {
  padding: 80px 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 35px 30px;
  border: 1px solid rgba(0,255,153,0.25);
  box-shadow:
    0 0 12px rgba(0,255,153,0.15),
    0 0 30px rgba(0,255,153,0.08);
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 18px rgba(0,255,153,0.35),
    0 0 45px rgba(0,255,153,0.15);
}

.pricing-card h3 {
  font-family: "Electrolize", sans-serif;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.pricing-sub {
  color: #aaa;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.pricing-sub-rec  {
  color: #0d0d0d;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.pricing-price {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: #00ff99;
  margin-bottom: 25px;
}

/* Only for personal training card*/
.price-highlight {
  color: #00ff99;
  font-weight: 600;
  font-family: "Chakra Petch", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #00ff99;
}

.pricing-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #00ff99;
  color: #0d0d0d;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.pricing-btn:hover {
  background: #00ffaa;
}

.pricing-card.recommended {
  background: linear-gradient(135deg, #00ff99, #00ccff);
  color: #0d0d0d;
  border: 2px solid #00ffcc;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 255, 153, 0.5);
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.recommended h3,
.pricing-card.recommended .pricing-price {
  color: #000;
}

.pricing-card.recommended ul li::before {
  color: #000;
}

.pricing-card.recommended .pricing-btn.dark {
  background: #000;
  color: #fff;
}

.recommended-badge {
  position: absolute;
  margin-top: -50px;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
}


.footer {
  padding: 2rem;
  font-family: Montserrat, sans-serif;
  text-align: center;
  background: black;
  color: #aaa;
  font-size: 1rem;
}
.footer a, p { color: darkgray; }

.section-divider-single-green {
  position: relative;
  height: 2px;
}

    .section-divider-single-green {
    background: #00ff99;
  box-shadow: 0 0 6px #00ff99;
  }

.section-divider-single-green::after {
  content: "";
  position: absolute;
  top: 50%;               /* center vertically in divider space */
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #00ccff, transparent);
  transform: translateY(-50%);
  box-shadow: 0 0 6px #00ccff;
}

@keyframes softFlickerGreen {
  0%, 100% {
    opacity: 0.8;
    box-shadow: 0 0 6px rgba(14,165,233,0.5);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(14,165,233,0.9);
  }
}

.section-divider-single-green::after {
  animation: softFlickerGreen 3.5s ease-in-out infinite;
}

.services-bg::before,
.hero-services::after,
.hero-card-image::after {
  will-change: transform, opacity;
}

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

  .hero-card-image {
    height: 70vh;
    border-radius: 12px;
  }

  .hero-card-text {
    max-width: 90%;
    padding: 1rem;
  }

  .hero-card-text h2 {
    font-size: 1.6rem;
  }

  .hero-card-text p {
    font-size: 1rem;
  }

  .pricing-card {
    padding: 25px 20px;
  }

  .pricing-card h3 {
    font-size: 1.3rem;
  }

  .pricing-price {
    font-size: 1.8rem;
  }

  .pricing-card ul {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .recommended-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }

  .hero-card-text {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }

  .hero-card-text h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .hero-card-text p {
    font-size: 0.95rem;
    margin-bottom: 0.9rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* PRICING INTRO */
  .pricing-intro {
    margin: 5px auto 40px auto;
  }

  .pricing-intro h2 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }

  .pricing-intro p {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  /* PRICING SECTION PADDING */
  .pricing-section {
    padding: 50px 16px;
  }

  /* FOOTER */
  .footer {
    padding: 1.2rem;
    font-size: 0.60rem;
  }


  .pricing-section {
    padding: 10px 4px;
  }



}

img {
  max-width: 100%;
  height: auto;
}

