/* ═══════════════════════════════════════════════════════════════
   COMMON.CSS — KG Speciality Centre
   Global design system, base HTML tags, nav, footer, buttons,
   badges, FAQ, animations & responsive foundation.
   All pages link to this file.
═══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN SYSTEM VARIABLES ── */
:root {
  --kg-blue:      #362C6A;
  --kg-blue-mid:  #4a3d8a;
  --kg-blue-soft: #5c4fa0;
  --gold:         #c9962a;
  --gold-light:   #f0c965;
  --ivory:        #faf6ef;
  --ivory-mid:    #f5efe0;
  --white:        #ffffff;
  --slate:        #4a5568;
  --slate-light:  #718096;
  --text-dark:    #1a202c;
  --green-acc:    #1a6b4a;
  --green-bg:     #e8f5ef;
  --red-acc:      #b91c1c;
  --red-bg:       #fef2f2;
  --violet-tint:  #e8e2f5;
  --amber-light:  #f2e3bb;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --sh-sm:  0 1px 3px rgba(54,44,106,.07);
  --sh-md:  0 4px 16px rgba(54,44,106,.10);
  --sh-lg:  0 8px 32px rgba(54,44,106,.16);
  --r:      10px;
  --rlg:    16px;
}

/* ── 2. RESET & BASE HTML TAGS ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--kg-blue);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(26px, 3.8vw, 48px); }
h2 { font-size: clamp(22px, 3vw, 36px); }
h3 { font-size: clamp(18px, 2.4vw, 26px); }
h4 { font-size: clamp(15px, 1.8vw, 20px); }
h5 { font-size: clamp(14px, 1.4vw, 17px); }
h6 { font-size: 14px; }

p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 14px;
}
p:last-child { margin-bottom: 0; }

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}

a:hover { color: var(--kg-blue-mid); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list-style, ol.list-style {
  padding-left: 20px;
}
ul.list-style { list-style: disc; }
ol.list-style  { list-style: decimal; }
ul.list-style li, ol.list-style li {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 6px;
}

li { font-size: 15px; color: var(--slate); line-height: 1.7; }

strong, b { color: var(--text-dark); font-weight: 700; }
em, i     { font-style: italic; }
small     { font-size: 12px; color: var(--slate-light); }
code, pre { font-family: 'Courier New', monospace; background: var(--ivory-mid); border-radius: 4px; padding: 2px 6px; font-size: 13px; }
pre       { padding: 16px; overflow-x: auto; }
hr        { border: none; border-top: 1px solid rgba(54,44,106,.1); margin: 24px 0; }
blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--ivory);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--slate);
  margin: 20px 0;
}

table { width: 100%; border-collapse: collapse; font-size: 14px; }
th    { background: var(--kg-blue); color: #fff; padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; }
td    { padding: 10px 16px; border-bottom: 1px solid rgba(54,44,106,.08); color: var(--text-dark); }
tr:nth-child(even) td { background: var(--ivory); }

input, textarea, select {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid rgba(54,44,106,.18);
  border-radius: 8px;
  padding: 10px 14px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--kg-blue-mid);
  box-shadow: 0 0 0 3px rgba(54,44,106,.07);
}
input::placeholder, textarea::placeholder { color: var(--slate-light); }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--kg-blue);
  display: block;
  margin-bottom: 5px;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

form { width: 100%; }

section { position: relative; }
article { display: block; }
aside   { display: block; }
header  { display: block; }
footer  { display: block; }
nav     { display: block; }
main    { display: block; }

/* ── 3. UTILITIES ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-eyebrow, .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--kg-blue);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 15px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-head {
  margin-bottom: 44px;
}
.section-head.centered { text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--kg-blue);
  margin-bottom: 8px;
}
.section-head p {
  font-size: 15px;
  color: var(--slate);
  max-width: 560px;
}
.section-head.centered p { margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }

.logo-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.d-none      { display: none; }
.d-flex      { display: flex; }
.d-grid      { display: grid; }
.w-100       { width: 100%; }
.mt-auto     { margin-top: auto; }
.mb-0        { margin-bottom: 0; }
.hidden      { display: none !important; }

/* ── 4. NAVIGATION ── */
.top-bar {
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(54,44,106,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--sh-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 12px;
  padding: 0;
  flex-wrap: nowrap;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--kg-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.logo-text-primary {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--kg-blue);
  line-height: 1.2;
}

.logo-text-sub { font-size: 11px; color: var(--slate-light); }

.nabh-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 3px;
  background: var(--green-bg);
  color: var(--green-acc);
  vertical-align: middle;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .2s, background .2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--kg-blue);
  background: rgba(54,44,106,.05);
}

