/* ==========================================================================
   Firstline Multispeciality Clinic — Stylesheet
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  --teal-50:  #effcfa;
  --teal-100: #ccfbf1;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --gold-400: #d4af7a;
  --gold-500: #c9a24d;
  --gold-600: #ae895b;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.14);
  --shadow-teal: 0 10px 30px rgba(20, 184, 166, 0.35);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 100px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--slate-900); line-height: 1.25; font-weight: 600; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-block;
  color: var(--teal-600);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section-sub { color: var(--slate-500); font-size: 16.5px; max-width: 640px; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-500);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { background: var(--teal-600); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(20,184,166,.42); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #dfbe76, var(--gold-500));
  color: var(--slate-900);
  box-shadow: 0 10px 26px rgba(201,162,77,.3);
}
.btn-gold:hover { background: #e3c47d; transform: translateY(-2px); }
.btn-dark {
  background: var(--slate-800);
  color: var(--white);
}
.btn-dark:hover { background: var(--slate-900); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--teal-600);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn i, .btn svg { width: 17px; height: 17px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-600);
  font-weight: 600;
  font-size: 14.5px;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.link-arrow:hover { gap: 10px; color: var(--teal-700); }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }

/* ---------- Buttons: call now pill w/ pulse icon ---------- */
.call-now {
  background: linear-gradient(135deg, #dfbe76, var(--gold-500));
  color: var(--slate-900);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 28px rgba(201,162,77,.36);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.call-now:hover { background: #e3c47d; transform: translateY(-2px); }
.call-now svg { width: 16px; height: 16px; animation: ring 2.4s ease-in-out infinite; }
@keyframes ring {
  0%, 88%, 100% { transform: rotate(0); }
  90% { transform: rotate(-15deg); }
  92% { transform: rotate(13deg); }
  94% { transform: rotate(-9deg); }
  96% { transform: rotate(6deg); }
  98% { transform: rotate(0); }
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(15,23,42,.07);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-header.transparent { background: #FFFFFF; }
.site-header.solid,
.site-header.scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(15,23,42,.07);
  height: 100px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 218px; width: auto; transition: height .3s var(--ease); }
.site-header.solid img, .site-header.scrolled img { height: 218px; }

.main-nav { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.site-header.solid .nav-links a, .site-header.scrolled .nav-links a { color: var(--slate-700); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--teal-500);
  transition: width .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-500); }
.site-header.solid .nav-links a:hover, .site-header.solid .nav-links a.active,
.site-header.scrolled .nav-links a:hover, .site-header.scrolled .nav-links a.active { color: var(--teal-600); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 1200;
}
.nav-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.site-header.solid .nav-toggle span, .site-header.scrolled .nav-toggle span { background: var(--slate-800); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 960px) {
  :root { --header-h: 88px; }
  .site-header.solid, .site-header.scrolled { height: 88px; }
  .brand img, .site-header.solid img, .site-header.scrolled img { height: 172px; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
  }
  .main-nav.open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 22px; }
  .nav-links a { color: var(--slate-700); font-size: 17px; }
  .header-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .header-actions .call-now { justify-content: center; }
}

/* ==========================================================================
   Breadcrumb Banner (About / Blog / Contact)
   ========================================================================== */
.page-banner {
  position: relative;
  margin-top: var(--header-h);
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 56px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(15,23,42,.82), rgba(13,148,136,.55));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: var(--white); font-size: clamp(32px, 5vw, 48px); margin-bottom: 12px; animation: fadeUp .7s var(--ease) both; }
.breadcrumb { font-size: 14.5px; color: rgba(255,255,255,.85); animation: fadeUp .7s .1s var(--ease) both; }
.breadcrumb a { color: rgba(255,255,255,.85); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb span { color: var(--teal-400); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px);} to { opacity:1; transform: translateY(0);} }

/* ==========================================================================
   Hero Slider (Home)
   ========================================================================== */
