/* ============================================================
   Physiotherapy by Dr Aleena Sajal — Production CSS
   draleenasajal.com
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; overflow-x: hidden; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f8fafb; color: #1a2332; line-height: 1.5;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; overflow-y: scroll;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif; font-weight: 800; line-height: 1.2; }
img, video, iframe { max-width: 100%; height: auto; }
a { color: #0b8a7e; text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
:focus-visible { outline: 3px solid #0b8a7e; outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }
button, [role="button"], a, input, select, textarea { min-height: 44px; }

/* ---------- CSS Variables ---------- */
:root {
  --teal: #0b8a7e;
  --teal-dark: #0d6b62;
  --teal-deeper: #0a5a52;
  --teal-light: #e6f5f3;
  --teal-mid: #3dbfb3;
  --navy: #1a2332;
  --navy-mid: #3a4f62;
  --gray: #6b7f92;
  --gray-light: #f8fafb;
  --white: #ffffff;
  --green: #27ae60;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-card: 20px;
  --shadow-card: 0 2px 16px rgba(11,138,126,0.06);
  --shadow-hover: 0 16px 40px rgba(11,138,126,0.14);
  --max-w: 1280px;
  --max-w-narrow: 800px;
  --section-pad: 96px 24px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 0; left: 0; width: auto; height: auto; padding: 12px 24px;
  background: var(--teal); color: white; font-weight: 700; font-size: 14px;
  z-index: 9999; border-radius: 0 0 8px 0; clip: auto;
}

/* ---------- Container ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 24px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(11,138,126,0.08);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(11,138,126,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header-logo img { height: 48px; width: auto; display: block; }
.header-logo { display: flex; align-items: center; min-height: 44px; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: #3a4f62; font-family: var(--font-body); transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 4px; min-height: 44px;
}
.nav-link:hover, .nav-link.active { background: var(--teal-light); color: var(--teal); text-decoration: none; }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: white; padding: 10px 18px; border-radius: 50px;
  font-weight: 600; font-size: 13px; font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3); transition: all 0.2s;
  min-height: 44px;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); text-decoration: none; color: white; }

/* Services mega dropdown */
.nav-services { position: relative; }
.nav-services-btn {
  padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: #3a4f62; font-family: var(--font-body); background: none; border: none;
  display: inline-flex; align-items: center; gap: 4px; min-height: 44px; cursor: pointer;
  transition: all 0.2s;
}
.nav-services-btn:hover, .nav-services-btn.active { background: var(--teal-light); color: var(--teal); }
.nav-services-btn svg { transition: transform 0.2s; }
.nav-services-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.mega-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-40%);
  background: white; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(11,138,126,0.16);
  border: 1px solid rgba(11,138,126,0.1);
  display: none; grid-template-columns: 220px 1fr;
  overflow: hidden; width: 680px; z-index: 200;
}
.mega-menu.open { display: grid; }
.mega-cats { background: #f8fafb; border-right: 1px solid rgba(11,138,126,0.08); padding: 8px 0; }
.mega-cat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; cursor: pointer; transition: background 0.15s;
  text-decoration: none; color: #3a4f62; font-size: 12.5px; font-weight: 500;
  font-family: var(--font-body); position: relative; min-height: 44px;
}
.mega-cat-item:hover, .mega-cat-item.active { background: var(--teal-light); color: var(--teal); text-decoration: none; font-weight: 700; }
.mega-cat-item.active::before {
  content: ''; position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px; border-radius: 2px; background: var(--teal);
}
.mega-subs { padding: 16px 20px; }
.mega-subs-title {
  font-size: 11px; font-weight: 700; color: var(--teal); letter-spacing: 0.07em;
  text-transform: uppercase; font-family: var(--font-body); margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(11,138,126,0.08);
}
.mega-subs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega-sub-link {
  display: block; padding: 7px 10px; border-radius: 8px;
  font-size: 12.5px; color: #3a4f62; font-family: var(--font-body);
  font-weight: 500; line-height: 1.4; transition: background 0.15s; min-height: 36px;
}
.mega-sub-link:hover { background: var(--teal-light); text-decoration: none; }
.mega-view-all {
  display: flex; align-items: center; gap: 5px; margin-top: 12px;
  padding-top: 10px; border-top: 1px solid rgba(11,138,126,0.08);
  color: var(--teal); font-size: 12.5px; font-weight: 600; font-family: var(--font-body);
}
.mega-view-all:hover { text-decoration: underline; }

