/* ============================================================
   Ali Health Care Solutions — Shared Design System
   Change the palette / spacing here to restyle the whole site.
   ============================================================ */

:root {
  /* Brand palette */
  --primary:        #0e7c9d;   /* medical teal-blue */
  --primary-dark:   #0a5f79;
  --primary-light:  #17a3cc;
  --primary-50:     #e9f6fa;
  --primary-100:    #cdebf3;
  --accent:         #2fb88a;   /* health green */
  --accent-dark:    #23966e;
  --accent-50:      #e6f7f0;

  /* Neutrals */
  --white:  #ffffff;
  --gray-50:  #f6f9fa;
  --gray-100: #eef2f4;
  --gray-200: #e0e7ea;
  --gray-300: #c9d4d8;
  --gray-400: #97a7ad;
  --gray-500: #647880;
  --gray-600: #47585e;
  --gray-700: #34434a;
  --gray-800: #212c31;
  --gray-900: #131b1e;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-2xl: 32px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(19,27,30,.06), 0 1px 2px rgba(19,27,30,.04);
  --shadow-md: 0 6px 18px rgba(19,27,30,.08);
  --shadow-lg: 0 18px 44px rgba(19,27,30,.12);

  --transition: all .22s cubic-bezier(.4,0,.2,1);
  --container: 1160px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--primary); background: var(--primary-50);
  padding: 6px 14px; border-radius: var(--radius-full); margin-bottom: 16px;
}
h1, h2, h3, h4 { color: var(--gray-900); line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
.section-title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.section-lead { font-size: 1.08rem; color: var(--gray-500); max-width: 620px; margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .95rem; padding: 13px 26px; border-radius: var(--radius-full);
  border: 2px solid transparent; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary-100); }
.btn-outline:hover { border-color: var(--primary); background: var(--primary-50); }
.btn-ghost-light { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.24); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--gray-100);
}
.topbar {
  background: var(--gray-900); color: rgba(255,255,255,.82); font-size: .82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item a { color: rgba(255,255,255,.82); }
.topbar-item.emergency { color: #ffb4a8; font-weight: 700; }
.topbar-right { display: flex; gap: 20px; }
@media (max-width: 700px) { .topbar-right .hide-mobile { display: none; } }

.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 1.05rem; color: var(--gray-900); letter-spacing: -.01em; }
.brand-sub { font-size: .72rem; color: var(--gray-400); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .93rem; font-weight: 600; color: var(--gray-600); padding: 9px 14px;
  border-radius: var(--radius-full); transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); background: var(--primary-50); }
.nav-links a.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 12px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: stretch; gap: 4px; padding: 16px 24px 28px;
    border-bottom: 1px solid var(--gray-100); box-shadow: var(--shadow-lg);
    transform: translateY(-140%); transition: transform .3s ease; z-index: 40;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-cta { display: none; }
  .nav-links .mobile-book { display: block; margin-top: 8px; }
}
.mobile-book { display: none; }

/* ---------- Mobile bottom tab bar ---------- */
.mobile-tabbar { display: none; }
@media (max-width: 900px) {
  body { padding-bottom: 82px; }
  .mobile-tabbar {
    display: flex; align-items: center; justify-content: space-around;
    position: fixed; left: 14px; right: 14px; bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 70; height: 62px; padding: 0 6px; background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: 0 12px 30px rgba(15,23,42,.16), 0 2px 10px rgba(15,23,42,.06);
  }
  .mobile-tab {
    display: flex; align-items: center; justify-content: center; width: 42px; height: 42px;
    border-radius: 50%; color: var(--gray-400); transition: var(--transition); flex-shrink: 0;
  }
  .mobile-tab svg { width: 21px; height: 21px; }
  .mobile-tab:hover, .mobile-tab.active { color: var(--primary); background: var(--primary-50); }
  .mobile-tab-fab {
    display: flex; align-items: center; justify-content: center; width: 56px; height: 56px;
    border-radius: 50%; margin-top: -32px; flex-shrink: 0; color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 8px 20px rgba(14,124,157,.45), 0 0 0 6px var(--white);
    transition: var(--transition);
  }
  .mobile-tab-fab svg { width: 24px; height: 24px; }
  .mobile-tab-fab:hover, .mobile-tab-fab.active { transform: translateY(-2px) scale(1.05); }
}