.hero-slider {
  position: relative;
  margin-top: var(--header-h);
  height: calc(100vh - var(--header-h));
  height: calc(100svh - var(--header-h));
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.45) 45%, rgba(15,23,42,.18) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-left: clamp(20px, 18vw, 340px);
  padding-right: 24px;
}
.hero-slide-content .container {
  max-width: 600px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.hero-tag {
  display: inline-block;
  background: var(--teal-500);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}
.hero-slide h1 {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.12;
  margin-bottom: 8px;
}
.hero-slide .accent-line {
  display: block;
  color: var(--teal-400);
  font-weight: 400;
  font-size: 0.62em;
  margin-top: 6px;
}
.hero-slide p {
  color: rgba(255,255,255,.88);
  font-size: 17px;
  max-width: 470px;
  margin: 18px 0 32px;
}
.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 570px;
  margin: -14px 0 26px;
}
.hero-feature-pills span {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius-full);
  background: rgba(15,23,42,.28);
  color: rgba(255,255,255,.94);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}
.hero-slide-new .hero-slide-content .container { max-width: 650px; }
.hero-slide-new h1 { font-size: clamp(32px, 4.7vw, 54px); }
.hero-slide .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-slide .hero-cta a[href^="tel:"] {
  background: linear-gradient(135deg, #dfbe76, var(--gold-500));
  border-color: var(--gold-400);
  color: var(--slate-900);
  box-shadow: 0 10px 26px rgba(201,162,77,.28);
}
.hero-slide .hero-cta a[href^="tel:"]:hover { background: #e3c47d; }
.hero-slide.active .hero-tag,
.hero-slide.active h1,
.hero-slide.active p,
.hero-slide.active .hero-cta {
  animation: fadeUp .8s var(--ease) both;
}
.hero-slide.active h1 { animation-delay: .08s; }
.hero-slide.active p { animation-delay: .16s; }
.hero-slide.active .hero-cta { animation-delay: .24s; }

.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .25s var(--ease);
}
.hero-arrow:hover { background: rgba(255,255,255,.32); }
.hero-arrow.prev { left: 26px; }
.hero-arrow.next { right: 26px; }
.hero-arrow svg { width: 20px; height: 20px; }

.hero-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: all .3s var(--ease);
}
.hero-dots button.active { background: var(--teal-400); width: 28px; border-radius: 5px; }

@media (max-width: 720px) {
  .hero-arrow { display: none; }
  .hero-slider { min-height: 560px; }
  .hero-slide-content { padding-left: 24px; padding-right: 24px; }
  .hero-feature-pills { display: none; }
}

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--teal-500); padding: 34px 0; }
.stats-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { display: flex; align-items: center; gap: 14px; color: var(--white); }
.stat-icon {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-num { font-family: var(--font-heading); font-size: 22px; font-weight: 700; line-height: 1; }
.stat-label { font-size: 13.5px; color: rgba(255,255,255,.9); margin-top: 4px; }
@media (max-width: 760px) { .stats-bar .container { grid-template-columns: repeat(2,1fr); } }

/* ==========================================================================
   Services Section
   ========================================================================== */
.section { padding: 96px 0; }
.section-alt { background: var(--slate-50); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform .35s var(--ease);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--slate-500); font-size: 14.5px; margin-bottom: 0; }

