﻿:root {
  --pink: #ed2a8a;
  --pink-dark: #d81678;
  --pink-soft: #ffe7f3;
  --teal: #1da9a4;
  --teal-soft: #e5f8f7;
  --ink: #171833;
  --muted: #5d607b;
  --line: rgba(237, 42, 138, .16);
  --shadow: 0 22px 55px rgba(31, 26, 61, .11);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(237, 42, 138, .08), transparent 26rem),
    radial-gradient(circle at 90% 18%, rgba(29, 169, 164, .10), transparent 24rem),
    #fff;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(237, 42, 138, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 169, 164, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .38), transparent 62%);
}

a {
  color: inherit;
  text-decoration: none;
}

.btn-cradle {
  --bs-btn-bg: var(--pink);
  --bs-btn-border-color: var(--pink);
  --bs-btn-hover-bg: var(--pink-dark);
  --bs-btn-hover-border-color: var(--pink-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(237, 42, 138, .24);
  font-weight: 800;
  padding: .82rem 1.25rem;
}

.btn-outline-cradle {
  --bs-btn-color: var(--pink);
  --bs-btn-border-color: var(--pink);
  --bs-btn-hover-bg: var(--pink);
  --bs-btn-hover-border-color: var(--pink);
  --bs-btn-hover-color: #fff;
  border-radius: 8px;
  font-weight: 800;
  padding: .82rem 1.25rem;
}

.text-pink {
  color: var(--pink);
}

.text-teal {
  color: var(--teal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .82);
  border-bottom: 1px solid rgba(237, 42, 138, .08);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 12px 35px rgba(31, 26, 61, .08);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 210px;
}

.brand-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: linear-gradient(135deg, #fff, var(--pink-soft));
  border: 1px solid rgba(237, 42, 138, .2);
  font-size: 1.9rem;
  box-shadow: 0 10px 28px rgba(237, 42, 138, .13);
}

.brand-title {
  display: block;
  color: var(--pink);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  color: var(--pink);
  font-size: .8rem;
  font-weight: 700;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo {
    width: 180px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-nav .nav-link {
  color: var(--pink);
  font-size: .96rem;
  font-weight: 600;
  padding-inline: .9rem;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--pink);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .1rem;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
}

.navbar .custom-dropdown-menu .dropdown-item span {
    display: block;
    margin-top: 2px;
    color: #6d6670;
    font-size: 11px;
    font-weight: 500;
}

.call-pill {
  border: 1px solid rgba(237, 42, 138, .16);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(31, 26, 61, .05);
  overflow: hidden;
  white-space: nowrap;
}

.call-pill a {
  color: var(--pink);
  font-weight: 800;
  padding: .85rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.call-pill .book-top {
  color: #fff;
  background: var(--pink);
}

.page-hero {
  position: relative;
  min-height: 385px;
  display: flex;
  align-items: center;
  padding: 5.6rem 0 4.6rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(237, 42, 138, .18), transparent 21rem),
    radial-gradient(circle at 22% 18%, rgba(29, 169, 164, .09), transparent 18rem),
    linear-gradient(106deg, #fff 0%, #fff8fc 48%, #ffeef7 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  right: 13%;
  bottom: -95px;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 35%, rgba(255, 255, 255, .78) 0 16%, transparent 17%),
    linear-gradient(145deg, rgba(237, 42, 138, .16), rgba(29, 169, 164, .08));
  box-shadow: inset 0 0 0 1px rgba(237, 42, 138, .14);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 7%;
  top: 16%;
  width: min(38vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(237, 42, 138, .28);
  animation: slowSpin 28s linear infinite;
}

.page-hero .container {
  z-index: 1;
}

.page-hero .container::before,
.page-hero .container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-hero .container::before {
  right: 20%;
  top: 22%;
  width: 16px;
  height: 16px;
  background: var(--pink);
  box-shadow:
    62px 48px 0 rgba(29, 169, 164, .65),
    138px -18px 0 rgba(237, 42, 138, .28),
    210px 78px 0 rgba(255, 255, 255, .8);
  animation: sparklePulse 4s ease-in-out infinite;
}

.page-hero .container::after {
  right: 4%;
  top: 50%;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(237, 42, 138, .18);
  background: rgba(255, 255, 255, .36);
  backdrop-filter: blur(8px);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.page-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.breadcrumb-soft {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(31, 26, 61, .06);
  font-size: .88rem;
  font-weight: 800;
}

.section-pad {
  padding: 4.6rem 0;
}

.section-eyebrow {
  color: var(--pink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .86rem;
  margin-bottom: .4rem;
}

.section-title {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  margin-bottom: 1.1rem;
}

.soft-card {
  height: 100%;
  position: relative;
  padding: 1.55rem;
  border: 1px solid rgba(31, 26, 61, .09);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .82));
  box-shadow: 0 8px 24px rgba(31, 26, 61, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.soft-card::before {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(237, 42, 138, .07);
  transition: transform .25s ease;
}

.soft-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  opacity: .78;
}

.soft-card:hover {
  transform: translateY(-7px);
  border-color: rgba(237, 42, 138, .28);
  box-shadow: var(--shadow);
}

.soft-card:hover::before {
  transform: scale(1.18);
}

.icon-round {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.75rem;
  box-shadow: 0 12px 28px rgba(237, 42, 138, .12);
}

.soft-card:nth-child(even) .icon-round,
.teal-icon {
  color: var(--teal);
  background: var(--teal-soft);
}

.soft-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.soft-card p,
.lead-soft {
  color: var(--muted);
  line-height: 1.7;
}

.image-panel {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(23, 24, 51, .18));
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.image-panel:hover img {
  transform: scale(1.045);
}

.stat-strip {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 22%, rgba(255, 255, 255, .55), transparent 8rem),
    linear-gradient(90deg, rgba(255, 232, 244, .92), rgba(229, 248, 247, .72));
  box-shadow: 0 14px 34px rgba(31, 26, 61, .06);
}

.stat-value {
  color: var(--pink);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.doctor-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 12px 28px rgba(31, 26, 61, .08);
}

.contact-box {
  display: grid;
  gap: 1rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: .9rem;
}

.contact-item i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(237, 42, 138, .1);
}

.branch-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid rgba(31, 26, 61, .09);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 42, 138, .08), transparent 8rem),
    rgba(255, 255, 255, .9);
  box-shadow: 0 10px 28px rgba(31, 26, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.branch-card:hover {
  transform: translateY(-7px);
  border-color: rgba(237, 42, 138, .25);
  box-shadow: var(--shadow);
}

.branch-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.branch-head h3 {
  margin-bottom: .28rem;
  font-size: 1.12rem;
  font-weight: 800;
}

.branch-badge {
  flex: 0 0 auto;
  padding: .36rem .62rem;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: .72rem;
  font-weight: 800;
}

.branch-card.featured .branch-badge {
  color: #fff;
  background: var(--pink);
}

.branch-details {
  display: grid;
  gap: .68rem;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.branch-details span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .55rem;
}

.branch-details i {
  color: var(--pink);
}

.branch-map {
  min-height: 116px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(237, 42, 138, .11), rgba(29, 169, 164, .13)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .5) 0 10px, rgba(255, 255, 255, .22) 10px 20px);
  border: 1px solid rgba(237, 42, 138, .12);
}

.branch-map i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 12px 26px rgba(237, 42, 138, .22);
}

.branch-actions {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.google-review-widget {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 61, .09);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(66, 133, 244, .12), transparent 12rem),
    radial-gradient(circle at 8% 92%, rgba(52, 168, 83, .1), transparent 12rem),
    rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.google-review-summary {
  height: 100%;
  padding: 1.5rem;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .72));
}

.google-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  color: var(--ink);
  font-weight: 800;
}