/* ---------- Hero (photo background, template-matched) ---------- */
.hero { position: relative; overflow: hidden; padding: 120px 0 110px; background: #fff; min-height: 560px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 0%, #fff 30%, rgba(255,255,255,.94) 42%, rgba(255,255,255,.55) 58%, rgba(255,255,255,.08) 74%);
}
.hero .container { position: relative; z-index: 2; }
.hero-copy { max-width: 620px; }
.hero-badge {
  display: inline-block; background: var(--primary); color: #fff; font-weight: 800;
  font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; padding: 12px 22px;
  border-radius: var(--radius-sm); margin-bottom: 40px; box-shadow: var(--shadow-md);
}
.hero-brand-row { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; }
.hero-brand-row svg { width: 56px; height: 56px; flex-shrink: 0; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--primary); margin: 0; line-height: 1.15; }
.hero-sub-label { display: block; font-size: 1rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 8px; }
.hero-lead { font-size: 1.02rem; color: var(--gray-700); margin-bottom: 34px; max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-full); padding: 7px 15px;
  font-size: .84rem; font-weight: 600; color: var(--gray-700); box-shadow: var(--shadow-sm);
}
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }
@media (max-width: 900px) {
  .hero { padding: 90px 0 70px; min-height: 0; }
  .hero-bg::after { background: linear-gradient(180deg, #fff 0%, #fff 38%, rgba(255,255,255,.9) 55%, rgba(255,255,255,.65) 100%); }
  .hero-copy { max-width: 100%; }
}

/* Word-by-word staggered reveal (hero headline/lead) */
.reveal-word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-word-inner {
  display: inline-block; transform: translateY(115%); opacity: 0;
  animation: wordReveal .62s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 55ms);
}
@keyframes wordReveal { to { transform: translateY(0); opacity: 1; } }
.reveal-fade-late {
  opacity: 0; transform: translateY(14px);
  animation: fadeUpLate .6s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: .9s;
}
@keyframes fadeUpLate { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal-word-inner { animation: none; transform: none; opacity: 1; }
  .reveal-fade-late { animation: none; opacity: 1; transform: none; }
}

/* Dot-grid decoration (matches template's dotted rectangles) */
.dot-grid {
  position: absolute; width: 46px; height: 150px;
  background-image: radial-gradient(circle, currentColor 1.6px, transparent 1.7px);
  background-size: 10px 10px; opacity: .5; pointer-events: none;
}
.dot-grid.light { color: rgba(255,255,255,.85); }
.dot-grid.dark { color: var(--primary-200, var(--primary-100)); }

/* Hero visual card */
.hero-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 30px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
}
.hero-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-card-badge { width: 46px; height: 46px; border-radius: 13px; background: var(--primary-50); display: grid; place-items: center; font-size: 1.4rem; }
.hero-card-title { font-weight: 800; color: var(--gray-900); }
.hero-card-sub { font-size: .82rem; color: var(--gray-400); }
.hero-service-row {
  display: flex; align-items: center; gap: 14px; padding: 14px; border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); margin-bottom: 12px; transition: var(--transition);
}
.hero-service-row:hover { border-color: var(--primary-100); background: var(--primary-50); }
.hero-service-row:last-child { margin-bottom: 0; }
.hero-service-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.hero-service-txt strong { display: block; color: var(--gray-800); font-size: .95rem; }
.hero-service-txt span { font-size: .8rem; color: var(--gray-500); }

@media (max-width: 900px) {
  .hero { padding: 60px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { order: 2; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  position: relative; overflow: hidden; padding: 64px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 55%, var(--primary) 130%);
}
.trust-strip::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 12% 25%, rgba(255,255,255,.05), transparent 40%),
                     radial-gradient(circle at 88% 75%, rgba(255,255,255,.06), transparent 40%);
}
.trust-grid { position: relative; z-index: 1; display: flex; justify-content: center; align-items: flex-start; gap: 64px; flex-wrap: wrap; text-align: center; }
.trust-ring { position: relative; width: 108px; height: 108px; margin: 0 auto 16px; }
.trust-ring svg { width: 100%; height: 100%; transform: rotate(-45deg); }
.trust-ring .track { fill: none; stroke: rgba(255,255,255,.18); stroke-width: 5; }
.trust-ring .prog { fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; stroke-dasharray: 225 276.5; }
.trust-num {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.02em;
}
.trust-num span { color: var(--accent); }
.trust-item .label { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.68); }
@media (max-width: 640px) { .trust-grid { gap: 32px 28px; } .trust-ring { width: 88px; height: 88px; } .trust-num { font-size: 1.25rem; } }