.tone-teal   { background: #ecfdf9; } .tone-teal .service-icon   { background: #ccfbf1; color: var(--teal-600); }
.tone-blue   { background: #eff6ff; } .tone-blue .service-icon   { background: #dbeafe; color: #2563eb; }
.tone-green  { background: #f0fdf4; } .tone-green .service-icon  { background: #dcfce7; color: #16a34a; }
.tone-violet { background: #f5f3ff; } .tone-violet .service-icon { background: #ede9fe; color: #7c3aed; }
.tone-amber  { background: #fffbeb; } .tone-amber .service-icon  { background: #fef3c7; color: #d97706; }
.tone-rose   { background: #fff1f2; } .tone-rose .service-icon   { background: #ffe4e6; color: #e11d48; }
.tone-cyan   { background: #ecfeff; } .tone-cyan .service-icon   { background: #cffafe; color: #0891b2; }
.tone-pink   { background: #fdf2f8; } .tone-pink .service-icon   { background: #fce7f3; color: #db2777; }
.tone-sky    { background: #f0f9ff; } .tone-sky .service-icon    { background: #e0f2fe; color: #0284c7; }
.tone-purple { background: #faf5ff; } .tone-purple .service-icon { background: #f3e8ff; color: #9333ea; }
.tone-orange { background: #fff7ed; } .tone-orange .service-icon { background: #ffedd5; color: #ea580c; }
.tone-red    { background: #fef2f2; } .tone-red .service-icon    { background: #fee2e2; color: #dc2626; }
.tone-emerald{ background: #ecfdf5; } .tone-emerald .service-icon{ background: #d1fae5; color: #059669; }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: -24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 16px 22px;
  display: flex; align-items: center; gap: 12px;
}
.why-badge .badge-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-100); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
}
.why-badge .badge-icon svg { width: 20px; height: 20px; }
.why-badge strong { display: block; font-size: 15px; color: var(--slate-900); }
.why-badge span { font-size: 12.5px; color: var(--slate-500); }

.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 30px; margin-top: 30px; }
.why-point { display: flex; gap: 14px; }
.why-point .pt-icon {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
}
.why-point .pt-icon svg { width: 20px; height: 20px; }
.why-point h4 { font-size: 15.5px; margin-bottom: 4px; }
.why-point p { font-size: 13.5px; color: var(--slate-500); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-points { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal-600), var(--teal-500));
  padding: 64px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content:'';
  position:absolute; right:-80px; top:-80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-flex { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-flex h2 { color: var(--white); font-size: clamp(24px,3vw,32px); margin-bottom: 8px; }
.cta-flex p { color: rgba(255,255,255,.88); }
.cta-form { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.12); padding: 10px; border-radius: var(--radius-full); backdrop-filter: blur(6px); }
.cta-form input {
  border: none; background: rgba(255,255,255,.92);
  padding: 12px 18px; border-radius: var(--radius-full);
  min-width: 170px; font-size: 14.5px;
}
.cta-form .form-privacy { flex-basis: 100%; margin: 0 8px 2px; font-size: 11px; line-height: 1.45; color: rgba(255,255,255,.88); }
.cta-phone { display: flex; align-items: center; gap: 12px; }
.cta-phone .icon-ring { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; }
.cta-phone .icon-ring svg { width: 22px; height: 22px; }
.cta-phone strong { font-size: 18px; letter-spacing: .02em; }
.cta-phone span { font-size: 13px; opacity: .85; display:block; }
@media (max-width: 760px) { .cta-form { flex-wrap: wrap; border-radius: var(--radius-md); } .cta-form input { width: 100%; } }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.stars { color: #f59e0b; display: flex; gap: 2px; margin-bottom: 14px; }
.stars svg { width: 15px; height: 15px; }
.testi-card p { font-size: 14px; color: var(--slate-600); font-style: italic; margin-bottom: 18px; }
.testi-author strong { display:block; font-size: 14.5px; color: var(--slate-900); }
.testi-author span { font-size: 12.5px; color: var(--teal-600); }
@media (max-width: 980px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--slate-800); color: var(--slate-200); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.85fr 0.85fr 1.15fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 150px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: var(--slate-400); line-height: 1.7; margin-bottom: 14px; }
.footer-col h4 { color: var(--white); font-size: 15.5px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14px; color: var(--slate-400); transition: color .2s, padding-left .2s; }
.footer-col ul a:hover { color: var(--teal-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; font-size: 14px; color: var(--slate-400); margin-bottom: 16px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal-400); flex: none; margin-top: 2px; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.social-row a:hover { background: var(--teal-500); transform: translateY(-3px); }
.social-row svg { width: 16px; height: 16px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 13.5px; color: var(--slate-400); flex-wrap: wrap; gap: 10px;
}
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   WhatsApp Floating Button
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5);
  animation: floatY 3s ease-in-out infinite;
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: #fff; }
.whatsapp-fab::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: pulse-ring 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity:.6;} 100% { transform: scale(1.9); opacity: 0;} }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-6px);} }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px; left: 26px;
  z-index: 900;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--slate-800);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }
.back-to-top:hover { background: var(--teal-600); }

/* ==========================================================================
   Forms (Contact / Book Appointment)
   ========================================================================== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 44px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--slate-700); }
.form-group label .req { color: #e11d48; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--slate-800);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20,184,166,.14);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.char-count { font-size: 12px; color: var(--slate-400); font-weight: 400; }
.form-submit { width: 100%; margin-top: 8px; padding: 15px; font-size: 15.5px; }
.form-note { font-size: 12.5px; color: var(--slate-400); margin-top: 14px; text-align: center; }
.form-privacy { margin-top: 12px; font-size: 12px; line-height: 1.55; color: var(--slate-500); text-align: center; }
.form-status {
  display: none;
  flex-basis: 100%;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  margin: 14px 0 0;
}
.form-status.show { display: flex; animation: fadeUp .4s var(--ease); }
.form-status.is-success { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-status.is-error { background: #fff1f2; color: #be123c; border: 1px solid #fecdd3; }
.newsletter-form .form-status { margin-top: 4px; }
button:disabled { cursor: wait; opacity: .72; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
}
.form-success.show { display: flex; animation: fadeUp .4s var(--ease); }
.form-success svg { width: 18px; height: 18px; flex: none; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 28px 22px; } }

/* ==========================================================================
   About page
   ========================================================================== */
.who-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 60px; align-items: center; }
.who-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.who-text p { margin-bottom: 16px; color: var(--slate-600); font-size: 15.5px; }
.who-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.who-stat { background: var(--teal-50); border-radius: var(--radius-md); padding: 18px 10px; text-align: center; }
.who-stat strong { display: block; font-size: 22px; color: var(--teal-600); font-family: var(--font-heading); }
.who-stat span { font-size: 12.5px; color: var(--slate-500); }
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; gap: 36px; } }