.nav-links a.active { font-weight: 600; }

.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: var(--white);
  border: 1.5px solid rgba(54,44,106,.18);
  border-radius: 7px;
  padding: 8px 10px;
  width: 42px;
  height: 38px;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.nav-hamburger:hover { background: var(--ivory); border-color: var(--kg-blue); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--kg-blue);
  border-radius: 2px;
  transition: all .28s ease;
  transform-origin: center;
}
/* Animate to ✕ when open */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-only call link (hidden on desktop) */
.nav-mobile-cta { display: none; }

/* ── 5. BREADCRUMB ── */
.breadcrumb {
  background: var(--ivory-mid);
  border-bottom: 1px solid rgba(54,44,106,.07);
  padding: 10px 0;
}

.bc-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-light);
  flex-wrap: wrap;
}

.bc-inner a {
  color: var(--kg-blue-mid);
  font-weight: 500;
  transition: color .2s;
}

.bc-inner a:hover { color: var(--kg-blue); }
.bc-sep           { opacity: .4; }
.bc-current       { color: var(--kg-blue); font-weight: 600; }

/* ── 6. BUTTONS ── */
/* Primary */
.btn-primary {
  background: var(--kg-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-primary:hover { background: var(--kg-blue-mid); transform: translateY(-1px); color: var(--white); }

/* Call / Ghost / Outline */
.btn-call, .btn-ghost, .btn-hero-outline, .btn-hero-ghost {
  background: transparent;
  color: var(--kg-blue);
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
}
.btn-call         { font-size: 13px; padding: 10px 16px; border: 1.5px solid rgba(54,44,106,.2); }
.btn-ghost        { font-size: 14px; padding: 12px 22px; border: 1.5px solid rgba(54,44,106,.22); }
.btn-hero-outline { font-size: 15px; padding: 14px 28px; border-radius: 10px; border: 1.5px solid rgba(54,44,106,.25); }
.btn-hero-ghost   { font-size: 15px; padding: 14px 28px; border-radius: 10px; border: 1.5px solid rgba(54,44,106,.25); }
.btn-call:hover, .btn-ghost:hover,
.btn-hero-outline:hover, .btn-hero-ghost:hover {
  background: rgba(54,44,106,.04);
  border-color: var(--kg-blue);
  color: var(--kg-blue);
}

/* Hero Primary */
.btn-hero-primary {
  background: var(--kg-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-hero-primary:hover { background: var(--kg-blue-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(54,44,106,.25); color: var(--white); }

/* Gold / CTA Gold */
.btn-hero-gold, .btn-cta-gold, .btn-corp-gold, .btn-bk {
  background: var(--gold);
  color: var(--kg-blue);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none;
}
.btn-hero-gold:hover, .btn-cta-gold:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--kg-blue); }
.btn-corp-gold { font-size: 14px; padding: 12px 24px; border-radius: 8px; }
.btn-corp-gold:hover { background: var(--gold-light); color: var(--kg-blue); }
.btn-bk { font-size: 14px; padding: 11px 22px; border-radius: 8px; background: var(--kg-blue); color: #fff; }
.btn-bk:hover { background: var(--kg-blue-mid); color: #fff; }

/* CTA White (dark bg) */
.btn-cta-white, .btn-corp-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.25);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none;
}
.btn-cta-white:hover, .btn-corp-outline:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-corp-outline { font-size: 14px; padding: 12px 24px; border-radius: 8px; }

/* CTA White Solid (emergency) */
.btn-cta-white-solid {
  background: #fff;
  color: var(--red-acc);
  font-size: 16px;
  font-weight: 800;
  padding: 15px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none;
}
.btn-cta-white-solid:hover { background: var(--ivory); transform: translateY(-2px); color: var(--red-acc); }

/* CTA Outline (emergency) */
.btn-cta-outline {
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.35);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Emergency button */
.btn-emergency, .btn-hero-emergency {
  background: var(--red-acc);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-hero-emergency { font-size: 15px; padding: 13px 28px; border-radius: 9px; }
.btn-emergency:hover, .btn-hero-emergency:hover { background: #9b1616; transform: translateY(-1px); color: #fff; }

/* Corporate Gold */
.btn-corporate {
  background: var(--gold);
  color: var(--kg-blue);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-corporate:hover { background: var(--gold-light); transform: translateY(-1px); color: var(--kg-blue); }

/* WhatsApp button */
.btn-wa, .wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  transition: all .2s;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.wa-btn { width: 100%; margin-top: 14px; padding: 11px; border-radius: 9px; }
.btn-wa:hover, .wa-btn:hover { background: #1db954; transform: translateY(-1px); color: #fff; }

/* Appointment / Book */
.appt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  background: var(--kg-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  gap: 6px;
  transition: background .2s;
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.appt-btn:hover { background: var(--kg-blue-mid); color: #fff; }

/* Read / Blog */
.btn-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kg-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all .2s;
  text-decoration: none;
}
.btn-read:hover { background: var(--kg-blue-mid); transform: translateX(2px); color: #fff; }

/* Gold simple */
.btn-gold {
  background: var(--gold);
  color: var(--kg-blue);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); color: var(--kg-blue); }

/* White simple */
.btn-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.3);
  font-family: var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all .2s;
}
.btn-white:hover { background: rgba(255,255,255,.2); color: #fff; }

/* Load More */
.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--kg-blue);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(54,44,106,.2);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all .2s;
}
.btn-load-more:hover { border-color: var(--kg-blue); background: rgba(54,44,106,.03); }

/* ── 7. BADGES & TAGS ── */
.badge, .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-nabh   { background: var(--green-bg);    color: var(--green-acc);  border: 1px solid rgba(26,107,74,.2); }
.badge-24     { background: var(--red-bg);       color: var(--red-acc);    border: 1px solid rgba(185,28,28,.18); }
.badge-aus    { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }
.badge-uk     { background: var(--violet-tint);  color: var(--kg-blue);    border: 1px solid rgba(54,44,106,.18); }
.badge-dm     { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }
.badge-dept   { background: var(--red-bg);       color: var(--red-acc);    border: 1px solid rgba(185,28,28,.18); }
.badge-est    { background: var(--violet-tint);  color: var(--kg-blue);    border: 1px solid rgba(54,44,106,.18); }
.badge-legacy { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }
.badge-kg     { background: var(--violet-tint);  color: var(--kg-blue);    border: 1px solid rgba(54,44,106,.18); }
.badge-govt   { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }
.badge-excl   { background: var(--violet-tint);  color: var(--kg-blue);    border: 1px solid rgba(54,44,106,.18); }
.badge-indiv  { background: var(--violet-tint);  color: var(--kg-blue);    border: 1px solid rgba(54,44,106,.18); }
.badge-corp   { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }
.badge-auth   { background: var(--violet-tint);  color: var(--kg-blue);    border: 1px solid rgba(54,44,106,.18); }
.badge-full   { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }
.badge-ot     { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }
.badge-247    { background: var(--red-bg);       color: var(--red-acc);    border: 1px solid rgba(185,28,28,.2); font-weight: 800; }
.badge-trauma { background: var(--amber-light);  color: #7a4a0a;           border: 1px solid rgba(201,150,42,.3); }

.tag-pill  { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.tag-visa  { background: var(--amber-light); color: #7a4a0a;          border: 1px solid rgba(201,150,42,.35); }
.tag-navy  { background: var(--violet-tint); color: var(--kg-blue-mid); border: 1px solid rgba(54,44,106,.15); }

.tag-specialist { background: var(--violet-tint); color: var(--kg-blue-mid); }
.tag-surgical   { background: var(--amber-light); color: #7a4a0a; }
.tag-diagnostic { background: var(--green-bg); color: var(--green-acc); }
.tag-preventive { background: rgba(54,44,106,.07); color: var(--kg-blue); }

/* Hero tag chips */
.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-tags   { display: flex; flex-wrap: wrap; gap: 6px; }
.hero-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid rgba(54,44,106,.1);
  color: var(--slate);
}

/* ── 8. FAQ COMPONENT ── */
.faq-section { padding: 72px 0; background: var(--white); }
.faq-layout  { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }

.faq-sidebar { position: sticky; top: 88px; }
.faq-left    { position: sticky; top: 96px; }
.faq-sidebar h2, .faq-left h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--kg-blue);
  margin-bottom: 10px;
}
.faq-sidebar p, .faq-left p { font-size: 13px; color: var(--slate); line-height: 1.65; margin-bottom: 20px; }
.faq-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.faq-item   { border-bottom: 1px solid rgba(54,44,106,.09); padding: 15px 0; cursor: pointer; }
.faq-q      { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-q-text { font-size: 14px; font-weight: 600; color: var(--kg-blue); line-height: 1.4; }
.faq-toggle { font-size: 20px; color: var(--gold); flex-shrink: 0; transition: transform .25s; font-weight: 300; line-height: 1; margin-top: 2px; }
.faq-a      { font-size: 13px; color: var(--slate); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .35s ease, margin-top .2s; }
.faq-item.open .faq-a      { max-height: 300px; margin-top: 10px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* FAQ sidebar links (visa page) */
.faq-sidebar-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.faq-sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--kg-blue);
  border: 1.5px solid rgba(54,44,106,.2);
  transition: all .2s;
  font-family: var(--font-body);
}
.faq-sidebar-links a:hover { background: rgba(54,44,106,.04); border-color: var(--kg-blue); }

/* ── 9. BOTTOM CTA ── */
.bottom-cta {
  background: var(--kg-blue);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,150,42,.07);
  pointer-events: none;
}
.bottom-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.bottom-cta p { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 30px; position: relative; z-index: 1; }
.cta-buttons  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-note     { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 14px; position: relative; z-index: 1; }

/* Emergency bottom CTA (red) */
.bottom-cta.cta-red { background: var(--red-acc); }
.bottom-cta.cta-red::before { background: rgba(255,255,255,.05); }
.bottom-cta.cta-red p { color: rgba(255,255,255,.8); }

/* ── 10. BOOK / CONTACT CARDS ── */
.book-card, .hero-card {
  background: var(--white);
  border-radius: var(--rlg);
  border: 1px solid rgba(54,44,106,.1);
  padding: 26px;
  box-shadow: var(--sh-md);
}

.book-card-title, .hero-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--kg-blue);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.book-row, .hero-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(54,44,106,.07);
  text-decoration: none;
  transition: background .15s;
  border-radius: 6px;
}
.book-row:last-of-type, .hero-contact-row:last-of-type { border-bottom: none; }
.book-row:hover, .hero-contact-row:hover { background: rgba(54,44,106,.03); }

.book-icon, .hero-contact-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.book-label, .hero-contact-label { font-size: 11px; color: var(--slate-light); margin-bottom: 1px; }
.book-val, .hero-contact-val { font-size: 14px; font-weight: 600; color: var(--kg-blue); }
.book-val.sm { font-size: 13px; line-height: 1.4; }
.book-note   { font-size: 11px; color: var(--slate-light); text-align: center; margin-top: 9px; }

/* Booking strip (amber bar) */
.booking-strip, .auth-strip {
  border-top: 1px solid rgba(201,150,42,.2);
  border-bottom: 1px solid rgba(201,150,42,.2);
  padding: 14px 0;
  background: var(--amber-light);
}
.booking-strip { padding: 20px 0; }

.auth-strip-inner, .bs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.bs-inner { justify-content: space-between; }

.auth-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #7a4a0a; font-weight: 500; }
.auth-item strong { font-weight: 700; }
.auth-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(122,74,10,.25); flex-shrink: 0; }

.bs-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--kg-blue); margin-bottom: 3px; }
.bs-text span   { font-size: 13px; color: #7a4a0a; }
.bs-actions     { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* UK auth strip (violet) */
.auth-strip.auth-uk {
  background: var(--violet-tint);
  border-color: rgba(54,44,106,.1);
}
.auth-strip.auth-uk .auth-item { color: var(--kg-blue); }
.auth-strip.auth-uk .auth-dot  { background: rgba(54,44,106,.2); }

/* Contact mini card */
.contact-mini { background: var(--ivory); border-radius: var(--rlg); padding: 16px 18px; border: 1px solid rgba(54,44,106,.08); }
.cm-row       { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(54,44,106,.06); }
.cm-row:last-child { border-bottom: none; }
.cm-icon  { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.cm-label { font-size: 11px; color: var(--slate-light); margin-bottom: 1px; }
.cm-val   { font-size: 13px; font-weight: 600; color: var(--kg-blue); }

/* ── 11. DOCTOR CARDS ── */
.doctors-section { padding: 72px 0; background: var(--ivory); }
.doctors-section h2 { font-family: var(--font-display); font-size: clamp(22px, 2.8vw, 32px); font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; }
.doctors-section .sub { font-size: 15px; color: var(--slate); margin-bottom: 40px; }
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.doctor-card {
  background: var(--white);
  border-radius: var(--rlg);
  padding: 24px;
  border: 1px solid rgba(54,44,106,.08);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.doctor-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.doctor-card.flex-card { text-align: left; display: flex; align-items: center; gap: 24px; max-width: 520px; }

.doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--violet-tint);
  margin: 0 auto 14px;
  border: 3px solid var(--ivory-mid);
  flex-shrink: 0;
}
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card.flex-card .doctor-avatar { width: 88px; height: 88px; margin: 0; }

.doctor-qual { font-size: 11px; font-weight: 600; color: var(--gold); margin-bottom: 3px; letter-spacing: .04em; text-transform: uppercase; }
.doctor-name { font-size: 15px; font-weight: 700; color: var(--kg-blue); margin-bottom: 3px; line-height: 1.3; }
.doctor-card.flex-card .doctor-name { font-size: 18px; }
.doctor-role { font-size: 12px; color: var(--slate-light); margin-bottom: 14px; }
.doctor-card.flex-card .doctor-role { font-size: 13px; }
.doctor-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.doctor-card.flex-card .doctor-links { justify-content: flex-start; }

.doc-link { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 6px; display: inline-flex; align-items: center; gap: 4px; transition: all .2s; text-decoration: none; }
.doc-link.profile { background: var(--violet-tint); color: var(--kg-blue); }
.doc-link.profile:hover { background: var(--kg-blue); color: #fff; }
.doc-link.appt { background: var(--kg-blue); color: #fff; }
.doc-link.appt:hover { background: var(--kg-blue-mid); }
.deg-note { font-size: 10px; color: var(--slate-light); font-style: italic; margin-top: 4px; }

/* ── 12. TESTIMONIALS ── */
.testimonials-section, .testi-section { padding: 80px 0; background: var(--ivory); }
.testi-section h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; text-align: center; }
.testi-section .sub { font-size: 15px; color: var(--slate); text-align: center; margin-bottom: 48px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }

.testi-card {
  background: var(--white);
  border-radius: var(--rlg);
  border: 1px solid rgba(54,44,106,.07);
  padding: 24px;
}
.testi-stars     { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }
.testi-dept, .testi-dept-tag { margin-bottom: 12px; }
.testi-tag       { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 12px; background: var(--violet-tint); color: var(--kg-blue); }
.testi-text      { font-size: 14px; color: var(--slate); line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.testi-author    { display: flex; align-items: center; gap: 10px; }
.testi-avatar, .testi-av { width: 36px; height: 36px; border-radius: 50%; background: var(--kg-blue); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.testi-name      { font-size: 14px; font-weight: 600; color: var(--kg-blue); }
.testi-role      { font-size: 12px; color: var(--slate-light); }

/* ── 13. LOCATION / MAP SECTION ── */
.location-section { padding: 64px 0; background: var(--ivory-mid); }
.location-inner   { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.loc-row  { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.loc-icon { width: 34px; height: 34px; background: white; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; border: 1px solid rgba(54,44,106,.08); }
.loc-lbl  { font-size: 11px; color: var(--slate-light); margin-bottom: 2px; }
.loc-val  { font-size: 14px; font-weight: 600; color: var(--kg-blue); line-height: 1.4; }
.loc-val a { color: var(--kg-blue-mid); }

.map-placeholder {
  width: 100%;
  height: 260px;
  border-radius: var(--rlg);
  background: linear-gradient(135deg, #f0edfb, #e8e2f5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px dashed rgba(54,44,106,.15);
}

/* ── 14. FOOTER ── */
footer {
  background: var(--kg-blue);
  color: rgba(255,255,255,.75);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 14px 0 18px;
  max-width: 280px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: white;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }

.footer-cert, .footer-cert-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(201,150,42,.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,150,42,.25);
  margin-right: 6px;
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p,
.footer-bottom-text { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── 15. STICKY ACTIONS ── */
.sticky-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.sticky-btn, .sticky-wa, .sticky-call {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
  transition: all .2s;
  text-decoration: none;
  color: white;
}
.sticky-btn.wa,  .sticky-wa   { background: #25d366; }
.sticky-btn.call, .sticky-call { background: var(--red-acc); }
.sticky-btn:hover, .sticky-wa:hover, .sticky-call:hover { transform: scale(1.1); }

/* ── 16. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-left > *,
.hero-inner > *,
.blog-hero-inner > *,
.page-hero-inner > * {
  opacity: 0;
  animation: fadeUp .55s ease forwards;
}
.hero-badges, .blog-hero-eyebrow { animation-delay: .05s; }
.hero h1, .blog-hero h1, .page-hero h1 { animation-delay: .15s; }
.hero-desc, .blog-hero-desc, .page-hero-desc { animation-delay: .22s; }
.hero-actions, .hero-ctas, .blog-hero-stats { animation-delay: .30s; }
.hero-tags  { animation-delay: .38s; }
.hero-stats { animation-delay: .40s; }
.hero-trust { animation-delay: .45s; }
.hero-right { opacity: 0; animation: fadeUp .55s ease .25s forwards; }

/* ── 17. PROCESS / STEPS ── */
.process-section { padding: 72px 0; background: var(--ivory); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(54,44,106,.15) 20%, rgba(54,44,106,.15) 80%, transparent);
  pointer-events: none;
}
.step { padding: 0 14px; text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--kg-blue); color: var(--gold-light);
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 3px solid var(--ivory); box-shadow: var(--sh-md);
}
.step-title { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 7px; }
.step-body  { font-size: 12px; color: var(--slate); line-height: 1.65; }

/* ── 18. WHY SECTION ── */
.why-section { padding: 72px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--ivory);
  border-radius: var(--rlg);
  padding: 28px 24px;
  border: 1px solid rgba(54,44,106,.07);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); background: var(--white); }
.why-icon  { font-size: 36px; margin-bottom: 16px; }
.why-title { font-size: 15px; font-weight: 700; color: var(--kg-blue); margin-bottom: 8px; }
.why-desc  { font-size: 13px; color: var(--slate); line-height: 1.65; }

.why-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-text h2 { font-family: var(--font-display); font-size: clamp(22px,2.8vw,32px); font-weight: 700; color: var(--kg-blue); line-height: 1.25; margin-bottom: 14px; }
.why-text p  { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 14px; }
.why-text strong { color: var(--kg-blue); }

.why-points { display: flex; flex-direction: column; gap: 12px; }
.why-point  {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--ivory);
  border-radius: var(--r);
  border: 1px solid rgba(54,44,106,.07);
  transition: box-shadow .2s;
}
.why-point:hover { box-shadow: var(--sh-md); background: var(--white); }
.why-point-icon  { font-size: 20px; flex-shrink: 0; }
.why-point-title { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 3px; }
.why-point-desc  { font-size: 12px; color: var(--slate); line-height: 1.55; }

/* ── 19. SERVICES / CONDITIONS SECTIONS ── */
.services-section { padding: 72px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--ivory);
  border-radius: var(--rlg);
  padding: 22px;
  border: 1px solid rgba(54,44,106,.07);
  position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); background: var(--white); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--kg-blue);
  transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.emerg-card-style::before { background: var(--red-acc); }
.service-name { font-size: 15px; font-weight: 700; color: var(--kg-blue); margin-bottom: 7px; }
.service-desc { font-size: 13px; color: var(--slate); line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.service-tag  { font-size: 10px; font-weight: 500; padding: 2px 8px; border-radius: 4px; background: var(--violet-tint); color: var(--kg-blue-mid); }
.service-tag.red { background: var(--red-bg); color: var(--red-acc); }

.conditions-section { padding: 72px 0; background: var(--ivory); }
.conditions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.condition-pill {
  background: var(--white);
  border-radius: var(--r);
  padding: 18px 20px;
  border: 1px solid rgba(54,44,106,.08);
  display: flex; align-items: flex-start; gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.condition-pill:hover { box-shadow: var(--sh-md); transform: translateX(4px); }
.cp-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.cp-name { font-size: 14px; font-weight: 700; color: var(--kg-blue); margin-bottom: 4px; }
.cp-desc { font-size: 12px; color: var(--slate); line-height: 1.6; }

/* ── 20. VIDEO SECTION ── */
.video-section { padding: 72px 0; background: var(--white); }
.video-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; }
.video-placeholder {
  width: 100%; aspect-ratio: 16/9; border-radius: var(--rlg);
  background: linear-gradient(145deg, #2a2258 0%, #362C6A 60%, #4a3d8a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; cursor: pointer;
  box-shadow: 0 12px 40px rgba(54,44,106,.25);
}
.video-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(201,150,42,.12) 0%, transparent 60%);
}
.video-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 24px; cursor: pointer; position: relative; z-index: 1;
  transition: all .2s; margin-bottom: 16px; backdrop-filter: blur(4px);
}
.video-play-btn:hover { background: rgba(255,255,255,.25); transform: scale(1.08); }
.video-overlay-text { position: relative; z-index: 1; text-align: center; padding: 0 24px; }

/* ── 21. CREDENTIALS / TRUST BAR ── */
.cred-inner { display: flex; align-items: stretch; }
.cred-item  {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 28px; flex: 1;
  border-right: 1px solid rgba(54,44,106,.08);
}
.cred-item:last-child { border-right: none; }

/* ── 22. PHOTO SECTION ── */
.photo-section { padding: 80px 0; background: var(--ivory); }
.photo-layout  { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.photo-text h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); font-weight: 700; color: var(--kg-blue); line-height: 1.2; margin-bottom: 14px; }
.photo-text p  { font-size: 15px; color: var(--slate); line-height: 1.72; margin-bottom: 12px; }
.trust-chips   { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.t-chip { font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; background: var(--white); border: 1px solid rgba(54,44,106,.1); color: var(--kg-blue); }

.photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 240px 200px; gap: 10px; }
.photo-slot-1 { grid-column: 1/3; grid-row: 1/2; }
.photo-slot-2 { grid-column: 1/2; grid-row: 2/3; }
.photo-slot-3 { grid-column: 2/3; grid-row: 2/3; }
.photo-slot {
  border-radius: var(--rlg); overflow: hidden; position: relative;
  background: var(--ivory-mid); border: 2px dashed rgba(54,44,106,.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.photo-slot:hover { border-color: rgba(201,150,42,.5); background: var(--amber-light); }
.photo-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-slot-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(54,44,106,.55) 0%, transparent 55%); opacity: 0; transition: opacity .25s; }
.photo-slot:hover .photo-slot-overlay { opacity: 1; }
.photo-slot-caption { position: absolute; bottom: 14px; left: 16px; right: 16px; font-size: 12px; font-weight: 600; color: #fff; opacity: 0; transition: opacity .25s; z-index: 1; }
.photo-slot:hover .photo-slot-caption { opacity: 1; }
.photo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px; text-align: center; }
.photo-placeholder-icon  { font-size: 28px; opacity: .35; }
.photo-placeholder-label { font-size: 12px; font-weight: 600; color: var(--kg-blue); opacity: .55; }
.photo-placeholder-hint  { font-size: 10.5px; color: var(--slate-light); line-height: 1.5; }

/* ── 23. FILTER BAR ── */
.filter-section, .filter-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(54,44,106,.07);
  padding: 14px 0;
  position: sticky;
  top: 72px;
  z-index: 90;
}
.filter-bar { box-shadow: 0 2px 8px rgba(54,44,106,.06); }
.filter-inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-size: 12px; font-weight: 600; color: var(--slate-light); white-space: nowrap; }

