/* ============================================================
   CHIROPRACTIC COMPANY — Shared Stylesheet
   Design tokens, reusable components, and page-level styles
   Based on brand system from chiropracticco.com/new/brookfield
   Bootstrap 5.3 companion — do not duplicate Bootstrap utilities
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');


/* ── DESIGN TOKENS ── */
:root {
  --sage:        #BBC8C6;
  --teal:        #A6BDBF;
  --steel:       #9BB5B8;
  --stone:       #BBBAAC;
  --cream:       #E3DED0;
  --brown:       #3C3834;
  --brown-light: #54504A;
  --warm:        #908A83;
  --teal-d:      #4E8285;
  --teal-dd:     #3A6E71;
  --cream-l:     #F5F1E8;
  --cream-m:     #EDE8DA;
  --white:       #FDFCF9;

  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --ease:   cubic-bezier(.4,0,.2,1);

  --radius-sm:  6px;
  --radius:     9px;
  --radius-lg:  14px;
  --shadow-sm:  0 4px 16px rgba(60,56,52,.08);
  --shadow:     0 8px 32px rgba(60,56,52,.10);
  --shadow-md:  0 16px 48px rgba(60,56,52,.13);
  --shadow-lg:  0 24px 64px rgba(60,56,52,.18);
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-weight: 300;
  color: var(--brown);
  background: var(--white);
  line-height: 1.72;
  overflow-x: hidden;
}
img { display: block; width: 100%; object-fit: cover; }
h1, h2, h3 { font-family: var(--font-h); font-weight: 600; line-height: 1.18; }
h4, h5, h6  { font-family: var(--font-b); font-weight: 500; }

/* ── UTILITY TOKENS ── */
.eyebrow {
  font-size: .7rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--teal-d);
  display: block; margin-bottom: .65rem;
}
.eyebrow-light { color: var(--sage); }

.divider {
  width: 44px; height: 2.5px; background: var(--steel);
  display: block; margin: 1.1rem 0;
}
.divider-c { margin: 1.1rem auto; }

.accent { color: var(--teal-d); font-style: italic; }

/* ── BUTTONS ── */
.btn-cc {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--teal-d); color: #fff;
  font-family: var(--font-b); font-size: .88rem; font-weight: 500; letter-spacing: .03em;
  padding: .85rem 1.9rem; border-radius: var(--radius-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}
.btn-cc:hover {
  background: var(--teal-dd); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(58,110,113,.35);
}
.btn-cc-lg { font-size: .95rem; padding: 1rem 2.2rem; }

.btn-outline {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: var(--brown);
  font-family: var(--font-b); font-size: .88rem; font-weight: 500;
  padding: .82rem 1.75rem; border-radius: var(--radius-sm);
  text-decoration: none; border: 1.5px solid rgba(60,56,52,.3); cursor: pointer;
  transition: border-color .25s, background .25s;
}
.btn-outline:hover {
  border-color: var(--teal-d);
  background: rgba(78,130,133,.06);
  color: var(--teal-d);
}

.btn-outline-w {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: #fff;
  font-family: var(--font-b); font-size: .9rem; font-weight: 400;
  padding: .85rem 1.8rem; border-radius: var(--radius-sm);
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.4); cursor: pointer;
  transition: border-color .25s, background .25s;
}
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #fff; color: var(--teal-d);
  font-family: var(--font-b); font-size: .92rem; font-weight: 500;
  padding: .92rem 2rem; border-radius: var(--radius-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-white:hover {
  background: var(--cream-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.link-more {
  font-size: .82rem; font-weight: 500; color: var(--teal-d);
  text-decoration: none; display: inline-flex; align-items: center; gap: .28rem;
  transition: gap .2s;
}
.link-more:hover { gap: .5rem; color: var(--teal-dd); }

/* ── STICKY NAV ── */
#nav {
  background: var(--brown); padding: .8rem 0;
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }
.nav-logox {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  color: var(--cream-l); text-decoration: none; letter-spacing: .01em;
}
.nav-logox em { font-style: normal; color: var(--sage); }
.nav-logo { height: 50px; max-height: 50px !important; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: 1.1rem; color: rgba(245,241,232,.65);
  text-decoration: none; transition: color .2s; font-weight: 400;
}
.nav-links a:hover { color: var(--cream-l); }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--cream-m); padding: .6rem 0;
  border-bottom: 1px solid rgba(155,181,184,.25);
}
.t-item {
  display: flex; align-items: center; gap: .42rem;
  font-size: .77rem; color: var(--brown-light); white-space: nowrap;
}
.t-item i { color: var(--teal-d); font-size: .85rem; }
.t-star  { color: #C8A96B; }
.t-sep   { color: var(--stone); margin: 0 .45rem; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1800&q=80');
  background-image: url('https://www.chiropracticco.com/assets/images/conditions/chiropractic-for-sciatica-2.jpg?w=1800&q=80');  
  background-size: cover; background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
#hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(60,56,52,.92) 0%,
    rgba(60,56,52,.80) 42%,
    rgba(60,56,52,.22) 70%,
    transparent 100%
  );
}
.hero-content { position: relative; z-index: 2; padding: 6rem 0 5rem; }
#hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff; font-weight: 700; line-height: 1.12;
  margin-bottom: 1.3rem;
}
#hero h1 .accent { color: var(--sage); font-style: italic; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  max-width: 520px; line-height: 1.82; margin-bottom: 2.2rem; font-weight: 300;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Hero booking card */
.hero-card {
  background: rgba(255,255,255,.97); border-radius: var(--radius-lg);
  padding: 2.25rem 2rem; position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}
