/* ============================================================
   Dr Pavan's Orthocare — Expert Bone & Joint Clinic
   Design system: White / Deep Medical Blue / Soft Cyan / Light Blue
   ============================================================ */

:root {
  --white: #ffffff;
  --blue: #0b6685;
  --blue-dark: #084d66;
  --cyan: #c2eff9;
  --cyan-soft: #dff4f9;
  --blue-very-light: #f2f7fb;
  --surface: #f4f9fc;
  --text: #101820;
  --text-secondary: #5e666f;
  --border: #e0e8ed;
  --icon-bg: #ecf9fc;

  --font: "Plus Jakarta Sans", Inter, system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-card: 18px;
  --r-image: 20px;
  --r-input: 12px;

  --shadow-soft: 0 10px 35px rgba(16, 24, 32, 0.06);
  --shadow-hover: 0 18px 48px rgba(16, 24, 32, 0.11);

  --container: 1240px;
  --section-desktop: 104px;
  --section-tablet: 80px;
  --section-mobile: 64px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-dark); }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0 0 .55em; line-height: 1.18; color: var(--text); font-weight: 700; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid rgba(11, 102, 133, .45); outline-offset: 2px; border-radius: 6px; }

::selection { background: var(--cyan); color: var(--blue-dark); }

/* ---------- Layout ---------- */
.container { width: min(1240px, 92%); margin-inline: auto; }
.container--narrow { width: min(880px, 92%); margin-inline: auto; }
.section { padding-block: var(--section-desktop); }
.section--sm { padding-block: 64px; }
.section--tint { background: var(--blue-very-light); }
.section--cyan-tint { background: var(--surface); }

@media (max-width: 1024px) { .section { padding-block: var(--section-tablet); } }
@media (max-width: 640px) { .section { padding-block: var(--section-mobile); } }