.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.vm-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.vm-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--teal-100); color: var(--teal-600); display: flex; align-items:center; justify-content:center; margin-bottom: 18px;}
.vm-icon svg { width: 24px; height: 24px; }
.vm-card h3 { margin-bottom: 12px; font-size: 20px; }
.vm-card p { color: var(--slate-500); font-size: 14.5px; margin-bottom: 18px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--slate-600); margin-bottom: 10px; }
.check-list svg { width: 17px; height: 17px; color: var(--teal-500); flex: none; margin-top: 2px; }
@media (max-width: 800px) { .vm-grid { grid-template-columns: 1fr; } }

.doctors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.doctor-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--slate-200);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  color: inherit;
  display: block;
}
.doctor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.doctor-photo { position: relative; overflow: hidden; aspect-ratio: 4/5; background: var(--teal-500); }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.doctor-card:hover .doctor-photo img { transform: scale(1.06); }
.doctor-info { padding: 18px 16px; }
.doctor-info h4 { font-size: 15.5px; margin-bottom: 4px; }
.doctor-info .role { color: var(--teal-600); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.doctor-info .exp { font-size: 12.5px; color: var(--slate-400); }
.doctor-card-static { cursor: default; }
.doctor-card-static:hover { transform: none; box-shadow: var(--shadow-sm); }
.doctor-card-static:hover .doctor-photo img { transform: none; }
@media (min-width: 981px) {
  .doctor-info h4.doctor-name-long {
    font-size: 14px;
    letter-spacing: -.35px;
    white-space: nowrap;
  }
}
@media (max-width: 980px) { .doctors-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px) { .doctors-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .doctors-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Doctor profile pages
   ========================================================================== */
.doctor-profile-hero {
  margin-top: var(--header-h);
  padding: 72px 0;
  background: linear-gradient(135deg, var(--teal-50), #FFFFFF 55%, #fff9eb);
  border-bottom: 1px solid var(--slate-200);
}
.doctor-profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 56px;
  align-items: center;
}
.doctor-profile-photo {
  border-radius: 24px;
  overflow: hidden;
  background: var(--teal-500);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.doctor-profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-profile-content .eyebrow { margin-bottom: 12px; }
.doctor-profile-content h1 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 12px; }
.doctor-profile-role { color: var(--teal-700); font: 600 18px/1.5 var(--font-heading); margin-bottom: 10px; }
.doctor-profile-qualification { color: var(--slate-500); margin-bottom: 26px; }
.doctor-profile-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.doctor-bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .75fr);
  gap: 48px;
  align-items: start;
}
.doctor-bio-copy p { color: var(--slate-600); margin-bottom: 18px; line-height: 1.85; }
.doctor-bio-copy h2 { margin: 34px 0 16px; font-size: 26px; }
.doctor-bio-copy h2:first-child { margin-top: 0; }
.doctor-profile-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.doctor-profile-sidebar h2 { font-size: 21px; margin-bottom: 18px; }
.doctor-profile-list { display: grid; gap: 11px; }
.doctor-profile-list li {
  display: flex;
  gap: 10px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
}
.doctor-profile-list li::before {
  content: '';
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}
.doctor-profile-note {
  padding: 18px 20px;
  background: var(--teal-50);
  border-left: 4px solid var(--teal-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--slate-600);
}
@media (max-width: 840px) {
  .doctor-profile-grid, .doctor-bio-layout { grid-template-columns: 1fr; }
  .doctor-profile-grid { gap: 32px; }
  .doctor-profile-photo { width: min(100%, 360px); }
  .doctor-profile-sidebar { position: static; }
}
@media (max-width: 560px) {
  .doctor-profile-hero { padding: 44px 0; }
  .doctor-profile-actions .btn { width: 100%; }
}

