/* ============================================================
   Dr. Joshi's Cancer Centre — Main Stylesheet
   Design: Refined medical — DM Serif Display + Plus Jakarta Sans
   ============================================================ */

/* ── Reset & Custom Properties ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --navy:       #0F172A;
  --navy-deep:  #06182e;
  --navy-mid:   #1E293B;
  --blue:       #2563EB;
  --blue-light: #EFF6FF;
  --teal:       #0EA5E9;
  --teal-light: #F0F9FF;
  --gold:       #F59E0B;
  --gold-dark:  #D97706;
  --gold-light: #FEF3C7;

  /* Neutral */
  --white:      #ffffff;
  --off-white:  #F8FAFC;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-300:   #CBD5E1;
  --gray-500:   #64748B;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-900:   #0F172A;

  /* Semantic */
  --success:    #10B981;
  --error:      #EF4444;
  --warning:    #F59E0B;

  /* Typography */
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-6: 1.5rem;   --sp-8: 2rem;
  --sp-12: 3rem;    --sp-16: 4rem;    --sp-24: 6rem;

  /* Layout */
  --container: 1180px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(10,37,64,.08);
  --shadow-md: 0 4px 20px rgba(10,37,64,.10);
  --shadow-lg: 0 12px 48px rgba(10,37,64,.14);
  --shadow-xl: 0 20px 64px rgba(10,37,64,.18);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:  220ms;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--blue); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--navy); }

/* ── Utility ────────────────────────────────────────────────── */
.container    { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-6); }
.section      { padding: var(--sp-24) 0; }
.section--alt { background: var(--off-white); }
.sr-only      { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.sr-only-focusable:focus {
  position: fixed;
  left: var(--sp-4);
  top: var(--sp-4);
  width: auto;
  height: auto;
  clip: auto;
  background: var(--navy);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius);
  z-index: 2000;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
}

.text-center  { text-align: center; }
.text-muted   { color: var(--gray-500); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--navy); line-height: 1.2; }

h1 { font-size: clamp(2rem,   5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem);  }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem);  }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-3);
}
.section-title {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: var(--sp-4);
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto var(--sp-12);
}

/* Shared page sections */
.stack-sm > * + * { margin-top: var(--sp-3); }
.stack-md > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.content-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.page-grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 960px) {
  .page-grid--2col {
    grid-template-columns: minmax(260px, .95fr) minmax(0, 1.2fr);
    align-items: start;
  }
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

.nav-link.btn--nav {
  background: var(--blue);
  color: #fff !important;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
}
.nav-link.btn--nav:hover { background: var(--navy); }

/* Ensure Contact button remains readable when "active" */
.nav-link.btn--nav.active,
.nav-link.btn--nav[aria-current="page"] {
  background: var(--blue);
  color: #fff !important;
  font-weight: 700;
}
.nav-link.btn--nav.active:hover,
.nav-link.btn--nav[aria-current="page"]:hover {
  background: var(--navy);
  color: #fff !important;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.navbar--scrolled {
  box-shadow: 0 4px 30px rgba(10,37,64,.12);
  background: rgba(255,255,255,.98);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon-svg { flex-shrink: 0; display: flex; align-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); }
.brand-text small   { font-size: .68rem; color: var(--gray-500); letter-spacing: .03em; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  padding: .4rem .8rem;
  border-radius: 6px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .2s, background .2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { color: var(--blue); background: var(--blue-light); }
.nav-link.active { color: var(--blue); background: var(--blue-light); font-weight: 600; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--font-sans);
}
.nav-dropdown__toggle svg { transition: transform .25s; }
.nav-dropdown__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 14px; padding: .5rem; min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  z-index: 200;
  opacity: 0; transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dropdown__menu.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.nav-dropdown__item {
  display: block; padding: .55rem 1rem;
  font-size: .87rem; color: var(--gray-700);
  border-radius: 8px;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.nav-dropdown__item:hover { background: var(--blue-light); color: var(--blue); }

/* Mobile backdrop */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(15,23,42,.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 99;
  opacity: 0;
  transition: opacity .3s;
}
.nav-backdrop.visible { display: block; opacity: 1; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  position: relative;
  z-index: 205;
}
.navbar__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s var(--ease);
  transform-origin: center;
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--blue) 100%);
  padding: var(--sp-24) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--sp-6);
}
.hero h1 { color: #fff; margin-bottom: var(--sp-4); }
.hero p   { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: var(--sp-8); max-width: 500px; }
.hero__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat__num  { font-family: var(--font-serif); font-size: 2rem; color: #fff; }
.hero-stat__label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: var(--sp-1); }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: all var(--dur) var(--ease);
  cursor: default;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
}
.service-card__title { font-size: 1.05rem; margin-bottom: var(--sp-2); }
.service-card__desc  { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }

/* ── Doctor Card ────────────────────────────────────────────── */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-8); }
.doctor-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.doctor-card:hover { box-shadow: var(--shadow-md); }
.doctor-card__img { width: 100%; height: 260px; object-fit: cover; background: var(--gray-50); }
.doctor-card__body { padding: var(--sp-6); }
.doctor-card__name { font-size: 1.25rem; margin-bottom: var(--sp-1); }
.doctor-card__spec { color: var(--teal); font-size: .88rem; font-weight: 600; margin-bottom: var(--sp-4); }
.doctor-card__bio  { font-size: .9rem; color: var(--gray-500); }