.google-logo .g-blue { color: #4285f4; }
.google-logo .g-red { color: #ea4335; }
.google-logo .g-yellow { color: #fbbc05; }
.google-logo .g-green { color: #34a853; }

.rating-number {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.review-stars {
  color: #fbbc05;
  letter-spacing: .08em;
  font-size: .95rem;
}

.review-count {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.review-card {
  height: 100%;
  padding: 1.1rem;
  border: 1px solid rgba(31, 26, 61, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 26px rgba(31, 26, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(31, 26, 61, .1);
}

.review-profile {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .8rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #4285f4, #34a853);
  font-weight: 800;
}

.review-profile strong {
  display: block;
  font-size: .95rem;
}

.review-profile span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.review-card p {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.service-hero-panel {
  position: relative;
  padding: 1.2rem;
  border: 1px solid rgba(237, 42, 138, .14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 18%, rgba(237, 42, 138, .14), transparent 9rem),
    rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.service-orbit {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .9) 0 18%, transparent 19%),
    conic-gradient(from 120deg, rgba(237, 42, 138, .18), rgba(29, 169, 164, .22), rgba(237, 42, 138, .12), rgba(237, 42, 138, .18));
}

.service-orbit::before,
.service-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(237, 42, 138, .35);
  animation: slowSpin 26s linear infinite;
}

.service-orbit::before {
  width: 76%;
  aspect-ratio: 1;
}

.service-orbit::after {
  width: 52%;
  aspect-ratio: 1;
  animation-direction: reverse;
}

.service-core {
  position: relative;
  z-index: 1;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff7ebd);
  box-shadow: 0 22px 48px rgba(237, 42, 138, .28);
}

.service-core strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.service-core span {
  font-size: .78rem;
  font-weight: 800;
}

.service-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .55rem;
  min-width: 145px;
  padding: .72rem .85rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 14px 32px rgba(31, 26, 61, .12);
  backdrop-filter: blur(14px);
  font-size: .85rem;
  font-weight: 800;
  animation: bubbleFloat 6s ease-in-out infinite;
}

.service-node i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-soft);
}

.service-node:nth-child(2) {
  left: 7%;
  top: 14%;
}

.service-node:nth-child(3) {
  right: 5%;
  top: 24%;
  animation-delay: -1.3s;
}

.service-node:nth-child(4) {
  left: 10%;
  bottom: 14%;
  animation-delay: -2.1s;
}

.service-node:nth-child(5) {
  right: 8%;
  bottom: 16%;
  animation-delay: -3.2s;
}

.service-metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1rem;
}

.service-metric {
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(31, 26, 61, .08);
}

.service-metric strong {
  display: block;
  color: var(--pink);
  font-size: 1.25rem;
  font-weight: 800;
}

.service-metric span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.care-timeline {
  position: relative;
}

.care-timeline::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(var(--pink), var(--teal));
}

.care-step {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.care-step:last-child {
  margin-bottom: 0;
}

.care-index {
  position: relative;
  z-index: 1;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff7ebd);
  border: 7px solid #fff;
  box-shadow: 0 10px 26px rgba(237, 42, 138, .18);
  font-weight: 800;
}

.care-step:nth-child(even) .care-index {
  background: linear-gradient(135deg, var(--teal), #6bdcd6);
}

.care-body {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 10px 26px rgba(31, 26, 61, .05);
}

.care-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.service-feature-card {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-feature-card .learn-link {
  align-self: flex-start;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--pink);
  font-weight: 800;
  margin-top: .7rem;
}

.tech-layer {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .22), transparent 12rem),
    linear-gradient(135deg, #171833, #291947 55%, #4c1c52);
  box-shadow: var(--shadow);
}

.tech-layer::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, .22);
}

.tech-layer p {
  color: rgba(255, 255, 255, .74);
}

.tech-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.tech-chip {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.tech-chip i {
  color: #fff;
  background: rgba(237, 42, 138, .55);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.tx-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(237, 42, 138, .16), transparent 10rem),
    linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 238, 247, .72));
  border: 1px solid rgba(237, 42, 138, .16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.tx-visual {
  position: relative;
  min-height: 365px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .88) 0 16%, transparent 17%),
    conic-gradient(from 35deg, rgba(237, 42, 138, .18), rgba(29, 169, 164, .2), rgba(255, 255, 255, .58), rgba(237, 42, 138, .18));
}

.tx-visual::before,
.tx-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.tx-visual::before {
  width: 78%;
  aspect-ratio: 1;
  border: 1px dashed rgba(237, 42, 138, .36);
  animation: slowSpin 24s linear infinite;
}

.tx-visual::after {
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(29, 169, 164, .28);
  animation: slowSpin 18s linear infinite reverse;
}

.tx-core {
  position: relative;
  z-index: 2;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff78b9);
  box-shadow: 0 24px 52px rgba(237, 42, 138, .28);
}

.tx-core strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
}

.tx-core span {
  font-size: .78rem;
  font-weight: 800;
}

.tx-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem .9rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow: 0 14px 32px rgba(31, 26, 61, .12);
  font-size: .84rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  animation: bubbleFloat 6s ease-in-out infinite;
}

.tx-chip i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-soft);
}

.tx-chip.one { left: 6%; top: 13%; }
.tx-chip.two { right: 6%; top: 20%; animation-delay: -1.3s; }
.tx-chip.three { left: 9%; bottom: 14%; animation-delay: -2.4s; }
.tx-chip.four { right: 8%; bottom: 15%; animation-delay: -3.2s; }

.tx-path-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.45rem;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 61, .08);
  background:
    radial-gradient(circle at 86% 12%, rgba(237, 42, 138, .08), transparent 9rem),
    rgba(255, 255, 255, .9);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.tx-path-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 42, 138, .25);
  box-shadow: var(--shadow);
}

.tx-path-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .24), transparent 9rem),
    linear-gradient(145deg, var(--pink), #4a1b55);
}

.tx-path-card.featured p,
.tx-path-card.featured .tx-meta {
  color: rgba(255, 255, 255, .78);
}

.tx-path-card.featured .icon-round {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.tx-meta {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin: 1rem 0;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.tx-meta span {
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(237, 42, 138, .08);
}

.tx-path-card.featured .tx-meta span {
  background: rgba(255, 255, 255, .14);
}

.tx-comparison {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, .9);
}

.tx-row {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  border-bottom: 1px solid rgba(31, 26, 61, .08);
}

.tx-row:last-child {
  border-bottom: 0;
}

.tx-row > div {
  padding: 1rem;
  border-right: 1px solid rgba(31, 26, 61, .08);
}

.tx-row > div:last-child {
  border-right: 0;
}

.tx-row.head {
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--teal));
  font-weight: 800;
}

.tx-row strong {
  color: var(--ink);
}

.tx-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tx-lab-item {
  padding: 1.1rem;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
}

.tx-lab-item i {
  display: block;
  margin-bottom: .75rem;
  font-size: 1.8rem;
  color: #fff;
}

.about-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.3rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 16%, rgba(237, 42, 138, .16), transparent 10rem),
    rgba(255, 255, 255, .76);
  border: 1px solid rgba(237, 42, 138, .15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-portrait {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(23, 24, 51, .28)),
    url("../images/photo-ot.jpeg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.about-portrait::before {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -82px;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(237, 42, 138, .72);
  filter: blur(2px);
}

.about-floating-card {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(31, 26, 61, .16);
  backdrop-filter: blur(16px);
}

.about-floating-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff7ebd);
  font-size: 1.4rem;
}

.about-floating-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.about-floating-card span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  margin-top: 1rem;
}

.about-stat {
  padding: .95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(31, 26, 61, .08);
}

.about-stat strong {
  display: block;
  color: var(--pink);
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 800;
}

.about-stat span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.value-card {
  min-height: 255px;
}

.about-milestones {
  position: relative;
}

.about-milestones::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--pink), var(--teal));
}