/* Mobile nav */
.mobile-menu-btn {
  display: none; padding: 8px; border-radius: 8px; border: none;
  background: var(--teal-light); color: var(--teal); min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
}
.mobile-nav {
  display: none; background: white;
  border-top: 1px solid rgba(11,138,126,0.1);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  max-height: 80vh; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-link {
  display: block; padding: 12px 16px; font-size: 15px; font-weight: 500;
  color: #3a4f62; font-family: var(--font-body); min-height: 44px; border-radius: 8px;
}
.mobile-nav-link:hover { background: var(--teal-light); text-decoration: none; }
.mobile-nav-section { padding: 8px 16px; font-size: 12px; font-weight: 700; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-nav-cat {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px 10px 28px; font-size: 14px; color: #3a4f62; font-family: var(--font-body);
  border-radius: 8px; min-height: 44px;
}
.mobile-nav-cat:hover { background: var(--teal-light); text-decoration: none; }
.mobile-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: white; padding: 14px; border-radius: 50px;
  font-weight: 600; font-size: 15px; margin-top: 12px; min-height: 44px;
}
.mobile-wa-btn:hover { text-decoration: none; color: white; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; padding-top: 72px;
  background: linear-gradient(145deg, #f8fafb 0%, #e6f5f3 40%, #e8f4fd 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-blob1 {
  position: absolute; top: -120px; right: -120px; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(61,191,179,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-blob2 {
  position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px;
  border-radius: 50%; background: radial-gradient(circle, rgba(39,174,96,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { padding: 64px 0; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid rgba(11,138,126,0.2);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(11,138,126,0.08);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero-badge span { font-size: 13px; font-weight: 600; color: var(--teal); font-family: var(--font-body); }
.hero-h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800; color: var(--navy); line-height: 1.15;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-h1 .accent { color: var(--teal); }
.hero-h1 .grad {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 17px; line-height: 1.75; color: #4a6070; margin-bottom: 40px; font-family: var(--font-body); max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: white; padding: 16px 28px; border-radius: 50px; border: none;
  font-weight: 700; font-size: 15.5px; font-family: var(--font-display);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35); transition: all 0.25s; min-height: 44px;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.45); text-decoration: none; color: white; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--teal); padding: 16px 24px; border-radius: 50px;
  border: 2px solid rgba(11,138,126,0.2); font-weight: 600; font-size: 15px;
  font-family: var(--font-display); transition: all 0.25s; min-height: 44px;
}
.btn-outline:hover { border-color: var(--teal); background: var(--teal-light); text-decoration: none; color: var(--teal); }
.hero-social-proof { display: flex; align-items: center; gap: 20px; }
.avatar-stack { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.avatar + .avatar { margin-left: -10px; }
.avatar span { color: white; font-size: 11px; font-weight: 700; font-family: var(--font-display); }
.stars { display: flex; gap: 3px; }
.star { color: #f5a623; font-size: 13px; }
.hero-rating { font-size: 13px; font-weight: 700; color: var(--navy); margin-left: 4px; }
.hero-patients { font-size: 12px; color: var(--gray); font-family: var(--font-body); margin-top: 2px; }

.hero-image-wrap { position: relative; }
.hero-img-card {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(11,138,126,0.18), 0 8px 24px rgba(0,0,0,0.08);
  aspect-ratio: 4/5; background: #d4eeeb; position: relative;
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-float-card {
  position: absolute; background: white; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); border: 1px solid rgba(11,138,126,0.1);
  display: flex; align-items: center; gap: 12px;
}
.hero-float-1 { bottom: 32px; left: -28px; }
.hero-float-2 { top: 32px; right: -20px; flex-direction: column; align-items: flex-start; }
.float-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #e6f5f3, #d4eeeb);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.float-num { font-weight: 700; font-size: 16px; color: var(--navy); font-family: var(--font-display); }
.float-lbl { font-size: 11px; color: var(--gray); font-family: var(--font-body); }
.float-next-lbl { font-size: 11px; color: var(--gray); font-family: var(--font-body); }
.float-next-val { font-weight: 700; font-size: 14px; color: var(--teal); font-family: var(--font-display); margin-top: 4px; }

/* ---------- Trust Bar ---------- */
.trust-bar { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); padding: 32px 24px; }
.trust-items { display: flex; flex-wrap: nowrap; justify-content: center; gap: 0; }
.trust-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  color: white; border-right: 1px solid rgba(255,255,255,0.15); flex: 1 1 0; min-width: 0;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center;
  color: #7eecd9; flex-shrink: 0;
}
.trust-label { font-size: 13px; font-weight: 600; font-family: var(--font-body); line-height: 1.3; }

/* ---------- Section Headers ---------- */
.section-tag {
  display: inline-block; background: var(--teal-light); color: var(--teal);
  padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  margin-bottom: 16px; font-family: var(--font-body);
}
.section-tag-orange { background: #fff8e6; color: #e67e22; }
.section-h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.02em;
}
.section-desc { font-size: 17px; color: var(--gray); line-height: 1.7; font-family: var(--font-body); }
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-header-center .section-desc { max-width: 520px; margin: 0 auto; }

/* ---------- Services Section ---------- */
.services-section { padding: var(--section-pad); background: var(--gray-light); }
.services-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.services-tab {
  display: flex; align-items: center; gap: 10px; padding: 10px 20px; border-radius: 50px;
  cursor: pointer; border: 2px solid transparent; font-family: var(--font-body); font-weight: 500;
  font-size: 13px; transition: all 0.2s; background: white;
  color: #3a4f62; border-color: rgba(11,138,126,0.1); min-height: 44px;
}
.services-tab.active, .services-tab:hover { background: var(--teal); color: white; border-color: var(--teal); }
.services-panel { display: none; }
.services-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.services-list-col { display: flex; flex-direction: column; gap: 10px; }
.services-list-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-radius: 12px; background: var(--teal-light);
  border: 1px solid rgba(11,138,126,0.12); cursor: pointer; transition: all 0.2s; min-height: 44px;
}
.services-list-item:hover { background: white; box-shadow: 0 4px 16px rgba(11,138,126,0.1); }
.services-list-item a { font-size: 14px; color: var(--navy); font-family: var(--font-body); font-weight: 500; text-decoration: none; }
.services-detail { background: white; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-hover); }
.services-detail-img { position: relative; overflow: hidden; min-height: 320px; }
.services-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.services-detail-body { padding: 28px 32px; }

/* ---------- Card Grids ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; }
.card {
  background: white; border-radius: var(--radius-card); padding: 32px 28px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(11,138,126,0.07);
  transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card-p { font-size: 14px; color: var(--gray); line-height: 1.7; font-family: var(--font-body); }

/* ---------- Neuro Section ---------- */
.neuro-section {
  padding: var(--section-pad);
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 60%, var(--teal-deeper) 100%);
  position: relative; overflow: hidden;
}
.neuro-blob1 {
  position: absolute; top: -100px; right: -100px; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none;
}
.neuro-blob2 {
  position: absolute; bottom: -60px; left: -60px; width: 300px; height: 300px;
  border-radius: 50%; background: rgba(61,191,179,0.1); pointer-events: none;
}
.neuro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.neuro-img-wrap { position: relative; }
.neuro-img-card { border-radius: 24px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.3); aspect-ratio: 4/5; background: #1a5c56; }
.neuro-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.neuro-stat {
  position: absolute; bottom: -24px; right: -24px;
  background: white; border-radius: 20px; padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2); border: 1px solid rgba(11,138,126,0.1);
}
.neuro-stat-lbl { font-size: 11px; color: var(--gray); margin-bottom: 4px; font-family: var(--font-body); }
.neuro-stat-num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--teal); }
.neuro-stat-badge { font-size: 11px; color: var(--green); font-weight: 600; font-family: var(--font-body); }
.neuro-tag {
  display: inline-block; background: rgba(255,255,255,0.15); color: white;
  padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px; font-family: var(--font-body); border: 1px solid rgba(255,255,255,0.2);
}
.neuro-h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.neuro-p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.8); margin-bottom: 36px; font-family: var(--font-body); }
.neuro-conditions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 40px; }
.neuro-condition { display: flex; align-items: center; gap: 10px; }
.check-circle {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(39,174,96,0.2); border: 1px solid rgba(39,174,96,0.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-circle::after { content: '✓'; color: #7ee8c3; font-size: 12px; font-weight: 700; }
.neuro-condition span { font-size: 14px; color: rgba(255,255,255,0.9); font-family: var(--font-body); font-weight: 500; }
.neuro-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--teal); padding: 14px 24px; border-radius: 50px;
  font-weight: 700; font-size: 15px; font-family: var(--font-display);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2); transition: all 0.2s; min-height: 44px;
}
.btn-white svg { fill: var(--teal); }
.btn-white:hover { transform: translateY(-2px); text-decoration: none; color: var(--teal); }
.btn-white:hover svg { fill: var(--teal); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.9); padding: 14px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3); font-weight: 600; font-size: 14px;
  font-family: var(--font-display); transition: all 0.2s; min-height: 44px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); text-decoration: none; color: white; }