/* ---------- Typography helpers ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); background: var(--cyan-soft); border: 1px solid #cbe9f2; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.02em; margin-bottom: 16px; }
.section-head p { color: var(--text-secondary); font-size: 18px; margin: 0; }
.section-head--center .eyebrow { margin-inline: auto; }

@media (max-width: 640px) {
  .section-head { margin-bottom: 38px; }
  .section-head p { font-size: 16.5px; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 15px 28px; font-size: 16px; font-weight: 700; line-height: 1; border: 2px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease; white-space: nowrap; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(11, 102, 133, .28); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(11, 102, 133, .34); }
.btn--secondary { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--secondary:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: var(--white); color: var(--blue); border-color: var(--border); box-shadow: var(--shadow-soft); }
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--blue); box-shadow: 0 10px 24px rgba(4, 32, 44, .18); }
.btn--light:hover { transform: translateY(-2px); }
.btn--wa { background: #1faa59; color: #fff; box-shadow: 0 10px 24px rgba(31, 170, 89, .25); }
.btn--wa:hover { background: #17914d; color: #fff; transform: translateY(-2px); }
.btn .icon { width: 18px; height: 18px; flex: 0 0 auto; }
.btn--sm { padding: 11px 20px; font-size: 14.5px; }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid rgba(224, 232, 237, .85); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.icon-badge { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: var(--icon-bg); color: var(--blue); flex: 0 0 auto; }
.icon-badge .icon { width: 27px; height: 27px; }
.icon-badge--circle { border-radius: 50%; }
.icon-badge--sm { width: 46px; height: 46px; border-radius: 13px; }
.icon-badge--sm .icon { width: 22px; height: 22px; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--blue-dark); color: #d5eef6; font-size: 13px; }
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; min-height: 34px; }
.utility-bar a { color: #d5eef6; display: inline-flex; align-items: center; gap: 6px; }
.utility-bar a:hover { color: #fff; }
.utility-bar .icon { width: 14px; height: 14px; }
.utility-left, .utility-right { display: flex; align-items: center; gap: 18px; }
.utility-right span { display: inline-flex; align-items: center; gap: 6px; }
.utility-right .nowrap-item { white-space: nowrap; }
@media (max-width: 768px) {
  .utility-left { display: none; }
  .utility-right { gap: 14px; }
  .utility-bar .container { justify-content: center; }
  .utility-hours { display: none; }
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(16, 24, 32, .07); }
.header-main { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-name { font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -.01em; }
.brand-sub { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: .06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > li { list-style: none; position: relative; }
.nav > li > a { display: inline-flex; align-items: center; gap: 6px; padding: 12px 14px; font-size: 15.5px; font-weight: 600; color: var(--text); border-radius: 10px; }
.nav > li > a:hover { color: var(--blue); background: var(--blue-very-light); }
.nav > li > a.is-active { color: var(--blue); background: var(--cyan-soft); }
.nav .caret { width: 10px; height: 10px; color: var(--text-secondary); }

.has-drop .drop { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px); background: var(--white); border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-hover); padding: 10px; min-width: 250px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14.5px; font-weight: 600; color: var(--text); }
.drop a:hover { background: var(--blue-very-light); color: var(--blue); }
.drop .drop-title { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--text-secondary); padding: 6px 14px 2px; }

.header-actions { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 12px; background: var(--white); color: var(--text); }
.nav-toggle .icon { width: 22px; height: 22px; }
header .btn { padding: 13px 22px; font-size: 15px; }

@media (max-width: 1180px) {
  .nav > li > a { padding: 12px 10px; font-size: 14.5px; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: fixed; inset: auto 0 auto 0; top: auto; bottom: 0; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -10px 34px rgba(16,24,32,.1); max-height: 0; overflow: hidden; transition: max-height .35s ease; z-index: 300; }
  body.has-mobile-nav .nav { max-height: calc(100dvh - 90px); overflow-y: auto; }
  .nav > li > a { padding: 14px 20px; font-size: 16px; border-radius: 0; justify-content: space-between; }
  .has-drop .drop { position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto; box-shadow: none; border: 0; border-radius: 0; min-width: 0; padding: 0 0 6px; max-height: 0; overflow: hidden; background: var(--blue-very-light); transition: max-height .3s ease; }
  .has-drop.is-open .drop { max-height: 600px; }
  .has-drop .drop-title { padding-top: 12px; }
  .mobile-nav-buffer { height: 76px; }
}
@media (min-width: 1025px) { .mobile-nav-buffer { display: none; } }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-action-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; display: none; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px; background: var(--white); border-top: 1px solid var(--border); padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); box-shadow: 0 -8px 30px rgba(16, 24, 32, .1); }
.mobile-action-bar a { display: inline-flex; align-items: center; justify-content: center; gap: 7px; border-radius: 999px; padding: 12px 10px; font-size: 14px; font-weight: 700; }
.mobile-action-bar .icon { width: 17px; height: 17px; }
.mobile-action-bar .mab-tel { background: var(--blue-very-light); color: var(--blue); border: 1px solid var(--border); }
.mobile-action-bar .mab-wa { background: #ebf9f0; color: #17914d; border: 1px solid #cfeede; }
.mobile-action-bar .mab-book { background: var(--blue); color: #fff; }
@media (max-width: 1024px) {
  .mobile-action-bar { display: grid; }
  body { padding-bottom: 74px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--white); padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 6vw, 84px); }
.hero .container { display: grid; grid-template-columns: 1.06fr .94fr; gap: 48px; align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; letter-spacing: -.025em; line-height: 1.08; margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue); }
.hero-lead { font-size: 18.5px; color: var(--text-secondary); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-quickpoints { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; font-size: 14px; color: var(--text-secondary); font-weight: 600; }
.hero-quickpoints span { display: inline-flex; align-items: center; gap: 8px; }
.hero-quickpoints .icon { width: 17px; height: 17px; color: var(--blue); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 460px; }
.blob { position: absolute; inset: 6% 4% 4% 8%; background: var(--cyan); border-radius: 48% 52% 58% 42% / 46% 44% 56% 54%; opacity: .55; filter: blur(2px); }
.blob--small { position: absolute; width: 180px; height: 180px; border-radius: 50%; background: var(--cyan-soft); display: none; }
.hero-figure { position: relative; z-index: 2; width: min(460px, 100%); border-radius: var(--r-image); overflow: hidden; box-shadow: var(--shadow-hover); }
.float-chip { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; padding: 10px 18px; box-shadow: var(--shadow-soft); font-size: 13.5px; font-weight: 700; color: var(--text); animation: float 5s ease-in-out infinite; }
.float-chip .icon-badge { width: 34px; height: 34px; border-radius: 50%; }
.float-chip .icon-badge .icon { width: 17px; height: 17px; }
.float-chip--tl { top: 12%; left: -2%; animation-delay: .6s; }
.float-chip--br { bottom: 14%; right: -1%; animation-delay: 1.4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 0; order: 2; }
  .float-chip--tl { left: 0; }
  .float-chip--br { right: 0; }
}

/* ---------- Benefit cards ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.benefit-card { background: var(--white); border: 1px solid rgba(224,232,237,.85); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.benefit-card h3 { font-size: 18.5px; margin: 18px 0 8px; }
.benefit-card p { font-size: 15px; color: var(--text-secondary); margin: 0; }
@media (max-width: 1024px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------- Service cards ---------- */
.service-card { display: flex; flex-direction: column; }
.service-card .icon-badge { background: var(--icon-bg); }
.service-card h3 { font-size: 19px; margin: 20px 0 8px; }
.service-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 18px; flex-grow: 1; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--blue); }
.card-link .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.card-link:hover .icon { transform: translateX(4px); }