.milestone-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.milestone-item:last-child {
  margin-bottom: 0;
}

.milestone-year {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff7ebd);
  border: 7px solid #fff;
  box-shadow: 0 12px 28px rgba(237, 42, 138, .18);
  font-weight: 800;
}

.milestone-card {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 10px 28px rgba(31, 26, 61, .06);
}

.milestone-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.about-philosophy-list {
  display: grid;
  gap: .85rem;
}

.about-philosophy-list div {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 800;
}

.about-philosophy-list i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(237, 42, 138, .56);
}

.doctor-hero-panel,
.guide-hero-panel,
.success-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 18%, rgba(237, 42, 138, .16), transparent 10rem),
    rgba(255, 255, 255, .78);
  border: 1px solid rgba(237, 42, 138, .15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.doctor-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.doctor-mini {
  min-height: 170px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #f7f7fb;
}

.doctor-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s ease;
}

.doctor-mini:hover img {
  transform: scale(1.06);
}

.doctor-mini span {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  padding: .55rem .65rem;
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  font-size: .78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.doctor-profile-card {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.doctor-profile-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 42, 138, .25);
  box-shadow: var(--shadow);
}

.doctor-profile-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  object-position: top center;
}

.doctor-profile-body {
  padding: 1.25rem;
}

.specialty-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin: .9rem 0 1rem;
}

.specialty-tags span {
  padding: .36rem .6rem;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: .76rem;
  font-weight: 800;
}

.doctor-feature-band {
  padding: 1.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(237, 42, 138, .1), transparent 9rem),
    rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: var(--shadow);
}

.guide-checklist {
  padding: 1.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(237, 42, 138, .1), transparent 9rem),
    rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: var(--shadow);
}

.guide-step-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 10px 26px rgba(31, 26, 61, .06);
}

.guide-step-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff78b9);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  color: var(--muted);
  line-height: 1.55;
}

.check-list i {
  color: var(--pink);
  margin-top: .15rem;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.faq-category-card {
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 10px 26px rgba(31, 26, 61, .05);
  font-weight: 800;
}

.faq-category-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.2rem;
}

.success-bars {
  display: grid;
  gap: 1rem;
}

.success-bar-item {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
}

.success-bar-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
  font-weight: 800;
}

.success-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(237, 42, 138, .1);
}

.success-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--teal));
}

.success-visual-card {
  padding: 1.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(237, 42, 138, .1), transparent 9rem),
    rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: var(--shadow);
}

.awards-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 16%, rgba(251, 188, 5, .18), transparent 10rem),
    radial-gradient(circle at 12% 88%, rgba(237, 42, 138, .13), transparent 10rem),
    rgba(255, 255, 255, .78);
  border: 1px solid rgba(237, 42, 138, .15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.awards-trophy {
  min-height: 360px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .9) 0 18%, transparent 19%),
    conic-gradient(from 120deg, rgba(251, 188, 5, .28), rgba(237, 42, 138, .18), rgba(29, 169, 164, .18), rgba(251, 188, 5, .28));
}

.awards-trophy::before,
.awards-trophy::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.awards-trophy::before {
  width: 78%;
  aspect-ratio: 1;
  border: 1px dashed rgba(237, 42, 138, .36);
  animation: slowSpin 26s linear infinite;
}

.awards-trophy::after {
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(251, 188, 5, .35);
  animation: slowSpin 18s linear infinite reverse;
}

.award-core {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #fbbc05, var(--pink));
  box-shadow: 0 24px 52px rgba(237, 42, 138, .24);
  font-size: 3.4rem;
}

.award-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem .9rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow: 0 14px 32px rgba(31, 26, 61, .12);
  font-size: .84rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  animation: bubbleFloat 6s ease-in-out infinite;
}

.award-chip i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff78b9);
}

.award-chip.one { left: 6%; top: 13%; }
.award-chip.two { right: 6%; top: 20%; animation-delay: -1.3s; }
.award-chip.three { left: 9%; bottom: 14%; animation-delay: -2.4s; }
.award-chip.four { right: 8%; bottom: 15%; animation-delay: -3.2s; }

.award-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 61, .08);
  background:
    radial-gradient(circle at 86% 12%, rgba(251, 188, 5, .11), transparent 9rem),
    rgba(255, 255, 255, .9);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.award-card-content {
  padding: 1.4rem;
}

.award-image {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(237, 42, 138, .12), rgba(251, 188, 5, .12));
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.award-card:hover .award-image img {
  transform: scale(1.06);
}

.award-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(23, 24, 51, .22));
}

.award-card:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 42, 138, .25);
  box-shadow: var(--shadow);
}

.award-year {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: .38rem .7rem;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: .78rem;
  font-weight: 800;
}

.award-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .22), transparent 9rem),
    linear-gradient(145deg, var(--pink), #4a1b55);
}

.award-card.featured .award-image::after {
  background: linear-gradient(180deg, transparent 32%, rgba(237, 42, 138, .4));
}

.award-card.featured p,
.award-card.featured .award-year {
  color: rgba(255, 255, 255, .82);
}

.award-card.featured .award-year {
  background: rgba(255, 255, 255, .14);
}

.achievement-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.achievement-ribbon .stat-strip {
  height: 100%;
}

.award-gallery-card {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.award-gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.award-gallery-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform .45s ease;
}

.award-gallery-card:hover img {
  transform: scale(1.06);
}

.award-gallery-body {
  padding: 1.15rem;
}

.award-gallery-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.blog-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 16%, rgba(29, 169, 164, .16), transparent 10rem),
    radial-gradient(circle at 12% 88%, rgba(237, 42, 138, .13), transparent 10rem),
    rgba(255, 255, 255, .78);
  border: 1px solid rgba(237, 42, 138, .15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.blog-feature-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
}

.blog-feature-image img,
.blog-card img,
.blog-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(23, 24, 51, .42));
}

.blog-feature-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 1rem;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(31, 26, 61, .16);
  backdrop-filter: blur(16px);
}

.blog-category-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-category-row a {
  padding: .65rem .9rem;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-weight: 800;
  font-size: .86rem;
}

.blog-category-row a.active,
.blog-category-row a:hover {
  color: #fff;
  background: var(--pink);
}

.blog-card {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  transition: transform .45s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.25rem;
}

.blog-meta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: .8rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.blog-tag {
  display: inline-flex;
  margin-bottom: .8rem;
  padding: .34rem .62rem;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: .76rem;
  font-weight: 800;
}

.blog-card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.35;
}

.blog-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
}

.blog-side-card {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.blog-side-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.blog-category-row .filter-btn {
    background: var(--pink-soft);
    border: none;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    color: var(--pink);
    font-weight: 800;
    font-size: 0.86rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-category-row .filter-btn.active,
.blog-category-row .filter-btn:hover {
    color: #fff;
    background: var(--pink);
}

.recent-post {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(31, 26, 61, .08);
}

.recent-post:last-child {
  border-bottom: 0;
}

.recent-post img {
  width: 76px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.recent-post strong {
  display: block;
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.35;
}

.recent-post span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.blog-detail-hero {
  height: min(52vw, 520px);
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.article-content {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.article-content h2,
.article-content h3 {
  color: var(--ink);
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.3rem 1.4rem;
  border-left: 4px solid var(--pink);
  border-radius: 16px;
  color: var(--ink);
  background: var(--pink-soft);
  font-weight: 700;
}


/* camp */
.camp-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 14%, rgba(237, 42, 138, .18), transparent 11rem),
    radial-gradient(circle at 14% 84%, rgba(29, 169, 164, .18), transparent 12rem),
    rgba(255, 255, 255, .82);
  border: 1px solid rgba(237, 42, 138, .16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.camp-visual {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(23, 24, 51, .08), rgba(23, 24, 51, .42)),
    url("../images/1584982751601.jpeg?auto=format&fit=crop&w=950&q=85") center/cover;
}

.camp-visual::before,
.camp-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  animation: pulseRing 3.8s ease-in-out infinite;
}

.camp-visual::before {
  right: 12%;
  top: 13%;
  width: 132px;
  aspect-ratio: 1;
}

.camp-visual::after {
  left: 11%;
  bottom: 16%;
  width: 94px;
  aspect-ratio: 1;
  animation-delay: 1.1s;
}

.camp-floating-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(31, 26, 61, .18);
  backdrop-filter: blur(18px);
}

.camp-floating-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-size: 1.45rem;
}

.camp-floating-card h3 {
  margin: 0 0 .25rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.camp-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.camp-feature {
  height: 100%;
  padding: 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.camp-feature i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 16px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.45rem;
}

.camp-feature h3,
.camp-location-card h3,
.camp-doctor-card h3,
.camp-booking-card h3 {
  font-weight: 800;
}

.camp-feature h3 {
  font-size: 1.05rem;
}

.camp-location-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 247, 252, .92));
  border: 1px solid rgba(237, 42, 138, .13);
  box-shadow: 0 14px 34px rgba(31, 26, 61, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.camp-location-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.camp-location-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}