/* ---------- About Section ---------- */
.about-section { padding: var(--section-pad); background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.credential-card { background: #f8fafb; border: 1px solid rgba(11,138,126,0.1); border-radius: 12px; padding: 14px 16px; }
.cred-label { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--teal); margin-bottom: 4px; }
.cred-desc { font-size: 12px; color: var(--gray); font-family: var(--font-body); line-height: 1.4; }
.about-highlights { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.highlight-item { display: flex; align-items: center; gap: 10px; }
.check-green { color: var(--green); font-size: 17px; flex-shrink: 0; }
.highlight-item span { font-size: 14px; color: #3a4f62; font-family: var(--font-body); font-weight: 500; }
.about-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-card { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(11,138,126,0.15); aspect-ratio: 3/4; background: #d4eeeb; }
.about-img-card img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.about-badge {
  position: absolute; top: 24px; right: -16px;
  background: white; border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); border: 1px solid rgba(11,138,126,0.1);
  display: flex; align-items: center; gap: 12px;
}
.about-badge-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #e6f5f3, #d4eeeb);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.about-badge-title { font-weight: 700; font-size: 13px; color: var(--navy); font-family: var(--font-display); }
.about-badge-sub { font-size: 11px; color: var(--gray); font-family: var(--font-body); }
.about-exp-card {
  position: absolute; bottom: 24px; left: -16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: 16px; padding: 16px 20px; box-shadow: 0 8px 32px rgba(11,138,126,0.3); color: white;
}
.exp-title { font-family: var(--font-display); font-weight: 800; font-size: 28px; line-height: 1; margin-bottom: 4px; }
.exp-sub { font-size: 11px; opacity: 0.85; font-family: var(--font-body); }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: 14px; font-family: var(--font-body); min-height: 44px; }
.link-arrow:hover { text-decoration: underline; }

/* ---------- Why Choose Us ---------- */
.why-section { padding: var(--section-pad); background: #f8fafb; }

/* ---------- Conditions ---------- */
.conditions-section { padding: var(--section-pad); background: white; }
.conditions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.condition-card {
  background: #f8fafb; border: 1px solid rgba(11,138,126,0.08);
  border-radius: 16px; padding: 24px 20px; text-align: center;
  transition: all 0.25s; cursor: pointer;
}
.condition-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(11,138,126,0.12); background: white; }
.condition-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.condition-name { font-size: 14px; font-weight: 600; color: var(--navy); font-family: var(--font-body); line-height: 1.4; }
.condition-link { font-size: 12px; color: var(--teal); font-family: var(--font-body); margin-top: 6px; font-weight: 500; }

/* ---------- Treatment Process ---------- */
.process-section { padding: var(--section-pad); background: #f8fafb; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-connector {
  position: absolute; top: 44px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(to right, var(--teal-mid), var(--teal), var(--teal-mid));
  opacity: 0.3; z-index: 0;
}
.process-card {
  background: white; border-radius: 20px; padding: 32px 24px;
  box-shadow: var(--shadow-card); border: 1px solid rgba(11,138,126,0.08);
  position: relative; z-index: 1; text-align: center; transition: all 0.3s;
}
.process-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; box-shadow: 0 8px 24px rgba(11,138,126,0.3);
  color: white; font-family: var(--font-display); font-weight: 800; font-size: 17px;
}
.process-h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.process-p { font-size: 13.5px; color: var(--gray); line-height: 1.7; font-family: var(--font-body); }

/* ---------- Testimonials ---------- */
.testimonials-section { padding: var(--section-pad); background: white; }
.testimonials-stats { display: flex; justify-content: center; align-items: center; gap: 48px; margin-bottom: 56px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--teal); line-height: 1; }
.stat-lbl { font-size: 13px; color: var(--gray); font-family: var(--font-body); margin-top: 6px; }
.review-card {
  background: #f8fafb; border: 1px solid rgba(11,138,126,0.08);
  border-radius: 20px; padding: 28px; transition: all 0.3s; position: relative;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(11,138,126,0.1); }