/* Premium consultation panel shared by all doctor profiles */
.doctor-booking-section {
  padding: 24px 0 80px;
  background: var(--slate-50);
}
.doctor-booking-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 44px;
  align-items: center;
  padding: 52px 56px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(201,162,77,.22), transparent 31%),
    linear-gradient(135deg, #0F172A 0%, #13243B 58%, #0F766E 135%);
  box-shadow: 0 26px 70px rgba(15,23,42,.18);
  color: var(--white);
}
.doctor-booking-card::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -130px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.doctor-booking-copy,
.doctor-booking-actions { position: relative; z-index: 1; }
.doctor-booking-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.doctor-booking-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: currentColor;
}
.doctor-booking-card h2 {
  max-width: 720px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 42px);
}
.doctor-booking-card p {
  max-width: 690px;
  color: rgba(255,255,255,.76);
  font-size: 15.5px;
  line-height: 1.75;
}
.doctor-booking-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
}
.doctor-booking-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 600;
}
.doctor-booking-points span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(45,212,191,.12);
}
.doctor-booking-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}
.doctor-booking-actions .btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
}
.doctor-booking-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.doctor-booking-call:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.42);
}
.doctor-booking-call svg { width: 18px; height: 18px; }
@media (max-width: 860px) {
  .doctor-booking-card { grid-template-columns: 1fr; padding: 44px 38px; }
  .doctor-booking-actions { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .doctor-booking-section { padding: 8px 0 64px; }
  .doctor-booking-card { padding: 36px 24px; border-radius: 22px; gap: 30px; }
  .doctor-booking-actions { grid-template-columns: 1fr; }
}

.core-values { background: var(--teal-500); color: var(--white); }
.core-values .section-head h2 { color: var(--white); }
.core-values .section-head p { color: rgba(255,255,255,.85); }
.values-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; text-align: center; }
.value-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.value-icon { width: 58px; height: 58px; border-radius: 16px; background: rgba(255,255,255,.15); display: flex; align-items:center; justify-content:center; transition: transform .3s var(--ease), background .3s var(--ease); }
.value-item:hover .value-icon { transform: translateY(-6px) rotate(-6deg); background: rgba(255,255,255,.28); }
.value-icon svg { width: 26px; height: 26px; }
.value-item span { font-size: 14px; font-weight: 600; }
@media (max-width: 900px) { .values-row { grid-template-columns: repeat(3,1fr); gap: 30px 16px; } }
@media (max-width: 520px) { .values-row { grid-template-columns: repeat(2,1fr); } }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.gallery-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .55s var(--ease);
}
@media (hover: hover) {
  .gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(20,184,166,.32); }
  .gallery-item:hover img { transform: scale(1.045); }
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; gap: 18px; } }