.camp-date {
  min-width: 72px;
  padding: .65rem .7rem;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #f67cb4);
  box-shadow: 0 12px 25px rgba(237, 42, 138, .22);
}

.camp-date strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.camp-date span {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.camp-location-meta {
  display: grid;
  gap: .45rem;
  margin: 1rem 0;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

.camp-location-meta span {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}

.camp-location-meta i {
  color: var(--teal);
}

.slot-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.slot-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .52rem .72rem;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: .78rem;
  font-weight: 800;
}

.camp-doctor-card {
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.camp-doctor-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top center;
}

.camp-doctor-body {
  padding: 1.15rem;
}

.camp-booking-card {
  position: sticky;
  top: 96px;
  padding: 1.3rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 169, 164, .12), transparent 9rem),
    rgba(255, 255, 255, .92);
  border: 1px solid rgba(237, 42, 138, .14);
  box-shadow: var(--shadow);
}

.camp-slot-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
}

.camp-slot-options label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .55rem;
  border-radius: 12px;
  color: var(--muted);
  background: #fff;
  border: 1px solid rgba(31, 26, 61, .1);
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}

.camp-slot-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.camp-slot-options input:checked + span {
  color: var(--pink);
}

.camp-slot-options label:has(input:checked) {
  border-color: rgba(237, 42, 138, .45);
  background: var(--pink-soft);
  box-shadow: 0 10px 22px rgba(237, 42, 138, .12);
}

.camp-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.camp-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(var(--pink), var(--teal));
}

.camp-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: .85rem;
}

.camp-step span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(237, 42, 138, .18);
}

.camp-step h3 {
  margin-bottom: .2rem;
  font-size: 1rem;
  font-weight: 800;
}

.doctor-detail-hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(237, 42, 138, .18), transparent 11rem),
    radial-gradient(circle at 14% 84%, rgba(29, 169, 164, .16), transparent 12rem),
    rgba(255, 255, 255, .82);
  border: 1px solid rgba(237, 42, 138, .16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.doctor-detail-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 26px;
}

.doctor-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.doctor-detail-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(31, 26, 61, .16);
  backdrop-filter: blur(18px);
}

.doctor-detail-badge i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-size: 1.45rem;
}

.doctor-detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.doctor-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.15rem;
}

.doctor-social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--pink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(237, 42, 138, .16);
  box-shadow: 0 10px 24px rgba(31, 26, 61, .07);
  font-size: 1.15rem;
  transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}

.doctor-social-row a:hover {
  color: #fff;
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-3px);
}

.doctor-detail-stat {
  padding: 1rem;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(31, 26, 61, .08);
}

.doctor-detail-stat strong {
  display: block;
  color: var(--pink);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.doctor-detail-stat span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.doctor-info-list {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-info-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .8rem;
  align-items: start;
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(31, 26, 61, .07);
}

.doctor-info-list i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.25rem;
}

.doctor-info-list strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.doctor-expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.doctor-expertise-card {
  height: 100%;
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.doctor-expertise-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  border-radius: 16px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 1.35rem;
}

.doctor-expertise-card h3 {
  font-size: 1rem;
  font-weight: 800;
}

.doctor-schedule-card {
  position: sticky;
  top: 96px;
  padding: 1.25rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 169, 164, .12), transparent 9rem),
    rgba(255, 255, 255, .92);
  border: 1px solid rgba(237, 42, 138, .14);
  box-shadow: var(--shadow);
}

.schedule-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(31, 26, 61, .08);
}

.schedule-slot:last-child {
  border-bottom: 0;
}

.schedule-slot strong {
  color: var(--ink);
  font-weight: 800;
}

.schedule-slot span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.doctor-care-timeline {
  display: grid;
  gap: 1rem;
}

.doctor-care-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: .85rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(31, 26, 61, .08);
}

.doctor-care-step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-weight: 800;
}

.treatment-detail-hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 16%, rgba(29, 169, 164, .16), transparent 10rem),
    radial-gradient(circle at 12% 88%, rgba(237, 42, 138, .14), transparent 10rem),
    rgba(255, 255, 255, .82);
  border: 1px solid rgba(237, 42, 138, .16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.treatment-detail-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(23, 24, 51, .05), rgba(23, 24, 51, .44)),
    url("../images/1579154204601.jpeg?auto=format&fit=crop&w=950&q=85") center/cover;
}

.treatment-detail-visual::before,
.treatment-detail-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  animation: pulseRing 4s ease-in-out infinite;
}

.treatment-detail-visual::before {
  right: 13%;
  top: 14%;
  width: 130px;
  aspect-ratio: 1;
}

.treatment-detail-visual::after {
  left: 12%;
  bottom: 18%;
  width: 92px;
  aspect-ratio: 1;
  animation-delay: 1.2s;
}

.treatment-detail-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(31, 26, 61, .18);
  backdrop-filter: blur(18px);
}

.treatment-detail-badge i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-size: 1.45rem;
}

.treatment-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.treatment-stat {
  padding: 1rem;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(31, 26, 61, .08);
}

.treatment-stat strong {
  display: block;
  color: var(--pink);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.treatment-stat span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
}

.treatment-fact-list {
  display: grid;
  gap: .85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-fact-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .8rem;
  align-items: start;
  padding: .9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(31, 26, 61, .07);
}

.treatment-fact-list i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.25rem;
}

.treatment-process,
.treatment-benefit-grid {
  display: grid;
  gap: 1rem;
}

.treatment-process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.treatment-benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.treatment-process-step,
.treatment-benefit-card,
.treatment-related-card {
  height: 100%;
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.treatment-process-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: .9rem;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-weight: 800;
}

.treatment-process-step h3,
.treatment-benefit-card h3,
.treatment-sidebar-card h3,
.treatment-related-card h3 {
  font-weight: 800;
}

.treatment-process-step h3 {
  font-size: 1.05rem;
}

.treatment-benefit-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  border-radius: 16px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 1.35rem;
}

.treatment-sidebar-card {
  position: sticky;
  top: 96px;
  padding: 1.25rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 169, 164, .12), transparent 9rem),
    rgba(255, 255, 255, .92);
  border: 1px solid rgba(237, 42, 138, .14);
  box-shadow: var(--shadow);
}

.treatment-related-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 247, 252, .92));
  border-color: rgba(237, 42, 138, .13);
  transition: transform .25s ease, box-shadow .25s ease;
}

.treatment-related-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}


.center-detail-hero-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 16%, rgba(29, 169, 164, .16), transparent 10rem),
    radial-gradient(circle at 12% 88%, rgba(237, 42, 138, .14), transparent 10rem),
    rgba(255, 255, 255, .82);
  border: 1px solid rgba(237, 42, 138, .16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.center-detail-visual {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(23, 24, 51, .02), rgba(23, 24, 51, .48)),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=950&q=85") center/cover;
}

