/* =====================================================================
   SHINE HEALTH CARE — Design System
   Brand: medical blue #118BC9, cyan #16B6E9, fresh green #65C900
   Typeface: Inter
   ===================================================================== */

:root {
  --shc-primary: #118BC9;
  --shc-secondary: #16B6E9;
  --shc-accent: #65C900;
  --shc-dark: #17212B;
  --shc-white: #FFFFFF;
  --shc-bg-soft: #F4FAFD;
  --shc-border: #E3EEF4;
  --shc-text-muted: #5B6B76;
  --shc-radius-sm: 10px;
  --shc-radius-md: 14px;
  --shc-radius-lg: 18px;
  --shc-shadow: 0 10px 30px rgba(17, 139, 201, 0.08);
  --shc-shadow-hover: 0 16px 40px rgba(17, 139, 201, 0.16);
  --shc-transition: all 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--shc-dark);
  background-color: var(--shc-white);
  line-height: 1.65;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 8px;
  background: var(--shc-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; color: #fff; }

a { color: var(--shc-primary); text-decoration: none; }
a:hover { color: var(--shc-secondary); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; color: var(--shc-dark); }

*:focus-visible {
  outline: 3px solid var(--shc-secondary);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   TOPBAR + NAVBAR
   --------------------------------------------------------------------- */
.shc-topbar {
  background: var(--shc-dark);
  color: #cfe8f5;
  font-size: 0.85rem;
  padding: 3px 0;
  position: relative;
  z-index: 1050; /* must sit above the sticky navbar (1030) so its dropdown isn't hidden behind it */
}
.shc-topbar .container.shc-topbar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.shc-topbar-info span { margin-right: 24px; white-space: nowrap; }
.shc-topbar-info i { color: var(--shc-secondary); margin-right: 6px; }
.shc-topbar-right { display: flex; align-items: center; gap: 18px; justify-self: end; }
.shc-topbar-social { display: flex; align-items: center; gap: 8px; }

/* Circular, transparent, first-letter social icons (admin-managed via Social Media settings) */
.shc-social-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  transition: var(--shc-transition);
}
.shc-social-circle:hover {
  background: var(--shc-secondary);
  border-color: var(--shc-secondary);
  color: #fff !important;
  transform: translateY(-2px);
}
.shc-social-circle-footer {
  border-color: rgba(255,255,255,0.3);
  width: 34px; height: 34px;
  font-size: 0.8rem;
}
/* If no social links are turned on yet in Admin -> Social Media, this row
   is simply empty (nothing to fix in CSS) — enable at least one there. */

.shc-navbar {
  background: #fff;
  padding: 0px;
  box-shadow: 0 2px 16px rgba(17, 33, 43, 0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-brand { display: flex; align-items: center; gap: 10px; }
.navbar-brand img { border-radius: 50%; }
.shc-brand-text { font-weight: 800; font-size: 1.15rem; color: var(--shc-dark); line-height: 1.1; }

.shc-main-nav .nav-link {
  font-weight: 600;
  color: var(--shc-dark);
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--shc-transition);
}
.shc-main-nav .nav-link:hover,
.shc-main-nav .nav-link.active {
  color: var(--shc-primary);
  background: var(--shc-bg-soft);
}

.shc-search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--shc-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--shc-bg-soft);
}
.shc-search-form input {
  border: none;
  background: transparent;
  padding: 10px 16px;
  flex: 1;
  outline: none;
}
.shc-search-form button {
  border: none;
  background: var(--shc-primary);
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
}
.shc-search-form button:hover { background: var(--shc-secondary); }

.shc-search-form-top {
  width: 420px;
  justify-self: center;
  border-color: rgba(255,255,255,0.15);
}
.shc-search-form-top input { color: var(--shc-dark); }
.shc-search-form-mobile { margin: 12px 0; width: 100%; }