.hero-card-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal-d); color: #fff;
  font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem 1.1rem; border-radius: 20px; white-space: nowrap;
}
.hc-price {
  font-family: var(--font-h); font-size: 3.2rem;
  font-weight: 700; color: var(--teal-d); line-height: 1;
}
.hc-price sup { font-size: 1.3rem; vertical-align: super; }

.form-field {
  width: 100%; padding: .72rem 1rem;
  border: 1px solid rgba(155,181,184,.4); border-radius: var(--radius-sm);
  background: #fff; color: var(--brown);
  font-family: var(--font-b); font-size: .87rem;
  margin-bottom: .65rem; outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-field:focus {
  border-color: var(--teal-d);
  box-shadow: 0 0 0 3px rgba(78,130,133,.13);
}
.form-submit { width: 100%; justify-content: center; margin-top: .2rem; }
.form-note {
  font-size: .72rem; color: var(--warm);
  text-align: center; margin-top: .75rem; line-height: 1.55;
}

/* Insurance strip */
.ins-strip {
  background: var(--cream-l); padding: .85rem 0;
  border-bottom: 1px solid rgba(155,181,184,.15);
}
.ins-lbl {
  font-size: .68rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--warm);
}
.ins-tag {
  display: inline-flex; align-items: center;
  background: #fff; border: 1px solid rgba(155,181,184,.3); border-radius: 20px;
  padding: .26rem .85rem; font-size: .73rem; font-weight: 500;
  color: var(--brown); margin: .18rem; white-space: nowrap;
}
.ins-tag.mcare { background: var(--teal-d); color: #fff; border-color: var(--teal-d); }

/* ── SECTION SHARED ── */
.section-cream-l  { background: var(--cream-l); }
.section-cream-m  { background: var(--cream-m); }
.section-white    { background: #fff; }
.section-brown    { background: var(--brown); }
.section-teal     { background: var(--teal-d); }
.section-eef      { background: #EEF2F0; }
.py-section       { padding: 5.5rem 0; }

/* ── EYEBROW + HEADING BLOCK (reusable) ── */
.hd-block h2     { color: var(--brown); }
.hd-block-light h2 { color: #fff; }
.hd-block-light .eyebrow { color: var(--sage); }
.hd-block-light .divider { background: var(--sage); }
.hd-block-light p { color: rgba(255,255,255,.72); }

/* ── CARD: SERVICE ── */
.svc-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.65rem 1.5rem;
  height: 100%; border: 1px solid rgba(155,181,184,.18);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-tag {
  display: inline-block; font-size: .67rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(155,181,184,.15); color: var(--teal-d);
  padding: .22rem .65rem; border-radius: 4px; margin-bottom: .85rem;
}
.svc-card h5 { font-size: .97rem; font-weight: 500; color: var(--brown); margin-bottom: .55rem; }
.svc-card p  { font-size: .86rem; color: var(--brown-light); line-height: 1.75; margin-bottom: .9rem; }

/* ── CARD: CAUSE ── */
.cause-card {
  background: #fff; border-radius: var(--radius-lg); padding: 1.65rem 1.5rem;
  height: 100%; border: 1px solid rgba(155,181,184,.18);
  border-left: 4px solid var(--teal-d);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.cause-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cause-card .svc-tag { margin-bottom: .65rem; }
.cause-card h5 { font-size: .97rem; font-weight: 500; color: var(--brown); margin-bottom: .5rem; }
.cause-card p  { font-size: .86rem; color: var(--brown-light); line-height: 1.75; margin: 0; }

/* ── CARD: SYMPTOM ── */
.symptom-card {
  background: #fff; border-radius: var(--radius); padding: 1.4rem;
  border: 1px solid rgba(155,181,184,.18); height: 100%;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow .25s;
}
.symptom-card:hover { box-shadow: var(--shadow-sm); }
.symptom-ico {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(155,181,184,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--teal-d); font-size: 1.1rem;
}
.symptom-card h6 { font-size: .9rem; font-weight: 500; color: var(--brown); margin-bottom: .25rem; }
.symptom-card p  { font-size: .83rem; color: var(--brown-light); line-height: 1.68; margin: 0; }

/* ── CARD: REVIEW ── */
.review-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 1.6rem; height: 100%;
  backdrop-filter: blur(8px);
}
.review-card .stars { color: #C8A96B; font-size: .88rem; margin-bottom: .5rem; }
.review-card p {
  font-size: .87rem; color: rgba(255,255,255,.8);
  line-height: 1.78; margin-bottom: 1rem; font-style: italic;
}
.review-tag {
  display: inline-block; font-size: .67rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  background: rgba(155,181,184,.2); color: var(--sage);
  padding: .2rem .6rem; border-radius: 3px; margin-bottom: .65rem;
}
.reviewer { display: flex; align-items: center; gap: .6rem; }
.rev-init {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(155,181,184,.2); border: 1px solid rgba(155,181,184,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .74rem; font-weight: 500; color: var(--sage); flex-shrink: 0;
}
.rev-name { font-size: .83rem; font-weight: 500; color: #fff; }
.rev-src  { font-size: .7rem; color: rgba(255,255,255,.45); }

/* ── SOCIAL PROOF BG SECTION ── */
.proof-section { position: relative; padding: 5.5rem 0; overflow: hidden; }
.proof-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1800&q=80');
  background-size: cover; background-position: center 40%;
}
.proof-overlay { position: absolute; inset: 0; background: rgba(60,56,52,.88); }
.proof-content { position: relative; z-index: 2; }
.stat-num {
  font-family: var(--font-h); font-size: 3.2rem;
  font-weight: 700; color: #fff; line-height: 1;
}
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* ── VISIT CARD ── */
.visit-card {
  background: var(--cream-l); border-radius: var(--radius-lg);
  padding: 2rem; height: 100%;
  border-top: 4px solid var(--teal-d);
}
.visit-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brown); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.15rem;
  margin-bottom: 1rem;
}
.visit-card h5 { font-size: .97rem; color: var(--brown); margin-bottom: 1rem; }
.visit-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.visit-steps li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .87rem; color: var(--brown-light);
}
.step-n {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-d); color: #fff;
  font-size: .68rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.acute-note {
  background: rgba(155,181,184,.15); border: 1px solid rgba(155,181,184,.3);
  border-radius: var(--radius-sm); padding: .85rem 1rem;
  font-size: .82rem; color: var(--brown-light); margin-top: 1.25rem; line-height: 1.65;
}
.acute-note strong { color: var(--brown); }

/* ── PROGRESS TIMELINE ── */
.progress-wrap { position: relative; }
.progress-wrap::before {
  content: '';
  position: absolute; top: 28px;
  left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 2px; background: linear-gradient(90deg, var(--teal-d), var(--steel));
}
.timeline-step { text-align: center; padding: 0 .5rem; }
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fff; border: 2px solid var(--teal-d);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-h); font-size: 1rem; color: var(--brown);
  position: relative; z-index: 1;
}
.timeline-step h6 { font-size: .88rem; font-weight: 600; color: var(--brown); margin-bottom: .35rem; }
.timeline-step p  { font-size: .8rem; color: var(--brown-light); line-height: 1.6; }
.progress-note {
  background: rgba(155,181,184,.15); border-left: 3px solid var(--teal-d);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-size: .88rem; color: var(--brown-light);
}

/* ── PILLAR (Why Us) ── */
.pillar { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.pillar:last-child { margin-bottom: 0; }
.pillar-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(155,181,184,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--teal-d); flex-shrink: 0;
}
.pillar h5 { font-size: .97rem; font-weight: 500; color: var(--brown); margin-bottom: .3rem; }
.pillar p  { font-size: .87rem; color: var(--brown-light); line-height: 1.75; margin-bottom: .4rem; }

/* ── COMPARISON TABLE ── */
.cc-table { width: 100%; border-collapse: collapse; }
.cc-table th {
  padding: .85rem 1rem; font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.82); background: var(--brown);
  text-align: left; border-bottom: 2px solid rgba(155,181,184,.25);
}
.cc-table th.hl { color: var(--sage); }
.cc-table td {
  padding: .85rem 1rem; font-size: .86rem;
  color: var(--brown-light); border-bottom: 1px solid rgba(155,181,184,.15);
  background: #fff; vertical-align: top; line-height: 1.65;
}
.cc-table td.hl { background: rgba(155,181,184,.1); font-weight: 500; color: var(--brown); }
.cc-table tr:last-child td { border-bottom: none; }
.cc-table td:first-child { font-weight: 500; color: var(--brown); }
.comp-yes { color: var(--teal-d); font-weight: 600; }
.comp-no  { color: var(--stone); }
.table-note {
  background: var(--brown); color: rgba(227,222,208,.72);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  font-size: .84rem; font-style: italic; margin-top: .75rem;
  line-height: 1.7;
}