.center-detail-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .92);
  box-shadow: 0 18px 44px rgba(31, 26, 61, .18);
  backdrop-filter: blur(18px);
}

.center-detail-badge i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-size: 1.45rem;
}

.center-contact-panel {
  display: grid;
  gap: .85rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.center-contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .75rem;
  align-items: start;
}

.center-contact-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.25rem;
}

.center-contact-item strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.center-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.center-service-card,
.center-nearby-card {
  height: 100%;
  padding: 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.center-service-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  border-radius: 16px;
  color: var(--teal);
  background: var(--teal-soft);
  font-size: 1.35rem;
}

.center-service-card h3,
.center-nearby-card h3,
.center-sidebar-card h3 {
  font-weight: 800;
}

.center-sidebar-card {
  position: sticky;
  top: 96px;
  padding: 1.25rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(29, 169, 164, .12), transparent 9rem),
    rgba(255, 255, 255, .92);
  border: 1px solid rgba(237, 42, 138, .14);
  box-shadow: var(--shadow);
}

.center-nearby-card {
  display: block;
  transition: transform .25s ease, box-shadow .25s ease;
}

.center-nearby-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.legal-summary-card {
  height: 100%;
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.legal-summary-card i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  border-radius: 16px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.35rem;
}

.legal-summary-card h3 {
  font-size: 1rem;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-nav-card {
  position: sticky;
  top: 96px;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: 0 12px 32px rgba(31, 26, 61, .06);
}

.legal-nav-card h2 {
  margin-bottom: .8rem;
  font-size: 1rem;
  font-weight: 800;
}

.legal-nav-card a {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .68rem .75rem;
  border-radius: 12px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.legal-nav-card a:hover,
.legal-nav-card a.active {
  color: var(--pink);
  background: var(--pink-soft);
}

.legal-content {
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(31, 26, 61, .08);
  box-shadow: var(--shadow);
}

.legal-section {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(31, 26, 61, .08);
  scroll-margin-top: 110px;
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  margin-bottom: .75rem;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 800;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.78;
}

.legal-section ul {
  margin: .75rem 0 0;
  padding-left: 1.15rem;
}

.legal-note {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--pink-soft), var(--teal-soft));
  border: 1px solid rgba(237, 42, 138, .14);
}

.legal-note i {
  color: var(--pink);
  font-size: 1.35rem;
}

.legal-update-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .58rem .8rem;
  border-radius: 999px;
  color: var(--pink);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(237, 42, 138, .14);
  font-size: .86rem;
  font-weight: 800;
}

/* location */

@keyframes pulseRing {
  0% {
    transform: scale(.84);
    opacity: .9;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.inner-cta {
  position: relative;
  overflow: hidden;
  padding: 2.1rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, .25), transparent 10rem),
    linear-gradient(100deg, var(--pink), #f15da4 58%, #ffc0da);
}

.inner-cta::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -72px;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
}

.inner-cta h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
  font-weight: 800;
}

.inner-cta p {
  color: rgba(255, 255, 255, .84);
  margin: 0;
}

.inner-cta .container {
  position: relative;
  z-index: 1;
}

.form-control,
.form-select {
  min-height: 48px;
  border-radius: 10px;
  border-color: rgba(31, 26, 61, .14);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 .2rem rgba(237, 42, 138, .13);
}

.footer-features {
  padding: .85rem 0 1.1rem;
  background: #fff;
  border-top: 1px solid rgba(237, 42, 138, .08);
}

.footer-feature {
  display: flex;
  gap: .8rem;
  align-items: center;
  min-height: 64px;
}

.footer-feature i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.3rem;
}

.footer-feature strong {
  display: block;
  font-size: .9rem;
}

.footer-feature span {
  color: var(--muted);
  font-size: .78rem;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .14), transparent 17rem),
    linear-gradient(135deg, #171833 0%, #25193b 56%, #3a1741 100%);
}

.footer-main {
  padding: 3.3rem 0 2.2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, .78);
  transition: color .2s ease, transform .2s ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-icon {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
}

.footer-brand .brand-title,
.footer-brand .brand-subtitle {
  color: #fff;
}

.footer-about {
  max-width: 360px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.footer-social {
  display: flex;
  gap: .75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
}

.footer-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: .68rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .94rem;
}

.footer-links i {
  color: var(--pink);
  font-size: .75rem;
}

.footer-contact {
  display: grid;
  gap: .9rem;
  color: rgba(255, 255, 255, .78);
  font-size: .94rem;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: .8rem;
  align-items: flex-start;
}

.footer-contact-item i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(237, 42, 138, .22);
}

.footer-bottom {
  padding: 1rem 0;
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .9rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sparklePulse {
  0%, 100% {
    transform: scale(.9);
    opacity: .48;
  }
  50% {
    transform: scale(1.16);
    opacity: .86;
  }
}

@keyframes bubbleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -16px, 0) scale(1.04); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}

@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(-12px, 18px, 0) rotate(6deg); }
}

@keyframes floatHeart {
  0%, 100% { transform: translateY(0) rotate(-12deg); opacity: .38; }
  50% { transform: translateY(-18px) rotate(10deg); opacity: .8; }
}

@keyframes photoLift {
  from { opacity: 0; transform: translateY(30px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -12px, 0); }
}

@media (max-width: 1199.98px) {
  .call-pill {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .navbar .custom-dropdown-menu .dropdown-item span {
        margin-top: 1px;
        font-size: 10px;
        line-height: 1.35;
    }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .page-hero::after {
    opacity: .45;
  }

  .page-hero .container::after,
  .page-hero .container::before {
    display: none;
  }

  .faq-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .achievement-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-orbit {
    min-height: 320px;
  }

  .service-node {
    min-width: 126px;
    font-size: .78rem;
  }

  .tech-chip-grid {
    grid-template-columns: 1fr;
  }

  .tx-lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-row {
    min-width: 720px;
  }

  .tx-comparison {
    overflow-x: auto;
  }

  .about-milestones::before {
    left: 37px;
  }

  .milestone-item {
    grid-template-columns: 74px 1fr;
  }

  .milestone-item > div:first-child:empty,
  .milestone-item > div:last-child:empty {
    display: none;
  }

  .milestone-item .milestone-year {
    grid-column: 1;
    grid-row: 1;
  }

  .milestone-item .milestone-card {
    grid-column: 2;
    text-align: left !important;
  }
}

@media (max-width: 767.98px) {
  .brand-title {
    font-size: 1.45rem;
  }

  .brand-icon {
    width: 46px;
    height: 46px;
    font-size: 1.55rem;
  }

  .doctor-hero-grid,
  .faq-category-grid {
    grid-template-columns: 1fr;
  }

  .doctor-mini {
    min-height: 220px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }

  .service-metric-strip {
    grid-template-columns: 1fr;
  }

  .service-orbit {
    min-height: 300px;
  }

  .service-core {
    width: 124px;
    height: 124px;
  }

  .service-node {
    position: relative;
    inset: auto !important;
    margin: .35rem;
    animation: none;
  }

  .service-orbit {
    align-content: center;
    gap: .2rem;
  }

  .care-timeline::before {
    left: 29px;
  }

  .care-step {
    grid-template-columns: 60px 1fr;
  }

  .care-index {
    width: 60px;
    height: 60px;
    border-width: 5px;
  }

  .tx-visual {
    min-height: 310px;
    align-content: center;
    gap: .2rem;
  }

  .tx-core {
    width: 124px;
    height: 124px;
  }

  .tx-chip {
    position: relative;
    inset: auto !important;
    margin: .32rem;
    animation: none;
  }

  .tx-lab-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    min-height: 300px;
  }

  .milestone-item {
    grid-template-columns: 60px 1fr;
  }

  .milestone-year {
    width: 60px;
    height: 60px;
    border-width: 5px;
    font-size: .86rem;
  }
}