/* ── Stats Strip ────────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: var(--sp-12) 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-8);
  text-align: center;
}
.stat-item__num   { font-family: var(--font-serif); font-size: 2.5rem; color: #fff; }
.stat-item__label { font-size: .85rem; color: rgba(255,255,255,.55); margin-top: var(--sp-1); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-6);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.testimonial-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: var(--sp-4); letter-spacing: .1em; }
.testimonial-card__body  { font-size: .95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: var(--sp-6); font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: var(--sp-3); }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem; color: var(--blue);
  flex-shrink: 0;
}
.testimonial-card__name     { font-weight: 600; font-size: .9rem; color: var(--navy); }
.testimonial-card__location { font-size: .8rem; color: var(--gray-500); }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--sp-6); }
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.blog-card:hover { box-shadow: var(--shadow-md); }
.blog-card__img  { width: 100%; height: 200px; object-fit: cover; background: var(--gray-50); }
.blog-card__body { padding: var(--sp-6); }
.blog-card__cat  { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: var(--sp-2); }
.blog-card__title { font-size: 1.1rem; margin-bottom: var(--sp-3); color: var(--navy); }
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: var(--blue); }
.blog-card__excerpt { font-size: .88rem; color: var(--gray-500); margin-bottom: var(--sp-4); }
.blog-card__meta    { font-size: .8rem; color: var(--gray-300); }

/* ── Forms ──────────────────────────────────────────────────── */
.form-page { padding: var(--sp-24) 0; }
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: var(--sp-12);
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.form-group         { margin-bottom: var(--sp-6); }
.form-group label   { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: var(--sp-2); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

.form-error  { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: var(--sp-4); margin-bottom: var(--sp-6); }
.form-error li { font-size: .88rem; color: var(--error); margin-left: var(--sp-4); }
.form-success { background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: var(--radius); padding: var(--sp-4) var(--sp-6); font-size: .9rem; color: var(--success); margin-bottom: var(--sp-6); }

/* Time slot selector */
.time-slots { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.time-slot {
  padding: .45rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: var(--white);
  color: var(--gray-700);
}
.time-slot:hover          { border-color: var(--blue); color: var(--blue); }
.time-slot.selected       { background: var(--blue); border-color: var(--blue); color: #fff; }
.time-slot.unavailable    { opacity: .4; pointer-events: none; text-decoration: line-through; }

/* ── Contact Section ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--sp-12); align-items: start; }
.contact-info__item { display: flex; align-items: flex-start; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.contact-info__item .info-card-v2__icon-wrap { margin: 0; flex-shrink: 0; }
.contact-info__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-info__label { font-size: .8rem; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-info__value { font-size: .95rem; color: var(--navy); font-weight: 500; margin-top: 2px; }

/* ── Map ────────────────────────────────────────────────────── */
#map-embed { width: 100%; height: 380px; border-radius: var(--radius-lg); overflow: hidden; background: var(--gray-50); border: 1px solid var(--gray-100); }

/* ── Page Header (Premium V2) ───────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { 
  color: #fff; 
  margin-bottom: var(--sp-3); 
  font-size: clamp(2rem, 5vw, 3rem);
}
.page-header__sub { 
  color: rgba(255,255,255,.8); 
  font-size: 1.1rem; 
  max-width: 620px;
  margin: 0 auto;
}
.page-header--left { text-align: left; }
.page-header--left .breadcrumb { justify-content: flex-start; }
.breadcrumb { 
  display: inline-flex; 
  justify-content: center; 
  align-items: center;
  gap: var(--sp-2); 
  font-size: .8rem; 
  color: rgba(255,255,255,.6); 
  margin-bottom: var(--sp-6);
  background: rgba(255,255,255,.1);
  padding: .35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb a { color: rgba(255,255,255,.9); transition: color var(--dur) var(--ease); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ── Admin Layout ───────────────────────────────────────────── */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 250px;
  background: var(--navy);
  padding: var(--sp-8) 0;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar__logo { padding: 0 var(--sp-6) var(--sp-6); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: var(--sp-4); }
.admin-sidebar__logo span { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: .65rem var(--sp-6);
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 500;
  transition: all var(--dur) var(--ease);
}
.admin-nav a:hover, .admin-nav a.active { color: #fff; background: rgba(255,255,255,.08); }
.admin-badge {
  margin-left: auto;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  padding: .1rem .45rem;
  border-radius: 50px;
  font-weight: 700;
}
.admin-main   { flex: 1; padding: var(--sp-8); background: var(--off-white); overflow-y: auto; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-8); }
.admin-topbar h1 { font-size: 1.5rem; color: var(--navy); }
.admin-section-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  padding: .35rem 1.5rem;
  margin-top: .5rem;
}
.admin-logout-btn {
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.72);
  padding: .55rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: .85rem;
  width: 100%;
}
.admin-shell-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--sp-6);
}

