/* ==========================================================================
   Core Chiro Rehab — Landing Page Redesign
   Namespaced under `.chc-landing` to avoid clashing with legacy theme CSS.
   ========================================================================== */

.chc-landing{
  --c-orange:#ff8600;
  --c-orange-dark:#e07300;
  --c-mint:#eff7f6;
  --c-gold:#f6db7d;
  --c-ink:#0f1720;
  --c-ink-soft:#57636f;
  --c-white:#ffffff;
  --c-border:rgba(15,23,32,.08);
  --c-shadow-sm:0 6px 18px -6px rgba(15,23,32,.12);
  --c-shadow-md:0 24px 50px -18px rgba(15,23,32,.22);
  --c-shadow-orange:0 18px 38px -12px rgba(255,134,0,.45);
  --f-head:'Plus Jakarta Sans', sans-serif;
  --f-body:'DM Sans', sans-serif;
  font-family:var(--f-body);
  color:var(--c-ink);
  overflow:hidden;
  background:#fff;
}
.chc-landing *{ box-sizing:border-box; }
.chc-landing img{ max-width:100%; }
.chc-landing a{ transition:.25s ease; }
.chc-landing h1,
.chc-landing h2,
.chc-landing h3,
.chc-landing h4{ font-family:var(--f-head); color:var(--c-ink); margin:0; line-height:1.2; }
.chc-landing p{ margin:0; }
.chc-landing ul{ margin:0; padding:0; list-style:none; }
.chc-landing .chc-container{ max-width:1280px; margin:0 auto; padding:0 24px; }
.chc-landing section{ position:relative; }

