.hero-therapy {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 4rem 1rem;
  background: radial-gradient(circle at 20% 20%, #fffbe0 0%, #fff8dc 50%, #fff2b5 100%);
  overflow: hidden;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #b8860b;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 223, 100, 0.5);
}

.hero-sub {
  color: #6d4c41;
  margin-top: 0.6rem;
  max-width: 700px;
}

.lotus-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  row-gap: 5rem;
}

/* 🌸 Lotus base */
.lotus {
  position: relative;
  width: 160px;
  height: 160px;
  transform: scale(0);
  opacity: 0;
  transition: all 0.8s ease;
}

.lotus.show {
  transform: scale(1);
  opacity: 1;
}

/* 🌺 Petals */
.lotus span {
  position: absolute;
  width: 86px;
  height: 124px;
  background: radial-gradient(circle at top, #ffc0cb 10%, #ff69b4 70%);
  border-radius: 60% 60% 0 0;
  top: 28px;
  left: 38px;
  transform-origin: bottom center;
  transform: rotate(0deg) scaleY(0.2);
  transition: transform 1s ease;
  box-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

.lotus span:nth-child(1) { transform: rotate(-60deg) scaleY(0.2); }
.lotus span:nth-child(2) { transform: rotate(-30deg) scaleY(0.2); }
.lotus span:nth-child(3) { transform: rotate(0deg) scaleY(0.2); }
.lotus span:nth-child(4) { transform: rotate(30deg) scaleY(0.2); }
.lotus span:nth-child(5) { transform: rotate(60deg) scaleY(0.2); }

.lotus.bloom span {
  transform: rotate(var(--r)) scaleY(1);
}

/* 🌿 Lotus Leaf */
.lotus::before {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 10px;
  width: 150px;
  height: 55px;
  background: radial-gradient(circle at center, #3cb371 30%, #2e8b57 90%);
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 0;
}

/* 🌞 Yellow Glow Center */
.lotus .center {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: radial-gradient(circle at center, #fff9a8 10%, #ffd700 70%);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
  animation: pulse 2.5s infinite ease-in-out;
  z-index: 2;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 223, 0, 1);
    transform: translateX(-50%) scale(1.1);
  }
}

/* ✨ Text on Petals */
.lotus::after {
  content: attr(data-problem);
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6b0023;
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(255,255,255,0.9);
  z-index: 3;
  pointer-events: none;
}

.lotus.bloom::after {
  content: attr(data-solution);
  color: #4a148c;
  text-shadow: 0 0 10px rgba(255,255,255,1);
}

.hero-cta {
  margin-top: 3.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.hero-cta.show {
  opacity: 1;
  transform: translateY(0);
}