/* ── AUDIENCE / SPECIALTY CARDS ── */
.aud-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.aud-card img { height: 240px; transition: transform .5s var(--ease); }
.aud-card:hover img { transform: scale(1.05); }
.aud-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30,28,26,.82) 100%);
}
.aud-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1rem .9rem; }
.aud-label h5 { color: #fff; font-size: .97rem; font-weight: 500; margin-bottom: .2rem; }
.aud-label p  { font-size: .76rem; color: rgba(255,255,255,.7); margin: 0 0 .45rem; }
.aud-label a  { font-size: .74rem; color: var(--sage); text-decoration: none; display: inline-flex; align-items: center; gap: .25rem; }
.aud-label a:hover { color: #fff; }

/* ── CONDITIONS PILL LIST ── */
.cond-item {
  display: flex; align-items: center; gap: .7rem;
  padding: .8rem .95rem; border-radius: var(--radius-sm);
  border: 1px solid rgba(155,181,184,.15);
  background: #fff; text-decoration: none;
  color: var(--brown); font-size: .87rem;
  transition: all .25s; height: 100%;
}
.cond-item i { color: var(--steel); font-size: .92rem; flex-shrink: 0; }
.cond-item:hover {
  border-color: rgba(78,130,133,.35);
  background: rgba(78,130,133,.05);
  transform: translateX(3px);
  color: var(--teal-d);
}

/* ── ACCORDION (FAQ) — Bootstrap override ── */
.accordion-item {
  background: var(--cream-l) !important;
  border: 1px solid rgba(155,181,184,.18) !important;
  border-radius: var(--radius) !important;
  margin-bottom: .55rem !important;
  overflow: hidden;
}
.accordion-button {
  background: var(--cream-l) !important;
  color: var(--brown) !important;
  font-family: var(--font-b) !important;
  font-size: .92rem !important;
  font-weight: 500 !important;
  padding: 1.1rem 1.35rem !important;
  box-shadow: none !important;
  line-height: 1.5;
}
.accordion-button:not(.collapsed) {
  color: var(--teal-d) !important;
  background: #fff !important;
}
.accordion-button::after {
  filter: opacity(.5);
}
.accordion-body {
  font-size: .87rem !important;
  color: var(--brown-light) !important;
  line-height: 1.82 !important;
  padding: 0 1.35rem 1.25rem !important;
  background: #fff !important;
}

/* ── LOCATION SECTION ── */
.nbr-tag {
  font-size: .7rem; padding: .22rem .68rem;
  background: rgba(155,181,184,.12); border: 1px solid rgba(155,181,184,.28);
  border-radius: 4px; color: var(--teal-d); display: inline-block;
}
.location-pill {
  display: block; text-align: center; text-decoration: none;
  background: var(--cream-l); border: 1.5px solid rgba(155,181,184,.22);
  border-radius: 50px; padding: .55rem 1rem;
  font-size: .84rem; color: var(--brown); font-weight: 500;
  transition: all .2s;
}
.location-pill:hover {
  border-color: var(--teal-d);
  background: rgba(78,130,133,.07);
  color: var(--teal-d);
}

/* ── CTA SPLIT SECTION ── */
.cta-section { background: var(--teal-d); position: relative; overflow: hidden; }
.cta-img-col { position: relative; min-height: 500px; }
.cta-img-col img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.cta-img-darken { position: absolute; inset: 0; background: rgba(58,110,113,.3); }
.cta-body { padding: 4.5rem 3.5rem 4.5rem 4rem; }
.cta-body h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff; margin-bottom: 1rem; line-height: 1.18;
}
.cta-body p {
  color: rgba(255,255,255,.82); font-size: .97rem;
  max-width: 420px; margin-bottom: 1.85rem; line-height: 1.78;
}
.cta-sub-note {
  font-size: .82rem; color: rgba(255,255,255,.55);
  max-width: 420px; margin-top: 1rem; line-height: 1.65;
}
.cta-micro {
  font-size: .74rem; color: rgba(255,255,255,.55);
  text-align: center; margin-top: .7rem; line-height: 1.6;
}

/* ── URGENT CALLOUT ── */
.urgent-callout {
  background: #fef8ef; border: 1.5px solid rgba(200,169,107,.45);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  display: flex; gap: .85rem; align-items: flex-start;
  font-size: .86rem; color: var(--brown-light); line-height: 1.65;
}
.urgent-callout i { color: #C8A96B; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.urgent-callout strong { color: var(--brown); display: block; margin-bottom: .2rem; }

/* ── AWARD BAR ── */
.award-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: .3rem; padding: 0 .8rem;
}
.award-ico {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-m);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--teal-d);
}
.award-title { font-size: .77rem; font-weight: 500; color: var(--brown); line-height: 1.25; }
.award-sub   { font-size: .68rem; color: var(--warm); }
.award-sep   { width: 1px; height: 38px; background: var(--cream); align-self: center; flex-shrink: 0; }