@media (max-width: 1199.98px) {
  .call-pill {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 3.5rem 0 1.8rem;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 36%, rgba(237, 42, 138, .20), transparent 24rem),
    linear-gradient(106deg, #fff 0%, #fff9fc 42%, #ffeef7 76%, #fff 100%);
  z-index: -3;
}

.hero-ring,
.hero-orbit {
  position: absolute;
  right: 5%;
  top: 5%;
  width: min(47vw, 610px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, .72) 0 17%, rgba(255, 255, 255, .12) 18%),
    linear-gradient(135deg, rgba(237, 42, 138, .18), rgba(237, 42, 138, .04));
  z-index: -2;
  animation: breathe 7s ease-in-out infinite;
}

.hero-orbit {
  width: min(34vw, 430px);
  right: 8.5%;
  top: 13%;
  border: 1px solid rgba(237, 42, 138, .22);
  background: transparent;
  animation: floaty 8s ease-in-out infinite;
}

.heart {
  position: absolute;
  color: rgba(237, 42, 138, .32);
  font-size: 2.1rem;
  animation: floatHeart 7s ease-in-out infinite;
  z-index: -1;
}

.heart.one { left: 51%; top: 9%; }
.heart.two { left: 44%; top: 54%; animation-delay: -2s; }
.heart.three { right: 10%; top: 13%; animation-delay: -4s; }

.hero h1 {
  max-width: 665px;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 1.55rem;
}

.hero-copy {
  max-width: 520px;
  color: #2b2d48;
  font-size: clamp(1.05rem, 1.4vw, 1.32rem);
  line-height: 1.72;
  margin-bottom: 2.4rem;
}

.hero-photo-wrap {
  position: relative;
  min-height: 545px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  right: 1%;
  bottom: 1rem;
  width: min(45vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, .6) 0 12%, transparent 13%),
    linear-gradient(145deg, rgba(255, 225, 240, .95), rgba(237, 42, 138, .19));
  box-shadow: inset 0 0 0 1px rgba(237, 42, 138, .12);
}

.hero-photo-wrap::after {
  content: "";
  position: absolute;
  right: -1.4rem;
  top: 32%;
  width: 165px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(237, 42, 138, .18);
  background: rgba(255, 255, 255, .18);
}

.hero-photo-glow {
  position: absolute;
  right: 18%;
  bottom: 8%;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(237, 42, 138, .14);
  filter: blur(4px);
}

.hero-halo {
  position: absolute;
  right: 3%;
  bottom: 2.5rem;
  width: min(45vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(237, 42, 138, .34);
  z-index: 0;
  animation: slowSpin 24s linear infinite;
}

.hero-halo::before,
.hero-halo::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 9px rgba(237, 42, 138, .12);
}

.hero-halo::before {
  left: 16%;
  top: 9%;
}

.hero-halo::after {
  right: 8%;
  bottom: 21%;
  background: var(--teal);
  box-shadow: 0 0 0 9px rgba(29, 169, 164, .14);
}

.hero-bubble {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--pink);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .74);
  box-shadow: 0 16px 38px rgba(31, 26, 61, .11);
  backdrop-filter: blur(14px);
  font-size: 1.75rem;
  animation: bubbleFloat 5.8s ease-in-out infinite;
}

.hero-bubble.teal {
  color: var(--teal);
}

.hero-bubble.one {
  right: 74%;
  top: 18%;
}

.hero-bubble.two {
  right: 7%;
  top: 18%;
  animation-delay: -1.8s;
}

.hero-bubble.three {
  right: 70%;
  bottom: 12%;
  animation-delay: -3.1s;
}

.hero-sparkle {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow:
    56px 38px 0 rgba(237, 42, 138, .38),
    98px -16px 0 rgba(29, 169, 164, .42),
    170px 58px 0 rgba(237, 42, 138, .24),
    232px 18px 0 rgba(255, 255, 255, .86);
  opacity: .7;
  animation: sparklePulse 3.6s ease-in-out infinite;
}

.hero-sparkle.top {
  right: 38%;
  top: 10%;
}

.hero-sparkle.bottom {
  right: 12%;
  bottom: 19%;
  animation-delay: -1.2s;
}

.hero-glass-card {
  position: absolute;
  left: 2%;
  bottom: 4.8rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 205px;
  padding: .85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: 0 18px 46px rgba(31, 26, 61, .12);
  backdrop-filter: blur(16px);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-glass-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff75b9);
  font-size: 1.25rem;
}

.hero-glass-card strong {
  display: block;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.15;
}

.hero-glass-card span {
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
}

.hero-photo {
  position: absolute;
  z-index: 1;
  right: -2.5rem;
  bottom: -1.2rem;
  width: min(52vw, 665px);
  height: min(43vw, 560px);
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  border-radius: 46% 54% 42% 58% / 36% 40% 60% 64%;
  clip-path: ellipse(48% 50% at 57% 52%);
  filter: drop-shadow(0 28px 32px rgba(87, 47, 69, .14));
  transform-origin: center bottom;
  animation: photoLift .9s ease both;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 640px;
  margin-bottom: 2.1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 78px;
}

.trust-icon,
.circle-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  font-size: 1.65rem;
}

.trust-item:nth-child(3n) .trust-icon {
  background: var(--teal-soft);
  color: var(--teal);
}

.trust-item span {
  color: var(--ink);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.35;
}

.quick-actions {
  position: fixed;
  right: 2rem;
  top: 31%;
  z-index: 1020;
  display: grid;
  gap: .45rem;
  padding: .9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(237, 42, 138, .08);
}

.quick-actions a {
  width: 72px;
  min-height: 74px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
  border-radius: 12px;
  transition: transform .2s ease, background .2s ease;
}

.quick-actions a:hover {
  transform: translateY(-4px);
  background: rgba(237, 42, 138, .07);
}

.quick-actions i {
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: .3rem;
}

.quick-actions a:first-child i {
  color: #1ba75a;
  background: #e2f8eb;
}

.section-panel {
  position: relative;
  margin-top: -1.2rem;
  padding: 2rem 0 0;
  border-radius: 34px 34px 0 0;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 -18px 40px rgba(31, 26, 61, .04);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.section-eyebrow {
  text-align: center;
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: .75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}

.section-title .tiny-heart {
  display: block;
  color: var(--pink);
  font-size: .85rem;
  margin-top: .35rem;
}

.treatment-card,
.doctor-card,
.story-card {
  height: 100%;
  border: 1px solid rgba(31, 26, 61, .09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 24px rgba(31, 26, 61, .05);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  transform-style: preserve-3d;
}

.treatment-card:hover,
.doctor-card:hover,
.story-card:hover {
  transform: translateY(-9px);
  border-color: rgba(237, 42, 138, .28);
  box-shadow: var(--shadow);
}

.treatment-card {
  padding: 1.9rem 1.2rem;
  text-align: center;
}

.service-icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 1.3rem;
  display: grid;
  place-items: center;
  color: var(--pink);
  background: var(--pink-soft);
  border-radius: 50%;
  font-size: 3rem;
}

.treatment-grid > div:nth-child(even) .service-icon {
  color: var(--teal);
  background: var(--teal-soft);
}

.treatment-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: .65rem;
}

.treatment-card p,
.doctor-card p,
.story-card p,
.journey p {
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
}

.stats-band {
  margin: 1.35rem 0 2.2rem;
  padding: 1.35rem 1rem;
  border: 1px solid rgba(237, 42, 138, .18);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 232, 244, .84), rgba(255, 250, 253, .96));
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 86px;
  border-right: 1px solid rgba(237, 42, 138, .18);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item i {
  color: var(--pink);
  font-size: 2.8rem;
}

