:root {
  --green: #7da343;
  --orange: #d97a3a;
  --cream: #fbf8f1;
  --text-dark: #2f2f2f;
  --text-muted: #6f6f6f;
  --radius: 18px;
}

/* ================= HERO ================= */

.therapy-hero {
  height: 70vh;
  background:
    linear-gradient(rgba(60,80,60,0.75), rgba(120,150,90,0.75)),
    url("../images/therapies/hero.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapy-hero-overlay {
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.therapy-hero-overlay h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 10px;
  color: #fff;
}

.therapy-hero-overlay p {
  font-size: 1.05rem;
  color: #fff;
}

/* ================= CONTENT ================= */

.therapy-wrapper {
  background: var(--cream);
  padding: 90px 8%;
}

/* ================= CARD ================= */

.therapy-card {
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  gap: 50px;
  padding: 40px;
  margin-bottom: 60px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  align-items: center;
}

.therapy-card.reverse {
  flex-direction: row-reverse;
}

.therapy-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  object-fit: cover;
}

.therapy-content h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.subtitle {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.therapy-content h4 {
  margin-top: 15px;
  color: var(--green);
}

.therapy-content p {
  color: var(--text-muted);
  line-height: 1.7;
}

.duration {
  margin-top: 15px;
  font-weight: 600;
  color: var(--orange);
}

/* ================= BUTTON ================= */

.book-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--green);
  color: #fff;
  padding: 10px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.book-btn:hover {
  background: #6b8f3a;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .therapy-card,
  .therapy-card.reverse {
    flex-direction: column;
    text-align: center;
  }
}