.review-quote { position: absolute; top: 24px; right: 24px; opacity: 0.18; color: var(--teal); font-size: 32px; }
.reviewer-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.9); box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: white; font-family: var(--font-display); font-weight: 700; font-size: 16px;
}
.reviewer-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy); }
.reviewer-role { font-size: 12px; color: var(--teal); font-family: var(--font-body); font-weight: 500; }
.review-text { font-size: 14px; line-height: 1.8; color: #3a4f62; font-family: var(--font-body); margin-top: 14px; margin-bottom: 16px; }
.review-meta { font-size: 11px; color: var(--gray); font-family: var(--font-body); }
.google-badge { display: inline-flex; align-items: center; gap: 5px; }
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light); color: var(--teal); padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 14px; font-family: var(--font-display);
  border: 2px solid rgba(11,138,126,0.15); transition: all 0.2s; min-height: 44px;
}
.btn-teal:hover { background: var(--teal); color: white; text-decoration: none; }
.btn-google {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 2px solid rgba(11,138,126,0.2); color: var(--teal);
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 14px;
  font-family: var(--font-display); box-shadow: 0 4px 16px rgba(11,138,126,0.1);
  transition: all 0.2s; min-height: 44px;
}
.btn-google:hover { background: var(--teal-light); border-color: rgba(11,138,126,0.4); text-decoration: none; color: var(--teal); }