.stat-value {
  color: var(--pink);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 600;
}

.journey {
  position: relative;
  margin-bottom: 2.4rem;
}

.journey::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 63px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(31, 26, 61, .25) 45%, transparent 0);
  background-size: 12px 2px;
}

.journey-step {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .4rem;
}

.step-badge {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #ff75b9);
  color: #fff;
  border: 7px solid #fff;
  box-shadow: 0 0 0 5px var(--pink-soft);
  font-size: 1.8rem;
  z-index: 1;
}

.journey-step:nth-child(even) .step-badge {
  background: linear-gradient(135deg, var(--teal), #79dcd6);
  box-shadow: 0 0 0 5px var(--teal-soft);
}

.journey-number {
  color: var(--pink);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.journey h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.doctor-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 180px;
}

.doctor-card img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: top center;
  background: #f7f7fb;
}

.doctor-info {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-info h3 {
  color: var(--pink);
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: .35rem;
}

.doctor-info .experience {
  color: var(--pink);
  font-weight: 800;
  font-size: .87rem;
  margin-bottom: .9rem;
}

.story-wrap {
  position: relative;
}

.story-card {
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.1rem;
  align-items: center;
  min-height: 150px;
}

.story-card img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-mark {
  color: var(--pink);
  font-size: 2rem;
  line-height: .6;
}

.stars {
  color: var(--pink);
  letter-spacing: .08em;
  font-size: .82rem;
  margin: .35rem 0;
}

.story-author {
  color: var(--ink);
  font-weight: 800;
  font-size: .95rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  box-shadow: 0 8px 22px rgba(31, 26, 61, .12);
  z-index: 2;
}

.carousel-arrow.prev {
  left: -34px;
}

.carousel-arrow.next {
  right: -34px;
}

.faq-section {
  position: relative;
  padding: 1.2rem 0 2.8rem;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 15%;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(29, 169, 164, .08);
}

.faq-card {
  position: relative;
  border: 1px solid rgba(237, 42, 138, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 42px rgba(31, 26, 61, .06);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.faq-card::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(237, 42, 138, .09);
  pointer-events: none;
}

.faq-card .accordion {
  position: relative;
  z-index: 1;
}

.faq-card .accordion-item {
  border: 0;
  border-bottom: 1px solid rgba(31, 26, 61, .08);
  background: transparent;
}

.faq-card .accordion-item:last-child {
  border-bottom: 0;
}

.faq-card .accordion-button {
  gap: .8rem;
  padding: 1.25rem 1.35rem;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-weight: 800;
  letter-spacing: 0;
}

.faq-card .accordion-button i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 1.1rem;
}

.faq-card .accordion-button:not(.collapsed) {
  color: var(--pink);
  background: linear-gradient(90deg, rgba(255, 231, 243, .62), rgba(229, 248, 247, .38));
}

.faq-card .accordion-button:not(.collapsed) i {
  color: #fff;
  background: var(--pink);
}

.faq-card .accordion-button:focus {
  box-shadow: 0 0 0 .18rem rgba(237, 42, 138, .14);
}

.faq-card .accordion-body {
  color: var(--muted);
  padding: 0 1.35rem 1.35rem 5.1rem;
  line-height: 1.7;
}

.faq-note {
  height: 100%;
  padding: 1.5rem;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .22), transparent 7rem),
    linear-gradient(145deg, var(--pink), #f56bad);
  box-shadow: 0 18px 42px rgba(237, 42, 138, .2);
}

.faq-note i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 1.6rem;
}

.faq-note h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.faq-note p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.65;
}

.cta-band {
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  color: #fff;
  background:
    linear-gradient(95deg, rgba(237, 42, 138, .98), rgba(237, 42, 138, .83) 52%, rgba(255, 202, 225, .94));
  min-height: 132px;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -56px;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 35%, #fff6f9 0 20%, #ffc0d8 21% 39%, #ffe9f2 40% 52%, transparent 53%);
  opacity: .92;
}

.cta-band .container {
  min-height: 132px;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
}

.appointment-modal .modal-content {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(31, 26, 61, .22);
}

.appointment-modal .modal-header {
  color: #fff;
  background:
    radial-gradient(circle at 86% 24%, rgba(255, 255, 255, .22), transparent 7rem),
    linear-gradient(135deg, var(--pink), #f36aa9);
  border: 0;
  padding: 1.4rem 1.5rem;
}

.appointment-modal .modal-title {
  font-weight: 800;
  letter-spacing: 0;
}

.appointment-modal .btn-close {
  filter: invert(1) grayscale(1) brightness(4);
  opacity: .9;
}

.appointment-modal .modal-body {
  padding: 1.5rem;
  background:
    radial-gradient(circle at 8% 92%, rgba(29, 169, 164, .08), transparent 12rem),
    #fff;
}

.appointment-modal .form-label {
  color: var(--ink);
  font-weight: 800;
  font-size: .88rem;
}

.appointment-modal .form-control,
.appointment-modal .form-select {
  min-height: 48px;
  border-radius: 10px;
  border-color: rgba(31, 26, 61, .14);
  font-weight: 600;
}

.appointment-modal .form-control:focus,
.appointment-modal .form-select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 .2rem rgba(237, 42, 138, .13);
}

.appointment-support, .appointment-feedback {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem;
  border-radius: 14px;
  background: var(--pink-soft);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
}

.appointment-support i, .appointment-feedback i {
  color: var(--pink);
  font-size: 1.35rem;
}

.mobile-contact-bar {
  position: fixed;
  left: .85rem;
  right: .85rem;
  bottom: .85rem;
  z-index: 1040;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
  padding: .55rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(237, 42, 138, .14);
  box-shadow: 0 18px 45px rgba(31, 26, 61, .18);
  backdrop-filter: blur(16px);
}

.mobile-contact-bar a,
.mobile-contact-bar button {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  display: grid;
  place-items: center;
  gap: .12rem;
  color: var(--pink);
  background: rgba(237, 42, 138, .08);
  font-size: .72rem;
  font-weight: 800;
}

.mobile-contact-bar i {
  font-size: 1.25rem;
  line-height: 1;
}

.mobile-contact-bar .primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 10px 20px rgba(237, 42, 138, .24);
}

.scroll-top-progress {
  position: fixed;
  right: 1.45rem;
  bottom: 1.45rem;
  z-index: 1041;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--pink);
  background:
    conic-gradient(var(--pink) var(--scroll-progress, 0deg), rgba(237, 42, 138, .16) 0deg);
  box-shadow: 0 16px 38px rgba(31, 26, 61, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(.92);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.scroll-top-progress::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  box-shadow: inset 0 0 0 1px rgba(237, 42, 138, .08);
}

.scroll-top-progress.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-progress span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  line-height: 1;
}

.scroll-top-progress i {
  font-size: 1.25rem;
}

.scroll-top-progress small {
  margin-top: .12rem;
  color: var(--ink);
  font-size: .62rem;
  font-weight: 800;
}

@media (max-width: 1199.98px) {
  .quick-actions {
    display: none;
  }

  .hero-photo {
    right: -1rem;
    width: min(58vw, 590px);
    height: min(48vw, 510px);
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 2.8rem;
    text-align: center;
  }

  .hero-copy,
  .trust-points {
    margin-inline: auto;
  }

  .hero-photo-wrap {
    min-height: 430px;
  }

  .hero-photo-wrap::before {
    right: 50%;
    bottom: 0;
    width: min(82vw, 500px);
    transform: translateX(50%);
  }

  .hero-photo-wrap::after {
    display: none;
  }

  .hero-photo-glow {
    display: none;
  }

  .hero-halo {
    right: 50%;
    bottom: .6rem;
    width: min(82vw, 500px);
    animation: none;
    transform: translateX(50%);
  }

  .hero-bubble {
    width: 52px;
    height: 52px;
    font-size: 1.38rem;
  }

  .hero-bubble.one {
    right: 72%;
    top: 13%;
  }

  .hero-bubble.two {
    right: 10%;
    top: 16%;
  }

  .hero-bubble.three,
  .hero-sparkle,
  .hero-glass-card {
    display: none;
  }

  .hero-photo {
    right: 50%;
    bottom: 0;
    width: min(88vw, 560px);
    height: min(70vw, 430px);
    animation: none;
    transform: translateX(50%);
  }

  .hero-ring {
    right: 50%;
    transform: translateX(50%);
    width: 72vw;
    top: 42%;
  }

  .journey::before {
    display: none;
  }

  .doctor-card {
    grid-template-columns: 38% 1fr;
  }
}

