/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #6B2FA0;
  --purple-dark:  #4A1875;
  --purple-mid:   #7C3DB5;
  --purple-light: #9B5DD5;
  --purple-soft:  #F3EDFB;
  --green:        #25D366;
  --green-dk:     #128C7E;
  --white:        #ffffff;
  --text:         #0F0A1E;
  --text-2:       #4B5563;
  --text-3:       #9CA3AF;
  --border:       #E8E0F5;
  --radius:       20px;
  --radius-sm:    12px;
  --shadow-sm:    0 2px 12px rgba(107,47,160,.08);
  --shadow:       0 8px 32px rgba(107,47,160,.14);
  --shadow-lg:    0 20px 60px rgba(107,47,160,.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(.97); }
}
@keyframes chipBounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(37,211,102,0); }
}
@keyframes pulsePurple {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,47,160,.5); }
  50%       { box-shadow: 0 0 0 6px rgba(107,47,160,0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

[data-animate] { opacity: 0; }
[data-animate="fade-up"]  { transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-animate="fade-left"]{ transform: translateX(32px); transition: opacity .7s ease, transform .7s ease; }
[data-animate].visible    { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .93rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn--wa {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
}
.btn--wa:hover { background: var(--green-dk); box-shadow: 0 8px 28px rgba(37,211,102,.5); }

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.25); }

.btn--white-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn--white-ghost:hover { background: rgba(255,255,255,.22); }

.btn--full { width: 100%; justify-content: center; }
.btn--lg   { padding: 15px 32px; font-size: 1rem; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 6px 0;
}
.navbar.scrolled {
  background: rgba(74,24,117,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  padding: 2px 0;
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__link {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .15s, color .15s;
}
.navbar__link:hover { background: rgba(255,255,255,.15); color: var(--white); }
.navbar__link--cta {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(37,211,102,.4);
}
.navbar__link--cta:hover { background: var(--green-dk); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: white;
  border-radius: 3px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 16px 20px;
  background: rgba(74,24,117,.98);
  backdrop-filter: blur(16px);
}
.mobile-menu a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .95rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); }
.mobile-menu__cta {
  margin-top: 8px;
  background: var(--green) !important;
  color: var(--white) !important;
  text-align: center;
}
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(145deg, #2D0A5A 0%, var(--purple-dark) 35%, var(--purple) 70%, var(--purple-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 0;
  overflow: hidden;
}

/* Animated blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .35;
}
.blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #9B5DD5, transparent);
  top: -100px; right: -100px;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #25D366, transparent);
  bottom: 80px; left: -80px;
  animation: blobFloat 16s ease-in-out infinite reverse;
}
.blob--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #fff, transparent);
  top: 40%; left: 40%;
  animation: blobFloat 20s ease-in-out infinite 4s;
  opacity: .08;
}

.hero__container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
  gap: 60px;
  z-index: 2;
}

/* Text side */
.hero__text { flex: 1; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  letter-spacing: .02em;
}

.hero__name {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.hero__name-accent {
  background: linear-gradient(90deg, #C084FC, #86EFAC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__spec {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  margin-bottom: 8px;
}
.hero__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
}

.hero__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero__langs span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Photo card */
.hero__card {
  flex-shrink: 0;
  position: relative;
  width: 340px;
}
.hero__photo-wrap {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--purple-mid), var(--purple-dark));
  position: relative;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__photo-fallback {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: white;
}

/* Floating stat chips */
.stat-chip {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 90px;
}
.stat-chip strong { font-size: 1.1rem; font-weight: 800; color: var(--purple-dark); line-height: 1; }
.stat-chip span   { font-size: .7rem; color: var(--text-2); font-weight: 500; margin-top: 2px; }

.stat-chip--exp     { top: 20px; left: -48px; animation: chipBounce 4s ease-in-out infinite; }
.stat-chip--rating  { top: 50%; right: -44px; transform: translateY(-50%); animation: chipBounce 4s ease-in-out infinite 1.3s; }
.stat-chip--patients{ bottom: 28px; left: -48px; animation: chipBounce 4s ease-in-out infinite 2.5s; }

/* Stats bar */
.hero__statsbar {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 22px 32px;
  margin-top: 56px;
}
.statsbar__item { text-align: center; }
.statsbar__item strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.statsbar__item span  { font-size: .75rem; color: rgba(255,255,255,.65); font-weight: 500; }
.statsbar__div { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Pulse dot */
.pulse-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: pulsePurple 2s ease-in-out infinite;
  flex-shrink: 0;
}
.pulse-dot--green {
  background: var(--green);
  animation: pulseDot 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding: 90px 0; }
.section--alt { background: var(--purple-soft); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(107,47,160,.1);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-label--light {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.15);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.about-bio p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.edu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.edu-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.edu-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.edu-card__icon { font-size: 1.4rem; flex-shrink: 0; }
.edu-card strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); }
.edu-card span   { font-size: .78rem; color: var(--text-2); }