/* ---------- FAQ Section ---------- */
.faq-section { padding: var(--section-pad); background: #f8fafb; }
.faq-item {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(11,138,126,0.08); transition: all 0.2s; margin-bottom: 12px;
}
.faq-item.open { border-color: rgba(11,138,126,0.25); box-shadow: 0 4px 20px rgba(11,138,126,0.1); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; min-height: 44px;
}
.faq-question { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); padding-right: 16px; line-height: 1.4; }
.faq-item.open .faq-question { color: var(--teal); }
.faq-chevron {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: #f0f6f8; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-size: 14px; color: var(--gray);
}
.faq-item.open .faq-chevron { background: var(--teal); color: white; transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 15px; color: #4a6070; line-height: 1.75; font-family: var(--font-body); }

/* ---------- Final CTA ---------- */
.final-cta {
  padding: var(--section-pad);
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, var(--teal-deeper) 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-blob1 { position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.cta-blob2 { position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(61,191,179,0.1); pointer-events: none; }
.cta-tag { display: inline-block; background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px; font-family: var(--font-body); border: 1px solid rgba(255,255,255,0.2); }
.cta-h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.02em; }
.cta-desc { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.82); margin-bottom: 48px; font-family: var(--font-body); }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 48px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12); color: white; padding: 18px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px; font-family: var(--font-display);
  border: 1px solid rgba(255,255,255,0.25); transition: all 0.25s; min-height: 44px;
}
.btn-call:hover { background: rgba(255,255,255,0.2); text-decoration: none; color: white; }
.btn-wa-lg {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--wa-green), #1aa34a);
  color: white; padding: 18px 32px; border-radius: 50px;
  font-weight: 700; font-size: 16px; font-family: var(--font-display);
  box-shadow: 0 12px 36px rgba(37,211,102,0.4); transition: all 0.25s; min-height: 44px;
}
.btn-wa-lg:hover { transform: translateY(-2px); text-decoration: none; color: white; }
.cta-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.cta-pill { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 13px; font-family: var(--font-body); }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #7eecd9; }