/* ---------- Stat choice (label + big blue number) ---------- */
.stat-choice-list { display: flex; flex-direction: column; gap: 26px; }
.stat-choice .label { font-size: .84rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.stat-choice .value { font-size: 2.6rem; font-weight: 800; color: var(--primary); letter-spacing: -.02em; }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 34px 28px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--primary-100); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-ico {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.7rem; margin-bottom: 20px; background: var(--primary-50); color: var(--primary);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { font-size: .95rem; color: var(--gray-500); margin-bottom: 18px; }
.service-link { font-weight: 700; font-size: .9rem; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Radial hub services (identical layout at every viewport, scaled via em) ---------- */
.radial-wrap {
  font-size: clamp(8px, 2.6vw, 15px); /* single scale factor drives the whole component */
  width: 56em; max-width: 100%; margin: 0 auto; position: relative; height: 34em;
}
.radial-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.rline { fill: none; stroke-width: 2.2; stroke-dasharray: 1 6; stroke-linecap: round; }
.rline.cyan { stroke: #17b6d6; } .rline.purple { stroke: #6a3fd6; } .rline.orange { stroke: #f6a623; }
.rline.coral { stroke: #f2703a; } .rline.pink { stroke: #ea2f5e; } .rline.teal { stroke: #0a9b8c; }

.radial-hub {
  position: absolute; left: 0; top: 9em; width: 16em; height: 16em; border-radius: 50%; z-index: 1;
  background: conic-gradient(from -90deg,
    #17b6d6 0deg 55deg, transparent 55deg 60deg,
    #6a3fd6 60deg 115deg, transparent 115deg 120deg,
    #f6a623 120deg 175deg, transparent 175deg 180deg,
    #f2703a 180deg 235deg, transparent 235deg 240deg,
    #ea2f5e 240deg 295deg, transparent 295deg 300deg,
    #0a9b8c 300deg 355deg, transparent 355deg 360deg);
}
.radial-hub-inner {
  position: absolute; inset: 1.9em; border-radius: 50%; background: var(--white);
  box-shadow: inset 0 0 0 1px var(--gray-100), var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.radial-hub-inner span { font-size: 1.3em; font-weight: 900; color: var(--gray-900); line-height: 1.25; }

.radial-card {
  position: absolute; left: 19em; width: calc(100% - 19em); z-index: 1;
  display: flex; align-items: center; gap: 0.7em; background: var(--white);
  border-radius: 999px; padding: 0.5em 1.5em 0.5em 0.5em; box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100); white-space: nowrap;
}
.radial-icon {
  flex-shrink: 0; width: 2.7em; height: 2.7em; border-radius: 50%; display: grid; place-items: center;
}
.radial-icon svg { width: 1.35em; height: 1.35em; }
.radial-text { flex: 1; min-width: 0; overflow: hidden; }
.radial-text h4 { font-size: 0.9em; font-weight: 800; color: var(--gray-900); margin-bottom: 0.1em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.radial-text p { font-size: 0.68em; color: var(--gray-500); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.radial-letter {
  flex-shrink: 0; width: 1.9em; height: 1.9em; border-radius: 50%; background: var(--white);
  display: grid; place-items: center; font-weight: 800; font-size: 0.9em; margin-right: -1.25em;
  box-shadow: var(--shadow-sm);
}
.theme-cyan .radial-icon { background: #17b6d6; } .theme-cyan .radial-letter { border: 2px solid #17b6d6; color: #17b6d6; }
.theme-purple .radial-icon { background: #6a3fd6; } .theme-purple .radial-letter { border: 2px solid #6a3fd6; color: #6a3fd6; }
.theme-orange .radial-icon { background: #f6a623; } .theme-orange .radial-letter { border: 2px solid #f6a623; color: #f6a623; }
.theme-coral .radial-icon { background: #f2703a; } .theme-coral .radial-letter { border: 2px solid #f2703a; color: #f2703a; }
.theme-pink .radial-icon { background: #ea2f5e; } .theme-pink .radial-letter { border: 2px solid #ea2f5e; color: #ea2f5e; }
.theme-teal .radial-icon { background: #0a9b8c; } .theme-teal .radial-letter { border: 2px solid #0a9b8c; color: #0a9b8c; }

/* ---------- Feature / value grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.feature-card { padding: 28px 24px; border-radius: var(--radius-lg); background: var(--gray-50); border: 1px solid var(--gray-100); }
.feature-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--white); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.feature-card h4 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { font-size: .9rem; color: var(--gray-500); }
@media (max-width: 820px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Achievement-style steps (big circle badge + caption) ---------- */
.achieve-section { padding: 88px 0; text-align: center; }
.achieve-section h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 900; color: var(--gray-900); margin-bottom: 56px; }
.achieve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.achieve-item { display: flex; flex-direction: column; align-items: center; }
.achieve-badge {
  width: 120px; height: 120px; border-radius: 50%; background: var(--primary);
  display: grid; place-items: center; margin-bottom: 26px; box-shadow: var(--shadow-md);
}
.achieve-badge svg { width: 50px; height: 50px; }
.achieve-item h4 { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .03em; font-size: 1.02rem; margin-bottom: 10px; }
.achieve-item p { color: var(--gray-600); font-size: .93rem; max-width: 260px; line-height: 1.6; }
.achieve-underline { width: 56px; height: 6px; background: var(--primary); border-radius: 4px; margin: 30px auto 0; }
@media (max-width: 820px) { .achieve-grid { grid-template-columns: 1fr; gap: 46px; } .achieve-underline { display: none; } }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-visual {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-xl);
  min-height: 340px; padding: 40px; color: #fff; display: flex; flex-direction: column; justify-content: center;
}
.split-visual .big { font-size: 3rem; font-weight: 800; }
.split-visual .big span { color: var(--accent-50); }
.split-visual p { color: rgba(255,255,255,.82); margin-top: 8px; }
.split-list { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .98rem; color: var(--gray-700); }
.split-list li::before {
  content: '✓'; flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--primary-50); color: var(--primary); font-weight: 800; font-size: .8rem;
  display: grid; place-items: center; margin-top: 2px;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.reverse .split-visual { order: -1; } }

/* ---------- Healthcare built around you (split panel) ---------- */
.care-around {
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 620px;
}
.care-around-copy { padding: 84px 64px; display: flex; flex-direction: column; justify-content: center; }
.care-around-copy h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.15;
  margin-bottom: 36px; color: var(--gray-900);
}
.care-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px; }
.care-ico {
  flex-shrink: 0; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center;
}
.care-ico svg { width: 26px; height: 26px; }
.care-ico.theme-cyan { background: var(--primary); }
.care-ico.theme-teal { background: var(--accent); }
.care-text h4 { color: var(--primary); font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.care-text p { color: var(--gray-500); font-size: .95rem; max-width: 380px; }
.care-item-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 6px 0 30px; }
.care-item-sm h4 { color: var(--primary); font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.care-item-sm p { color: var(--gray-500); font-size: .88rem; line-height: 1.6; }
.care-around-photo { position: relative; overflow: hidden; background: var(--primary); }
.care-around-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 980px) {
  .care-around { grid-template-columns: 1fr; }
  .care-around-copy { padding: 56px 24px; order: 1; }
  .care-around-photo { order: 0; height: 320px; }
  .care-item-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Doctors page — introducing our best doctors ---------- */
.doc-intro { position: relative; overflow: hidden; padding: 64px 0 80px; }
.doc-blob { position: absolute; border-radius: 50%; background: var(--primary); z-index: 0; }
.doc-blob-top { width: 240px; height: 240px; top: -110px; right: -70px; }
.doc-blob-bottom { width: 150px; height: 150px; bottom: -70px; left: -60px; opacity: .9; }
.doc-intro .container { position: relative; z-index: 1; }
.doc-intro-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; margin-top: 18px; }
.doc-intro-copy h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 900; line-height: 1.15; color: var(--gray-900); margin-bottom: 56px; }
.doc-intro-note p { color: var(--gray-600); font-size: .96rem; max-width: 380px; line-height: 1.7; }
.doc-intro-list { display: flex; flex-direction: column; gap: 36px; }
.doc-intro-row { display: flex; align-items: center; gap: 26px; }
.doc-intro-photo {
  flex-shrink: 0; width: 116px; height: 116px; border-radius: 50%; overflow: hidden;
  background: var(--gray-100); box-shadow: var(--shadow-md);
}
.doc-intro-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.doc-intro-text .name { display: block; font-size: 1.15rem; font-weight: 800; color: var(--primary); }
.doc-intro-text .role { display: block; font-size: .82rem; font-weight: 700; color: var(--gray-800); text-transform: uppercase; letter-spacing: .02em; margin: 2px 0 8px; }
.doc-intro-text p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; max-width: 420px; }
@media (max-width: 900px) {
  .doc-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .doc-intro-copy h1 { margin-bottom: 28px; }
  .doc-intro-row { gap: 18px; }
  .doc-intro-photo { width: 92px; height: 92px; }
}

/* ---------- Introducing our best doctor ---------- */
.intro-doctor-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.intro-doctor-photo-wrap { position: relative; max-width: 420px; }
.intro-blob { position: absolute; border-radius: 50%; background: var(--primary); z-index: 0; }
.intro-blob-top { width: 220px; height: 220px; top: -60px; left: -60px; }
.intro-blob-bottom { width: 130px; height: 130px; bottom: -30px; right: -30px; opacity: .9; }
.intro-doctor-photo {
  position: relative; z-index: 1; width: 360px; height: 360px; max-width: 100%;
  border-radius: 50%; overflow: hidden; box-shadow: var(--shadow-lg); margin: 0 auto;
}
.intro-doctor-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-doctor-caption { position: relative; z-index: 1; text-align: center; margin-top: 22px; }
.intro-doctor-caption .name { display: block; font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.intro-doctor-caption .role { display: block; font-size: .92rem; font-weight: 700; color: var(--gray-800); margin-top: 2px; }
.intro-doctor-copy h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 900; line-height: 1.15; margin-bottom: 32px; color: var(--gray-900); }
.intro-doctor-item h4 { color: var(--primary); font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.intro-doctor-item p { color: var(--gray-500); font-size: .92rem; line-height: 1.6; max-width: 460px; }
@media (max-width: 900px) {
  .intro-doctor-grid { grid-template-columns: 1fr; gap: 44px; }
  .intro-doctor-photo-wrap { margin: 0 auto; }
}

/* ---------- Photo frames (template-matched) ---------- */
.ring-decor {
  position: absolute; border-radius: 50%; border: 22px solid transparent;
  border-top-color: var(--primary); border-right-color: var(--primary-light);
  pointer-events: none; z-index: 0;
}
.circle-photo-wrap { position: relative; display: flex; justify-content: center; }
.circle-photo {
  width: 380px; height: 380px; border-radius: 50%; overflow: hidden; position: relative; z-index: 1;
  box-shadow: var(--shadow-lg);
}
.circle-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.circle-photo-wrap .ring-decor { width: 380px; height: 380px; bottom: -34px; right: -34px; top: auto; left: auto; }
@media (max-width: 640px) { .circle-photo, .circle-photo-wrap .ring-decor { width: 280px; height: 280px; } }

.arch-photo {
  border-radius: 260px 260px 0 0; overflow: hidden; box-shadow: var(--shadow-md);
  max-width: 420px; margin: 0 auto;
}
.arch-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4; }

.banner-photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 32px; }
.banner-photo img { width: 100%; max-height: 340px; object-fit: cover; display: block; }

/* Feature bullet — gradient circle + bold title (no card) */
.feature-bullet { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.feature-bullet .fb-dot {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; margin-top: 2px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}
.feature-bullet strong { display: block; font-size: 1.08rem; color: var(--gray-900); font-weight: 800; }
.feature-bullet p { font-size: .92rem; color: var(--gray-500); margin-top: 4px; }

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--primary-50); padding: 66px 0 58px; position: relative; overflow: hidden; text-align: center; }
.page-head::before { content:''; position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:520px; height:320px; background: radial-gradient(circle, rgba(23,163,204,.18), transparent 65%); }
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.page-head p { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .84rem; color: var(--gray-400); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--primary); }

/* ---------- "What we offer" list ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.offer-item { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); transition: var(--transition); }
.offer-item:hover { border-color: var(--primary-100); box-shadow: var(--shadow-sm); }
.offer-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: var(--primary-50); color: var(--primary); font-weight: 800; display: grid; place-items: center; }
.offer-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.offer-item p { font-size: .9rem; color: var(--gray-500); }
@media (max-width: 720px) { .offer-grid { grid-template-columns: 1fr; } }

/* ---------- Services concept-map layout ---------- */
.concept-section { padding: 84px 0; background: var(--gray-50); }
.concept-grid {
  position: relative; display: grid; grid-template-columns: 1fr 240px 1fr;
  align-items: center; column-gap: 28px; row-gap: 28px;
}
.concept-col { display: flex; flex-direction: column; gap: 26px; position: relative; z-index: 1; }
.concept-center { text-align: center; position: relative; z-index: 1; }
.concept-center h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: var(--gray-900); }
.concept-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.cline { fill: none; stroke-width: 2.5; stroke-dasharray: 1 7; stroke-linecap: round; }
.cline.c-purple { stroke: #8a5cf0; }
.cline.c-pink { stroke: #e05a72; }
.cline.c-teal { stroke: #17a89a; }
.cline.c-yellow { stroke: #e0a512; }
.ctri { opacity: .95; }

.concept-card {
  position: relative; display: flex; align-items: center; gap: 16px;
  padding: 16px 26px 16px 10px; border-radius: 999px;
}
.concept-card .c-num {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: 50%; color: #fff; font-weight: 800;
  font-size: 1.15rem; display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.concept-card h4 { font-size: 1rem; font-weight: 800; color: var(--gray-900); margin-bottom: 3px; }
.concept-card p { font-size: .84rem; color: var(--gray-600); line-height: 1.5; }
.concept-card.theme-purple { background: #efe8fc; } .concept-card.theme-purple .c-num { background: #8a5cf0; }
.concept-card.theme-pink { background: #fbe7ea; } .concept-card.theme-pink .c-num { background: #e05a72; }
.concept-card.theme-teal { background: #e2f5f2; } .concept-card.theme-teal .c-num { background: #17a89a; }
.concept-card.theme-yellow { background: #fbf0d9; } .concept-card.theme-yellow .c-num { background: #e0a512; }

@media (max-width: 860px) {
  .concept-grid { grid-template-columns: 1fr; }
  .concept-svg { display: none; }
  .concept-center { order: -1; margin-bottom: 8px; }
  .concept-card { padding: 14px 20px 14px 8px; }
  .concept-card .c-num { width: 52px; height: 52px; font-size: 1rem; }
}

/* ---------- Doctor cards ---------- */
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.doctor-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-2xl); overflow: hidden; transition: var(--transition); }
.doctor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-100); }
.doctor-photo { height: 200px; background: linear-gradient(135deg, var(--primary-50), var(--primary-100)); display: grid; place-items: center; font-size: 3.2rem; overflow: hidden; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doctor-body { padding: 22px 24px; }
.doctor-body h3 { font-size: 1.12rem; margin-bottom: 4px; }
.doctor-spec { color: var(--primary); font-weight: 700; font-size: .86rem; margin-bottom: 10px; }
.doctor-body p { font-size: .88rem; color: var(--gray-500); margin-bottom: 6px; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.doctor-tags span { font-size: .74rem; font-weight: 600; color: var(--gray-600); background: var(--gray-100); padding: 4px 10px; border-radius: var(--radius-full); }
@media (max-width: 900px) { .doctor-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-section {
  position: relative; overflow: hidden; padding: 88px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 55%, var(--primary) 130%);
}
.testi-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,.05), transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(255,255,255,.06), transparent 40%);
}
.testi-section .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.testi-section .section-title { color: #fff; }
.testi-section .section-lead { color: rgba(255,255,255,.65); }
.testi-dots { position: absolute; z-index: 0; }
.testi-dots.tl { top: 34px; right: 54px; }
.testi-dots.br { bottom: 34px; left: 54px; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; position: relative; z-index: 1; }
.testi-card {
  position: relative; background: var(--white); border-radius: var(--radius-2xl);
  padding: 36px 30px 30px; text-align: left; box-shadow: var(--shadow-lg); overflow: visible;
}
.testi-quote {
  position: absolute; top: -20px; left: 26px; width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff; display: grid; place-items: center;
  font-family: Georgia, serif; font-size: 1.8rem; font-weight: 900; line-height: 1; box-shadow: var(--shadow-md);
}
.testi-stars { color: #f2b134; letter-spacing: 2px; margin: 18px 0 16px; font-size: .95rem; }
.testi-card p { font-size: .93rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.testi-divider { border: none; border-top: 1px solid var(--gray-200); margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-50); display: grid; place-items: center; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.testi-name { font-weight: 800; font-size: .92rem; color: var(--gray-800); }
.testi-role { font-size: .78rem; color: var(--gray-400); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 14px; overflow: hidden; background: var(--white); }
.faq summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--gray-800); font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 400; transition: var(--transition); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; color: var(--gray-500); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; right:-80px; top:-80px; width:300px; height:300px; background: radial-gradient(circle, rgba(47,184,138,.3), transparent 60%); border-radius:50%; }
.cta-inner { text-align: center; position: relative; z-index: 2; padding: 72px 0; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px dashed var(--gray-200); }
.contact-row:last-child { border-bottom: none; }
.contact-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--primary-50); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; font-size: 1.05rem; }
.contact-row strong { display: block; font-size: .92rem; color: var(--gray-800); }
.contact-row span, .contact-row a { font-size: .88rem; color: var(--gray-500); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); margin-top: 24px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.form-card .form-sub { font-size: .9rem; color: var(--gray-500); margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .86rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: inherit; font-size: .95rem; color: var(--gray-800); background: var(--gray-50); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px var(--primary-50);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-success { display: none; padding: 16px; border-radius: var(--radius-md); background: var(--primary-50); color: var(--primary-dark); font-weight: 600; font-size: .92rem; margin-top: 16px; border: 1px solid var(--primary-100); }
.form-success.show { display: block; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; color: #fff; font-size: 1.6rem;
  box-shadow: var(--shadow-lg); z-index: 60; transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 900px) { .wa-float { bottom: 96px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .9rem; margin: 16px 0; max-width: 300px; line-height: 1.7; }
.footer-col h5 { color: #fff; font-size: .95rem; margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; font-size: .9rem; color: rgba(255,255,255,.62); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; padding: 6px 0; }
.footer-contact-item .ico { color: var(--accent); flex-shrink: 0; }
max-width: 420px; margin: 0 auto;
}
.arch-photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4; }

.banner-photo { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 32px; }
.banner-photo img { width: 100%; max-height: 340px; object-fit: cover; display: block; }

/* Feature bullet — gradient circle + bold title (no card) */
.feature-bullet { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.feature-bullet .fb-dot {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; margin-top: 2px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}
.feature-bullet strong { display: block; font-size: 1.08rem; color: var(--gray-900); font-weight: 800; }
.feature-bullet p { font-size: .92rem; color: var(--gray-500); margin-top: 4px; }

/* ---------- Page header (inner pages) ---------- */
.page-head { background: var(--primary-50); padding: 66px 0 58px; position: relative; overflow: hidden; text-align: center; }
.page-head::before { content:''; position:absolute; top:-120px; left:50%; transform:translateX(-50%); width:520px; height:320px; background: radial-gradient(circle, rgba(23,163,204,.18), transparent 65%); }
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.page-head p { font-size: 1.1rem; color: var(--gray-600); max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .84rem; color: var(--gray-400); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--primary); }

/* ---------- "What we offer" list ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.offer-item { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); transition: var(--transition); }
.offer-item:hover { border-color: var(--primary-100); box-shadow: var(--shadow-sm); }
.offer-num { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: var(--primary-50); color: var(--primary); font-weight: 800; display: grid; place-items: center; }
.offer-item h4 { font-size: 1.05rem; margin-bottom: 6px; }
.offer-item p { font-size: .9rem; color: var(--gray-500); }
@media (max-width: 720px) { .offer-grid { grid-template-columns: 1fr; } }

/* ---------- Services concept-map layout ---------- */
.concept-section { padding: 84px 0; background: var(--gray-50); }
.concept-grid {
  position: relative; display: grid; grid-template-columns: 1fr 240px 1fr;
  align-items: center; column-gap: 28px; row-gap: 28px;
}
.concept-col { display: flex; flex-direction: column; gap: 26px; position: relative; z-index: 1; }
.concept-center { text-align: center; position: relative; z-index: 1; }
.concept-center h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: var(--gray-900); }
.concept-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.cline { fill: none; stroke-width: 2.5; stroke-dasharray: 1 7; stroke-linecap: round; }
.cline.c-purple { stroke: #8a5cf0; }
.cline.c-pink { stroke: #e05a72; }
.cline.c-teal { stroke: #17a89a; }
.cline.c-yellow { stroke: #e0a512; }
.ctri { opacity: .95; }

.concept-card {
  position: relative; display: flex; align-items: center; gap: 16px;
  padding: 16px 26px 16px 10px; border-radius: 999px;
}
.concept-card .c-num {
  flex-shrink: 0; width: 62px; height: 62px; border-radius: 50%; color: #fff; font-weight: 800;
  font-size: 1.15rem; display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.concept-card h4 { font-size: 1rem; font-weight: 800; color: var(--gray-900); margin-bottom: 3px; }
.concept-card p { font-size: .84rem; color: var(--gray-600); line-height: 1.5; }
.concept-card.theme-purple { background: #efe8fc; } .concept-card.theme-purple .c-num { background: #8a5cf0; }
.concept-card.theme-pink { background: #fbe7ea; } .concept-card.theme-pink .c-num { background: #e05a72; }
.concept-card.theme-teal { background: #e2f5f2; } .concept-card.theme-teal .c-num { background: #17a89a; }
.concept-card.theme-yellow { background: #fbf0d9; } .concept-card.theme-yellow .c-num { background: #e0a512; }

@media (max-width: 860px) {
  .concept-grid { grid-template-columns: 1fr; }
  .concept-svg { display: none; }
  .concept-center { order: -1; margin-bottom: 8px; }
  .concept-card { padding: 14px 20px 14px 8px; }
  .concept-card .c-num { width: 52px; height: 52px; font-size: 1rem; }
}

/* ---------- Doctor cards ---------- */
.doctor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 48px; }
.doctor-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-2xl); overflow: hidden; transition: var(--transition); }
.doctor-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-100); }
.doctor-photo { height: 200px; background: linear-gradient(135deg, var(--primary-50), var(--primary-100)); display: grid; place-items: center; font-size: 3.2rem; overflow: hidden; }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doctor-body { padding: 22px 24px; }
.doctor-body h3 { font-size: 1.12rem; margin-bottom: 4px; }
.doctor-spec { color: var(--primary); font-weight: 700; font-size: .86rem; margin-bottom: 10px; }
.doctor-body p { font-size: .88rem; color: var(--gray-500); margin-bottom: 6px; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.doctor-tags span { font-size: .74rem; font-weight: 600; color: var(--gray-600); background: var(--gray-100); padding: 4px 10px; border-radius: var(--radius-full); }
@media (max-width: 900px) { .doctor-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-section {
  position: relative; overflow: hidden; padding: 88px 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 55%, var(--primary) 130%);
}
.testi-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,.05), transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(255,255,255,.06), transparent 40%);
}
.testi-section .eyebrow { background: rgba(255,255,255,.12); color: #fff; }
.testi-section .section-title { color: #fff; }
.testi-section .section-lead { color: rgba(255,255,255,.65); }
.testi-dots { position: absolute; z-index: 0; }
.testi-dots.tl { top: 34px; right: 54px; }
.testi-dots.br { bottom: 34px; left: 54px; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; position: relative; z-index: 1; }
.testi-card {
  position: relative; background: var(--white); border-radius: var(--radius-2xl);
  padding: 36px 30px 30px; text-align: left; box-shadow: var(--shadow-lg); overflow: visible;
}
.testi-quote {
  position: absolute; top: -20px; left: 26px; width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: #fff; display: grid; place-items: center;
  font-family: Georgia, serif; font-size: 1.8rem; font-weight: 900; line-height: 1; box-shadow: var(--shadow-md);
}
.testi-stars { color: #f2b134; letter-spacing: 2px; margin: 18px 0 16px; font-size: .95rem; }
.testi-card p { font-size: .93rem; color: var(--gray-600); margin-bottom: 20px; line-height: 1.7; }
.testi-divider { border: none; border-top: 1px solid var(--gray-200); margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary-50); display: grid; place-items: center; font-weight: 800; color: var(--primary); flex-shrink: 0; }
.testi-name { font-weight: 800; font-size: .92rem; color: var(--gray-800); }
.testi-role { font-size: .78rem; color: var(--gray-400); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 14px; overflow: hidden; background: var(--white); }
.faq summary {
  cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--gray-800); font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); font-weight: 400; transition: var(--transition); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; color: var(--gray-500); font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); position: relative; overflow: hidden; }
.cta-band::before { content:''; position:absolute; right:-80px; top:-80px; width:300px; height:300px; background: radial-gradient(circle, rgba(47,184,138,.3), transparent 60%); border-radius:50%; }
.cta-inner { text-align: center; position: relative; z-index: 2; padding: 72px 0; }
.cta-inner h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px dashed var(--gray-200); }
.contact-row:last-child { border-bottom: none; }
.contact-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--primary-50); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; font-size: 1.05rem; }
.contact-row strong { display: block; font-size: .92rem; color: var(--gray-800); }
.contact-row span, .contact-row a { font-size: .88rem; color: var(--gray-500); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); margin-top: 24px; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.form-card .form-sub { font-size: .9rem; color: var(--gray-500); margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .86rem; font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-md);
  font-family: inherit; font-size: .95rem; color: var(--gray-800); background: var(--gray-50); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px var(--primary-50);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-success { display: none; padding: 16px; border-radius: var(--radius-md); background: var(--primary-50); color: var(--primary-dark); font-weight: 600; font-size: .92rem; margin-top: 16px; border: 1px solid var(--primary-100); }
.form-success.show { display: block; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; color: #fff; font-size: 1.6rem;
  box-shadow: var(--shadow-lg); z-index: 60; transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 900px) { .wa-float { bottom: 96px; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { font-size: .9rem; margin: 16px 0; max-width: 300px; line-height: 1.7; }
.footer-col h5 { color: #fff; font-size: .95rem; margin-bottom: 16px; font-weight: 700; }
.footer-col a, .footer-col p { display: block; font-size: .9rem; color: rgba(255,255,255,.62); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; padding: 6px 0; }
.footer-contact-item .ico { color: var(--accent); flex-shrink: 0; }
.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: var(--transition); }
.social-row a:hover { background: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.5); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.badge-soft { display: inline-block; font-size: .78rem; font-weight: 700; color: var(--accent-dark); background: var(--accent-50); padding: 5px 12px; border-radius: var(--radius-full); }
.mb-0 { margin-bottom: 0; }
.lead-block { max-width: 720px; }
.lead-block p { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 18px; }

/* ============================================================
   Section Wipes (Manual) Scroll Effect — ALL DEVICES
   ============================================================ */

/*
 * These rules are gated behind .scroll-wipes-enabled which is
 * added by JS only after GSAP + ScrollTrigger have loaded and
 * initialized.  This prevents any FOUC on page load.
 */
.scroll-wipes-enabled #pinContainer {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-wipes-enabled .panel {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1;
}

/* Hero panel — base layer */
.scroll-wipes-enabled .panel.hero-panel {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}
.scroll-wipes-enabled .panel.hero-panel .hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
}
.scroll-wipes-enabled .panel.hero-panel .trust-strip {
  padding: 24px 0;
}

/* Services panel */
.scroll-wipes-enabled .panel.services-panel {
  z-index: 2;
  background: var(--white);
  padding-top: 80px;
}

/* Care panel */
.scroll-wipes-enabled .panel.care-panel {
  z-index: 3;
  background: var(--white);
}

/* Doctor panel */
.scroll-wipes-enabled .panel.doctor-panel {
  z-index: 4;
  background: var(--white);
  padding-top: 80px;
}

/* Testimonials panel */
.scroll-wipes-enabled .panel.testimonial-panel {
  z-index: 5;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 55%, var(--primary) 130%);
  padding-top: 80px;
}

/* ---- Desktop-specific tweaks ---- */
@media (min-width: 992px) {
  .scroll-wipes-enabled .panel.hero-panel .hero {
    padding: 120px 0 60px;
  }
  .scroll-wipes-enabled .panel.hero-panel .trust-strip {
    padding: 30px 0;
  }
  .scroll-wipes-enabled .panel.services-panel,
  .scroll-wipes-enabled .panel.doctor-panel,
  .scroll-wipes-enabled .panel.testimonial-panel {
    padding-top: 120px;
  }
  .scroll-wipes-enabled .panel.care-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .scroll-wipes-enabled .panel.care-panel .care-around-copy {
    padding-top: 120px;
    padding-left: 64px;
    padding-right: 64px;
  }
}

/* ---- Mobile-specific tweaks ---- */
@media (max-width: 991px) {
  /* A finger-swipe must drive the wipe timeline, not scroll a panel's own
     overflow. Panels are scaled to fit one screen on mobile, so clip any
     minor overflow instead of letting it steal the gesture. */
  .scroll-wipes-enabled .panel {
    overflow: hidden;
  }
  .scroll-wipes-enabled .panel.care-panel {
    display: flex;
    flex-direction: column;
  }
  .scroll-wipes-enabled .panel.care-panel .care-around-copy {
    padding: 40px 20px;
    order: 1;
  }
  .scroll-wipes-enabled .panel.care-panel .care-around-photo {
    height: 200px;
    order: 0;
  }
  .scroll-wipes-enabled .panel.services-panel .container,
  .scroll-wipes-enabled .panel.doctor-panel .container,
  .scroll-wipes-enabled .panel.testimonial-panel .container {
    padding-top: 10px;
  }
  /* Scale down radial-wrap on mobile inside pinned panel */
  .scroll-wipes-enabled .radial-wrap {
    font-size: clamp(6px, 2.2vw, 10px);
  }
  /* Make testi grid single column */
  .scroll-wipes-enabled .testi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Intro doctor grid single column */
  .scroll-wipes-enabled .intro-doctor-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .scroll-wipes-enabled .intro-doctor-photo {
    width: 200px;
    height: 200px;
  }
}