/* ── REFERENCES ── */
.references {
  font-size: .75rem; color: var(--warm); line-height: 1.9;
}
.references a { color: var(--teal-d); text-decoration: none; }
.references a:hover { text-decoration: underline; }
.review-disclaimer {
  font-size: .72rem; color: var(--stone);
  border-top: 1px solid rgba(155,181,184,.18);
  padding-top: .85rem; margin-top: .85rem; line-height: 1.6;
}

/* ── FOOTER ── */
footer { background: #2A2826; padding: 3rem 0 1.5rem; color: rgba(227,222,208,.6); font-size: .81rem; }
.f-logo {
  font-family: var(--font-h); font-size: 1.15rem;
  font-weight: 700; color: var(--cream-l); text-decoration: none;
}
.f-logo em { font-style: normal; color: var(--sage); }
footer h6 {
  font-size: .68rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sage); margin-bottom: .85rem;
}
footer a {
  color: rgba(227,222,208,.55); text-decoration: none;
  display: block; margin-bottom: .38rem; font-size: .81rem;
  transition: color .2s;
}
footer a:hover { color: var(--cream-l); }
.f-hr { border-color: rgba(187,200,198,.1); margin: 1.5rem 0 1rem; }
.f-bottom { font-size: .73rem; color: rgba(227,222,208,.3); }

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--brown);
  padding: .85rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  gap: .75rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