/* ---------- shared bits ---------- */
.chc-eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--f-head); font-weight:700; font-size:13px;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--c-orange-dark);
  background:rgba(255,134,0,.1);
  padding:8px 16px 8px 12px;
  border-radius:50px;
  margin-bottom:18px;
}
.chc-eyebrow::before{ content:''; width:7px; height:7px; border-radius:50%; background:var(--c-orange); }
.chc-eyebrow.on-dark{ background:rgba(255,255,255,.14); color:#ffd9a3; }
.chc-eyebrow.on-dark::before{ background:#ffd9a3; }

.chc-head{ max-width:640px; margin-bottom:46px; }
.chc-head--center{ margin-left:auto; margin-right:auto; text-align:center; }
.chc-head p{ margin-top:14px; color:var(--c-ink-soft); font-size:16.5px; line-height:1.75; }

/* Every section heading shares the same size/weight/tracking, wherever it lives. */
.chc-landing section h2{ font-size:clamp(28px, 3.6vw, 42px); font-weight:800; letter-spacing:-.01em; }

.chc-btn{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--f-head); font-weight:700; font-size:15px;
  padding:15px 28px; border-radius:50px;
  text-decoration:none; white-space:nowrap;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
  border:2px solid transparent;
}
.chc-btn i{ font-size:13px; }
.chc-btn--primary{
  background:linear-gradient(135deg, var(--c-orange), #ff9d33);
  color:#fff; box-shadow:var(--c-shadow-orange);
}
.chc-btn--primary:hover{ transform:translateY(-3px); box-shadow:0 22px 44px -14px rgba(255,134,0,.55); color:#fff; }
.chc-btn--ghost-light{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.4); color:#fff; backdrop-filter:blur(6px); }
.chc-btn--ghost-light:hover{ background:#fff; color:var(--c-ink); border-color:#fff; transform:translateY(-3px); }
.chc-btn--outline{ background:transparent; border-color:var(--c-border); color:var(--c-ink); }
.chc-btn--outline:hover{ border-color:var(--c-orange); color:var(--c-orange-dark); transform:translateY(-3px); }
.chc-btn--dark{ background:var(--c-ink); color:#fff; }
.chc-btn--dark:hover{ background:#000; transform:translateY(-3px); color:#fff; }

/* reveal-on-scroll — hidden state only applies once JS confirms it can reveal it again,
   so content stays visible by default if JS is blocked or slow to load. */
.chc-reveal{ transition:opacity .8s cubic-bezier(.25,.7,.3,1), transform .8s cubic-bezier(.25,.7,.3,1); }
html.chc-js .chc-reveal{ opacity:0; transform:translateY(28px); }
.chc-reveal.in-view{ opacity:1 !important; transform:translateY(0) !important; }
.chc-reveal.delay-1.in-view{ transition-delay:.1s; }
.chc-reveal.delay-2.in-view{ transition-delay:.2s; }
.chc-reveal.delay-3.in-view{ transition-delay:.3s; }
.chc-reveal.delay-4.in-view{ transition-delay:.4s; }
.chc-reveal.delay-5.in-view{ transition-delay:.5s; }
.chc-reveal.delay-6.in-view{ transition-delay:.6s; }
.chc-reveal.delay-7.in-view{ transition-delay:.7s; }
.chc-reveal.delay-8.in-view{ transition-delay:.8s; }
html.chc-js .chc-reveal--zoom{ transform:scale(.92); }
html.chc-js .chc-reveal--left{ transform:translateX(-40px); }
html.chc-js .chc-reveal--right{ transform:translateX(40px); }
.chc-reveal--zoom.in-view{ transform:scale(1) !important; }
.chc-reveal--left.in-view,
.chc-reveal--right.in-view{ transform:translateX(0) !important; }

@keyframes chc-float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-16px); } }
@keyframes chc-spin-slow{ to{ transform:rotate(360deg); } }
@keyframes chc-kenburns{ 0%{ transform:scale(1) translate(0,0); } 100%{ transform:scale(1.14) translate(-1%,-1%); } }
@keyframes chc-pulse-ring{ 0%{ box-shadow:0 0 0 0 rgba(255,134,0,.45); } 100%{ box-shadow:0 0 0 18px rgba(255,134,0,0); } }
@keyframes chc-bounce-down{ 0%,100%{ transform:translateY(0); opacity:.5; } 50%{ transform:translateY(10px); opacity:1; } }
@keyframes chc-word-in{ from{ opacity:0; transform:translateY(100%) rotate(4deg); } to{ opacity:1; transform:translateY(0) rotate(0); } }
@keyframes chc-shimmer{ 0%{ background-position:-200% 0; } 100%{ background-position:200% 0; } }
@keyframes chc-marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* gradient text accent */
.chc-grad{
  background:linear-gradient(120deg, var(--c-orange) 10%, #ff5f2e 50%, var(--c-gold) 90%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* decorative dot-grid backdrop */
.chc-dotgrid{
  position:absolute; z-index:0; pointer-events:none;
  background-image:radial-gradient(rgba(15,23,32,.12) 1.6px, transparent 1.6px);
  background-size:20px 20px;
}
.chc-dotgrid.on-dark{ background-image:radial-gradient(rgba(255,255,255,.09) 1.6px, transparent 1.6px); }

/* marquee trust ticker */
.chc-ticker{ background:var(--c-ink); padding:22px 0; overflow:hidden; position:relative; }
.chc-ticker__track{ display:flex; width:max-content; animation:chc-marquee 28s linear infinite; }
.chc-ticker:hover .chc-ticker__track{ animation-play-state:paused; }
.chc-ticker__item{ display:flex; align-items:center; gap:12px; padding:0 30px; white-space:nowrap; color:rgba(255,255,255,.85); font-family:var(--f-head); font-weight:700; font-size:15px; }
.chc-ticker__item i{ color:var(--c-orange); font-size:13px; }
.chc-ticker__dot{ width:5px; height:5px; border-radius:50%; background:rgba(255,255,255,.25); flex-shrink:0; margin-left:30px; }

/* button shine sweep */
.chc-btn--primary{ position:relative; overflow:hidden; }
.chc-btn--primary::after{
  content:''; position:absolute; top:0; left:-60%; width:35%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform:skewX(-20deg);
  transition:left .7s ease;
}
.chc-btn--primary:hover::after{ left:130%; }

/* gradient-ring hover for feature + testimonial cards */
.chc-feature-card{ position:relative; }
.chc-feature-card::before{
  content:''; position:absolute; inset:0; border-radius:inherit; padding:1.5px;
  background:linear-gradient(135deg, var(--c-orange), transparent 45%, transparent 55%, var(--c-orange));
  -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude;
  opacity:0; transition:opacity .4s ease; pointer-events:none;
}
.chc-feature-card:hover::before{ opacity:1; }

/* ==========================================================================
   HERO
   ========================================================================== */
.chc-hero{
  min-height:calc(100vh - var(--chc-total-header-h, 133px));
  min-height:calc(100svh - var(--chc-total-header-h, 133px));
  display:flex; align-items:center;
  background:var(--c-ink);
  overflow:hidden;
  padding:56px 0;
}
.chc-hero__bg{ position:absolute; inset:0; z-index:0; }
.chc-hero__bg img{
  width:100%; height:100%; object-fit:cover;
  animation:chc-kenburns 18s ease-in-out infinite alternate;
}
.chc-hero__bg::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(10,15,20,.52) 8%, rgba(10,15,20,.30) 42%, rgba(10,15,20,.08) 100%);
}
.chc-hero__shape{
  position:absolute; border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(255,134,0,.55), rgba(255,134,0,0) 70%);
  filter:blur(2px);
  z-index:0;
}
.chc-hero__shape--2{ width:260px; height:260px; bottom:-60px; right:22%; background:radial-gradient(circle at 30% 30%, rgba(246,219,125,.5), rgba(246,219,125,0) 70%); animation:chc-float 7s ease-in-out infinite 1s; }

/* Hero uses its own wider, left-biased container instead of the standard
   centered .chc-container — on wide screens a 1280px centered column left
   a large empty gutter before the text, making it read as centered even
   though the text itself is left-aligned. */
.chc-hero .chc-container{ max-width:none; margin:0; padding-left:clamp(24px, 6vw, 100px); padding-right:24px; }
.chc-hero__inner{ position:relative; z-index:2; }
.chc-hero__content{ max-width:640px; }
.chc-hero__content h1{
  font-size:clamp(34px, 5vw, 60px);
  font-weight:800; color:#fff; letter-spacing:-.015em; line-height:1.08;
  margin:18px 0 22px;
}
.chc-hero__word{ display:inline-block; overflow:hidden; }
.chc-hero__word span{ display:inline-block; animation:chc-word-in .85s cubic-bezier(.2,.8,.2,1) both; }
.chc-hero__content p.chc-lead{ font-size:18px; color:rgba(255,255,255,.82); max-width:520px; line-height:1.75; margin-bottom:34px; }

.chc-hero__cta{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:28px; }

.chc-hero__trust{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; margin-bottom:20px; }
.chc-hero__stars{ display:flex; gap:3px; color:var(--c-gold); font-size:15px; }
.chc-hero__trust-text{ color:rgba(255,255,255,.85); font-size:14.5px; font-weight:600; }
.chc-hero__trust-text strong{ color:#fff; }

.chc-hero__badges{ display:flex; flex-wrap:wrap; gap:10px; }
.chc-hero__badge{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
  padding:9px 16px; border-radius:50px;
  color:#fff; font-size:13px; font-weight:600; white-space:nowrap;
}
.chc-hero__badge i{ color:var(--c-orange); font-size:11px; }

.chc-hero__scroll{
  position:absolute; left:50%; bottom:36px; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,.65); font-size:11px; letter-spacing:.12em; text-transform:uppercase;
}
.chc-hero__scroll i{ animation:chc-bounce-down 1.8s ease-in-out infinite; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.chc-about{ padding:110px 0; background:#fff; }
.chc-about__grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:70px; align-items:center; }
.chc-about__media{ position:relative; }
.chc-about__media-frame{ position:relative; border-radius:26px; overflow:hidden; box-shadow:var(--c-shadow-md); }
.chc-about__media-frame img{ width:100%; height:520px; object-fit:cover; display:block; transition:transform .6s ease; }
.chc-about__media:hover .chc-about__media-frame img{ transform:scale(1.05); }
.chc-about__badge{
  position:absolute; left:-30px; bottom:36px;
  background:var(--c-ink); color:#fff; border-radius:18px;
  padding:20px 22px; display:flex; align-items:center; gap:14px;
  box-shadow:var(--c-shadow-md);
  animation:chc-float 6.5s ease-in-out infinite;
}
.chc-about__badge .chc-badge-num{ font-family:var(--f-head); font-size:30px; font-weight:800; color:var(--c-orange); }
.chc-about__badge .chc-badge-text{ font-size:12.5px; color:rgba(255,255,255,.78); line-height:1.4; max-width:120px; }
.chc-about__ring{
  position:absolute; top:-26px; right:-26px; width:110px; height:110px;
  border:2px dashed rgba(255,134,0,.4); border-radius:50%;
  animation:chc-spin-slow 22s linear infinite;
}
.chc-about__list{ display:grid; gap:16px; margin:26px 0 34px; }
.chc-about__list li{ display:flex; align-items:flex-start; gap:14px; font-size:15.5px; font-weight:600; color:var(--c-ink); }
.chc-about__list li i{
  width:28px; height:28px; border-radius:50%; flex-shrink:0; margin-top:1px;
  background:var(--c-mint); color:var(--c-orange);
  display:inline-flex; align-items:center; justify-content:center; font-size:12px;
}
.chc-about__foot{ display:flex; align-items:center; gap:26px; margin-top:36px; flex-wrap:wrap; }
.chc-about__sign{ display:flex; align-items:center; gap:14px; }
.chc-about__sign img{ width:52px; height:52px; border-radius:50%; object-fit:cover; }
.chc-about__sign strong{ display:block; font-size:14.5px; }
.chc-about__sign span{ font-size:12.5px; color:var(--c-ink-soft); }

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.chc-features{ padding:110px 0; background:var(--c-mint); }
.chc-features__grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.chc-feature-card{
  background:#fff; border-radius:20px; padding:38px 30px;
  box-shadow:var(--c-shadow-sm);
  transition:transform .4s ease, box-shadow .4s ease;
}
.chc-feature-card:hover{ transform:translateY(-10px); box-shadow:var(--c-shadow-md); }
.chc-feature-card__icon{
  width:64px; height:64px; border-radius:18px;
  background:linear-gradient(135deg, var(--c-orange), #ff9d33);
  color:#fff; font-size:28px;
  display:inline-flex; align-items:center; justify-content:center;
  margin-bottom:22px;
  transition:transform .4s ease;
}
.chc-feature-card:hover .chc-feature-card__icon{ transform:rotate(-8deg) scale(1.05); }
.chc-feature-card h3{ font-size:19px; font-weight:800; margin-bottom:10px; }
.chc-feature-card p{ color:var(--c-ink-soft); font-size:14.5px; line-height:1.7; margin-bottom:16px; }
.chc-feature-card a{ font-size:13.5px; font-weight:700; color:var(--c-orange-dark); text-decoration:none; display:inline-flex; align-items:center; gap:6px; }
.chc-feature-card a i{ transition:transform .3s ease; font-size:11px; }
.chc-feature-card a:hover i{ transform:translateX(4px); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.chc-services{ padding:110px 0; background:#fff; }
.chc-services__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:46px; }
.chc-services__grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:26px; }
.chc-service-card{
  position:relative; border-radius:22px; overflow:hidden; height:340px;
  box-shadow:var(--c-shadow-sm);
  transition:transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.chc-service-card:hover{ transform:translateY(-10px); box-shadow:var(--c-shadow-md); }
.chc-service-card__bg{ position:absolute; inset:0; }
.chc-service-card__bg img{ width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.chc-service-card:hover .chc-service-card__bg img{ transform:scale(1.12); }
.chc-service-card::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(10,15,20,.92) 8%, rgba(10,15,20,.35) 55%, rgba(10,15,20,.15) 100%);
}
.chc-service-card__content{ position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:flex-end; padding:26px; }
.chc-service-card__icon{
  position:absolute; top:22px; left:22px; z-index:3;
  width:48px; height:48px; border-radius:14px;
  background:rgba(255,255,255,.16); backdrop-filter:blur(8px);
  color:#fff; font-size:20px;
  display:inline-flex; align-items:center; justify-content:center;
  transition:background .3s ease, color .3s ease;
}
.chc-service-card:hover .chc-service-card__icon{ background:var(--c-orange); }
.chc-service-card__content h3{ font-size:18px; margin-bottom:8px; }
.chc-service-card__content h3 a{ color:#fff; text-decoration:none; }
.chc-service-card__content p{
  color:rgba(255,255,255,.78); font-size:13.5px; line-height:1.6;
  max-height:0; opacity:0; overflow:hidden;
  transition:max-height .4s ease, opacity .4s ease, margin .4s ease;
}
.chc-service-card:hover .chc-service-card__content p{ max-height:80px; opacity:1; margin-top:8px; }
.chc-service-card__link{
  position:absolute; right:22px; bottom:22px; z-index:3;
  width:38px; height:38px; border-radius:50%;
  background:var(--c-orange); color:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:13px; transform:scale(0); transition:transform .35s ease;
}
.chc-service-card:hover .chc-service-card__link{ transform:scale(1); }
.chc-services__more{ text-align:center; margin-top:50px; }

/* ==========================================================================
   VIDEO REELS
   ========================================================================== */
.chc-reels{ padding:110px 0; background:var(--c-mint); }
.chc-reels__grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:26px; }
.chc-reel{
  position:relative; aspect-ratio:9/16; border-radius:24px; overflow:hidden;
  background:var(--c-ink); box-shadow:var(--c-shadow-sm); cursor:pointer;
  display:block; width:100%; padding:0; margin:0; border:none; -webkit-appearance:none; appearance:none;
  transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
}
.chc-reel:hover{ transform:translateY(-8px); box-shadow:var(--c-shadow-md); }
.chc-reel__video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; pointer-events:none; }
.chc-reel::after{
  content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 45%, rgba(0,0,0,.05) 100%);
  transition:opacity .35s ease;
}
.chc-reel__play{
  position:absolute; inset:0; margin:auto; width:72px; height:72px; z-index:2;
  border-radius:50%; background:rgba(255,255,255,.94); color:var(--c-ink);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; padding-left:4px;
  transition:transform .3s ease, background .3s ease, color .3s ease;
  box-shadow:0 10px 28px rgba(0,0,0,.4);
}
.chc-reel:hover .chc-reel__play{ transform:scale(1.1); background:var(--c-orange); color:#fff; }
.chc-reels__note{ text-align:center; margin-top:34px; color:var(--c-ink-soft); font-size:13.5px; }
.chc-reels__note i{ color:var(--c-orange); margin-right:6px; }

/* ---- Reel video modal (lightbox) ---- */
.chc-reel-modal{
  position:fixed; inset:0; z-index:1000;
  display:flex; align-items:center; justify-content:center;
  padding:40px 20px;
  opacity:0; visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.chc-reel-modal.is-open{ opacity:1; visibility:visible; }
.chc-reel-modal__backdrop{
  position:absolute; inset:0; background:rgba(8,12,16,.88); backdrop-filter:blur(6px);
}
.chc-reel-modal__dialog{
  position:relative; z-index:1; width:auto; max-width:min(94vw, 480px);
  max-height:88vh; aspect-ratio:9/16;
  transform:scale(.92); transition:transform .35s cubic-bezier(.2,.8,.2,1);
}
.chc-reel-modal.is-open .chc-reel-modal__dialog{ transform:scale(1); }
.chc-reel-modal__video{
  width:100%; height:100%; max-height:88vh; border-radius:18px; background:#000;
  display:block; box-shadow:0 30px 70px -20px rgba(0,0,0,.6); object-fit:contain;
}
.chc-reel-modal__close{
  position:absolute; top:-52px; right:0; z-index:2;
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.12); border:1.5px solid rgba(255,255,255,.3);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:16px; cursor:pointer; transition:.25s ease;
}
.chc-reel-modal__close:hover{ background:var(--c-orange); border-color:var(--c-orange); transform:rotate(90deg); }
@media (max-width:576px){
  .chc-reel-modal{ padding:20px 16px; }
  .chc-reel-modal__dialog{ max-width:94vw; }
  .chc-reel-modal__close{ top:-46px; width:36px; height:36px; font-size:14px; }
}

/* ==========================================================================
   DOCTOR SPOTLIGHT
   ========================================================================== */
.chc-doctor{ padding:110px 0; background:var(--c-ink); position:relative; overflow:hidden; }
.chc-doctor::before{
  content:''; position:absolute; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle, rgba(255,134,0,.18), transparent 70%);
  top:-160px; left:-160px;
}
.chc-doctor__grid{ display:grid; grid-template-columns:.75fr 1.25fr; gap:64px; align-items:center; position:relative; z-index:1; }
.chc-doctor__media{ position:relative; }
.chc-doctor__media-frame{ border-radius:26px; overflow:hidden; box-shadow:0 30px 60px rgba(0,0,0,.5); }
.chc-doctor__media-frame img{ width:100%; height:460px; object-fit:cover; object-position:center 10%; display:block; }
.chc-doctor__rating{
  position:absolute; right:-24px; top:28px;
  background:#fff; border-radius:16px; padding:16px 18px;
  box-shadow:var(--c-shadow-md); display:flex; align-items:center; gap:10px;
  animation:chc-float 7s ease-in-out infinite;
}
.chc-doctor__rating strong{ font-family:var(--f-head); font-size:20px; }
.chc-doctor__rating span{ display:block; font-size:11px; color:var(--c-ink-soft); }
.chc-doctor__rating .chc-hero__stars{ color:var(--c-gold); font-size:12px; }
.chc-doctor__content h2{ color:#fff; }
.chc-doctor__content p.chc-lead{ color:rgba(255,255,255,.72); font-size:16.5px; line-height:1.8; margin:18px 0 28px; max-width:560px; }
.chc-doctor__creds{ display:grid; grid-template-columns:repeat(3, auto); gap:30px; margin-bottom:34px; }
.chc-doctor__creds div strong{ display:block; font-family:var(--f-head); color:var(--c-orange); font-size:24px; }
.chc-doctor__creds div span{ font-size:12.5px; color:rgba(255,255,255,.6); }
.chc-doctor__cta{ display:flex; gap:16px; flex-wrap:wrap; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.chc-process{ padding:110px 0; background:#fff; }
.chc-process__grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:0; position:relative; margin-top:50px; }
.chc-process__line{
  position:absolute; top:34px; left:12.5%; right:12.5%; height:2px;
  background:repeating-linear-gradient(90deg, var(--c-border) 0 10px, transparent 10px 20px);
  z-index:0;
}
.chc-process__step{ position:relative; z-index:1; text-align:center; padding:0 18px; }
.chc-process__num{
  width:68px; height:68px; margin:0 auto 22px; border-radius:50%;
  background:#fff; border:2px solid var(--c-border);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-head); font-weight:800; font-size:22px; color:var(--c-orange);
  transition:.4s ease;
}
.chc-process__step:hover .chc-process__num{ background:var(--c-orange); color:#fff; border-color:var(--c-orange); transform:scale(1.08); }
.chc-process__step h3{ font-size:17px; margin-bottom:10px; }
.chc-process__step p{ font-size:14px; color:var(--c-ink-soft); line-height:1.7; }

/* ==========================================================================
   SCHEDULING / INSURANCE
   ========================================================================== */
.chc-schedule{ padding:110px 0; background:var(--c-mint); }
.chc-schedule__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:64px; align-items:center; }
.chc-schedule__item{ display:flex; gap:16px; margin:26px 0; }
.chc-schedule__icon{
  width:48px; height:48px; border-radius:14px; flex-shrink:0;
  background:#fff; color:var(--c-orange);
  display:inline-flex; align-items:center; justify-content:center; font-size:19px;
  box-shadow:var(--c-shadow-sm);
}
.chc-schedule__item h3{ font-size:17px; margin-bottom:8px; }
.chc-schedule__item p{ font-size:14.5px; color:var(--c-ink-soft); line-height:1.7; }
.chc-schedule__item p a{ color:var(--c-orange-dark); font-weight:700; }
.chc-schedule__content > .chc-btn{ margin-top:12px; }
.chc-schedule__media{ position:relative; }
.chc-schedule__media img{ width:100%; height:480px; object-fit:cover; object-position:center 15%; border-radius:26px; box-shadow:var(--c-shadow-md); display:block; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.chc-testimonials{ padding:110px 0; background:#fff; overflow:hidden; }

/* Multi-card viewport (native scroll-snap), matching the blog slider pattern
   so cards sit side by side with a tight, consistent gap instead of one big
   centered card surrounded by empty space. */
.chc-t-viewport{
  overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  -ms-overflow-style:none; scrollbar-width:none;
  margin:0 -24px; padding:0 24px 10px;
}
.chc-t-viewport::-webkit-scrollbar{ display:none; }
.chc-t-track{ display:flex; gap:22px; }
.chc-t-card{
  flex:0 0 calc(33.333% - 15px); scroll-snap-align:start;
  background:#fff; border-radius:22px; padding:34px; box-shadow:var(--c-shadow-sm);
  text-align:left; display:flex; flex-direction:column;
  transition:transform .4s ease, box-shadow .4s ease;
}
.chc-t-card:hover{ transform:translateY(-6px); box-shadow:var(--c-shadow-md); }
.chc-t-card__quote{ font-size:30px; color:var(--c-orange); opacity:.35; margin-bottom:8px; }
.chc-t-card__text{ font-size:15px; line-height:1.75; color:var(--c-ink); margin-bottom:22px; font-weight:500; flex:1; }
.chc-t-card__stars{ display:flex; justify-content:flex-start; gap:4px; color:var(--c-gold); margin-bottom:14px; font-size:13px; }
.chc-t-card__author{ display:flex; align-items:center; justify-content:flex-start; gap:12px; }
.chc-t-avatar{
  width:44px; height:44px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg, var(--c-orange), #ff9d33);
  color:#fff; display:flex; align-items:center; justify-content:center;
  font-family:var(--f-head); font-weight:800; font-size:14.5px;
}
.chc-t-card__author strong{ display:block; font-size:14.5px; }
.chc-t-card__author span{ font-size:12px; color:var(--c-ink-soft); }
.chc-t-nav{ display:flex; align-items:center; justify-content:center; gap:12px; margin-top:36px; }
.chc-t-arrow{
  width:48px; height:48px; border-radius:50%; border:2px solid var(--c-border); background:#fff;
  display:inline-flex; align-items:center; justify-content:center; cursor:pointer;
  color:var(--c-ink); transition:.3s ease; font-size:14px;
}
.chc-t-arrow:hover{ background:var(--c-orange); border-color:var(--c-orange); color:#fff; }
.chc-t-arrow:disabled{ opacity:.35; cursor:not-allowed; background:#fff; border-color:var(--c-border); color:var(--c-ink); }
.chc-t-google{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px; margin-top:40px; }
.chc-t-google__rating{ display:flex; align-items:center; justify-content:center; gap:12px; color:var(--c-ink-soft); font-size:14.5px; font-weight:600; }
.chc-t-google__rating img{ width:26px; height:26px; }
.chc-t-google__link{ font-size:14px; }

/* ==========================================================================
   TIPS
   ========================================================================== */
.chc-tips{ padding:110px 0; background:var(--c-mint); }
.chc-tips__grid{ display:grid; grid-template-columns:.9fr 1fr 1fr; gap:26px; align-items:stretch; }
.chc-tips__promo{
  background:var(--c-ink); border-radius:22px; padding:40px 32px;
  display:flex; flex-direction:column; justify-content:center;
}
.chc-tips__promo h2{ color:#fff; font-size:clamp(24px, 2.4vw, 30px) !important; margin:14px 0 10px; }
.chc-tips__promo p{ color:rgba(255,255,255,.7); font-size:14.5px; line-height:1.7; margin-bottom:24px; }
.chc-tips__card{
  position:relative; border-radius:22px; overflow:hidden; min-height:340px;
  box-shadow:var(--c-shadow-sm); transition:transform .4s ease, box-shadow .4s ease;
}
.chc-tips__card:hover{ transform:translateY(-8px); box-shadow:var(--c-shadow-md); }
.chc-tips__card-bg{ position:absolute; inset:0; }
.chc-tips__card-bg img{ width:100%; height:100%; object-fit:cover; }
.chc-tips__card::after{ content:''; position:absolute; inset:0; background:linear-gradient(0deg, rgba(10,15,20,.88) 0%, rgba(10,15,20,.35) 55%, rgba(10,15,20,.15) 100%); }
.chc-tips__card-content{ position:relative; z-index:2; height:100%; display:flex; flex-direction:column; justify-content:flex-end; padding:30px; }
.chc-tips__num{ font-family:var(--f-head); font-weight:800; font-size:34px; color:var(--c-orange); line-height:1; margin-bottom:10px; }
.chc-tips__card-content h3{ color:#fff; font-size:19px; margin-bottom:10px; }
.chc-tips__card-content p{ color:rgba(255,255,255,.8); font-size:14px; line-height:1.7; }
.chc-tips__card-content p a{ color:var(--c-gold); font-weight:700; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.chc-faq{ padding:110px 0; background:#fff; }
.chc-faq__list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.chc-faq__item{ background:#fff; border-radius:16px; box-shadow:var(--c-shadow-sm); overflow:hidden; }
.chc-faq__question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:22px 26px; background:none; border:none; cursor:pointer; text-align:left;
  font-family:var(--f-head); font-weight:700; font-size:16px; color:var(--c-ink);
}
.chc-faq__question i{ flex-shrink:0; color:var(--c-orange); font-size:13px; transition:transform .3s ease; }
.chc-faq__item.is-open .chc-faq__question i{ transform:rotate(180deg); }
.chc-faq__answer{ max-height:0; overflow:hidden; transition:max-height .35s ease; }
.chc-faq__answer p{ padding:0 26px 22px; color:var(--c-ink-soft); font-size:14.5px; line-height:1.75; }
.chc-faq__item.is-open .chc-faq__answer{ max-height:260px; }

/* ==========================================================================
   BLOG SLIDER
   ========================================================================== */
.chc-blog{ padding:110px 0; background:var(--c-mint); overflow:hidden; }
.chc-blog__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:46px; }
.chc-blog__actions{ display:flex; align-items:center; gap:18px; }
.chc-blog__nav{ display:flex; gap:10px; }
.chc-blog__arrow{
  width:46px; height:46px; border-radius:50%; border:2px solid var(--c-border);
  background:#fff; color:var(--c-ink);
  display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:13px; transition:.3s ease; flex-shrink:0;
}
.chc-blog__arrow:hover{ background:var(--c-orange); border-color:var(--c-orange); color:#fff; }
.chc-blog__arrow:disabled{ opacity:.35; cursor:not-allowed; background:#fff; border-color:var(--c-border); color:var(--c-ink); }

.chc-blog__viewport{
  overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
  -ms-overflow-style:none; scrollbar-width:none;
  margin:0 -24px; padding:0 24px 10px;
}
.chc-blog__viewport::-webkit-scrollbar{ display:none; }
.chc-blog__track{ display:flex; gap:26px; }

.chc-blog-card{
  flex:0 0 calc(33.333% - 18px); scroll-snap-align:start;
  background:#fff; border-radius:20px; overflow:hidden;
  box-shadow:var(--c-shadow-sm); transition:transform .4s ease, box-shadow .4s ease;
}
.chc-blog-card:hover{ transform:translateY(-8px); box-shadow:var(--c-shadow-md); }
.chc-blog-card__media{ position:relative; display:block; height:210px; overflow:hidden; }
.chc-blog-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.chc-blog-card:hover .chc-blog-card__media img{ transform:scale(1.08); }
.chc-blog-card__date{
  position:absolute; top:16px; left:16px; z-index:2;
  background:#fff; border-radius:12px; padding:8px 12px; text-align:center;
  font-family:var(--f-head); font-size:11px; font-weight:700; color:var(--c-ink-soft);
  line-height:1.3; text-transform:uppercase; box-shadow:var(--c-shadow-sm);
}
.chc-blog-card__date strong{ display:block; font-size:17px; color:var(--c-orange); }
.chc-blog-card__body{ padding:26px; }
.chc-blog-card__meta{ display:inline-flex; align-items:center; gap:7px; font-size:12.5px; color:var(--c-ink-soft); font-weight:600; margin-bottom:12px; }
.chc-blog-card__meta i{ color:var(--c-orange); font-size:11px; }
.chc-blog-card__title{ font-size:18px; margin-bottom:10px; line-height:1.35; }
.chc-blog-card__title a{ color:var(--c-ink); text-decoration:none; }
.chc-blog-card__title a:hover{ color:var(--c-orange-dark); }
.chc-blog-card__excerpt{ font-size:14px; color:var(--c-ink-soft); line-height:1.7; margin-bottom:16px; }
.chc-blog-card__link{ font-size:13.5px; font-weight:700; color:var(--c-orange-dark); text-decoration:none; display:inline-flex; align-items:center; gap:7px; }
.chc-blog-card__link i{ font-size:11px; transition:transform .3s ease; }
.chc-blog-card__link:hover i{ transform:translateX(4px); }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.chc-cta{
  margin:0 24px; border-radius:32px; overflow:hidden; position:relative;
  background:linear-gradient(120deg, #ff8600, #ff5f2e);
  padding:70px 60px;
}
.chc-cta__shape{ position:absolute; border-radius:50%; background:rgba(255,255,255,.12); }
.chc-cta__shape--1{ width:260px; height:260px; top:-90px; left:8%; animation:chc-float 8s ease-in-out infinite; }
.chc-cta__shape--2{ width:170px; height:170px; bottom:-60px; right:14%; animation:chc-float 6s ease-in-out infinite 1.2s; }
.chc-cta__inner{ position:relative; z-index:1; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.chc-cta__text h2{ color:#fff; margin-bottom:10px; }
.chc-cta__text p{ color:rgba(255,255,255,.9); font-size:16px; max-width:480px; }
.chc-cta__actions{ display:flex; gap:16px; flex-wrap:wrap; }
.chc-cta__phone{
  display:inline-flex; align-items:center; gap:12px;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.35);
  color:#fff; padding:14px 22px; border-radius:50px; text-decoration:none; font-weight:700;
}
.chc-cta__phone-icon{
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.2);
  display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;
  animation:chc-pulse-ring 2s infinite;
}
.chc-cta__phone-icon i{ font-size:14px; line-height:1; color:#fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1199px){
  .chc-about__grid, .chc-doctor__grid{ grid-template-columns:1fr; }
  .chc-about__media-frame img{ height:420px; }
  .chc-features__grid{ grid-template-columns:repeat(2, 1fr); }
  .chc-services__grid{ grid-template-columns:repeat(2, 1fr); }
  .chc-process__grid{ grid-template-columns:repeat(2, 1fr); row-gap:50px; }
  .chc-process__line{ display:none; }
  .chc-reels__grid{ grid-template-columns:repeat(2, 1fr); }
  .chc-schedule__grid{ grid-template-columns:1fr; gap:40px; }
  .chc-schedule__media{ order:-1; }
  .chc-tips__grid{ grid-template-columns:1fr 1fr; }
  .chc-tips__promo{ grid-column:1 / -1; }
  .chc-blog-card{ flex:0 0 calc(50% - 13px); }
  .chc-t-card{ flex:0 0 calc(50% - 11px); }
}
@media (max-width:767px){
  .chc-hero{
    min-height:calc(100vh - var(--chc-total-header-h, 74px));
    min-height:calc(100svh - var(--chc-total-header-h, 74px));
    padding:56px 0; text-align:left;
  }
  .chc-hero__cta{ flex-direction:column; align-items:stretch; }
  .chc-hero__cta .chc-btn{ justify-content:center; }
  .chc-about, .chc-features, .chc-services, .chc-reels, .chc-doctor, .chc-process, .chc-testimonials, .chc-schedule, .chc-tips, .chc-faq, .chc-blog{ padding:70px 0; }
  .chc-blog__head{ flex-direction:column; align-items:flex-start; }
  .chc-blog__actions{ width:100%; justify-content:space-between; }
  .chc-blog-card{ flex:0 0 82%; }
  .chc-t-card{ flex:0 0 85%; }
  .chc-tips__grid{ grid-template-columns:1fr; }
  .chc-tips__promo{ grid-column:auto; }
  .chc-faq__question{ padding:18px 20px; font-size:14.5px; }
  .chc-faq__answer p{ padding:0 20px 18px; }
  .chc-about__badge{ left:0; bottom:-24px; }
  .chc-features__grid, .chc-services__grid{ grid-template-columns:1fr; }
  .chc-process__grid{ grid-template-columns:1fr; }
  .chc-services__head{ flex-direction:column; align-items:flex-start; }
  .chc-reels__grid{
    display:flex; grid-template-columns:none; overflow-x:auto; scroll-snap-type:x mandatory;
    gap:16px; padding-bottom:6px; margin:0 -24px; padding-left:24px; padding-right:24px;
  }
  .chc-reel{ flex:0 0 74%; scroll-snap-align:start; }
  .chc-cta{ padding:44px 26px; margin:0 16px; }
  .chc-cta__inner{ flex-direction:column; text-align:center; }
  .chc-doctor__creds{ grid-template-columns:repeat(3, 1fr); gap:14px; }
  .chc-t-card{ padding:30px 22px; }
  .chc-doctor__rating{ display:none; }
}