.stats-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--sp-4); margin-bottom: var(--sp-8); }
.stats-card  { background: var(--white); border-radius: var(--radius-lg); padding: var(--sp-6); border: 1px solid var(--gray-100); }
.stats-card__num   { font-family: var(--font-serif); font-size: 2rem; color: var(--navy); }
.stats-card__label { font-size: .8rem; color: var(--gray-500); margin-top: var(--sp-1); }

.dashboard-row-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.dashboard-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.settings-social-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.settings-save-bar { background: var(--navy); border-radius: 12px; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

/* ── Table ──────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--gray-100); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
thead th { background: var(--navy); color: rgba(255,255,255,.85); padding: .8rem var(--sp-4); text-align: left; font-weight: 600; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; }
tbody td { padding: .8rem var(--sp-4); border-bottom: 1px solid var(--gray-100); color: var(--gray-700); vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--off-white); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge { display: inline-block; font-size: .72rem; font-weight: 700; padding: .2rem .65rem; border-radius: 50px; letter-spacing: .04em; text-transform: uppercase; }
.badge--pending   { background: #fef3c7; color: #92400e; }
.badge--confirmed { background: #d1fae5; color: #065f46; }
.badge--cancelled { background: #fee2e2; color: #991b1b; }
.badge--completed { background: #e0e7ff; color: #3730a3; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--gray-900); }
.footer__top-bar {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .6rem 0;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-12); padding: var(--sp-16) 0 var(--sp-12); }
.footer__logo    { font-family: var(--font-serif); font-size: 1.15rem; color: #fff; margin-bottom: var(--sp-3); display:flex; align-items:center; }
.footer__tagline { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: var(--sp-4); }
.footer__hours   { font-size: .82rem; color: var(--teal); font-weight: 500; }
.footer__col h3  { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: var(--sp-4); font-family: var(--font-sans); }
.footer__col ul  { list-style: none; }
.footer__col li  { margin-bottom: var(--sp-3); }
.footer__col a   { font-size: .87rem; color: rgba(255,255,255,.5); transition: color var(--dur) var(--ease); text-decoration: none; }
.footer__col a:hover { color: #fff; }
.footer__col address { font-style: normal; font-size: .87rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: var(--sp-3); }
.footer__social-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s;
}
.footer__social-icon:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: translateY(-2px); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); padding: var(--sp-6) 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-2); }
.footer__bottom p, .footer__bottom a { font-size: .8rem; color: rgba(255,255,255,.3); text-decoration: none; }
.footer__bottom a:hover { color: rgba(255,255,255,.6); }

/* ── Announcement Banner ────────────────────────────────────── */
.announcement-bar {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: .5rem var(--sp-4);
  font-size: .82rem;
  font-weight: 500;
}
.announcement-bar a { color: #fff; text-decoration: underline; margin-left: var(--sp-3); }

/* ── Top info bar: semantic items ───────────────────────────── */
.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .25rem .5rem;
}
.topbar-item  { white-space: nowrap; }
.topbar-sep   { opacity: .6; }

@media (max-width: 640px) {
  /* Hide schedule & OPD text — keep only phone + Contact link */
  .topbar-item--schedule,
  .topbar-item--opd,
  .topbar-sep:not(.topbar-sep--contact) {
    display: none;
  }
  .announcement-bar {
    font-size: .78rem;
    padding: .4rem var(--sp-3);
    gap: .25rem .75rem;
  }
}

/* Dynamic Announcement Banner (DB-driven) */
.site-announcement {
  position: relative;
  z-index: 101;
  padding: .75rem 0;
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-announcement--teal { background: var(--teal); }
.site-announcement--blue { background: var(--blue); }
.site-announcement--gold { background: var(--gold-dark); }
.site-announcement--red  { background: var(--error); }

.site-announcement__msg { flex: 1; text-align: center; }
.site-announcement a { color: inherit; text-decoration: underline; }
#siteAnnouncementClose { color: #fff; transition: opacity .2s; }
#siteAnnouncementClose:hover { opacity: 1; }

/* ── Alert / Flash ──────────────────────────────────────────── */
.alert { padding: var(--sp-4) var(--sp-6); border-radius: var(--radius); margin-bottom: var(--sp-4); font-size: .9rem; }
.alert--success { background: #ecfdf5; color: var(--success); border: 1px solid #a7f3d0; }
.alert--error   { background: #fef2f2; color: var(--error); border: 1px solid #fecaca; }

/* ── Map Embed (Google) ─────────────────────────────────────── */
.map-placeholder {
  width: 100%; height: 380px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--sp-3); color: var(--gray-500);
}

/* ── Responsive ─────────────────────────────────────────────── */
.admin-mobile-toggle { display: none; align-items: center; justify-content: center; }
.admin-backdrop { display: none; }

@media (max-width: 900px) {
  .contact-layout    { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr 1fr; }
  .footer__top-bar   { display: none; }
  .dashboard-row-1, .dashboard-row-2 { grid-template-columns: 1fr; }
  .settings-grid, .settings-social-grid { grid-template-columns: 1fr; }
  .settings-save-bar { flex-direction: column; align-items: stretch; text-align: center; }
  
  .admin-sidebar {
    position: fixed;
    z-index: 1000;
    left: -260px;
    transition: transform var(--dur) var(--ease);
    display: block;
    width: 260px;
  }
  .admin-sidebar.open {
    transform: translateX(260px);
  }
  .admin-mobile-toggle {
    display: flex;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 999;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: .5rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--navy);
  }
  .admin-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 998;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
  }
  .admin-backdrop.visible {
    display: block;
    opacity: 1;
  }
  .admin-topbar {
    padding-right: 3rem; /* Make room for toggle button */
  }
}

@media (max-width: 1024px) {
  .navbar {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .navbar__links {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(300px, 85vw);
    background: var(--white);
    padding: 5rem var(--sp-6) var(--sp-6);
    box-shadow: -12px 0 50px rgba(0,0,0,.2);
    z-index: 200;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
    gap: 4px;
  }
  .navbar__links.open { transform: translateX(0); }
  .navbar__toggle    { display: flex; z-index: 201; }
  .nav-dropdown__menu { position: static; box-shadow: none; border: 1px solid var(--gray-100); margin-top: .25rem; transform: none; opacity: 1; pointer-events: auto; border-radius: 10px; }
  .nav-link { width: 100%; padding: .6rem 1rem; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown__toggle { width: 100%; padding: .6rem 1rem; }
}

@media (max-width: 640px) {
  .hero__actions     { flex-direction: column; }
  .form-row          { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr; }
  .admin-topbar      { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

/* @media query for page-header is now handled below with clamps, keeping spacing responsive */
@media (max-width: 640px) {
  .page-header { padding: var(--sp-12) 0 var(--sp-10); }
}

/* ── 480px — Tiny Mobile ────────────────────────────────────── */
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats-cards  { grid-template-columns: 1fr 1fr !important; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.animate-fadeup { animation: fadeUp .6s var(--ease) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* Scroll-triggered reveal — Safe progressive enhancement.
   Content is always visible. JS adds .will-reveal (hides element)
   then .visible (shows it with a transition). No content ever hidden without JS. */
.reveal.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--card-index, 0) * 0.07s);
}
.reveal.will-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- About Page -------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--sp-16); align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge { position: absolute; bottom: var(--sp-6); left: var(--sp-6); background: var(--white); border-radius: var(--radius); padding: var(--sp-4) var(--sp-6); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: var(--sp-3); }
.about-img-badge__num { font-family: var(--font-serif); font-size: 1.8rem; color: var(--navy); }
.about-img-badge__text { font-size: .78rem; color: var(--gray-500); }
.quals-list { list-style: none; margin: var(--sp-6) 0; }
.quals-list li { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: 1px solid var(--gray-100); font-size: .92rem; }
.quals-list li::before { content: 'check'; font-family: sans-serif; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: var(--sp-6); }
.mission-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: var(--sp-8); text-align: center; }
.mission-card__icon { font-size: 2rem; margin-bottom: var(--sp-4); }
.service-detail-layout { display: grid; grid-template-columns: 1fr 280px; gap: var(--sp-12); align-items: start; }
.service-detail-body h2 { font-size: 1.4rem; margin: var(--sp-8) 0 var(--sp-4); color: var(--navy); }
.service-detail-body p { margin-bottom: var(--sp-4); color: var(--gray-700); line-height: 1.8; }
.service-sidebar { position: sticky; top: 90px; }
.service-sidebar__card { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: var(--sp-6); margin-bottom: var(--sp-4); }
.related-link { display: flex; align-items: center; gap: var(--sp-3); padding: var(--sp-3) 0; border-bottom: 1px solid var(--gray-100); font-size: .88rem; color: var(--gray-700); text-decoration: none; transition: color var(--dur) var(--ease); }
.related-link:hover { color: var(--blue); }
.related-link:last-child { border-bottom: none; }
.blog-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: var(--sp-12); align-items: start; }
.blog-post-body { line-height: 1.9; }
.blog-post-body h2 { font-size: 1.5rem; margin: var(--sp-8) 0 var(--sp-4); color: var(--navy); }
.blog-post-body p { margin-bottom: var(--sp-4); }
.blog-post-body ul,.blog-post-body ol { margin: 0 0 var(--sp-4) var(--sp-6); }
.blog-post-body li { margin-bottom: var(--sp-2); }
.blog-sidebar { position: sticky; top: 90px; }
.blog-sidebar__card { background: var(--off-white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: var(--sp-6); margin-bottom: var(--sp-4); }
.thankyou-wrap { text-align: center; padding: var(--sp-24) 0; }
.thankyou-icon { font-size: 4rem; margin-bottom: var(--sp-6); }
.thankyou-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: var(--sp-8); max-width: 560px; margin: var(--sp-8) auto 0; text-align: left; }
.thankyou-card__row { display: flex; justify-content: space-between; padding: var(--sp-3) 0; border-bottom: 1px solid var(--gray-100); font-size: .9rem; }
.thankyou-card__row:last-child { border-bottom: none; }
.thankyou-card__label { color: var(--gray-500); }
.thankyou-card__value { font-weight: 600; color: var(--navy); }
.cta-banner { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%); padding: var(--sp-16) 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: var(--sp-3); }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: var(--sp-8); max-width: 500px; margin-left: auto; margin-right: auto; }
.doctor-profile { display: grid; grid-template-columns: 320px 1fr; gap: var(--sp-16); align-items: start; margin-bottom: var(--sp-16); }
.doctor-profile__img { border-radius: var(--radius-lg); overflow: hidden; }
.doctor-profile__img img { width: 100%; height: 400px; object-fit: cover; }
.doctor-profile__spec-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: var(--sp-4) 0 var(--sp-6); }
.spec-tag { background: var(--blue-light); color: var(--blue); font-size: .78rem; font-weight: 600; padding: .3rem .75rem; border-radius: 50px; }
.pagination { display: flex; justify-content: center; gap: var(--sp-2); margin-top: var(--sp-12); }
.page-btn { padding: .5rem 1rem; border: 1.5px solid var(--gray-100); border-radius: var(--radius); font-size: .88rem; color: var(--gray-700); text-decoration: none; transition: all var(--dur) var(--ease); }
.page-btn:hover,.page-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.page-btn.disabled { opacity: .4; pointer-events: none; }
.error-page { text-align: center; padding: var(--sp-24) 0; }
.error-page__code { font-family: var(--font-serif); font-size: 6rem; color: var(--blue); line-height: 1; margin-bottom: var(--sp-4); }
@media (max-width: 900px) {
  .about-grid,.service-detail-layout,.blog-post-layout,.doctor-profile { grid-template-columns: 1fr; }
}

