/*--------------------------------------------------------------
# Homeopathy HMS — Solutions Page
--------------------------------------------------------------*/

/* ── Animated gradient blobs ── */
.hmo-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: hmo-blob-drift 12s ease-in-out infinite alternate;
}
.hmo-hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.22), transparent 70%);
  top: -140px; right: -80px;
  animation-duration: 14s;
}
.hmo-hero-blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(0,184,169,0.20), transparent 70%);
  bottom: -100px; left: -60px;
  animation-duration: 10s;
  animation-delay: -4s;
}
.hmo-hero-blob-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(167,139,250,0.18), transparent 70%);
  top: 40%; left: 38%;
  animation-duration: 16s;
  animation-delay: -8s;
}
@keyframes hmo-blob-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(28px, -18px) scale(1.06); }
  100% { transform: translate(-18px, 28px) scale(0.96); }
}

/* ── Hero left column ── */
.sol-hero .sol-hero-icon { margin: 0 0 20px; }

/* ── Hero stat badges ── */
.hmo-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.hmo-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50px;
  backdrop-filter: blur(8px);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hmo-stat-badge i { font-size: 0.85rem; color: #A78BFA; }
.hmo-stat-badge:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(167,139,250,0.40);
}

/* ── Right hero photo ── */
.hmo-visual-wrap {
  position: relative;
  padding-bottom: 28px;
}

.hmo-hero-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-height: 380px;
  z-index: 1;
  box-shadow: 0 32px 80px rgba(0,0,0,0.40), inset 0 1px 0 rgba(255,255,255,0.10);
}

.hmo-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hmo-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,30,56,0.18) 0%, rgba(10,30,56,0.55) 100%);
  border-radius: inherit;
}

.hmo-hero-photo-badges {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
}

.hmo-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}
.hmo-photo-badge i { color: #A78BFA; font-size: 0.85rem; }

/* ── Floating chip ── */
.hmo-visual-chip {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #7C3AED, #00B8A9);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(124,58,237,0.40);
  z-index: 2;
}
.hmo-visual-chip i { font-size: 0.85rem; }

/* ── Hero bottom padding for chip ── */
.sol-hero { padding-bottom: 100px; }

/* ── sol-cta-btn-ghost (shared with dental) ── */
.sol-cta-btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.30);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.sol-cta-btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  box-shadow: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .sol-hero { padding-bottom: 80px; }
  .hmo-visual-wrap { margin-top: 48px; }
  .hmo-visual-chip { bottom: -14px; font-size: 0.72rem; padding: 7px 14px; }
  .hmo-hero-photo { aspect-ratio: 4 / 3; }
  .hmo-hero-blob-1 { width: 300px; height: 300px; }
  .hmo-hero-blob-2 { width: 220px; height: 220px; }
}
@media (max-width: 767px) {
  .hmo-hero-stats { gap: 8px; }
  .hmo-stat-badge { font-size: 0.74rem; padding: 6px 11px; }
  .hmo-hero-blob-3 { display: none; }
  .hmo-hero-photo-badges { bottom: 12px; left: 12px; right: 12px; }
}

/*--------------------------------------------------------------
# Advanced Features — purple accent overrides
--------------------------------------------------------------*/
.solutions-page .dnt-adv-icon {
  color: #7C3AED;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(0,184,169,0.08));
}
.solutions-page .dnt-adv-card:hover .dnt-adv-icon {
  background: linear-gradient(135deg, #7C3AED, #00B8A9);
  color: #fff;
}
.solutions-page .dnt-adv-card::before {
  background: linear-gradient(90deg, #7C3AED, #00B8A9);
}

/* ── Section layout (shared) ── */
.tp-sol-section { padding: 92px 0; position: relative; }
.tp-sol-section.section { background: linear-gradient(180deg, var(--background-color) 0%, #f8fbff 100%); }
.tp-sol-section.section + .tp-sol-section.section { border-top: 1px solid var(--border-color); }

.tp-sol-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(124,58,237,0.08);
  color: #7C3AED;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tp-sol-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 18px 0 14px;
  color: var(--heading-color);
}

.tp-sol-copy {
  color: var(--muted-color);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 780px;
}

/*--------------------------------------------------------------
# Why Choose — purple accent overrides
--------------------------------------------------------------*/
.solutions-page .dnt-why-icon {
  color: #7C3AED;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(0,184,169,0.08));
}
.solutions-page .dnt-why-item:hover .dnt-why-icon {
  background: linear-gradient(135deg, #7C3AED, #00B8A9);
  color: #fff;
}

/*--------------------------------------------------------------
# Hero — Feature Orbit Visual
--------------------------------------------------------------*/
.hmo-orbit-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  overflow: visible;
}

/* SVG dashed rings */
.hmo-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Centre node */
.hmo-orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #00B8A9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 0 0 16px rgba(124,58,237,0.10), 0 0 0 32px rgba(124,58,237,0.05);
  z-index: 2;
  animation: hmo-center-pulse 3s ease-in-out infinite;
}
@keyframes hmo-center-pulse {
  0%, 100% { box-shadow: 0 0 0 16px rgba(124,58,237,0.10), 0 0 0 32px rgba(124,58,237,0.05); }
  50%       { box-shadow: 0 0 0 20px rgba(124,58,237,0.14), 0 0 0 40px rgba(124,58,237,0.06); }
}
.hmo-orbit-center-icon {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.hmo-orbit-center span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}

/* Feature pills */
.hmo-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  animation: hmo-pill-float 4s ease-in-out infinite alternate;
}
.hmo-pill:hover {
  background: rgba(124,58,237,0.20);
  border-color: rgba(167,139,250,0.55);
  transform: scale(1.05) !important;
}
.hmo-pill i { font-size: 0.85rem; color: #A78BFA; }

/* Individual pill positions (clock-face around centre 210,210) */
.hmo-pill-1 { top: 18px;  left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hmo-pill-2 { top: 90px;  right: 0px; animation-delay: -0.6s; }
.hmo-pill-3 { bottom: 90px; right: 0px; animation-delay: -1.2s; }
.hmo-pill-4 { bottom: 18px; left: 50%; transform: translateX(-50%); animation-delay: -1.8s; }
.hmo-pill-5 { bottom: 90px; left: 0px; animation-delay: -2.4s; }
.hmo-pill-6 { top: 90px;  left: 0px; animation-delay: -3s; }

@keyframes hmo-pill-float {
  0%   { translate: 0 0; }
  100% { translate: 0 -8px; }
}

/* Responsive */
@media (max-width: 991px) {
  .hmo-orbit-wrap { width: 340px; height: 340px; }
  .hmo-orbit-center { width: 90px; height: 90px; }
  .hmo-orbit-center-icon { font-size: 1.5rem; }
  .hmo-pill { font-size: 0.72rem; padding: 7px 12px; }
  .hmo-pill-2, .hmo-pill-3 { right: 0px; }
  .hmo-pill-5, .hmo-pill-6 { left: 0px; }
}
@media (max-width: 575px) {
  .hmo-orbit-wrap { width: 300px; height: 300px; }
  .hmo-pill { font-size: 0.68rem; padding: 6px 10px; gap: 5px; }
}