.article-card { display: flex; flex-direction: column; text-decoration: none; }
.article-card h3 { margin: 0; font-size: 19px; }
.article-card p { font-size: 15px; color: var(--text-secondary); margin: 0; flex-grow: 1; }
.article-card .blog-meta { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.article-card .go { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--blue); margin-top: 8px; }
.article-card .go .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.article-card:hover .go .icon { transform: translateX(4px); }

.blog-meta { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); }
.blog-disclaimer { font-size: 14px; color: var(--text-secondary); margin-top: 30px; border-top: 1px solid var(--border); padding-top: 16px; }

/* ---------- Body part cards ---------- */
.body-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.body-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; background: var(--white); border: 1px solid rgba(224,232,237,.85); border-radius: var(--r-card); padding: 30px 22px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.body-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.body-card .icon-badge { width: 62px; height: 62px; border-radius: 50%; margin-bottom: 8px; }
.body-card .icon-badge .icon { width: 30px; height: 30px; }
.body-card h3 { font-size: 17px; margin: 0; }
.body-card span { font-size: 13.5px; color: var(--text-secondary); }
@media (max-width: 1024px) { .body-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .body-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ---------- Condition cards ---------- */
.condition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.condition-card { display: flex; flex-direction: column; gap: 14px; background: var(--white); border: 1px solid rgba(224,232,237,.85); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.condition-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.condition-card h3 { font-size: 17.5px; margin: 0; }
.condition-card p { font-size: 14.5px; color: var(--text-secondary); margin: 0; flex-grow: 1; }
.info-card { background: var(--white); border: 1px solid rgba(224,232,237,.85); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.info-card h3 { font-size: 18px; margin: 0 0 8px; }
.info-card p { font-size: 15px; color: var(--text-secondary); margin: 0; }
.list-gap { gap: 14px; }
.h4 { font-size: 21px; }
.contact-list { list-style: none; display: grid; gap: 16px; margin: 22px 0 0; padding: 0; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15.5px; font-weight: 600; }
.contact-list .icon-badge { margin-top: 2px; }
.contact-list a { color: var(--blue); font-weight: 700; }

@media (max-width: 1024px) { .condition-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .condition-grid { grid-template-columns: 1fr; } }

/* ---------- About / Doctor split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split-media { order: 1; }
.split-copy h2 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.02em; margin-bottom: 18px; }
.split-copy p { color: var(--text-secondary); font-size: 17px; }
.split-copy .lead { font-size: 18.5px; color: var(--text); font-weight: 600; }
.split-media { position: relative; }
.split-media .blob { position: absolute; inset: 8% 2% 6% 10%; border-radius: 44% 56% 62% 38% / 52% 44% 56% 48%; background: var(--cyan); opacity: .6; }
.split-media figure { position: relative; z-index: 2; border-radius: var(--r-image); overflow: hidden; box-shadow: var(--shadow-hover); }
.doctor-cred { position: absolute; z-index: 3; left: 22px; right: 22px; bottom: 22px; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border: 1px solid var(--border); border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 14px; }
.doctor-cred .icon-badge { border-radius: 50%; }
.doctor-cred strong { display: block; font-size: 16px; }
.doctor-cred span { font-size: 13px; color: var(--text-secondary); }
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split-media { order: 0; }
}

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid rgba(224,232,237,.85); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-soft); }
.why-item .icon-badge { width: 48px; height: 48px; border-radius: 14px; }
.why-item .icon-badge .icon { width: 23px; height: 23px; }
.why-item h3 { font-size: 18px; margin: 0 0 6px; }
.why-item p { font-size: 15px; color: var(--text-secondary); margin: 0; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Patient journey ---------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.journey-step { position: relative; background: var(--white); border: 1px solid rgba(224,232,237,.85); border-radius: var(--r-card); padding: 30px 26px; box-shadow: var(--shadow-soft); text-align: left; }
.journey-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); position: absolute; top: 26px; right: 26px; font-size: 30px; font-weight: 800; color: var(--cyan); line-height: 1; }
.journey-step .icon-badge { width: 50px; height: 50px; border-radius: 50%; margin-bottom: 18px; }
.journey-step .icon-badge .icon { width: 24px; height: 24px; }
.journey-step h3 { font-size: 17.5px; margin-bottom: 6px; }
.journey-step p { font-size: 14.5px; color: var(--text-secondary); margin: 0; }
@media (min-width: 901px) {
  .journey { position: relative; gap: 34px; }
  .journey::before { content: ""; position: absolute; top: 25px; left: 12%; right: 12%; height: 2px; background: var(--cyan); z-index: 0; }
  .journey .journey-step { position: relative; z-index: 1; background: var(--white); }
}
@media (max-width: 900px) { .journey { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 900px) { .journey .journey-step::after { content: ""; position: absolute; bottom: -18px; left: 50%; width: 2px; height: 18px; background: var(--cyan); } .journey .journey-step:last-child::after { display: none; } }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card { display: flex; flex-direction: column; gap: 16px; }
.review-stars { display: inline-flex; gap: 3px; color: #f5a623; }
.review-stars .icon { width: 17px; height: 17px; }
.review-text { font-size: 15.5px; color: var(--text-secondary); margin: 0; flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--icon-bg); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; }
.review-author strong { display: block; font-size: 15px; line-height: 1.2; }
.review-author span { font-size: 12.5px; color: var(--text-secondary); }
.review-note { max-width: 640px; margin: 22px auto 0; text-align: center; font-size: 14px; color: var(--text-secondary); }
@media (max-width: 1024px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: box-shadow .25s ease, border-color .25s ease; }
.faq-item.is-open { box-shadow: var(--shadow-soft); border-color: var(--cyan); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: none; border: 0; padding: 20px 24px; font-size: 17px; font-weight: 700; color: var(--text); }
.faq-q:hover { color: var(--blue); }
.faq-q .faq-icon { width: 26px; height: 26px; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--icon-bg); color: var(--blue); transition: transform .25s ease, background-color .25s ease; }
.faq-q .icon { width: 15px; height: 15px; }
.faq-item.is-open .faq-q .faq-icon { transform: rotate(135deg); background: var(--blue); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 16px; color: var(--text-secondary); }
.faq-a-inner p:last-child { margin: 0; }

/* ---------- Accordion media ---------- */
@media (max-width: 640px) {
  .faq-q { font-size: 15.5px; padding: 17px 18px; }
  .faq-a-inner { padding: 0 18px 18px; }
}

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 32px; align-items: stretch; }
.location-info { background: var(--white); border: 1px solid rgba(224,232,237,.85); border-radius: var(--r-card); padding: 34px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.location-info h3 { font-size: 24px; margin-bottom: 4px; }
.location-info .loc-sub { color: var(--blue); font-weight: 700; font-size: 14px; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 20px; }
.loc-address { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.loc-address .icon-badge { width: 44px; height: 44px; border-radius: 13px; }
.loc-address .icon-badge .icon { width: 21px; height: 21px; }
.loc-address strong { display: block; margin-bottom: 2px; font-size: 16px; }
.loc-address p { margin: 0; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
.loc-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; padding-top: 22px; }
.map-wrap { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border); min-height: 400px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }
@media (max-width: 960px) { .location-grid { grid-template-columns: 1fr; } .map-wrap iframe { min-height: 320px; } }

/* ---------- Appointment section ---------- */
.appoint-band { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%); color: #fff; border-radius: 28px; overflow: hidden; position: relative; }
.appoint-band::before { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(194, 239, 249, .14); top: -140px; right: -120px; }
.appoint-band::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(194, 239, 249, .1); bottom: -110px; left: -80px; }
.appoint-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; padding: clamp(40px, 5vw, 72px); }
.appoint-copy h2 { color: #fff; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.02em; }
.appoint-copy p { color: #d5eef6; font-size: 17px; }
.appoint-copy .appoint-points { list-style: none; display: grid; gap: 14px; margin: 26px 0; }
.appoint-copy .appoint-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: #eaf6fb; font-weight: 600; }
.appoint-copy .appoint-points .icon { width: 20px; height: 20px; color: var(--cyan); flex: 0 0 auto; margin-top: 2px; }
.appoint-copy .appoint-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.appoint-form { background: var(--white); border-radius: 22px; padding: clamp(26px, 3vw, 40px); box-shadow: 0 24px 60px rgba(3, 30, 42, .3); }
.appoint-form h3 { font-size: 23px; margin-bottom: 6px; }
.appoint-form .form-sub { color: var(--text-secondary); font-size: 14.5px; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 700; color: var(--text); }
.form-field label .req { color: var(--blue); }
.form-field input, .form-field select, .form-field textarea { font-family: inherit; font-size: 15px; color: var(--text); background: var(--blue-very-light); border: 1px solid var(--border); border-radius: var(--r-input); padding: 13px 15px; transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(11, 102, 133, .15); }
.form-field textarea { resize: vertical; min-height: 92px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B6685' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-note { font-size: 13px; color: var(--text-secondary); margin-top: 14px; }
.form-success { display: none; background: #ebf9f0; border: 1px solid #cfeede; color: #12523a; border-radius: 14px; padding: 16px 18px; font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.appoint-form.has-sent .appoint-form-fields { display: none; }
.appoint-form.has-sent .form-success { display: block; }
@media (max-width: 960px) { .appoint-inner { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 560px) { .appoint-inner { padding: 34px 22px; } .form-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band (generic) ---------- */
.cta-band { background: var(--cyan-soft); border-radius: 26px; padding: clamp(36px, 4.5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; background: rgba(11, 102, 133, .07); }
.cta-band::before { width: 240px; height: 240px; top: -100px; right: -70px; }
.cta-band::after { width: 180px; height: 180px; bottom: -80px; left: -60px; }
.cta-band h2 { font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -.02em; position: relative; z-index: 1; }
.cta-band p { color: var(--text-secondary); max-width: 620px; margin: 0 auto 26px; font-size: 17px; position: relative; z-index: 1; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; background: var(--blue-very-light); overflow: hidden; padding: clamp(52px, 7vw, 84px) 0; }
.page-hero::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: rgba(194, 239, 249, .55); top: -130px; right: -90px; }
.page-hero::after { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, .55); bottom: -90px; left: 8%; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 50px); letter-spacing: -.02em; max-width: 760px; }
.page-hero p { color: var(--text-secondary); font-size: 18px; max-width: 640px; margin: 0; }
.page-hero .eyebrow { background: var(--white); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 13.5px; color: var(--text-secondary); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-secondary); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: #b7c4cc; display: inline-flex; }
.breadcrumb .sep .icon { width: 13px; height: 13px; }
.breadcrumb [aria-current="page"] { color: var(--blue); font-weight: 700; }

/* ---------- Article content ---------- */
.prose { font-size: 17px; color: var(--text-secondary); }
.prose h2 { font-size: clamp(24px, 3vw, 31px); color: var(--text); margin: 44px 0 18px; letter-spacing: -.01em; }
.prose h3 { font-size: 20px; color: var(--text); margin: 30px 0 12px; }
.prose p { margin-bottom: 1.1em; }
.prose ul, .prose ol { margin: 0 0 1.3em 1.25em; }
.prose li { margin-bottom: .45em; }
.prose strong { color: var(--text); }
.prose .icon { vertical-align: -3px; }

.side-list { display: grid; gap: 12px; }
.side-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; box-shadow: 0 6px 20px rgba(16,24,32,.05); }
.side-card h3 { font-size: 16px; margin-bottom: 4px; }
.side-card p { font-size: 14px; color: var(--text-secondary); margin: 0; }
.side-card a { font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }

/* callout */
.callout { display: flex; gap: 16px; align-items: flex-start; background: var(--cyan-soft); border: 1px solid #cbe9f2; border-radius: 16px; padding: 20px 22px; margin: 26px 0; }
.callout .icon-badge { width: 44px; height: 44px; border-radius: 50%; }
.callout .icon-badge .icon { width: 21px; height: 21px; }
.callout p { margin: 0; font-size: 15.5px; color: var(--text); }
.callout strong { color: var(--blue); }

/* info table */
.info-table { width: 100%; border-collapse: collapse; font-size: 15.5px; background: var(--white); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.info-table th { text-align: left; background: var(--blue-very-light); color: var(--blue-dark); font-weight: 800; padding: 14px 18px; font-size: 14.5px; }
.info-table td { padding: 14px 18px; border-top: 1px solid var(--border); color: var(--text-secondary); }
.info-table td strong { color: var(--text); }
@media (max-width: 640px) { .info-table { display: block; overflow-x: auto; white-space: nowrap; } }

/* chips / tag links */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid var(--border); color: var(--text); border-radius: 999px; padding: 8px 16px; font-size: 14px; font-weight: 700; transition: all .2s ease; }
.chip:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.chip .icon { width: 15px; height: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-very-light); border-top: 1px solid var(--border); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 52px; }
.footer-col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-dark); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: var(--text-secondary); font-size: 15px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.footer-col a:hover { color: var(--blue); }
.footer-col a .icon { width: 15px; height: 15px; color: var(--blue); }
.footer-brand p { font-size: 15px; color: var(--text-secondary); margin: 14px 0 18px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; color: var(--blue); }
.footer-social a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-social .icon { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; color: var(--text-secondary); }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: var(--text-secondary); font-size: 13.5px; font-weight: 600; }
.footer-bottom a:hover { color: var(--blue); }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: clamp(60px, 9vw, 110px) 0; }
.notfound .code { font-size: clamp(80px, 14vw, 160px); font-weight: 800; line-height: 1; color: var(--cyan); letter-spacing: -.03em; }
.notfound h1 { font-size: clamp(26px, 3.4vw, 40px); margin: 8px 0 12px; }
.notfound p { color: var(--text-secondary); max-width: 480px; margin: 0 auto 28px; }

/* ---------- Misc ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 0 0 12px 0; z-index: 999; }
.skip-link:focus { left: 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-28 { margin-top: 28px; } .mt-36 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-secondary); }
.small { font-size: 14px; }
.weight-700 { font-weight: 700; }