.filter-btn, .filter-tab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid rgba(54,44,106,.15);
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.filter-tab { padding: 0 18px; height: 100%; border-radius: 0; border-bottom: 2px solid transparent; border-top: none; border-left: none; border-right: none; display: flex; align-items: center; font-size: 13px; }
.filter-btn:hover, .filter-tab:hover { border-color: var(--kg-blue); color: var(--kg-blue); }
.filter-btn.active { background: var(--kg-blue); color: #fff; border-color: var(--kg-blue); }
.filter-tab.active { color: var(--kg-blue); font-weight: 600; border-bottom-color: var(--kg-blue); }

.filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--violet-tint); color: var(--kg-blue-mid);
  font-size: 10px; font-weight: 700; margin-left: 6px;
}
.filter-tab.active .filter-count { background: var(--kg-blue); color: #fff; }

.filter-search { margin-left: auto; position: relative; }
.filter-search input {
  font-family: var(--font-body); font-size: 13px;
  padding: 8px 14px 8px 36px; border-radius: 8px;
  border: 1.5px solid rgba(54,44,106,.15);
  background: var(--ivory); color: var(--text-dark);
  outline: none; width: 220px; transition: border-color .2s;
}
.filter-search input:focus { border-color: var(--kg-blue); }
.filter-search-icon { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); font-size: 14px; color: var(--slate-light); pointer-events: none; }