.shc-nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.shc-btn-call {
  border: 1.5px solid var(--shc-primary);
  color: var(--shc-primary);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  white-space: nowrap;
}
.shc-btn-call:hover { background: var(--shc-primary); color: #fff; }

.shc-btn-primary, .shc-btn-quote {
  background: linear-gradient(135deg, var(--shc-primary), var(--shc-secondary));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  transition: var(--shc-transition);
  white-space: nowrap;
}
.shc-btn-primary:hover, .shc-btn-quote:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shc-shadow-hover);
}
.shc-btn-outline {
  border: 1.5px solid var(--shc-white);
  color: var(--shc-white);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  background: transparent;
}
.shc-btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

.shc-lang-selector .btn {
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  font-weight: 600;
  background: transparent;
  color: #cfe8f5;
  font-size: 0.82rem;
  padding: 4px 14px;
}
.shc-lang-selector .btn:hover, .shc-lang-selector .btn:focus { color: #fff; border-color: var(--shc-secondary); }
.shc-lang-selector { position: relative; z-index: 1060; }
.shc-lang-selector .dropdown-menu { max-height: 320px; overflow-y: auto; z-index: 1060 !important; }

/* ---------------------------------------------------------------------
   HERO — full-bleed background image slider with left-side readability
   overlay, matching the reference layout: text sits on a soft light
   gradient that fades into the photo toward the right edge.
   --------------------------------------------------------------------- */
.shc-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 70px 0;
}
.shc-hero-slides { position: absolute; inset: 0; z-index: 0; }
.shc-hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.shc-hero-slide.active { opacity: 1; }

/* Light-to-transparent overlay so the left-side text stays readable
   against whatever photo is currently showing, while the right side
   of the image stays clearly visible (matches the reference image). */
.shc-hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.92) 32%,
    rgba(255,255,255,0.55) 52%,
    rgba(255,255,255,0.08) 68%,
    rgba(255,255,255,0) 82%
  );
}

.shc-hero-content { position: relative; z-index: 2; }

.shc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(101, 201, 0, 0.14);
  color: #3f7d00;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.shc-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.shc-hero h1 .accent-text { color: var(--shc-primary); }
.shc-hero p.lead { color: var(--shc-text-muted); font-size: 1.15rem; max-width: 520px; }
.shc-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.shc-btn-ghost {
  border: 1.5px solid var(--shc-primary);
  color: var(--shc-primary);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  background: #fff;
}
.shc-btn-ghost:hover { background: var(--shc-bg-soft); color: var(--shc-primary); }

/* Stats row under the CTAs (numbers + vertical dividers) */
.shc-hero-stats { display: flex; align-items: center; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.shc-hero-stat { display: flex; align-items: center; gap: 10px; padding-right: 22px; border-right: 1px solid var(--shc-border); }
.shc-hero-stat:last-child { border-right: none; padding-right: 0; }
.shc-hero-stat i { color: var(--shc-accent); font-size: 1.3rem; }
.shc-hero-stat .num { font-weight: 800; font-size: 1.15rem; color: var(--shc-dark); display: block; line-height: 1.1; }
.shc-hero-stat .label { font-size: 0.78rem; color: var(--shc-text-muted); }

/* Floating trust badges over the photo (right side) */
.shc-hero-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: var(--shc-radius-md);
  box-shadow: var(--shc-shadow-hover);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: shc-float 4s ease-in-out infinite;
}
.shc-hero-badge .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem; flex-shrink: 0;
}
.shc-hero-badge .icon-accent { background: var(--shc-accent); }
.shc-hero-badge .icon-primary { background: var(--shc-primary); }
.shc-hero-badge strong { display: block; font-size: 0.92rem; color: var(--shc-dark); }
.shc-hero-badge span { font-size: 0.78rem; color: var(--shc-text-muted); }
.shc-hero-badge-top { top: 14%; right: 6%; animation-delay: 0s; }
.shc-hero-badge-bottom { bottom: 12%; right: 4%; animation-delay: 1.5s; }