/* ═══════ Admin Form Utilities ═══════ */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%; padding: .6rem .8rem; border: 1.5px solid var(--gray-100); border-radius: 8px;
  font-size: .88rem; color: var(--gray-700); font-family: inherit; box-sizing: border-box;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .about-grid,.service-detail-layout,.blog-post-layout,.doctor-profile { grid-template-columns: 1fr; }
}

/* ── Floating WhatsApp Button ───────────────────────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  color: white;
}
.floating-whatsapp svg {
  width: 34px;
  height: 34px;
}

/* ════════════════════════════════════════════════════════════
   NEW GLOBAL FEATURES — Phase 3 Upgrade
   ════════════════════════════════════════════════════════════ */

/* ── Dynamic Announcement Banner ─────────────────────────── */
.site-announcement {
  padding: .6rem 0;
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
}
.site-announcement--teal  { background: #0d7377; color: #fff; }
.site-announcement--blue  { background: #1d4ed8; color: #fff; }
.site-announcement--gold  { background: #d97706; color: #fff; }
.site-announcement--red   { background: #dc2626; color: #fff; }
.site-announcement a { color: #fff; }

/* ── Back to Top ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--teal); transform: translateY(-3px); }

/* ── Mobile Sticky Call/WA Bar ────────────────────────────── */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--navy);
  opacity: 0;
  transform: translateY(100%);
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-sticky-bar.is-visible { opacity: 1; transform: translateY(0); }
.mobile-sticky-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex: 1;
  padding: .9rem .5rem;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.mobile-sticky-bar__btn:hover { opacity: .9; }
.mobile-sticky-bar__btn--call { background: var(--teal); color: #fff; }
.mobile-sticky-bar__btn--whatsapp { background: #25D366; color: #fff; }
@media (max-width: 768px) {
  /* Keep only essential mobile actions */
  .mobile-sticky-bar { display: flex; }

  /* Hide non-essential floaters on mobile */
  .floating-whatsapp,
  .theme-toggle {
    display: none !important;
  }

  /* Back-to-top: move to LEFT on mobile — text is left-aligned so right side clips */
  .back-to-top {
    bottom: 62px;   /* just above the sticky Call/WA bar */
    right: auto;
    left: 12px;
    width: 36px;
    height: 36px;
  }
}

/* ── Gallery Lightbox ─────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox-overlay.is-active { opacity: 1; pointer-events: auto; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.lightbox-nav:hover { background: rgba(255,255,255,.3); }
.lightbox-nav--prev { left: 1.5rem; }
.lightbox-nav--next { right: 1.5rem; }
.lightbox-img-wrap { text-align: center; }
.lightbox-caption { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: .75rem; }

/* ── Cookie Consent Banner ─────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--navy);
  color: rgba(255,255,255,.9);
  padding: 1rem 0;
  box-shadow: 0 -4px 32px rgba(0,0,0,.3);
  transition: bottom .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible { bottom: 0; }
@media (max-width: 768px) {
  .cookie-banner.is-visible { bottom: 56px; } /* above mobile sticky bar */
}
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; font-size: .85rem; line-height: 1.6; }
.cookie-banner__actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: .55rem 1.25rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.cookie-banner__btn--accept { background: var(--teal); color: #fff; }
.cookie-banner__btn--accept:hover { opacity: .9; }
.cookie-banner__btn--decline { background: rgba(255,255,255,.15); color: #fff; }
.cookie-banner__btn--decline:hover { background: rgba(255,255,255,.25); }

/* ── Dark Mode Toggle Button ────────────────────────────────── */
.theme-toggle {
  position: fixed;
  bottom: 152px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  transition: all .3s ease;
  font-size: 1.1rem;
}
.theme-toggle:hover { transform: scale(1.1); }
.theme-toggle__icon--dark { display: none; }
[data-theme="dark"] .theme-toggle__icon--light { display: none; }
[data-theme="dark"] .theme-toggle__icon--dark  { display: inline; }
@media (max-width: 768px) {
  .theme-toggle { bottom: 220px; right: 16px; }
}

/* ── Dark Mode Variables ────────────────────────────────────── */
[data-theme="dark"] {
  --white:     #0f172a;
  --off-white: #1e293b;
  --navy:      #f1f5f9;
  --navy-mid:  #e2e8f0;
  --gray-50:   #1e293b;
  --gray-100:  #334155;
  --gray-300:  #475569;
  --gray-500:  #94a3b8;
  --gray-700:  #cbd5e1;
  --gray-900:  #f8fafc;
  --teal:      #2dd4bf;
  --blue:      #60a5fa;
  --gold:      #fbbf24;
}
[data-theme="dark"] body { background: #0f172a; color: #cbd5e1; }
[data-theme="dark"] .navbar {
  background: rgba(15,23,42,.95);
  border-color: #1e293b;
}
[data-theme="dark"] .footer { background: #020617; }
[data-theme="dark"] .section--alt { background: #1e293b; }
[data-theme="dark"] .admin-sidebar { background: #020617; }
[data-theme="dark"] .admin-main { background: #0f172a; }
[data-theme="dark"] .admin-card,
[data-theme="dark"] .admin-table-wrap { background: #1e293b; border-color: #334155; }
[data-theme="dark"] table thead th { background: #020617; }
[data-theme="dark"] tbody td { border-color: #334155; color: #cbd5e1; }
[data-theme="dark"] tbody tr:hover td { background: #0f172a; }

/* ── Newsletter Widget ───────────────────────────────────────── */
.newsletter-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 500;
}
.newsletter-widget__toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy, #0a2540);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
}
.newsletter-widget__toggle:hover { transform: scale(1.1); }
.newsletter-widget__panel {
  position: absolute;
  bottom: 66px;
  left: 0;
  width: 280px;
  background: linear-gradient(135deg, #0a2540, #0d7377);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsletter-widget__panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.newsletter-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .newsletter-widget { bottom: 80px; }
}

/* ── Reading Progress Bar ───────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 9999;
  transition: width .1s linear;
}

/* ── Badge Extra Variants ────────────────────────────────────── */
.badge--success { background: #d1fae5; color: #065f46; }
.badge--danger  { background: #fee2e2; color: #991b1b; }
.badge--info    { background: #dbeafe; color: #1e40af; }
.badge--neutral { background: #f1f5f9; color: #475569; }

/* ── Admin Table (alias) ─────────────────────────────────────── */
.admin-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: 16px; padding: 1.5rem; box-shadow: var(--shadow-sm); }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table thead th { background: #0a2540; color: rgba(255,255,255,.85); padding: .8rem 1rem; text-align: left; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.admin-table tbody td { padding: .8rem 1rem; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: var(--off-white); }
.admin-page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.admin-page-header h1 { font-size: 1.5rem; color: var(--navy); }
.admin-empty { text-align: center; padding: 3rem; color: var(--gray-500); }

/* ── Gallery Item ────────────────────────────────────────────── */
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; color: #fff; font-size: .9rem; font-weight: 600; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   ADMIN — Modern Dashboard, Forms, Tables, Auth
   ═══════════════════════════════════════════════════════════════ */

/* Button extras */
.btn--sm { padding: .35rem .8rem; font-size: .78rem; border-radius: 8px; }
.btn--danger { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.btn--danger:hover { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }

/* Page header (BEM children added) */
.admin-page-header__title { font-size: 1.5rem; color: var(--navy); margin: 0; font-family: var(--font-serif); }
.admin-page-header__sub { color: var(--gray-500); font-size: .9rem; margin-top: .25rem; }

/* Empty-state */
.admin-empty__icon { font-size: 3rem; margin-bottom: .75rem; }
.admin-empty h3 { color: var(--navy); font-size: 1.15rem; margin: 0 0 .35rem; }
.admin-empty p { font-size: .9rem; margin-bottom: 1rem; }

/* Card title rows */
.admin-card__title { font-size: 1.05rem; color: var(--navy); margin: 0 0 1rem; font-family: var(--font-serif); }
.admin-card__title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.admin-card__title-row .admin-card__title { margin: 0; }

/* Two-column dashboard grid */
.admin-grid-2 { display: grid; grid-template-columns: 1fr 1.2fr; gap: 1.5rem; margin-top: 1.5rem; }
@media (max-width: 1024px) { .admin-grid-2 { grid-template-columns: 1fr; } }

/* Dashboard stat cards */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-stat-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gray-300, #cbd5e1);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.admin-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.admin-stat-card__head { display: flex; align-items: center; justify-content: space-between; }
.admin-stat-card__label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-500); }
.admin-stat-card__icon { font-size: 1.4rem; opacity: .85; }
.admin-stat-card__num { font-family: var(--font-serif); font-size: 2.2rem; line-height: 1.1; margin: .35rem 0 .15rem; }
.admin-stat-card__link { font-size: .78rem; color: var(--blue); font-weight: 600; }
.admin-stat-card--red    { border-left-color: #ef4444; } .admin-stat-card--red    .admin-stat-card__num { color: #dc2626; }
.admin-stat-card--blue   { border-left-color: #3b82f6; } .admin-stat-card--blue   .admin-stat-card__num { color: #2563eb; }
.admin-stat-card--indigo { border-left-color: #6366f1; } .admin-stat-card--indigo .admin-stat-card__num { color: #4f46e5; }
.admin-stat-card--amber  { border-left-color: #f59e0b; } .admin-stat-card--amber  .admin-stat-card__num { color: #d97706; }
.admin-stat-card--teal   { border-left-color: #14b8a6; } .admin-stat-card--teal   .admin-stat-card__num { color: #0d9488; }
.admin-stat-card--purple { border-left-color: #8b5cf6; } .admin-stat-card--purple .admin-stat-card__num { color: #7c3aed; }
.admin-stat-card--cyan   { border-left-color: #06b6d4; } .admin-stat-card--cyan   .admin-stat-card__num { color: #0891b2; }

/* Quick actions panel */
.admin-quick-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem;
}
.admin-quick-action {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem 1rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  color: var(--navy);
  font-size: .88rem; font-weight: 500;
  text-decoration: none;
  transition: all .15s var(--ease);
}
.admin-quick-action:hover { background: #fff; border-color: var(--blue); color: var(--blue); transform: translateX(2px); }
.admin-quick-action__icon { font-size: 1.1rem; }

/* Recent messages table thumb */
.admin-table__thumb { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; border: 1px solid var(--gray-100); display: block; }
.admin-table__thumb--icon { display: flex; align-items: center; justify-content: center; background: #f0f7ff; font-size: 1.3rem; }
.admin-table__thumb--round { border-radius: 50%; }
.admin-table code { background: var(--gray-100); padding: .12rem .4rem; border-radius: 4px; font-size: .8rem; color: var(--gray-700, #475569); }

/* Forms */
.admin-form { display: block; }
.admin-form__label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin: .85rem 0 .35rem; }
.admin-form__input {
  width: 100%; box-sizing: border-box;
  padding: .65rem .85rem;
  border: 1px solid var(--gray-200, #e2e8f0);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .9rem;
  background: #fff;
  color: var(--navy);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.admin-form__input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.admin-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .admin-form__row { grid-template-columns: 1fr; } }
.admin-form__check { display: flex; align-items: center; gap: .5rem; margin: .85rem 0; font-size: .9rem; color: var(--navy); cursor: pointer; }
.admin-form__check input { width: 16px; height: 16px; }
.admin-form__actions { display: flex; gap: .75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--gray-100); }

/* ── Admin Auth (login + OTP) ─────────────────────────────────── */
.admin-auth-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 55%, #2563EB 100%);
  padding: 2rem;
}
.admin-auth-card {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem;
  width: 100%; max-width: 420px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}
.admin-auth-card__head { text-align: center; margin-bottom: 1.5rem; }
.admin-auth-card__logo { font-size: 2.2rem; margin-bottom: .35rem; }
.admin-auth-card__title { font-family: var(--font-serif); color: var(--navy); font-size: 1.45rem; margin: 0; }
.admin-auth-card__sub { color: var(--gray-500); font-size: .85rem; margin-top: .35rem; }
.admin-auth-card__foot { text-align: center; margin-top: 1.25rem; }
.admin-auth-card__foot a { color: var(--blue); font-size: .85rem; text-decoration: none; }
.admin-auth-card__split { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; gap: 1rem; }
.admin-auth-card__hint { text-align: center; margin-top: 1.25rem; font-size: .75rem; color: var(--gray-500); }

.admin-auth-form { display: block; }
.admin-auth-form__label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin: .85rem 0 .35rem; }
.admin-auth-form__input {
  width: 100%; box-sizing: border-box;
  padding: .8rem 1rem;
  border: 2px solid var(--gray-200, #e2e8f0);
  border-radius: 10px;
  background: var(--off-white);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--navy);
  transition: border-color .15s, box-shadow .15s;
}
.admin-auth-form__input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.admin-auth-form__input--otp { text-align: center; font-size: 1.6rem; letter-spacing: 12px; font-weight: 700; }
.admin-auth-form__submit {
  width: 100%; margin-top: 1.25rem;
  padding: .85rem 1rem;
  border: none; border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-sans); font-size: .95rem; font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.admin-auth-form__submit:hover { background: var(--navy-mid, #1e40af); }
.admin-auth-form__submit:active { transform: scale(.98); }
.admin-auth-form__submit--success { background: #059669; }
.admin-auth-form__submit--success:hover { background: #047857; }
.admin-auth-form__link {
  background: none; border: none; padding: 0;
  color: var(--blue); cursor: pointer;
  font-size: .85rem; font-family: inherit;
  text-decoration: underline;
}
.admin-auth-form__muted { color: var(--gray-500); font-size: .85rem; text-decoration: none; }

/* ── Custom Confirm Modal ──────────────────────────────────── */
.confirm-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 23, 42, .55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  animation: confirmFadeIn .15s ease;
}
@keyframes confirmFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes confirmSlideUp { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.confirm-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.04);
  padding: 2rem 2.25rem 1.75rem;
  max-width: 400px;
  width: 92%;
  text-align: center;
  animation: confirmSlideUp .2s ease;
}
.confirm-modal__icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.confirm-modal__title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .5rem;
}
.confirm-modal__msg {
  font-size: .9rem;
  color: var(--gray-500);
  margin: 0 0 1.75rem;
  line-height: 1.5;
}
.confirm-modal__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
.confirm-modal__btn {
  padding: .6rem 1.5rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  border: none;
}
.confirm-modal__btn:active { transform: scale(.97); }
.confirm-modal__btn--cancel {
  background: var(--gray-100, #f1f5f9);
  color: var(--navy);
  border: 1.5px solid var(--gray-200, #e2e8f0);
}
.confirm-modal__btn--cancel:hover {
  background: var(--gray-200, #e2e8f0);
}
.confirm-modal__btn--delete {
  background: #dc2626;
  color: #fff;
  box-shadow: 0 2px 8px rgba(220,38,38,.25);
}
.confirm-modal__btn--delete:hover {
  background: #b91c1c;
  box-shadow: 0 4px 12px rgba(220,38,38,.35);
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS — Global Fix Pass
   ═══════════════════════════════════════════════════════════════ */

/* ── Navbar: shrink logo on mobile so links stay visible ──────── */
@media (max-width: 768px) {
  .navbar__inner { height: 74px; }
  .navbar__brand img { height: 62px !important; }
}
@media (max-width: 480px) {
  .navbar__inner { height: 68px; }
  .navbar__brand img { height: 54px !important; }
}

/* ── Container: tighter side padding on tiny screens ──────────── */
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }
  .section    { padding: var(--sp-16) 0; }
}

/* ── Tables: horizontal scroll on all screen widths ──────────── */
.table-wrap, .admin-table-wrap {
  overflow-x: auto;
}
@media (max-width: 768px) {
  table { min-width: 600px; }
  thead th, tbody td { padding: .65rem .75rem; font-size: .82rem; }
}

/* ── Inner page grids: force single column on tablet/mobile ───── */
@media (max-width: 900px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
  }
  .service-sidebar {
    position: static;
    top: auto;
  }
  .blog-post-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
    top: auto;
  }
  .doctor-profile {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-wrap img { height: 320px; }
  .contact-layout    { grid-template-columns: 1fr; }
}

/* ── CTA banner: stack vertically on mobile ───────────────────── */
@media (max-width: 768px) {
  .cta-v2__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-8);
  }
  .cta-v2__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-v2__actions .btn-premium,
  .cta-v2__actions .btn,
  .cta-v2__actions a {
    width: 100%;
    justify-content: center;
  }
}

/* ── Footer: compress on small screens ───────────────────────── */
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--sp-8); padding: var(--sp-12) 0 var(--sp-8); }
  .footer__logo { margin-bottom: var(--sp-4); }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: var(--sp-3); }
}
@media (max-width: 480px) {
  .footer__logo img { height: 40px !important; }
}

/* ── Cookie banner: full width above sticky bar ───────────────── */
@media (max-width: 480px) {
  .cookie-banner__inner { flex-direction: column; gap: .75rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

/* ── Admin sidebar logo pill: better on narrow sidebar ────────── */
@media (max-width: 900px) {
  .admin-sidebar__logo > div { width: 100%; box-sizing: border-box; text-align: center; }
  .admin-sidebar__logo img { height: 36px !important; margin: 0 auto; }
}

/* ── Admin page header: stack on mobile ──────────────────────── */
@media (max-width: 640px) {
  .admin-page-header { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .admin-page-header a, .admin-page-header button { width: 100%; text-align: center; justify-content: center; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-grid-2 { grid-template-columns: 1fr; }
  .admin-quick-actions { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .admin-stats-grid { grid-template-columns: 1fr; }
}

/* ── Form: full-width inputs on small screens ────────────────── */
@media (max-width: 600px) {
  .form-card { padding: var(--sp-6); }
  .form-row   { grid-template-columns: 1fr; }
  .admin-form__row { grid-template-columns: 1fr; }
}

/* ── Page header: reduce padding on mobile ───────────────────── */
@media (max-width: 480px) {
  .page-header { padding: var(--sp-10) 0 var(--sp-8); }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2rem); }
}

/* ── Lightbox: full screen on mobile ─────────────────────────── */
@media (max-width: 640px) {
  .lightbox-nav--prev { left: .5rem; }
  .lightbox-nav--next { right: .5rem; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.6rem; }
  #lightboxImg { max-width: 95vw !important; max-height: 75vh !important; }
}

/* ── Hero pills: full-width on very small screens ─────────────── */
@media (max-width: 400px) {
  .hero-pill { width: 100%; }
  .hero-v2__actions { gap: .6rem; }
}

/* ── Announcement bar: smaller text on mobile ────────────────── */
@media (max-width: 480px) {
  .announcement-bar { font-size: .76rem; line-height: 1.5; padding: .5rem var(--sp-3); }
}

/* ── Breadcrumb: smaller on mobile ───────────────────────────── */
@media (max-width: 480px) {
  .breadcrumb { font-size: .72rem; padding: .3rem .75rem; letter-spacing: .02em; }
}

/* ── Mobile sticky bar: ensure above cookie banner ───────────── */
@media (max-width: 480px) {
  .mobile-sticky-bar__btn { font-size: .82rem; padding: .8rem .4rem; }
}