/* Container Background matching the image padding area */
.featured-section {
  background-color: #fdfaf6; 
  padding: 40px 20px;
  font-family: 'Inter', 'Segoe UI', sans-serif; /* Standard sans-serif for body */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Link Wrapper */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Card Layout */
.featured-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #f0f0f0;
}

.card-link:hover .featured-card {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Left side: Image */
.featured-img {
  flex: 0 0 50%;
  display: flex;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the graphic fills the left half perfectly */
  display: block;
}

/* Right side: Content */
.featured-body {
  flex: 1;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Meta Data (Milestone & Year) */
.featured-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.cat-tag {
  background-color: #f7eed8; /* Light yellowish background */
  color: #a38145; /* Brownish text */
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
}

.post-date {
  color: #9aa0a6;
  font-size: 0.9rem;
}

/* Typography */
.featured-title {
  color: #312e59; /* Dark navy purple/blue */
  font-family: 'Playfair Display', Georgia, serif; /* Matches the serif font in the image */
  font-size: 1.85rem;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.featured-excerpt {
  color: #68707a;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0 0 30px 0;
}

.read-link {
  font-weight: 700;
  color: #312e59;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }
  .featured-img {
    flex: 0 0 auto;
    height: 250px; /* Fixed height for mobile images */
  }
  .featured-body {
    padding: 30px 20px;
  }
}
/* ── 24. GLOBAL RESPONSIVE BREAKPOINTS ── */

/* Nav tightening at 1200px before links need to wrap */
@media (max-width: 1200px) {
  .nav-links a { font-size: 13px; padding: 6px 8px; }
  .site-logo    { max-width: 200px; }
}

/* Nav tightening further at 1024px */
@media (max-width: 1024px) {
  .nav-links a { font-size: 12.5px; padding: 5px 7px; }
  .btn-call     { font-size: 12px; padding: 8px 12px; }
  .site-logo    { max-width: 180px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .video-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* ══════════════════════════════════════
     MOBILE NAV — Hamburger dropdown
     Logo left │ Hamburger right
     Click → full-width menu drops down
  ══════════════════════════════════════ */

  .top-bar {
    position: sticky;
    top: 0;
    z-index: 200;
  }

  /* Single row: Logo ← → Hamburger */
  .nav-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 12px;
    padding: 0;
  }

  /* Logo stays left, natural size */
  .logo-wrap {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .site-logo { max-width: 170px; }
  .logo-img  { max-width: 150px; }

  /* Hide desktop CTA buttons, show hamburger */
  .nav-cta .btn-primary { display: none; }
  .nav-cta .btn-call    { display: none; }
  .nav-hamburger        { display: flex; }

  /* ── DROPDOWN MENU (hidden by default) ── */
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 8px 0 24px;
    z-index: 199;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(54,44,106,.15);
    border-top: 2px solid var(--kg-blue);
  }

  /* Show when toggled open */
  .nav-links.nav-open {
    display: flex;
  }

  /* Nav link items — full width, vertical list */
  .nav-links a {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 14px 24px;
    border-bottom: 1px solid rgba(54,44,106,.06);
    border-radius: 0;
    white-space: normal;
    transition: background .15s, color .15s;
  }
  .nav-links a:first-child { border-top: 1px solid rgba(54,44,106,.04); }
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--ivory);
    color: var(--kg-blue);
    font-weight: 600;
  }

  /* Call Us button inside mobile dropdown */
  .nav-mobile-cta {
    display: block !important;
    margin: 16px 20px 8px;
    padding: 14px 20px;
    background: var(--kg-blue);
    color: #fff !important;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-bottom: none !important;
    border-top: none !important;
    transition: background .2s;
  }
  .nav-mobile-cta:hover {
    background: var(--kg-blue-mid) !important;
    color: #fff !important;
    font-weight: 700;
  }

  /* Grids → single column */
  .footer-grid { grid-template-columns: 1fr; }
  .testi-grid  { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .why-split-grid { grid-template-columns: 1fr; gap: 36px; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar, .faq-left { position: static; }

  /* Auth / booking strip */
  .auth-strip-inner { gap: 14px; }
  .bs-inner { flex-direction: column; align-items: flex-start; }

  /* Photo grid */
  .photo-layout { grid-template-columns: 1fr; gap: 36px; }
  .photo-grid   { grid-template-rows: 200px 180px; }

  /* CTA buttons stack */
  .cta-buttons { flex-direction: column; align-items: center; }

  /* Filter search full width */
  .filter-search { margin-left: 0; width: 100%; }
  .filter-search input { width: 100%; }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  /* Nav: even smaller on phones */
  .site-logo { max-width: 140px; }
  .btn-call  { font-size: 11px; padding: 6px 9px; }
  .nav-links a { font-size: 12px; padding: 5px 10px; }

  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
  .hero-actions, .hero-ctas, .bs-actions { flex-direction: column; }
  .btn-wa, .btn-bk { justify-content: center; width: 100%; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-slot-1, .photo-slot-2, .photo-slot-3 { grid-column: 1/2; grid-row: auto; height: 200px; }
  .testi-grid { grid-template-columns: 1fr; }
}