@keyframes shc-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .shc-hero-badge { animation: none; }
  .shc-hero-slide { transition: none; }
}

/* Slide indicator dots */
.shc-hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.shc-hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(17,33,43,0.25);
  cursor: pointer;
  padding: 0;
  transition: var(--shc-transition);
}
.shc-hero-dot.active { background: var(--shc-accent); width: 26px; border-radius: 6px; }

@media (max-width: 991px) {
  .shc-hero { min-height: 560px; text-align: left; }
  .shc-hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.93) 55%, rgba(255,255,255,0.75) 75%, rgba(255,255,255,0.4) 100%);
  }
  .shc-hero-badge { display: none; } /* avoid clutter on narrow screens */
}
@media (max-width: 576px) {
  .shc-hero { min-height: 520px; padding: 50px 0; }
  .shc-hero-stats { gap: 14px; }
  .shc-hero-stat { padding-right: 14px; }
}

/* ---------------------------------------------------------------------
   SECTION LAYOUT
   --------------------------------------------------------------------- */
.shc-section { padding: 80px 0; }
.shc-section-soft { background: var(--shc-bg-soft); }
.shc-section-header { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.shc-section-header h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 12px; }
.shc-section-header p { color: var(--shc-text-muted); font-size: 1.05rem; }

/* ---------------------------------------------------------------------
   CARDS
   --------------------------------------------------------------------- */
.shc-card {
  background: #fff;
  border: 1px solid var(--shc-border);
  border-radius: var(--shc-radius-md);
  box-shadow: var(--shc-shadow);
  transition: var(--shc-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.shc-card:hover { transform: translateY(-6px); box-shadow: var(--shc-shadow-hover); }

.shc-specialty-card {
  padding: 28px 22px;
  text-align: center;
  display: block;
  color: var(--shc-dark);
}
.shc-specialty-card .icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(17,139,201,0.12), rgba(101,201,0,0.14));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--shc-primary);
}
.shc-specialty-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.shc-specialty-card p { font-size: 0.83rem; color: var(--shc-text-muted); margin-bottom: 0; }
.shc-specialty-card:hover { color: var(--shc-primary); }
.shc-specialty-card:hover .icon { background: linear-gradient(135deg, var(--shc-primary), var(--shc-secondary)); color: #fff; transform: scale(1.08) rotate(-4deg); }
.shc-specialty-card .icon { transition: var(--shc-transition); }

.shc-step-card { padding: 30px 24px; text-align: center; position: relative; }
.shc-step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shc-primary), var(--shc-secondary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin: 0 auto 18px;
}
.shc-step-card h3 { font-size: 1.05rem; }
.shc-step-card p { color: var(--shc-text-muted); font-size: 0.95rem; margin-bottom: 0; }

.shc-service-card { padding: 26px; display: flex; gap: 16px; align-items: flex-start; }
.shc-service-card .icon { color: var(--shc-accent); font-size: 1.5rem; margin-top: 3px; }
.shc-service-card p { margin-bottom: 0; color: var(--shc-text-muted); }

.shc-mediation-card { padding: 30px 26px; }
.shc-mediation-card .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(22, 182, 233, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--shc-secondary);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.shc-mediation-card p { color: var(--shc-text-muted); margin-bottom: 0; }

.shc-why-card { padding: 30px 24px; }
.shc-why-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(17,139,201,0.18);
  display: block;
  margin-bottom: 8px;
}
.shc-why-card p { color: var(--shc-text-muted); margin-bottom: 0; }