.fu { animation: fadeUp .65s ease both; }
.fi { animation: fadeIn .6s ease both; }
.d1 { animation-delay: .10s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .34s; }
.d4 { animation-delay: .46s; }
.d5 { animation-delay: .58s; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  #hero { min-height: auto; }
  .hero-content { padding: 4rem 0; }
  .hero-card { margin-top: 2.5rem; }
  .cta-img-col { min-height: 280px; }
  .cta-body { padding: 3rem 2rem; }
  .progress-wrap::before { display: none; }
}
@media (max-width: 767px) {
  .py-section { padding: 4rem 0; }
}
@media (max-width: 575px) {
  .t-sep { display: none; }
  .award-sep { display: none; }
  .nav-links { display: none; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}

/* ── WHY US — SPLIT IMAGE ── */
.why-section { padding: 0; background: #fff; }
.why-img-col { position: relative; min-height: 560px; overflow: hidden; }
.why-img-col img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.why-img-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,.15) 100%); }
.why-content { padding: 5rem 3.5rem 5rem 4rem; }
.pillar { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.pillar:last-child { margin-bottom: 0; }
.pillar-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(155,181,184,.15); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--teal-d); flex-shrink: 0; }
.pillar h5 { font-size: .97rem; font-weight: 500; color: var(--brown); margin-bottom: .3rem; }
.pillar p { font-size: .87rem; color: var(--brown-light); line-height: 1.75; margin-bottom: .4rem; }