/* ---------- Contact Section ---------- */
.contact-section { padding: var(--section-pad); background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: stretch; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: #f8fafb; border: 1px solid rgba(11,138,126,0.1); border-radius: 20px; padding: 24px 28px; display: flex; gap: 16px; align-items: flex-start; }
.contact-card-icon { width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-card-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.contact-card-text { font-size: 14px; color: #4a6070; line-height: 1.6; font-family: var(--font-body); }
.contact-phone { display: block; font-size: 15px; color: var(--teal); font-weight: 600; text-decoration: none; margin-bottom: 8px; font-family: var(--font-display); min-height: 24px; }
.contact-wa-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: white; padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; font-family: var(--font-body); min-height: 44px;
}
.contact-wa-btn:hover { text-decoration: none; color: white; }
.open-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; background: var(--teal-light); padding: 4px 12px; border-radius: 50px; font-size: 12px; color: var(--teal); font-weight: 600; font-family: var(--font-body); }
.open-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.map-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(11,138,126,0.1); border: 1px solid rgba(11,138,126,0.1); background: var(--teal-light); min-height: 400px; aspect-ratio: 4/3; position: relative; }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-overlay { position: absolute; bottom: 16px; left: 16px; right: 16px; background: white; border-radius: 12px; padding: 14px 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 10px; }
.map-overlay-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--teal), var(--teal-mid)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.map-overlay-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--navy); }
.map-overlay-addr { font-size: 11px; color: var(--gray); font-family: var(--font-body); }