/* Counters */
.shc-counters { background: linear-gradient(135deg, var(--shc-primary), var(--shc-secondary)); border-radius: var(--shc-radius-lg); padding: 50px 30px; color: #fff; }
.shc-counter-item { text-align: center; }
.shc-counter-item .value { font-size: 2.4rem; font-weight: 800; display: block; }
.shc-counter-item .label { font-size: 0.95rem; opacity: 0.9; }

/* ---------------------------------------------------------------------
   Continuous auto-scrolling row (doctors / hospitals on the homepage).
   This is a pure CSS/JS marquee, NOT Swiper — Swiper's `loop: true`
   silently refuses to loop when there aren't enough slides to fill two
   full screens (exactly the case with a handful of sample records),
   so autoplay looked like it was doing nothing. This technique has no
   such minimum-card-count requirement: main.js duplicates the row once
   and this animation scrolls it exactly half its total width on a loop,
   which is seamless no matter how many cards are in it.
   --------------------------------------------------------------------- */
.shc-doctor-slider, .shc-hospital-slider {
  overflow: hidden;
  position: relative;
  padding: 6px 0 28px;
  /* soft fade at both edges instead of a hard cut-off */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.shc-doctor-slider .swiper-wrapper, .shc-hospital-slider .swiper-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 28px;                              /* the "gap between cards" */
  animation: shc-marquee-scroll linear infinite;
  animation-duration: 40s;                /* main.js recalculates this to match content width */
  will-change: transform;
}
.shc-doctor-slider:hover .swiper-wrapper, .shc-hospital-slider:hover .swiper-wrapper {
  animation-play-state: paused;           /* pause on hover, as requested */
}
.shc-doctor-slider .swiper-slide, .shc-hospital-slider .swiper-slide {
  flex: 0 0 auto;
  width: 300px;                            /* fixed card width so ~3 fit in a normal container */
  height: auto;
}
@media (min-width: 768px) {
  .shc-doctor-slider .swiper-slide, .shc-hospital-slider .swiper-slide { width: 320px; }
}
@keyframes shc-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }   /* exactly half, since main.js duplicates the row once */
}
@media (prefers-reduced-motion: reduce) {
  .shc-doctor-slider .swiper-wrapper, .shc-hospital-slider .swiper-wrapper { animation: none; }
}

/* Doctor / Hospital cards */
.shc-doctor-card, .shc-hospital-card { overflow: hidden; }
.shc-doctor-card img, .shc-hospital-card img {
  width: 100%; height: 230px; object-fit: cover;
  border-top-left-radius: var(--shc-radius-md);
  border-top-right-radius: var(--shc-radius-md);
  flex-shrink: 0; /* image keeps its height even as card height grows to match its row */
}
.shc-doctor-card img { object-position: top; } /* keep the doctor's face in frame instead of cropping it out */
.shc-doctor-card .body, .shc-hospital-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;             /* body fills the rest of the card's height */
}
.shc-doctor-card h3, .shc-hospital-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.shc-doctor-card .designation { color: var(--shc-primary); font-weight: 600; font-size: 0.9rem; }
.shc-doctor-card .meta, .shc-hospital-card .meta { color: var(--shc-text-muted); font-size: 0.87rem; margin: 10px 0; }
.shc-doctor-card .meta span, .shc-hospital-card .meta span { display: inline-flex; align-items: center; gap: 6px; margin-right: 14px; }
/* Pins "View Profile" / "View Hospital" (and any other card CTA) to the
   bottom of the card, flush with its siblings, regardless of how much
   text sits above it — this is what stops the zig-zag button alignment. */
.shc-doctor-card .body > .btn, .shc-hospital-card .body > .btn,
.shc-doctor-card .body > a.btn, .shc-hospital-card .body > a.btn {
  margin-top: auto;
}
.shc-badge-specialty {
  display: inline-block;
  background: rgba(101,201,0,0.12);
  color: #3f7d00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin: 2px 4px 2px 0;
}
/* Wraps a doctor's/hospital's full specialty list on card listings —
   supports however many an admin assigns, wrapping onto new lines
   rather than overflowing the card. */
.shc-specialty-badges { display: flex; flex-wrap: wrap; gap: 4px; margin: 8px 0; }
.shc-badge-specialty-more { background: var(--shc-bg-soft); color: var(--shc-text-muted); }