/* Info card */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-2);
}
.info-card__row svg { flex-shrink: 0; color: var(--purple); margin-top: 2px; }
.info-card__row strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); }
.info-card__row span  { font-size: .82rem; }

.walkin-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-dk);
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.25);
  padding: 8px 18px;
  border-radius: 50px;
}

/* ══════════════════════════════════════
   PROCEDURES
══════════════════════════════════════ */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.proc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.proc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0;
  transition: opacity .25s;
}
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.proc-card:hover::before { opacity: 1; }
.proc-card__icon { font-size: 2rem; margin-bottom: 14px; }
.proc-card h3 { font-size: .95rem; font-weight: 700; color: var(--purple-dark); margin-bottom: 8px; }
.proc-card p  { font-size: .83rem; color: var(--text-2); line-height: 1.65; }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.section--cta {
  background: linear-gradient(145deg, #2D0A5A 0%, var(--purple-dark) 50%, var(--purple) 100%);
  padding: 80px 0;
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  overflow: hidden;
  border-radius: 28px;
  padding: 56px 56px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.cta-inner__blob {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,132,252,.2), transparent);
  right: -100px; top: -100px;
  pointer-events: none;
  filter: blur(60px);
}
.cta-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin: 10px 0 12px;
  letter-spacing: -.02em;
}
.cta-text p { color: rgba(255,255,255,.75); font-size: .97rem; margin-bottom: 6px; }
.cta-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9) !important;
  font-size: .9rem !important;
}
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #1A0533;
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.footer__brand p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.75; max-width: 320px; }
.footer__col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer__col a,
.footer__col p {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer__col a:hover { color: var(--white); }
.walkin-pill {
  display: inline-block;
  margin-top: 8px;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.3);
  color: #6eff9e;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}
.footer__bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  max-width: 1100px;
  margin: 0 auto;
}
.footer__bottom a { color: rgba(255,255,255,.45); }
.footer__bottom a:hover { color: var(--white); }

/* ══════════════════════════════════════
   FLOATING WA BUTTON
══════════════════════════════════════ */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 300;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
  transition: transform .2s, box-shadow .2s;
  animation: pulseDot 2.5s ease-in-out infinite;
}
.fab-wa:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.7); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .hero__container { flex-direction: column-reverse; gap: 32px; text-align: center; padding-bottom: 0; }
  .hero__card { width: min(300px, 80vw); }
  .stat-chip--exp     { left: -20px; }
  .stat-chip--rating  { right: -20px; }
  .stat-chip--patients{ left: -20px; }
  .hero__actions, .hero__langs { justify-content: center; }
  .hero__loc { justify-content: center; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 28px; }
  .cta-actions { justify-content: center; }
  .cta-hours { justify-content: center; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .edu-cards { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 90px; }
  .hero__statsbar {
    flex-wrap: wrap;
    gap: 16px;
    border-radius: 20px 20px 0 0;
    padding: 20px;
    justify-content: center;
  }
  .statsbar__div { display: none; }
  .statsbar__item { min-width: 100px; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero__name { font-size: 2.2rem; }
  .hero__card { width: 90vw; }
  .stat-chip--exp, .stat-chip--patients { left: 10px; }
  .stat-chip--rating { right: 10px; }
  .proc-grid { grid-template-columns: 1fr; }
  .edu-cards { grid-template-columns: 1fr; }
  .cta-inner { padding: 28px 20px; }
}