/* ==========================================================================
   Blog page
   ========================================================================== */
.blog-filters { background: var(--slate-50); padding: 26px 0; position: sticky; top: var(--header-h); z-index: 90; border-bottom: 1px solid var(--slate-200); }
.filters-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.search-box { position: relative; flex: 1; min-width: 220px; max-width: 340px; }
.search-box svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; color: var(--slate-400); }
.search-box input { width: 100%; padding: 11px 16px 11px 40px; border-radius: var(--radius-full); border: 1.5px solid var(--slate-200); font-size: 14px; background: var(--white); }
.search-box input:focus { border-color: var(--teal-500); outline: none; box-shadow: 0 0 0 4px rgba(20,184,166,.12); }
.chip-group { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 9px 18px; border-radius: var(--radius-full);
  background: var(--white); border: 1.5px solid var(--slate-200);
  font-size: 13.5px; font-weight: 600; color: var(--slate-600);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--teal-400); color: var(--teal-600); }
.chip.active { background: var(--teal-500); color: var(--white); border-color: var(--teal-500); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--slate-200); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-thumb img { transform: scale(1.08); }
.blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--teal-500); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: var(--radius-full);
}
.blog-body { padding: 22px 22px 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 12.5px; color: var(--slate-400); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta svg { width: 13px; height: 13px; }
.blog-body h3 { font-size: 17.5px; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a { color: inherit; transition: color .2s var(--ease); }
.blog-body h3 a:hover { color: var(--teal-600); }
.blog-body p { font-size: 14px; color: var(--slate-500); margin-bottom: 16px; }
.blog-footer-row { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--slate-100); }
.blog-author { font-size: 13px; color: var(--slate-600); font-weight: 600; }
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .blog-filters { position: static; } }

.newsletter-band { background: var(--teal-500); padding: 56px 0; text-align: center; color: var(--white); }
.newsletter-band h2 { color: var(--white); margin-bottom: 10px; }
.newsletter-band p { color: rgba(255,255,255,.88); margin-bottom: 26px; }
.newsletter-form { display: flex; justify-content: center; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.newsletter-form input { flex: 1; min-width: 200px; padding: 13px 20px; border-radius: var(--radius-full); border: none; font-size: 14.5px; }
.newsletter-form input:focus { outline: 3px solid rgba(255,255,255,.5); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-hero-panel { background: var(--teal-500); color: var(--white); padding: 48px 40px; }
#appointment { scroll-margin-top: calc(var(--header-h) + 18px); }
.contact-info-block { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-block .ci-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.contact-info-block .ci-icon svg { width: 21px; height: 21px; }
.contact-info-block h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; opacity: .85; margin-bottom: 6px; }
.contact-info-block p { font-size: 15.5px; line-height: 1.6; }
.contact-info-block p strong { font-size: 19px; display: block; }
.contact-split { display: grid; grid-template-columns: 0.85fr 1.15fr; }
.map-embed { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(1.05); }
@media (max-width: 900px) { .contact-split { grid-template-columns: 1fr; } .map-embed { min-height: 320px; } }

.immediate-band { text-align: center; padding: 64px 0; }
.immediate-band h2 { margin-bottom: 10px; }
.immediate-band p { color: var(--slate-500); margin-bottom: 26px; }

/* Fade-in-on-scroll utility */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Responsive section padding */
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .doctors-grid { gap: 16px; }
}

/* ==========================================================================
   Blog Article Page
   ========================================================================== */
.article-hero { min-height: 380px; align-items: flex-end; }
.article-hero .container { max-width: 800px; }
.article-badge {
  display: inline-block;
  background: var(--teal-500); color: var(--white);
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px; border-radius: var(--radius-full); margin-bottom: 16px;
  animation: fadeUp .7s var(--ease) both;
}
.article-hero h1 { max-width: 720px; }
.article-hero-meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.85);
  animation: fadeUp .7s .1s var(--ease) both;
}
.article-hero-meta span { display: flex; align-items: center; gap: 6px; }
.article-hero-meta svg { width: 15px; height: 15px; }

