/* ===============================
   PANCHAKARMA PAGE – CORE STYLES
   =============================== */

:root {
  --green: #7da343;
  --green-dark: #5f7f30;
  --cream: #fbf8f1;
  --light-cream: #fdfaf4;
  --orange: #d97a3a;
  --text-dark: #2f2f2f;
  --text-muted: #6f6f6f;
  --radius: 18px;
}

/* ===============================
   HERO SECTION
   =============================== */

.panchakarma-hero {
  height: 72vh;
  background: linear-gradient(
      rgba(70, 90, 60, 0.75),
      rgba(120, 150, 80, 0.75)
    ),
    url("../images/panchakarma/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.panchakarma-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 69, 60, 0.85),
    rgba(124, 154, 74, 0.65)
  );
}

.panchakarma-hero .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.panchakarma-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 14px;
  color: #ffffff;
}

.panchakarma-hero p {
  max-width: 640px;
  font-size: 1.15rem;
  opacity: 0.95;
  color: rgba(255,255,255,0.95);
}


/* ===============================
   INTRO SECTION
   =============================== */

.panchakarma-intro {
  background: #fff;
  padding: 90px 20px;
  text-align: center;
}

.panchakarma-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.panchakarma-intro p {
  max-width: 900px;
  margin: 0 auto 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===============================
   TREATMENT SECTIONS
   =============================== */

.pk-section {
  background: var(--cream);
  padding: 90px 8%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.pk-section.reverse {
  flex-direction: row-reverse;
  background: var(--light-cream);
}

.pk-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pk-content {
  flex: 1;
}

.pk-content h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.pk-subtitle {
  display: inline-block;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 18px;
}

.pk-content h4 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.pk-content ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.pk-content ul li {
  margin-bottom: 6px;
  color: var(--text-muted);
}

.pk-content p {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===============================
   SECTION FOOTER
   =============================== */

.pk-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.duration {
  background: var(--orange);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.pk-link {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: none;
}

.pk-link:hover {
  text-decoration: underline;
}

/* ===============================
   CTA SECTION
   =============================== */

.pk-cta {
  background: linear-gradient(
    135deg,
    #d97a3a,
    #c96c2f
  );
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.pk-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f1f1f1;
}

.pk-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  color: #f1f1f1;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #c96c2f;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-button:hover {
  background: #f4f4f4;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 992px) {
  .pk-section,
  .pk-section.reverse {
    flex-direction: column;
    text-align: center;
  }

  .pk-footer {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .panchakarma-hero {
    height: 65vh;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .pk-section {
    padding: 70px 20px;
  }

  .pk-content h3 {
    font-size: 1.7rem;
  }
}
