/* almadinapolyclinic — main stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --pink:   #ff7cb5;
  --peach:  #ffc56b;
  --sky:    #7cc8ff;
  --mint:   #8fe3c4;
  --lilac:  #c2a7ff;
  --sun:    #ffd93d;
  --ink:    #1b1740;
  --muted:  #6d6a85;
  --cream:  #fff5ec;
  --paper:  #fffaf4;
  --card:   #ffffff;
  --shadow: 0 20px 50px rgba(27, 23, 64, .10);
  --shadow-lg: 0 30px 80px rgba(27, 23, 64, .18);
  --grad: linear-gradient(135deg, #ff7cb5 0%, #c2a7ff 50%, #7cc8ff 100%);
  --grad-warm: linear-gradient(135deg, #ff7cb5 0%, #ffc56b 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.65;
  cursor: none;
}
h1,h2,h3,h4,h5 { font-family: 'Baloo 2', sans-serif; line-height: 1.15; font-weight: 700; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--pink); }

/* cursor */
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9999; border-radius: 50%; transform: translate(-50%,-50%);
  transition: opacity .2s;
}
#cursor-dot { width: 8px; height: 8px; background: var(--pink); }
#cursor-ring { width: 38px; height: 38px; border: 2px solid var(--pink); transition: transform .18s ease-out, width .2s, height .2s, background .2s; }
#cursor-ring.hover { width: 60px; height: 60px; background: rgba(255,124,181,.15); border-color: var(--pink); }
@media (max-width: 900px) { #cursor-dot, #cursor-ring { display: none; } body { cursor: auto; } }

/* floating germs */
.balloons { position: fixed; inset: 0; pointer-events: none; z-index: 45; overflow: hidden; }
.balloon {
  position: absolute; font-size: 40px; opacity: .95;
  animation: drift-germ 16s linear infinite;
  pointer-events: auto; cursor: pointer;
  transition: transform .15s, filter .2s;
  user-select: none;
  filter: drop-shadow(0 6px 10px rgba(124, 200, 255, .4));
  will-change: transform;
}
.balloon:hover { transform: scale(1.3) rotate(15deg); filter: drop-shadow(0 8px 16px rgba(255, 124, 181, .6)); }
.balloon.popping { animation: zap .5s forwards; pointer-events: none; }
@keyframes zap {
  0%   { transform: scale(1) rotate(0); opacity: 1; filter: drop-shadow(0 0 0 #fff); }
  30%  { transform: scale(1.8) rotate(-20deg); opacity: 1; filter: drop-shadow(0 0 20px var(--pink)) brightness(1.5); }
  100% { transform: scale(0) rotate(180deg); opacity: 0; }
}
@keyframes drift-germ {
  0%   { transform: translate(0, 110vh) rotate(0); opacity: 0; }
  10%  { opacity: .9; }
  25%  { transform: translate(20px, 70vh) rotate(90deg); }
  50%  { transform: translate(-15px, 40vh) rotate(180deg); }
  75%  { transform: translate(25px, 20vh) rotate(270deg); }
  90%  { opacity: .85; }
  100% { transform: translate(0, -15vh) rotate(360deg); opacity: 0; }
}
.pop-burst {
  position: fixed; pointer-events: none; z-index: 3;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 22px;
  color: var(--pink); transform: translate(-50%,-50%);
  animation: burst .7s forwards;
}
@keyframes burst {
  0%   { transform: translate(-50%,-50%) scale(.5); opacity: 0; }
  30%  { transform: translate(-50%,-80%) scale(1.2); opacity: 1; }
  100% { transform: translate(-50%,-140%) scale(.9); opacity: 0; }
}
.pop-score {
  position: fixed; top: 80px; right: 20px; z-index: 60;
  background: var(--ink); color: var(--peach);
  padding: 10px 18px; border-radius: 999px;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 15px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px;
  opacity: 0; transform: translateY(-10px); transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.pop-score.show { opacity: 1; transform: translateY(0); }
.b1 { left: 6%;   animation-delay: 0s;   font-size: 42px; }
.b2 { left: 26%;  animation-delay: -4s;  font-size: 34px; animation-duration: 14s; filter: hue-rotate(70deg) drop-shadow(0 6px 10px rgba(140, 240, 180, .5)); }
.b3 { left: 52%;  animation-delay: -9s;  font-size: 46px; animation-duration: 18s; filter: hue-rotate(-50deg) drop-shadow(0 6px 10px rgba(255, 140, 200, .5)); }
.b4 { left: 76%;  animation-delay: -12s; font-size: 36px; animation-duration: 15s; filter: hue-rotate(150deg) drop-shadow(0 6px 10px rgba(180, 140, 255, .5)); }
.b5 { left: 90%;  animation-delay: -6s;  font-size: 38px; animation-duration: 17s; filter: hue-rotate(220deg) drop-shadow(0 6px 10px rgba(255, 200, 120, .5)); }

/* navbar */
.nav {
  position: sticky; top: 12px; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  margin: 12px 20px 0;
  padding: 12px 22px;
  background: rgba(255, 250, 244, .75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(27,23,64,.06);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(27,23,64,.06);
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; font-family: 'Baloo 2', sans-serif; }
.logo-bubble { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; font-size: 22px; background: var(--grad-warm); border-radius: 50%; box-shadow: 0 8px 20px rgba(255,124,181,.4); }
.logo-text em { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: normal; }
.nav-links { display: flex; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 15px;
  transition: background .2s, color .2s, transform .2s;
}
.nav-links a:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--ink); color: white; font-weight: 700;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(27,23,64,.25);
}
.pill-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(27,23,64,.35); }
/* floating call button */
.phone-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
  color: white;
  border-radius: 50%;
  box-shadow:
    0 12px 30px rgba(37, 211, 102, 0.55),
    0 0 0 6px rgba(37, 211, 102, 0.18);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s;
  animation: fab-float 2.6s ease-in-out infinite;
}
.phone-fab:hover {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.7),
    0 0 0 8px rgba(37, 211, 102, 0.25);
}
@keyframes fab-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.fab-icon {
  position: relative; z-index: 2;
  display: inline-flex;
  animation: fab-shake 2.6s ease-in-out infinite;
}
@keyframes fab-shake {
  0%, 50%, 100%  { transform: rotate(0); }
  10%, 30%       { transform: rotate(-18deg); }
  20%, 40%       { transform: rotate(18deg); }
}
.fab-glow {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37, 211, 102, .55);
  animation: fab-pulse 2s ease-out infinite;
  pointer-events: none;
}
.fab-glow-2 { animation-delay: -1s; }
@keyframes fab-pulse {
  0%   { transform: scale(1); opacity: .7; }
  80%  { transform: scale(2);  opacity: 0; }
  100% { transform: scale(2);  opacity: 0; }
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(8px);
  background: var(--ink); color: white;
  padding: 9px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(27,23,64,.25);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.fab-tooltip::after {
  content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg);
  width: 10px; height: 10px; background: var(--ink);
}
.phone-fab:hover .fab-tooltip {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
@media (max-width: 600px) {
  .phone-fab { right: 16px; bottom: 16px; width: 58px; height: 58px; }
  .fab-tooltip { font-size: 12px; padding: 8px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .phone-fab, .fab-icon, .fab-glow { animation: none; }
}
.menu-toggle { display: none; background: none; border: none; font-size: 26px; cursor: none; }

/* buttons */
.cta-main, .cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 800; font-family: 'Baloo 2', sans-serif; font-size: 16px;
  transition: transform .2s, box-shadow .2s;
}
.cta-main {
  background: var(--grad);
  color: white;
  box-shadow: 0 14px 35px rgba(255,124,181,.45);
}
.cta-main:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 20px 40px rgba(255,124,181,.55); }
.cta-main.light { background: white; color: var(--pink); box-shadow: 0 14px 35px rgba(0,0,0,.15); }
.cta-main.light:hover { color: var(--ink); }
.cta-ghost {
  background: white; border: 2px solid var(--ink); color: var(--ink);
}
.cta-ghost:hover { background: var(--ink); color: white; transform: translateY(-4px); }