@media (max-width: 767.98px) {
  .trust-points {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .trust-item {
    justify-content: flex-start;
    min-height: 58px;
  }

  .section-panel {
    border-radius: 24px 24px 0 0;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid rgba(237, 42, 138, .13);
  }

  .stats-band .col-12:last-child .stat-item {
    border-bottom: 0;
  }

  .journey-step {
    max-width: 360px;
    margin-inline: auto;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-card img {
    height: 220px;
  }

  .story-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-card img {
    margin: 0 auto;
  }

  .carousel-arrow {
    display: none;
  }

  .faq-card .accordion-body {
    padding-left: 1.35rem;
  }

  body.home-page {
    padding-bottom: 86px;
  }

  .mobile-contact-bar {
    display: grid;
  }

  .camp-hero-panel {
    padding: .75rem;
    border-radius: 22px;
  }

  .camp-visual {
    min-height: 330px;
    border-radius: 18px;
  }

  .camp-floating-card {
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    grid-template-columns: 44px 1fr;
    padding: .8rem;
    border-radius: 16px;
  }

  .camp-floating-card i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 1.2rem;
  }

  .camp-feature-grid {
    grid-template-columns: 1fr;
  }

  .camp-doctor-card,
  .camp-location-card,
  .camp-booking-card,
  .camp-feature {
    max-width: 430px;
    margin-inline: auto;
  }

  .camp-doctor-card img {
    height: 240px;
  }

  .camp-booking-card {
    position: static;
    padding: 1rem;
    border-radius: 20px;
  }

  .camp-slot-options {
    grid-template-columns: 1fr;
  }

  .doctor-detail-hero-card {
    padding: .75rem;
    border-radius: 22px;
  }

  .doctor-detail-photo {
    min-height: 350px;
    border-radius: 18px;
  }

  .doctor-detail-badge {
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    grid-template-columns: 44px 1fr;
    padding: .8rem;
    border-radius: 16px;
  }

  .doctor-detail-badge i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 1.2rem;
  }

  .doctor-detail-stat-grid,
  .doctor-expertise-grid {
    grid-template-columns: 1fr;
  }

  .doctor-schedule-card {
    position: static;
    padding: 1rem;
    border-radius: 20px;
  }

  .doctor-care-step {
    grid-template-columns: 44px 1fr;
    padding: .85rem;
  }

  .doctor-care-step span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .treatment-detail-hero-card {
    padding: .75rem;
    border-radius: 22px;
  }

  .treatment-detail-visual {
    min-height: 330px;
    border-radius: 18px;
  }

  .treatment-detail-badge {
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    grid-template-columns: 44px 1fr;
    padding: .8rem;
    border-radius: 16px;
  }

  .treatment-detail-badge i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 1.2rem;
  }

  .treatment-stat-grid,
  .treatment-process,
  .treatment-benefit-grid {
    grid-template-columns: 1fr;
  }

  .treatment-sidebar-card {
    position: static;
    padding: 1rem;
    border-radius: 20px;
  }


  .center-detail-hero-card {
    padding: .75rem;
    border-radius: 22px;
  }

  .center-detail-visual {
    min-height: 330px;
    border-radius: 18px;
  }

  .center-detail-badge {
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    grid-template-columns: 44px 1fr;
    padding: .8rem;
    border-radius: 16px;
  }

  .center-detail-badge i {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 1.2rem;
  }

  .center-service-grid {
    grid-template-columns: 1fr;
  }

  .center-sidebar-card {
    position: static;
    padding: 1rem;
    border-radius: 20px;
  }

  .legal-summary-grid {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav-card {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
  }

  .legal-nav-card h2 {
    grid-column: 1 / -1;
  }

  .legal-nav-card a {
    min-height: 44px;
    padding: .62rem;
    font-size: .82rem;
  }

  .legal-content {
    padding: 1rem;
    border-radius: 20px;
  }

}


/* menu css*/
.custom-navbar {
    width: 100%;
    background: #fff;
    padding: 14px 0;
    box-shadow: 0 8px 30px rgba(36, 18, 28, 0.06);
    z-index: 1030;
}

.custom-navbar-container {
    gap: 20px;
}

.custom-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar-logo {
    width: auto;
    max-height: 62px;
    display: block;
}

.custom-menu .nav-link {
    color: #2f2f38;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    padding: 12px 10px;
    border-radius: 8px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.custom-menu .nav-link:hover,
.custom-menu .nav-link:focus,
.custom-menu .nav-link.show {
    color: var(--pink);
    background: #fff1f8;
}

.custom-menu .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: 2px;
    border-top-color: currentColor;
}

.custom-dropdown-menu {
    min-width: 240px;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(40, 18, 30, 0.14);
}

.custom-dropdown-menu .dropdown-item {
    color: #3f3040;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 7px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.custom-dropdown-menu .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:focus {
    color: var(--pink);
    background: #fff1f8;
    transform: translateX(3px);
}

.custom-dropdown-menu .dropdown-item.active,
.custom-dropdown-menu .dropdown-item:active {
    color: var(--pink);
    background-color: #fff1f8;
}

.header-cta-group {
    align-items: stretch;
    border: 1px solid #f7c6df;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 22px rgba(236, 30, 132, 0.08);
}

.header-cta-group a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.header-cta-call {
    color: var(--pink);
    background: #fff;
}

.header-cta-call:hover {
    color: var(--pink);
    background: #fff6fb;
}

.header-cta-book {
    color: #fff;
    background: var(--pink);
}

.header-cta-book:hover {
    color: #fff;
    background: var(--pink-dark);
}

.header-cta-group i {
    font-size: 15px;
}

.custom-toggler {
    width: 44px;
    height: 44px;
    border: 1px solid #f7c6df;
    border-radius: 8px;
    background: #fff6fb;
    padding: 9px;
}

.custom-toggler:focus {
    box-shadow: 0 0 0 3px rgba(236, 30, 132, 0.15);
}

.custom-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 20px;
    background: var(--pink);
}

@media (min-width: 1200px) {
    .custom-navbar {
        min-height: 88px;
    }

    .custom-menu .dropdown:hover > .custom-dropdown-menu {
        display: block;
        margin-top: 0;
        animation: dropdownFade 0.18s ease;
    }

    @keyframes dropdownFade {
        from {
            opacity: 0;
            transform: translateY(8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 1199px) {
    .custom-navbar {
        padding: 10px 0;
    }

    .navbar-logo {
        max-height: 52px;
    }

    .custom-menu {
        margin-top: 12px;
        padding: 12px;
        border: 1px solid #f9d6e8;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 14px 35px rgba(40, 18, 30, 0.1);
    }

    .custom-menu .nav-link {
        padding: 13px 12px;
    }

    .custom-dropdown-menu {
        padding: 6px;
        margin: 2px 0 8px;
        border-radius: 8px;
        box-shadow: none;
        background: #fff6fb;
    }

    .custom-dropdown-menu .dropdown-item {
        padding: 10px 12px;
    }
}

@media (max-width: 575px) {
    .navbar-logo {
        max-height: 46px;
    }

    .custom-navbar-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