.breadcrumb-bar { background: var(--slate-50); border-bottom: 1px solid var(--slate-200); padding: 16px 0; }
.breadcrumb-bar .breadcrumb { font-size: 13.5px; color: var(--slate-500); }
.breadcrumb-bar .breadcrumb a { color: var(--slate-500); transition: color .2s var(--ease); }
.breadcrumb-bar .breadcrumb a:hover { color: var(--teal-600); }
.breadcrumb-bar .breadcrumb span { color: var(--slate-300); margin: 0 4px; }
.breadcrumb-bar .breadcrumb .current { color: var(--teal-600); font-weight: 600; }

.article-layout { padding: 64px 0 20px; }
.article-container { max-width: 760px; margin: 0 auto; }

.article-author {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 28px; margin-bottom: 32px;
  border-bottom: 1px solid var(--slate-200);
}
.article-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; flex: none; box-shadow: var(--shadow-sm); }
.article-author-team img { object-fit: contain; padding: 7px; background: var(--white); border: 1px solid var(--slate-200); }
.article-author h4 { font-size: 15.5px; margin-bottom: 2px; }
.article-author .role { font-size: 13px; color: var(--teal-600); font-weight: 600; }

.article-content { color: var(--slate-600); font-size: 16px; line-height: 1.85; }
.article-content > p { margin-bottom: 20px; }
.article-content h2 { font-size: clamp(21px, 2.6vw, 25px); margin: 38px 0 14px; color: var(--slate-900); }
.article-content h3 { font-size: 18.5px; margin: 26px 0 10px; color: var(--slate-800); }
.article-content ul, .article-content ol { margin: 0 0 20px 22px; }
.article-content li { margin-bottom: 9px; }
.article-content a { color: var(--teal-600); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(20,184,166,.35); text-underline-offset: 3px; transition: color .2s var(--ease); }
.article-content a:hover { color: var(--teal-700); }
.article-highlight {
  background: var(--teal-50); border-left: 4px solid var(--teal-500);
  padding: 18px 22px; border-radius: var(--radius-sm);
  margin: 26px 0; font-size: 15px; color: var(--slate-700);
}
.article-highlight strong { color: var(--slate-900); }

.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 26px; padding-top: 30px; border-top: 1px solid var(--slate-200); }
.article-tags a { background: var(--teal-50); color: var(--teal-600); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: var(--radius-full); transition: background .2s var(--ease), color .2s var(--ease); }
.article-tags a:hover { background: var(--teal-500); color: var(--white); }

.article-share { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.article-share > span { font-size: 13.5px; font-weight: 600; color: var(--slate-600); }
.share-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--slate-100); color: var(--slate-600);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  position: relative;
}
.share-btn:hover { background: var(--teal-500); color: var(--white); transform: translateY(-3px); }
.share-btn svg { width: 16px; height: 16px; }
.share-btn.copied { background: var(--teal-600); color: var(--white); }
.share-btn.copied::after {
  content: 'Copied!';
  position: absolute; top: -32px; left: 50%; transform: translateX(-50%);
  background: var(--slate-800); color: var(--white); font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 6px; white-space: nowrap;
}