/* ── SERVICES ── */
.services-section { padding: 5.5rem 0; background: var(--cream-l); }
.svc-card { background: #fff; border-radius: 12px; padding: 1.65rem 1.5rem; height: 100%; border: 1px solid rgba(155,181,184,.18); transition: transform .3s var(--ease), box-shadow .3s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(60,56,52,.1); }
.svc-tag { display: inline-block; font-size: .67rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; background: rgba(155,181,184,.15); color: var(--teal-d); padding: .22rem .65rem; border-radius: 4px; margin-bottom: .85rem; }
.svc-card h5 { font-size: .97rem; font-weight: 500; color: var(--brown); margin-bottom: .55rem; }
.svc-card p { font-size: .86rem; color: var(--brown-light); line-height: 1.75; margin-bottom: .9rem; }

/* ── SOCIAL PROOF – PHOTO BG ── */
.proof-section {
  position: relative; padding: 5.5rem 0;
  overflow: hidden;
}
.proof-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1800&q=80');
  background-size: cover; background-position: center 40%;
}
.proof-overlay { position: absolute; inset: 0; background: rgba(60,56,52,.88); }
.proof-content { position: relative; z-index: 2; }
.stat-num { font-family: var(--font-h); font-size: 3.2rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-lbl { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .2rem; }
.review-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 1.6rem; height: 100%; backdrop-filter: blur(8px); }
.review-card .stars { color: #C8A96B; font-size: .88rem; margin-bottom: .5rem; }
.review-card p { font-size: .87rem; color: rgba(255,255,255,.8); line-height: 1.78; margin-bottom: 1rem; font-style: italic; }
.review-tag { display: inline-block; font-size: .67rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; background: rgba(155,181,184,.2); color: var(--sage); padding: .2rem .6rem; border-radius: 3px; margin-bottom: .65rem; }
.reviewer { display: flex; align-items: center; gap: .6rem; }
.rev-init { width: 34px; height: 34px; border-radius: 50%; background: rgba(155,181,184,.2); border: 1px solid rgba(155,181,184,.3); display: flex; align-items: center; justify-content: center; font-size: .74rem; font-weight: 500; color: var(--sage); flex-shrink: 0; }
.rev-name { font-size: .83rem; font-weight: 500; color: #fff; }
.rev-src { font-size: .7rem; color: rgba(255,255,255,.45); }

/* ── DOCTORS – PHOTO CARDS ── */
.docs-section { padding: 5.5rem 0; background: #EEF2F0; }
.docs-section h2 { color: var(--brown); }
.docs-section .eyebrow { color: var(--teal-d); }
.docs-section .divider { background: var(--steel); }
.docs-section > .container > .row.justify-content-center p { color: var(--brown-light); }
.doc-card { border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid rgba(155,181,184,.25); transition: transform .3s var(--ease), box-shadow .3s; }
.doc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(78,130,133,.13); }
.doc-photo { height: 220px; position: relative; overflow: hidden; }
.doc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s; }
.doc-card:hover .doc-photo img { transform: scale(1.04); }
.doc-photo-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(78,130,133,.35) 100%); }
.doc-body { padding: 1.6rem; background: #fff; }
.doc-body h5 { color: var(--brown); font-size: 1rem; font-weight: 500; margin-bottom: .18rem; }
.doc-cred { font-size: .75rem; color: var(--teal-d); display: block; margin-bottom: .85rem; letter-spacing: .03em; }
.doc-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1rem; }
.doc-tag { font-size: .67rem; padding: .18rem .58rem; border-radius: 3px; background: rgba(155,181,184,.15); color: var(--teal-d); border: 1px solid rgba(155,181,184,.3); }
.doc-body p { font-size: .84rem; color: var(--brown-light); line-height: 1.72; margin-bottom: .9rem; }
.doc-quote { border-left: 2px solid rgba(155,181,184,.5); padding-left: .9rem; font-style: italic; font-size: .82rem; color: var(--warm); line-height: 1.6; margin-bottom: 1rem; }