/* CTA section — modern, trustworthy, subtly animated */
.shc-cta {
  background: linear-gradient(135deg, var(--shc-dark) 0%, #0d3a52 55%, var(--shc-primary) 130%);
  background-size: 200% 200%;
  animation: shc-cta-gradient 10s ease infinite;
  border-radius: var(--shc-radius-lg);
  padding: 64px 40px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@keyframes shc-cta-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) { .shc-cta { animation: none; } }
.shc-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(22,182,233,0.3), transparent 55%),
              radial-gradient(circle at 85% 80%, rgba(101,201,0,0.18), transparent 50%);
}
.shc-cta-badge {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.8rem; font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.shc-cta h2 { color: #fff; position: relative; z-index: 1; }
.shc-cta p { color: #cfe8f5; position: relative; z-index: 1; max-width: 560px; margin: 0 auto 24px; }
.shc-cta .shc-cta-actions { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.shc-cta .shc-btn-primary { animation: shc-cta-pulse 2.6s ease-in-out infinite; }
@keyframes shc-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,182,233,0.45); }
  50% { box-shadow: 0 0 0 10px rgba(22,182,233,0); }
}
@media (prefers-reduced-motion: reduce) { .shc-cta .shc-btn-primary { animation: none; } }

/* Hero typewriter */
#shcTypewriter { border-right: 3px solid var(--shc-primary); padding-right: 4px; animation: shc-caret-blink 0.9s steps(1) infinite; }
@keyframes shc-caret-blink { 50% { border-color: transparent; } }

/* FAQ split section */
.shc-faq-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.shc-faq-intro h2 { margin-bottom: 14px; }
.shc-faq-intro p { color: var(--shc-text-muted); margin-bottom: 22px; }
.shc-faq-accordion .accordion-item { border: none; border-radius: var(--shc-radius-sm); margin-bottom: 12px; box-shadow: var(--shc-shadow); overflow: hidden; }
.shc-faq-accordion .accordion-button { font-weight: 700; padding: 16px 20px; }
.shc-faq-accordion .accordion-button:not(.collapsed) { color: var(--shc-primary); background: var(--shc-bg-soft); }
.shc-faq-accordion .accordion-button:focus { box-shadow: none; }
.shc-faq-accordion .accordion-body { color: var(--shc-text-muted); }
@media (max-width: 900px) {
  .shc-faq-wrap { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.shc-footer { background: var(--shc-dark); color: #b8c8d1; padding: 70px 0 0; }
.shc-footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
.shc-footer-brand img { border-radius: 50%; }
.shc-footer-desc { color: #93a7b3; font-size: 0.92rem; }
.shc-footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  margin-right: 8px;
}
.shc-footer-social a:hover { background: var(--shc-primary); }
.shc-footer-heading { color: #fff; font-weight: 700; margin-bottom: 18px; }
.shc-footer-links { list-style: none; padding: 0; margin: 0; }
.shc-footer-links li { margin-bottom: 10px; font-size: 0.92rem; }
.shc-footer-links a { color: #b8c8d1; }
.shc-footer-links a:hover { color: var(--shc-secondary); }
.shc-footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.shc-footer-contact i { color: var(--shc-secondary); margin-top: 3px; }
.shc-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 50px; padding: 20px 0; font-size: 0.85rem; }
.shc-footer-bottom a { color: var(--shc-secondary); font-weight: 600; }

/* Floating buttons */
.shc-float-btn {
  position: fixed;
  right: 20px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 1040;
  transition: var(--shc-transition);
}
.shc-float-btn:hover { transform: scale(1.08); color: #fff; }
.shc-float-whatsapp { background: #25D366; bottom: 90px; }
.shc-float-call { background: var(--shc-primary); bottom: 24px; }

/* ---------------------------------------------------------------------
   MODAL (Get Quote)
   --------------------------------------------------------------------- */
.shc-modal { border-radius: var(--shc-radius-lg); border: none; }
.shc-modal .modal-header { border-bottom: none; padding-bottom: 0; }
.shc-modal-subheading { color: var(--shc-text-muted); margin-bottom: 24px; }
.shc-success-icon { font-size: 3.4rem; color: var(--shc-accent); }
.shc-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------------------------------------------------------------------
   FILTER / LISTING PAGES
   --------------------------------------------------------------------- */
.shc-page-hero {
  background:
    linear-gradient(135deg, rgba(17,139,201,0.92), rgba(22,182,233,0.88)),
    url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  color: #fff;
  padding: 80px 0 56px;
  text-align: center;
  position: relative;
}
.shc-page-hero h1 { color: #fff; }
.shc-page-hero p { color: rgba(255,255,255,0.9); max-width: 620px; margin: 0 auto; }

.shc-breadcrumbs { font-size: 0.85rem; margin-top: 14px; }
.shc-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; justify-content: center; }
.shc-breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: rgba(255,255,255,0.6); }
.shc-breadcrumbs a { color: rgba(255,255,255,0.85); }
.shc-breadcrumbs span[aria-current] { color: #fff; font-weight: 600; }

.shc-filter-bar {
  background: #fff;
  border-radius: var(--shc-radius-md);
  box-shadow: var(--shc-shadow);
  padding: 22px;
  margin-top: -40px;
  position: relative;
  z-index: 5;
  margin-bottom: 40px;
}
.shc-filter-bar select, .shc-filter-bar input {
  border-radius: 999px;
  border: 1.5px solid var(--shc-border);
}
.shc-filter-clear { color: var(--shc-primary); font-weight: 600; white-space: nowrap; }

/* Blog category tabs */
.shc-blog-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.shc-blog-tabs a {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--shc-border);
  color: var(--shc-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.shc-blog-tabs a.active, .shc-blog-tabs a:hover {
  background: var(--shc-primary);
  border-color: var(--shc-primary);
  color: #fff;
}

/* Doctor / Hospital detail pages */
.shc-detail-header { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
.shc-detail-header img { width: 190px; height: 190px; object-fit: cover; border-radius: var(--shc-radius-lg); box-shadow: var(--shc-shadow); }
.shc-detail-header h1 { margin-bottom: 6px; }
.shc-detail-header .designation { color: var(--shc-primary); font-weight: 600; }
.shc-info-list { list-style: none; padding: 0; margin: 20px 0; }
.shc-info-list li { padding: 10px 0; border-bottom: 1px dashed var(--shc-border); display: flex; gap: 10px; }
.shc-info-list i { color: var(--shc-secondary); width: 18px; }

/* Search results */
.shc-search-group h2 { border-bottom: 2px solid var(--shc-border); padding-bottom: 10px; margin-bottom: 20px; }

/* Forms (contact page) */
.shc-form-card { background: #fff; border-radius: var(--shc-radius-lg); box-shadow: var(--shc-shadow); padding: 34px; }
.shc-form-card .form-control, .shc-form-card textarea { border-radius: var(--shc-radius-sm); border: 1.5px solid var(--shc-border); padding: 12px 16px; }
.shc-form-card .form-control:focus { border-color: var(--shc-primary); box-shadow: 0 0 0 3px rgba(17,139,201,0.15); }

/* Error pages */
.shc-error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.shc-error-page .code { font-size: 5rem; font-weight: 800; color: var(--shc-primary); }

/* Scroll reveal (JS toggles .is-visible) */
.shc-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.shc-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .shc-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 991px) {
  .shc-search-form { max-width: 100%; }
  .shc-nav-actions { margin-top: 12px; flex-wrap: wrap; }
  .shc-detail-header { justify-content: center; text-align: center; }
  .shc-info-list li { justify-content: center; }
}
@media (max-width: 576px) {
  .shc-section { padding: 55px 0; }
  .shc-cta { padding: 40px 20px; }
  .shc-float-btn { width: 48px; height: 48px; font-size: 1.2rem; right: 14px; }
  .shc-float-whatsapp { bottom: 78px; }
  .shc-float-call { bottom: 18px; }
}