/* eyebrows + helpers */
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(255,124,181,.12); color: var(--pink);
  font-size: 13px; font-weight: 800; letter-spacing: .5px;
  text-transform: uppercase;
}
.eyebrow.white { background: rgba(255,255,255,.2); color: white; }
.eyebrow.pink { background: var(--pink); color: white; }
.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.sec-head { max-width: 720px; margin: 0 0 60px; }
.sec-head.center { margin: 0 auto 60px; text-align: center; }
.sec-head h2 { font-size: clamp(32px, 5vw, 54px); margin: 14px 0 12px; }
.sec-head p { color: var(--muted); font-size: 17px; }

/* hero */
.hero { position: relative; overflow: hidden; padding: 40px 5% 160px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.grid-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: drift 16s ease-in-out infinite; }
.o1 { width: 420px; height: 420px; background: var(--pink);  top: -120px; left: -100px; }
.o2 { width: 360px; height: 360px; background: var(--lilac); top: 40%;    right: -80px; animation-delay: -5s; }
.o3 { width: 320px; height: 320px; background: var(--sun);   bottom: -80px; left: 30%; animation-delay: -10s; }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-30px); } }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
  max-width: 1280px; margin: 0 auto; padding-top: 40px;
}
.sticker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; background: white; border-radius: 999px;
  box-shadow: var(--shadow); font-weight: 700; font-size: 14px;
  margin-bottom: 22px; transform: rotate(-2deg);
}
.wiggle { animation: wiggle 3s ease-in-out infinite; }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }

.big-title { font-size: clamp(44px, 7vw, 96px); font-weight: 800; letter-spacing: -1px; }
.word-accent { position: relative; display: inline-block; color: var(--pink); }
.word-accent svg { position: absolute; left: 0; bottom: -10px; width: 100%; height: 14px; }
.star { display: inline-block; font-size: .6em; animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.lead { font-size: 18px; color: var(--muted); max-width: 540px; margin: 20px 0 32px; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 40px; flex-wrap: wrap; }
.trust-row { display: flex; align-items: center; gap: 16px; }
.avatars { display: flex; }
.avatars span {
  width: 42px; height: 42px; border-radius: 50%;
  background: white; display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; border: 3px solid var(--paper); margin-left: -10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.avatars span:first-child { margin-left: 0; }
.trust-row strong { color: var(--peach); font-size: 20px; letter-spacing: 2px; }
.trust-row p { font-size: 14px; color: var(--muted); margin: 0; }

/* Hero right — playful scene */
.hero-right { position: relative; height: 560px; }
.scene { position: absolute; inset: 0; }
.sun { position: absolute; top: 10px; right: 20px; font-size: 70px; animation: spin 20s linear infinite; }
.cloud { position: absolute; font-size: 50px; animation: floatX 8s ease-in-out infinite; opacity: .9; }
.c1 { top: 50px; left: 20px; }
.c2 { top: 130px; right: 90px; animation-delay: -4s; font-size: 38px; }
@keyframes floatX { 0%,100% { transform: translateX(0); } 50% { transform: translateX(15px); } }

.bear-wrap { position: absolute; inset: 0; margin: auto; width: 340px; height: 340px; display: flex; align-items: center; justify-content: center; }
.bear-bg {
  position: absolute; inset: 0; margin: auto; width: 100%; height: 100%;
  background: var(--grad);
  border-radius: 42% 58% 60% 40% / 55% 40% 60% 45%;
  animation: morph 10s ease-in-out infinite;
  box-shadow: var(--shadow-lg);
}
@keyframes morph {
  0%,100% { border-radius: 42% 58% 60% 40% / 55% 40% 60% 45%; transform: rotate(0); }
  50%     { border-radius: 60% 40% 40% 60% / 40% 55% 45% 60%; transform: rotate(6deg); }
}
.bear { position: relative; z-index: 2; font-size: 180px; animation: bounce 3s ease-in-out infinite; filter: drop-shadow(0 12px 20px rgba(0,0,0,.2)); }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.sparkle { position: absolute; font-size: 28px; animation: twinkle 2.5s ease-in-out infinite; }
.sp1 { top: 10%;  left: 8%;  }
.sp2 { top: 20%; right: 12%; animation-delay: -1s; font-size: 32px; }
.sp3 { bottom: 15%; left: 15%; animation-delay: -1.5s; }
@keyframes twinkle { 0%,100% { transform: scale(.8) rotate(0); opacity: .6; } 50% { transform: scale(1.2) rotate(20deg); opacity: 1; } }

.float-card {
  position: absolute; background: white; padding: 14px 18px; border-radius: 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg); z-index: 3;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card strong { display: block; font-family: 'Baloo 2', sans-serif; font-size: 15px; }
.float-card small { display: block; color: var(--muted); font-size: 12px; }
.fc-ico { font-size: 30px; }
.fc-ico.pulse { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.fc-1 { top: 20%; left: -6%; }
.fc-2 { top: 50%; right: -2%; animation-delay: -2s; }
.fc-3 { bottom: 10%; left: 6%; animation-delay: -3.5s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.tilt-left  { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }

.wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 100px; z-index: 1; }

/* stats */
.stats { padding: 70px 5% 30px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  border-top: 1px solid rgba(27,23,64,.08);
  border-bottom: 1px solid rgba(27,23,64,.08);
  padding: 36px 0;
}
@media (max-width: 1000px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 0; row-gap: 24px; }
  .stat:nth-child(2) { border-right: none; }
}
.stat { text-align: left; padding: 0 16px; border-right: 1px solid rgba(27,23,64,.08); }
.stat:last-child { border-right: none; }
.stat strong {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  display: block; line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat strong em {
  font-style: normal;
  -webkit-text-fill-color: var(--peach);
  margin-left: 4px;
}
.stat small {
  font-size: 13px; color: var(--muted); font-weight: 700;
  margin-top: 10px; display: block;
  text-transform: uppercase; letter-spacing: .08em;
}
@media (max-width: 700px) {
  .stat-grid { grid-template-columns: 1fr; gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(27,23,64,.08); padding: 20px 0; }
  .stat:last-child { border-bottom: none; }
}

/* marquee */
.marquee {
  background: var(--cream);
  padding: 32px 0; overflow: hidden; position: relative;
  border: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 18px; white-space: nowrap;
  animation: scroll 22s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.chip {
  display: inline-flex; align-items: center;
  padding: 12px 22px; border-radius: 999px;
  font-family: 'Baloo 2', sans-serif; font-weight: 700; font-size: 17px;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(27,23,64,.08);
  transition: transform .3s;
  border: 2px solid white;
}
.chip:hover { transform: translateY(-3px) rotate(-1deg); }
.chip.c-pink   { background: #ffd9e8; }
.chip.c-blue   { background: #d6ecff; }
.chip.c-yellow { background: #fff1c2; }
.chip.c-green  { background: #d6f5e4; }
.chip.c-purple { background: #e7dcff; }
.chip.c-orange { background: #ffe2c9; }

@media (max-width: 600px) {
  .marquee { padding: 20px 0; }
  .marquee-track { gap: 10px; animation-duration: 18s; }
  .chip { padding: 8px 14px; font-size: 13px; }
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* services */
.services { padding: 120px 5%; max-width: 1280px; margin: 0 auto; }
.service-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.srv {
  position: relative;
  background: white; padding: 32px 28px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}
.srv:hover { transform: translateY(-10px) rotate(-.8deg); box-shadow: var(--shadow-lg); }
.srv::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%; opacity: .25; filter: blur(20px);
}
.s-1::before { background: var(--pink); } .s-1 .srv-num { color: var(--pink); }
.s-2::before { background: var(--sky); }   .s-2 .srv-num { color: var(--sky); }
.s-3::before { background: var(--peach); } .s-3 .srv-num { color: var(--peach); }
.s-4::before { background: var(--mint); }  .s-4 .srv-num { color: var(--mint); }
.s-5::before { background: var(--lilac); } .s-5 .srv-num { color: var(--lilac); }
.s-6::before { background: var(--sun); }   .s-6 .srv-num { color: var(--sun); }
.srv-num {
  font-family: 'Baloo 2', sans-serif; font-size: 42px; font-weight: 800;
  opacity: .35; position: relative; z-index: 1;
}
.srv-art { font-size: 56px; margin: 10px 0 18px; position: relative; z-index: 1; display: inline-block; transition: transform .3s; }
.srv:hover .srv-art { transform: rotate(-10deg) scale(1.15); }
.srv h3 { font-size: 24px; margin-bottom: 8px; position: relative; z-index: 1; }
.srv p { color: var(--muted); font-size: 15px; position: relative; z-index: 1; }
.srv-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; position: relative; z-index: 1; }
.srv-tags span {
  background: rgba(27,23,64,.06); padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}

/* doctors */
.doctors { padding: 120px 5%; max-width: 1280px; margin: 0 auto; }

.doc-hero {
  display: grid; grid-template-columns: 340px 1fr; gap: 50px;
  background: white; border-radius: 40px; padding: 50px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
  margin-bottom: 70px;
}
.doc-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; background: var(--grad-warm); opacity: .25;
  border-radius: 50%;
}
.doc-hero::after {
  content: '✨'; position: absolute; bottom: 30px; right: 40px;
  font-size: 40px; opacity: .3; animation: spin 15s linear infinite;
}
.doc-hero-left { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.doc-photo { position: relative; width: 280px; height: 280px; }
.doc-ring {
  position: absolute; inset: 0; border-radius: 50%; background: var(--grad);
  padding: 6px; animation: spin 25s linear infinite;
}
.doc-ring::before {
  content: ''; position: absolute; inset: 6px; background: white; border-radius: 50%;
}
.doc-emoji {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 160px; z-index: 2;
}
.doc-badge {
  position: absolute; top: 14px; right: 0; z-index: 3;
  background: var(--ink); color: var(--peach);
  padding: 8px 16px; border-radius: 999px;
  font-weight: 800; font-size: 13px; font-family: 'Baloo 2', sans-serif;
  box-shadow: var(--shadow);
}
.doc-quick { display: flex; gap: 18px; }
.doc-quick div { text-align: center; background: rgba(255,124,181,.08); padding: 12px 14px; border-radius: 16px; min-width: 70px; }
.doc-quick strong { display: block; font-family: 'Baloo 2', sans-serif; font-size: 18px; color: var(--pink); }
.doc-quick small { display: block; font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .3px; }

.doc-hero-right h3 { font-size: 36px; margin: 10px 0 14px; }
.doc-bio { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 24px; }
.doc-block { margin-top: 20px; position: relative; z-index: 2; }
.doc-block h5 { font-size: 16px; margin-bottom: 12px; color: var(--ink); }
.doc-block ul { list-style: none; }
.doc-block li { padding: 6px 0; font-size: 14.5px; color: var(--ink); }
.doc-block li em { color: var(--muted); font-style: italic; }

.tt { display: flex; flex-direction: column; gap: 10px; }
.tt-row {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  background: linear-gradient(90deg, rgba(255,197,107,.18), rgba(255,124,181,.1));
  border-left: 4px solid var(--peach);
  padding: 12px 18px; border-radius: 14px;
}
.tt-row strong { font-family: 'Baloo 2', sans-serif; min-width: 100px; }
.tt-row .slot { color: var(--muted); font-size: 14px; font-weight: 600; }
.tt-row .slot.closed { color: var(--pink); }

.mini-head { font-family: 'Baloo 2', sans-serif; font-size: 26px; text-align: center; margin: 0 0 30px; }
.doc-pair, .doc-trio { display: grid; gap: 28px; }
.doc-pair { grid-template-columns: 1fr 1fr; max-width: 900px; margin: 0 auto; }
.doc-trio { grid-template-columns: repeat(3, 1fr); }

.dc-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 999px;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 12px;
  letter-spacing: .3px; color: white; white-space: nowrap;
}
.tag-blue  { background: linear-gradient(135deg, #4a6cf7, #1e3c8c); }
.tag-green { background: linear-gradient(135deg, #2eb872, #156a3f); }
.tag-teal  { background: linear-gradient(135deg, #2bb3a8, #155f5a); }

.dc-desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin: 10px 0 14px; }

.dc-schedule { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.dc-schedule > div {
  background: linear-gradient(90deg, rgba(255,197,107,.18), rgba(255,124,181,.1));
  border-left: 4px solid var(--peach);
  padding: 10px 14px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.dc-schedule strong { font-family: 'Baloo 2', sans-serif; font-size: 13px; }
.dc-schedule span { color: var(--muted); font-size: 13px; font-weight: 600; }

.dc-a1 { background: linear-gradient(135deg, var(--lilac), var(--pink)); }
.doc-card {
  background: white; border-radius: 28px; padding: 32px;
  box-shadow: var(--shadow); position: relative;
  transition: transform .3s;
}
.doc-card:hover { transform: translateY(-6px) rotate(-.5deg); }
.dc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dc-avatar {
  width: 80px; height: 80px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center; font-size: 44px;
  transform: rotate(-5deg);
}
.dc-a2 { background: linear-gradient(135deg, var(--sky), var(--lilac)); }
.dc-a3 { background: linear-gradient(135deg, var(--mint), var(--sun)); }
.dc-reg { font-size: 11px; color: var(--lilac); font-weight: 800; letter-spacing: .5px; }
.doc-card h4 { font-size: 22px; margin-bottom: 4px; }
.dc-role { color: var(--pink); font-weight: 700; font-size: 14px; margin-bottom: 14px; }
.dc-list { list-style: none; }
.dc-list li { padding: 4px 0; font-size: 14px; color: var(--muted); }
.dc-list li::before { content: '•'; color: var(--peach); margin-right: 8px; font-weight: 800; }
.dc-when {
  display: inline-block; margin-top: 14px;
  background: var(--ink); color: var(--peach);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 800;
}

/* about */
.about { padding: 120px 5%; max-width: 1280px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about-copy h2 { font-size: clamp(32px, 4.5vw, 52px); margin: 14px 0 18px; }
.about-copy > p { color: var(--muted); font-size: 17px; margin-bottom: 32px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why { background: white; padding: 22px; border-radius: 22px; box-shadow: var(--shadow); transition: transform .3s; }
.why:hover { transform: translateY(-4px) rotate(-1deg); }
.why span { font-size: 32px; display: block; margin-bottom: 10px; }
.why h5 { font-size: 17px; margin-bottom: 4px; }
.why p { color: var(--muted); font-size: 13.5px; }

.about-art { display: flex; justify-content: center; align-items: center; }
.poster {
  background: var(--ink); padding: 24px; border-radius: 32px;
  box-shadow: var(--shadow-lg); transform: rotate(-3deg);
  border: 8px solid white;
  width: 100%; max-width: 380px;
}
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.p-cell {
  aspect-ratio: 1; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; transition: transform .3s;
}
.p-cell:hover { transform: scale(1.15) rotate(10deg); }
.c-pink { background: var(--pink); } .c-yellow { background: var(--sun); }
.c-blue { background: var(--sky); }  .c-green { background: var(--mint); }
.c-purple { background: var(--lilac); } .c-orange { background: var(--peach); }
.poster-label { text-align: center; color: white; padding: 10px 0; }
.poster-label strong { display: block; font-family: 'Baloo 2', sans-serif; font-size: 22px; margin: 2px 0; }
.poster-label small { display: block; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* testimonials */
.testimonials { padding: 120px 5%; max-width: 1280px; margin: 0 auto; }
.t-cards { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 24px; align-items: center; }
.t-card {
  background: white; padding: 30px; border-radius: 28px;
  box-shadow: var(--shadow); position: relative;
  transition: transform .3s;
}
.t-card.big { background: var(--ink); color: white; transform: rotate(1deg) scale(1.04); }
.t-card:hover { transform: translateY(-6px) rotate(0); }
.t-card.big:hover { transform: translateY(-6px) rotate(0) scale(1.04); }
.t-stars { color: var(--peach); letter-spacing: 3px; margin-bottom: 14px; font-size: 18px; }
.t-card p { font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.t-card.big p { font-size: 18px; }
.t-card footer { display: flex; align-items: center; gap: 12px; }
.t-card footer span {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,124,181,.15);
  display: inline-flex; align-items: center; justify-content: center; font-size: 22px;
}
.t-card.big footer span { background: rgba(255,255,255,.15); }
.t-card footer strong { display: block; font-family: 'Baloo 2', sans-serif; }
.t-card footer small { display: block; color: var(--muted); font-size: 12px; }
.t-card.big footer small { color: rgba(255,255,255,.6); }

/* Big quote mark */
.t-card .r-quote {
  position: absolute; top: -8px; left: 24px;
  font-family: 'Baloo 2', sans-serif; font-size: 110px; line-height: 1;
  color: var(--pink); opacity: .22; font-weight: 800;
  pointer-events: none;
}
.t-card.big .r-quote { color: var(--peach); opacity: .35; }

/* Inline emphasis inside quotes */
.t-card p { font-style: normal; }
.t-card p em {
  color: var(--pink); font-style: italic; font-weight: 700;
}
.t-card.big p em { color: var(--peach); }

/* Initial-letter avatar */
.r-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 20px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

/* contact */
.contact { padding: 60px 5% 120px; max-width: 1280px; margin: 0 auto; }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: var(--grad); border-radius: 40px; padding: 56px;
  box-shadow: var(--shadow-lg); color: white;
  position: relative; overflow: hidden;
}
.contact-wrap::before {
  content: '🎈'; position: absolute; top: 24px; right: 30px; font-size: 60px; opacity: .2;
  animation: floatX 5s ease-in-out infinite;
}
.contact-left h2 { font-size: clamp(32px, 4vw, 48px); color: white; margin: 12px 0 12px; }
.contact-lead { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 28px; }
.c-info { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.c-info li { display: flex; gap: 14px; align-items: flex-start; }
.c-ico {
  width: 46px; height: 46px; border-radius: 14px; background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.c-info strong { display: block; font-family: 'Baloo 2', sans-serif; font-size: 17px; margin-bottom: 2px; }
.c-info small { display: block; font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 1.5; }

.contact-right { position: relative; }
.map-card { background: white; padding: 12px; border-radius: 28px; box-shadow: var(--shadow-lg); transform: rotate(1.5deg); overflow: hidden; }
.map-card iframe { width: 100%; height: 460px; border: 0; border-radius: 18px; display: block; filter: saturate(1.15); }
.map-sticker {
  position: absolute; bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink); color: var(--peach);
  padding: 10px 22px; border-radius: 999px;
  font-family: 'Baloo 2', sans-serif; font-weight: 800;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  z-index: 4;
}
@media (max-width: 600px) {
  .map-sticker { font-size: 13px; padding: 8px 16px; bottom: -14px; }
}

/* footer */
.footer { background: var(--ink); color: white; padding: 70px 5% 24px; }
.foot-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.foot-top .logo { color: white; margin-bottom: 12px; }
.foot-top p { color: rgba(255,255,255,.65); }
.foot-top h5 { font-size: 18px; margin-bottom: 14px; }
.foot-top a { display: block; color: rgba(255,255,255,.7); padding: 4px 0; transition: color .2s; }
.foot-top a:hover { color: var(--peach); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center; font-size: 18px; padding: 0;
}
.socials a:hover { background: var(--pink); }
.foot-bot { text-align: center; padding-top: 24px; color: rgba(255,255,255,.5); font-size: 13px; }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* responsive */
@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .hero-inner, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 420px; order: -1; }
  .service-stack, .t-cards, .doc-pair, .doc-trio, .why-grid { grid-template-columns: 1fr 1fr; }
  .doc-hero { grid-template-columns: 1fr; padding: 30px; }
  .doc-photo { width: 220px; height: 220px; margin: 0 auto; }
  .doc-emoji { font-size: 120px; }
  .contact-wrap { grid-template-columns: 1fr; padding: 36px 24px; }
  .t-card.big { transform: none; }
  .foot-top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .service-stack, .t-cards, .doc-pair, .doc-trio, .why-grid { grid-template-columns: 1fr; }
  .bear { font-size: 130px; }
  .bear-wrap { width: 260px; height: 260px; }
  .map-card iframe { height: 340px; }
  .nav { margin: 10px; padding: 10px 16px; }
}