/* ── PRICING ── */
.pricing-section { padding: 5.5rem 0; background: #fff; }
.p-card { border-radius: 14px; overflow: hidden; border: 1px solid rgba(155,181,184,.22); height: 100%; }
.p-card-head { padding: 1.85rem 1.75rem 1.5rem; background: var(--cream-l); }
.p-card-body { padding: 1.75rem; }
.p-num { font-family: var(--font-h); font-size: 3.3rem; font-weight: 700; color: var(--teal-d); line-height: 1; }
.p-num sup { font-size: 1.4rem; vertical-align: super; }
.p-lbl { font-size: .8rem; color: var(--warm); margin-top: .25rem; }
.p-list { list-style: none; }
.p-list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .87rem; color: var(--brown-light); padding: .38rem 0; border-bottom: 1px solid rgba(155,181,184,.1); line-height: 1.5; }
.p-list li:last-child { border-bottom: none; }
.p-list li i { color: var(--teal-d); font-size: .88rem; flex-shrink: 0; margin-top: 2px; }
.mcare-box { background: var(--brown); border-radius: 12px; padding: 1.65rem 1.85rem; display: flex; align-items: flex-start; gap: 1.15rem; }
.mcare-ico { width: 44px; height: 44px; background: rgba(155,181,184,.18); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; color: var(--sage); flex-shrink: 0; }
.mcare-box h5 { color: var(--cream-l); font-size: .95rem; margin-bottom: .28rem; }
.mcare-box p { color: rgba(227,222,208,.68); font-size: .85rem; margin: 0; line-height: 1.7; }