.related-band { background: var(--slate-50); padding: 72px 0; }
.related-band .section-head { text-align: left; margin: 0 0 30px; max-width: none; }
.related-band .section-head h2 { font-size: clamp(24px, 3vw, 30px); margin-bottom: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 980px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

@media (max-width: 640px) {
  .article-layout { padding: 44px 0 10px; }
  .article-author { flex-wrap: wrap; }
}

/* ==========================================================================
   Version 2 additions: popup, videos, gallery and health camps
   ========================================================================== */
.specialty-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.specialty-modal.show { opacity: 1; visibility: visible; }
.specialty-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.72);
  backdrop-filter: blur(8px);
}
.specialty-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 30px 90px rgba(15,23,42,.3);
  transform: translateY(18px) scale(.98);
  transition: transform .35s var(--ease);
}
.specialty-modal.show .specialty-modal-card { transform: translateY(0) scale(1); }
.specialty-modal-card h2 { font-size: clamp(26px,4vw,36px); margin-bottom: 12px; }
.specialty-modal-card > p { color: var(--slate-500); }
.specialty-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 26px;
  line-height: 1;
}
.specialty-modal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}
.specialty-modal-list span {
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  padding: 8px 13px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}
.specialty-modal-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) {
  .specialty-modal-card { padding: 34px 24px 26px; }
  .specialty-modal-actions .btn { width: 100%; }
}

.video-intro-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.video-placeholder {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--slate-800);
  box-shadow: var(--shadow-lg);
}
.video-placeholder > img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.9), rgba(15,23,42,.08) 68%);
}
.video-placeholder-overlay {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}
.video-placeholder-overlay h3 { color: var(--white); font-size: 19px; margin-bottom: 4px; }
.video-placeholder-overlay p { color: rgba(255,255,255,.76); font-size: 13px; }
.video-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--slate-900);
  display: grid;
  place-items: center;
  flex: none;
}
.video-play svg { width: 23px; height: 23px; margin-left: 3px; }
@media (max-width: 760px) { .video-intro-grid { grid-template-columns: 1fr; } }

.camp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.camp-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 260px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.camp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.camp-card-featured { grid-column: 1 / -1; grid-template-columns: 1.15fr .85fr; min-height: 370px; }
.camp-card img { width: 100%; height: 100%; object-fit: cover; }
.camp-card-body { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.camp-card-body > span { color: var(--gold-600); font-weight: 700; font-size: 13px; letter-spacing: .12em; margin-bottom: 10px; }
.camp-card-body h3 { font-size: 20px; margin-bottom: 10px; }
.camp-card-body p { color: var(--slate-500); font-size: 14px; }
.camp-card-featured .camp-card-body h3 { font-size: clamp(24px,3vw,32px); }
.representative-note { margin: 20px 0 0; text-align: center; color: var(--slate-400); font-size: 12.5px; }
.camp-cta {
  margin-top: 54px;
  padding: 38px 42px;
  border-radius: var(--radius-lg);
  background: var(--slate-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.camp-cta h2 { color: var(--white); margin-bottom: 6px; }
.camp-cta p { color: rgba(255,255,255,.72); max-width: 680px; }
@media (max-width: 900px) {
  .camp-grid { grid-template-columns: 1fr; }
  .camp-card-featured { grid-column: auto; }
}
@media (max-width: 640px) {
  .camp-card, .camp-card-featured { grid-template-columns: 1fr; }
  .camp-card img { aspect-ratio: 16/10; }
  .camp-cta { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
}

/* Click-to-call phone links */
.contact-phone-link { color: inherit; text-decoration: none; }
.contact-phone-link:hover { text-decoration: underline; }
.footer-contact a[href^="tel:"] { color: inherit; text-decoration: none; }
.footer-contact a[href^="tel:"]:hover { color: var(--teal-400); }

/* ==========================================================================
   Google Preferred Sources
   ========================================================================== */
.preferred-source-promo {
  background: var(--slate-800);
  padding: 32px 0;
  position: relative;
  z-index: 1;
}
.preferred-source-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.055);
  box-shadow: 0 12px 30px rgba(15,23,42,.18);
  margin: 0;
}
.preferred-source-copy { max-width: 720px; }
.preferred-source-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.preferred-source-card h2 {
  color: var(--white);
  font-size: clamp(20px, 2.2vw, 28px);
  margin: 0 0 7px;
}
.preferred-source-card p {
  color: var(--slate-400);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.preferred-source-action {
  flex: none;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.preferred-source-fallback {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--slate-900);
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 760px) {
  .preferred-source-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 22px;
  }
  .preferred-source-action {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
  }
}