/* ---------- Footer ---------- */
.site-footer { background: #0f1e2e; color: white; }
.footer-logo { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-main { max-width: var(--max-w); margin: 0 auto; padding: 64px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand-desc { font-size: 14px; line-height: 1.75; color: #8aa8b8; font-family: var(--font-body); margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #8aa8b8; transition: all 0.2s; min-width: 38px; }
.social-btn:hover { background: rgba(11,138,126,0.3); color: #7eecd9; text-decoration: none; }
.footer-h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: white; margin-bottom: 20px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { color: #8aa8b8; font-size: 13.5px; font-family: var(--font-body); display: block; transition: color 0.2s; min-height: 24px; }
.footer-link:hover { color: #7eecd9; text-decoration: none; }
.footer-contact { display: flex; flex-direction: column; gap: 18px; }
.footer-contact-row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon { margin-top: 2px; flex-shrink: 0; color: #3dbfb3; font-size: 16px; }
.footer-contact-link { font-size: 13.5px; color: #8aa8b8; font-family: var(--font-body); line-height: 1.6; transition: color 0.2s; min-height: 24px; }
.footer-contact-link:hover { color: #7eecd9; text-decoration: none; }
.footer-wa { display: flex; align-items: center; gap: 8px; margin-top: 24px; background: linear-gradient(135deg, var(--wa-green), var(--wa-dark)); color: white; padding: 12px 18px; border-radius: 50px; font-weight: 600; font-size: 13px; font-family: var(--font-body); min-height: 44px; }
.footer-wa:hover { text-decoration: none; color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 24px; }
.footer-bottom-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; }
.footer-copy { font-size: 13px; color: #5a7a8a; font-family: var(--font-body); }

/* ---------- Page Heroes (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--teal) 0%, var(--teal-dark) 60%, var(--teal-deeper) 100%);
  padding: 80px 24px 96px; text-align: center; position: relative; overflow: hidden; padding-top: 152px;
}
.page-hero-blob { position: absolute; top: -80px; right: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 13px; font-family: var(--font-body); min-height: 24px; }
.breadcrumb a:hover { color: white; }
.breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 13px; margin: 0 4px; }
.breadcrumb .current { color: white; font-size: 13px; font-family: var(--font-body); }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 20px; letter-spacing: -0.02em; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.75; font-family: var(--font-body); max-width: 600px; margin: 0 auto 32px; }
.page-hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); color: white; padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 24px; font-family: var(--font-body); border: 1px solid rgba(255,255,255,0.2); }

/* ---------- About Page ---------- */
.about-page { padding-top: 72px; }
.credentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.cred-full { background: linear-gradient(135deg, var(--teal), var(--teal-mid)); color: white; border-radius: 20px; padding: 28px; text-align: center; }
.cred-full-label { font-family: var(--font-display); font-weight: 800; font-size: 24px; margin-bottom: 8px; }
.cred-full-desc { font-size: 13px; opacity: 0.85; font-family: var(--font-body); line-height: 1.5; }
.about-content-section { padding: 80px 24px; background: white; }
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-team-section { padding: 80px 24px; background: #f8fafb; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.team-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.team-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-philosophy { padding: 80px 24px; background: white; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.philosophy-item { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: #f8fafb; border-radius: 12px; border: 1px solid rgba(11,138,126,0.08); }

/* ---------- Contact Page ---------- */
.contact-page { padding-top: 72px; }
.contact-content-section { padding: 80px 24px; background: #f8fafb; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-big-map { border-radius: 24px; overflow: hidden; box-shadow: 0 16px 48px rgba(11,138,126,0.15); aspect-ratio: 4/3; position: relative; }
.contact-big-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Service Pages ---------- */
.service-page { padding-top: 72px; }
.service-content { padding: 80px 24px; background: white; }
.service-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.service-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 16px; margin-top: 40px; }
.service-body p { font-size: 16px; color: #4a6070; line-height: 1.8; font-family: var(--font-body); margin-bottom: 20px; }
.service-body ul { margin-bottom: 20px; padding-left: 0; }
.service-body li { font-size: 15px; color: #4a6070; font-family: var(--font-body); line-height: 1.7; padding: 6px 0 6px 28px; position: relative; }
.service-body li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.service-sidebar { position: sticky; top: 96px; }
.service-sidebar-card { background: white; border-radius: 20px; padding: 28px; border: 1px solid rgba(11,138,126,0.1); box-shadow: var(--shadow-card); margin-bottom: 20px; }
.sidebar-h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 16px; }
.sub-services-list { display: flex; flex-direction: column; gap: 6px; }
.sub-service-link { display: block; padding: 8px 12px; border-radius: 8px; font-size: 13px; color: #3a4f62; font-family: var(--font-body); font-weight: 500; transition: all 0.15s; border: 1px solid transparent; min-height: 36px; }
.sub-service-link:hover, .sub-service-link.active { background: var(--teal-light); color: var(--teal); border-color: rgba(11,138,126,0.15); text-decoration: none; }
.faq-section-page { padding: 80px 24px; background: #f8fafb; }

/* ---------- FAQs Page ---------- */
.faqs-page { padding-top: 72px; }
.faqs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; max-width: 1100px; margin: 0 auto; padding: 80px 24px; }
.faqs-sidebar { position: sticky; top: 96px; }
.faqs-sidebar-card { background: white; border-radius: 20px; padding: 24px; border: 1px solid rgba(11,138,126,0.1); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faqs-sidebar-label { font-size: 12px; font-weight: 600; color: var(--gray); font-family: var(--font-body); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.faqs-sidebar-link { display: block; font-size: 13px; color: #3a4f62; font-family: var(--font-body); padding: 8px 0; border-bottom: 1px solid #f0f0f0; line-height: 1.4; min-height: 36px; }
.faqs-sidebar-link:hover { color: var(--teal); text-decoration: none; }
.faqs-section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--navy); margin-bottom: 20px; letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; }
.faqs-section-bar { width: 6px; height: 24px; border-radius: 3px; background: var(--teal); display: inline-block; flex-shrink: 0; }
.faqs-block { margin-bottom: 56px; }
.faq-cta-bar { text-align: center; margin-bottom: 40px; margin-top: -20px; padding: 20px 28px; background: white; border-radius: 16px; border: 1px solid rgba(11,138,126,0.08); }
.faq-cta-bar p { font-size: 13px; color: var(--gray); font-family: var(--font-body); margin-bottom: 12px; }
.faq-cta-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: 13px; font-weight: 700; font-family: var(--font-display); min-height: 24px; }

/* ---------- Testimonials Page ---------- */
.testimonials-page { padding-top: 72px; }
.testimonials-written { padding: 80px 24px; background: white; }
.written-card { background: #f8fafb; border: 1px solid rgba(11,138,126,0.08); border-radius: 20px; padding: 32px; }
.written-h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.written-cat { font-size: 13px; color: var(--teal); font-family: var(--font-body); font-weight: 500; margin-bottom: 16px; display: block; }
.written-quote { font-size: 15px; color: #3a4f62; line-height: 1.8; font-family: var(--font-body); font-style: italic; margin-bottom: 16px; }
.written-patient { font-size: 13px; color: var(--gray); font-family: var(--font-body); font-weight: 500; }
.written-outcome { display: flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(11,138,126,0.08); font-size: 13px; font-weight: 600; color: var(--green); font-family: var(--font-body); }

/* ---------- Floating WhatsApp + Back to top ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5); transition: transform 0.2s, box-shadow 0.2s;
  min-height: unset;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.6); text-decoration: none; }
.back-to-top {
  position: fixed; bottom: 96px; right: 24px; z-index: 100;
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(11,138,126,0.2);
  background: white; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1); cursor: pointer; color: var(--teal);
  transition: all 0.2s; min-height: unset;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--teal-light); border-color: var(--teal); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .neuro-grid { grid-template-columns: 1fr; gap: 40px; }
  .neuro-stat { position: static; margin-top: 16px; display: inline-block; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge, .about-exp-card { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-connector { display: none; }
  .faqs-layout { grid-template-columns: 1fr; gap: 32px; }
  .faqs-sidebar { position: static; display: none; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
  .mega-menu { display: none !important; }
  .about-content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hero-float-1, .hero-float-2 { display: none; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .cards-auto { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .neuro-conditions { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