/* ── CONDITIONS ── */
.conditions-section { padding: 5.5rem 0; background: var(--cream-l); }
.cond-item { display: flex; align-items: center; gap: .7rem; padding: .8rem .95rem; border-radius: 7px; border: 1px solid rgba(155,181,184,.15); background: #fff; text-decoration: none; color: var(--brown); font-size: .87rem; transition: all .25s; }
.cond-item i { color: var(--steel); font-size: .92rem; flex-shrink: 0; }
.cond-item:hover { border-color: rgba(78,130,133,.35); background: rgba(78,130,133,.05); transform: translateX(3px); color: var(--teal-d); }

/* ── FAQ ── */
.faq-section { padding: 5.5rem 0; background: #fff; }
.accordion-item { background: var(--cream-l)!important; border: 1px solid rgba(155,181,184,.18)!important; border-radius: 9px!important; margin-bottom: .55rem!important; overflow: hidden; }
.accordion-button { background: var(--cream-l)!important; color: var(--brown)!important; font-family: var(--font-b)!important; font-size: .92rem!important; font-weight: 500!important; padding: 1.1rem 1.35rem!important; box-shadow: none!important; line-height: 1.5; }
.accordion-button:not(.collapsed) { color: var(--teal-d)!important; background: #fff!important; }
.accordion-body { font-size: .87rem!important; color: var(--brown-light)!important; line-height: 1.82!important; padding: 0 1.35rem 1.25rem!important; background: #fff!important; }

/* ── LOCATION – PHOTO BG ── */
.location-section { position: relative; overflow: hidden; background: var(--brown); }
.location-bg { display: none; }
.location-overlay { display: none; }
.location-content { position: relative; z-index: 2; }
.hrs-row { display: flex; justify-content: space-between; font-size: .87rem; padding: .45rem 0; border-bottom: 1px solid rgba(155,181,184,.18); color: var(--brown-light); }
.hrs-row:last-child { border-bottom: none; }
.hrs-row span:first-child { font-weight: 500; color: var(--brown); }
.hrs-row .closed { color: rgba(60,56,52,.28); }
.loc-detail { display: flex; gap: .8rem; margin-bottom: 1rem; align-items: flex-start; }
.loc-detail i { color: var(--teal-d); font-size: .95rem; margin-top: 2px; flex-shrink: 0; }
.loc-detail p { font-size: .87rem; color: var(--brown-light); margin: 0; line-height: 1.65; }
.loc-detail strong { color: var(--brown); }
.loc-left-card { display: none; }
.map-frame { display: none; }
.nbr-tags { display: flex; flex-wrap: wrap; gap: .38rem; }
.nbr-tag { font-size: .7rem; padding: .22rem .68rem; background: rgba(155,181,184,.12); border: 1px solid rgba(155,181,184,.28); border-radius: 4px; color: var(--teal-d); }
.tour-thumb { position: relative; border-radius: 7px; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.tour-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.tour-thumb:hover img { transform: scale(1.08); }
.tour-thumb-overlay { position: absolute; inset: 0; background: rgba(60,56,52,0); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.tour-thumb-overlay i { color: #fff; font-size: 1.1rem; opacity: 0; transition: opacity .25s; }
.tour-thumb:hover .tour-thumb-overlay { background: rgba(60,56,52,.45); }
.tour-thumb:hover .tour-thumb-overlay i { opacity: 1; }

/* ── FINAL CTA – SPLIT ── */
.cta-section { background: var(--teal-d); position: relative; overflow: hidden; }
.cta-img-col { position: relative; min-height: 500px; }
.cta-img-col img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.cta-img-darken { position: absolute; inset: 0; background: rgba(58,110,113,.3); }
.cta-body { padding: 4.5rem 3.5rem 4.5rem 4rem; }
.cta-body h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 1rem; line-height: 1.18; }
.cta-body p { color: rgba(255,255,255,.82); font-size: .97rem; max-width: 400px; margin-bottom: 1.85rem; line-height: 1.78; }
.cta-form { background: rgba(255,255,255,.13); border-radius: 12px; padding: 1.85rem 1.75rem; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(10px); }
.cta-form-title { font-family: var(--font-h); font-size: 1.1rem; color: #fff; margin-bottom: 1.1rem; }
.cta-field { width: 100%; padding: .72rem 1rem; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.22); border-radius: 6px; color: #fff; font-family: var(--font-b); font-size: .87rem; margin-bottom: .65rem; outline: none; -webkit-appearance: none; transition: background .2s, border-color .2s; }
.cta-field::placeholder { color: rgba(255,255,255,.5); }
.cta-field:focus { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.cta-field option { color: var(--brown); background: #fff; }
.cta-micro { font-size: .74rem; color: rgba(255,255,255,.58); text-align: center; margin-top: .7rem; line-height: 1.6; }

.hidden-bar{position:fixed;right:-350px;top:0;width:350px;height:100%;overflow-y:auto;border-left:1px solid #231b26;z-index:99999;opacity:0;background-color:#150f17;visibility:hidden;-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;-ms-transition:all 0.5s ease;-o-transition:all 0.5s ease;transition:all 0.5s ease}.side-content-visible .hidden-bar{right:0;opacity:1;visibility:visible}.hidden-bar .inner-box{position:relative;background-color:#150f17;padding:55px 40px 50px}.hidden-bar .inner-box .cross-icon{position:absolute;right:30px;top:30px;cursor:pointer;color:#fff;font-size:20px}.hidden-bar .inner-box h2{position:relative;font-size:28px;font-weight:600;line-height:1.2em;color:#fff;margin-bottom:20px}.mCSB_inside>.mCSB_container{margin-right:0}.hidden-bar .appointment-form{position:relative}.hidden-bar .appointment-form .form-group{position:relative;margin-bottom:15px}.hidden-bar .appointment-form input[type="text"],.hidden-bar .appointment-form input[type="email"],.hidden-bar .appointment-form textarea{position:relative;display:block;width:100%;line-height:23px;padding:10px 25px;height:45px;color:#fff;font-size:16px;border:1px solid rgb(255 255 255 / .1);background:none;transition:all 300ms ease;-ms-transition:all 300ms ease;-webkit-transition:all 300ms ease}.hidden-bar .appointment-form input::placeholder,.hidden-bar .appointment-form textarea::placeholder{color:#bdbdbd}.hidden-bar .appointment-form input:focus,.hidden-bar .appointment-form textarea:focus{border-color:#fff}.hidden-bar .appointment-form textarea{height:135px;resize:none}.hidden-bar .appointment-form .form-group button{margin-top:10px;display:block;width:100%;background:#fff;border:2px solid #fff}.hidden-bar .appointment-form .form-group button:hover{background:#e478f3;border:2px solid #e478f3}.contact-info-box{position:relative;padding-top:50px}.contact-info-box .info-list{position:relative;padding-bottom:18px;margin-bottom:25px}.contact-info-box .info-list li{position:relative;color:#fff;font-size:18px;font-weight:500;margin-bottom:5px}.contact-info-box .info-list:before{position:absolute;content:'';left:0;bottom:0;width:50px;height:1px;background-color:#fff}.contact-info-box .social-list{position:relative}.contact-info-box .social-list li{position:relative;width:50%;float:left;margin-bottom:6px;display:inline-block}.contact-info-box .social-list li a{position:relative;font-size:15px;font-weight:500;color:#f9426d;transition:all 0.3s ease;-moz-transition:all 0.3s ease;-webkit-transition:all 0.3s ease;-ms-transition:all 0.3s ease;-o-transition:all 0.3s ease}
