/* =========================================================
   Dr. Sultan Mahmud — Surgeon Website
   Design tokens
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* Color */
  --navy: #0F2A43;          /* headings / primary ink */
  --navy-deep: #0A1C2E;     /* footer / high-contrast bg */
  --blue: #2E6DA4;          /* primary accent / CTAs */
  --blue-strong: #235783;   /* hover state */
  --blue-tint: #E7F0F8;     /* soft badges / alt backgrounds */
  --gray-bg: #F6F8FA;       /* section alt background */
  --gray-line: #E2E8EF;     /* borders / dividers */
  --ink: #1C2B3A;           /* body text */
  --slate: #5B6B7C;         /* secondary text */
  --white: #FFFFFF;
  --amber: #B7791F;         /* notice/alert accent, muted not neon */
  --amber-bg: #FBF3E4;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(15, 42, 67, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 42, 67, 0.10);
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* =========================================================
   Reset & base
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Skip link for keyboard/screen-reader users */
.skip-link{
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top var(--transition);
}
.skip-link:focus{ top: 12px; }

/* Visible focus for all interactive elements */
a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Typography scale
   ========================================================= */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before{
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

h1, .h1{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h2, .h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h3, .h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--navy);
}
.lede{
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--slate);
  max-width: 60ch;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary{
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover{ background: var(--blue-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary{
  background: var(--white);
  color: var(--navy);
  border-color: var(--gray-line);
}
.btn-secondary:hover{ border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-whatsapp{
  background: #25963F;
  color: var(--white);
}
.btn-whatsapp:hover{ background: #1F7F35; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block{ width: 100%; justify-content: center; }
.btn-sm{ padding: 10px 18px; font-size: 0.9rem; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header{
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled{
  border-bottom-color: var(--gray-line);
  box-shadow: var(--shadow-sm);
}
.nav-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-tint), #ffffff);
  border: 2px solid var(--blue);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.brand-text{ display: flex; flex-direction: column; line-height: 1.25; }
.brand-name{ font-weight: 700; color: var(--navy); font-size: 0.98rem; }
.brand-sub{ font-size: 0.76rem; color: var(--blue); font-weight: 600; letter-spacing: 0.03em; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
  padding: 6px 2px;
}
.nav-links a::after{
  content:"";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--blue);
  transition: right var(--transition);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after{ right: 0; }
.nav-links a:hover{ color: var(--blue); }

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

.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--gray-line);
  border-radius: 10px;
  padding: 8px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
}
.nav-toggle svg{ width: 22px; height: 22px; color: var(--navy); }

@media (max-width: 880px){
  .nav-links{
    position: fixed;
    top: 84px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--gray-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .nav-links.is-open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a{ padding: 12px 0; width: 100%; }
  .nav-toggle{ display: inline-flex; }
  .nav-call-text{ display: none; }
}

/* Small phones: tighten header so it never wraps or overflows */
@media (max-width: 400px){
  .container{ padding-inline: 16px; }
  .nav-row{ height: 72px; gap: 8px; }
  .brand{ gap: 8px; min-width: 0; }
  .brand-mark{ width: 38px; height: 38px; font-size: 0.9rem; }
  .brand-name{ font-size: 0.86rem; }
  .brand-sub{ font-size: 0.7rem; }
  .brand-text{ min-width: 0; overflow: hidden; }
  .brand-name{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 34vw; }
  .nav-actions{ gap: 8px; }
  .nav-actions .btn-primary.btn-sm{ padding: 9px 12px; }
  .nav-links{ top: 72px; max-height: calc(100vh - 72px); }
  .hero{ padding-top: 104px; }
  .hero-badge{ font-size: 0.75rem; padding: 7px 12px; white-space: normal; line-height: 1.3; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero{
  padding: 150px 0 84px;
  background: linear-gradient(180deg, var(--blue-tint) 0%, var(--white) 60%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-badge{
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  color: var(--slate);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-title{ margin-bottom: 14px; }
.hero-role{
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 14px;
}
.hero-desc{ margin-bottom: 26px; }
.credentials{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.credential-pill{
  padding: 8px 18px;
  border: 2px solid var(--gray-line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  transition: border-color var(--transition), background var(--transition);
}
.credential-pill:hover{ border-color: var(--blue); background: var(--blue-tint); }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual{ position: relative; }
.hero-photo-frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.hero-photo-frame img{ width: 100%; height: 100%; object-fit: cover; }
.hero-photo-badge{
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(15,42,67,0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-photo-badge svg{ width: 16px; height: 16px; }
.hero-stat-card{
  position: absolute;
  left: -20px; bottom: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-stat-card svg{ width: 30px; height: 30px; color: var(--blue); flex-shrink: 0; }
.hero-stat-card strong{ display: block; color: var(--navy); font-size: 0.95rem; }
.hero-stat-card span{ font-size: 0.82rem; color: var(--slate); }

@media (max-width: 900px){
  .hero{ padding-top: 120px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 380px; margin-inline: auto; }
  .hero-stat-card{ left: 12px; bottom: -18px; }
}

/* =========================================================
   Section shells
   ========================================================= */
section{ padding: 92px 0; }
@media (max-width: 640px){
  section{ padding: 60px 0; }
  .hero-actions .btn,
  .contact-cta .btn{ width: 100%; justify-content: center; }
}
.section-alt{ background: var(--gray-bg); }
.section-head{ max-width: 720px; margin-bottom: 48px; }
.section-head .eyebrow{ margin-bottom: 14px; }
.section-head h2{ margin-bottom: 14px; }

/* Reveal-on-scroll (progressive enhancement — content visible by default) */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; }
}

/* =========================================================
   About / Qualifications
   ========================================================= */
.quals-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.qual-card{
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.qual-card:hover{ border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.qual-label{
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 8px;
}
.qual-value{ font-weight: 600; color: var(--navy); font-size: 1.05rem; }

/* =========================================================
   Specialties
   ========================================================= */
.specialty-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.specialty-card{
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: 34px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.specialty-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.specialty-icon{
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.specialty-icon svg{ width: 26px; height: 26px; }
.specialty-card h3{ margin-bottom: 10px; }
.specialty-card p{ color: var(--slate); }

/* =========================================================
   Procedures
   ========================================================= */
.procedure-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.procedure-item{
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.procedure-item:hover{ transform: translateX(4px); box-shadow: var(--shadow-sm); }
.procedure-item svg{ width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.procedure-item span{ font-weight: 600; color: var(--navy); }

/* =========================================================
   Chambers — signature element: duty/roster cards
   ========================================================= */
.notice-banner{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--amber-bg);
  border: 1px solid #EFD9A9;
  color: #6B4A12;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 40px;
}
.notice-banner svg{ width: 22px; height: 22px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.notice-banner strong{ color: #56390A; }

.chamber-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.chamber-card{
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  transition: transform var(--transition), box-shadow var(--transition);
}
.chamber-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.chamber-days{
  flex-shrink: 0;
  width: 54px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  gap: 8px;
}
.chamber-days span{
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}
.chamber-days span.active{
  background: var(--blue);
  color: var(--white);
}
.chamber-body{ padding: 26px 26px 26px 22px; flex: 1; position: relative; min-width: 0; }
.chamber-badge{
  position: absolute;
  top: 24px; right: 24px;
  background: var(--blue-tint);
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.chamber-body h3{ margin-bottom: 16px; padding-right: 96px; font-size: 1.25rem; }

@media (max-width: 480px){
  .chamber-card{ flex-direction: column; }
  .chamber-days{
    flex-direction: row;
    width: 100%;
    padding: 14px 0;
    justify-content: center;
  }
  .chamber-body{ padding: 22px 20px; }
  .chamber-badge{
    position: static;
    display: inline-block;
    margin-bottom: 14px;
  }
  .chamber-body h3{ padding-right: 0; }
}
.chamber-schedule-label{
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 4px;
}
.chamber-schedule-bn{ font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.chamber-schedule-en{ color: var(--slate); font-size: 0.92rem; margin-bottom: 10px; }
.chamber-closed{ color: var(--slate); font-size: 0.85rem; margin-bottom: 18px; }
.chamber-call{
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: background var(--transition);
}
.chamber-call:hover{ background: var(--blue-tint); }
.chamber-call svg{ width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.chamber-call-label{ display: block; font-size: 0.72rem; color: var(--slate); }
.chamber-call-value{ display: block; font-weight: 700; color: var(--navy); font-size: 0.95rem; }

/* =========================================================
   Emergency strip
   ========================================================= */
.emergency-strip{
  background: var(--navy-deep);
  color: var(--white);
  padding: 40px 0;
}
.emergency-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.emergency-text{ display: flex; align-items: center; gap: 16px; }
.emergency-text svg{ width: 34px; height: 34px; color: #FF8A65; flex-shrink: 0; }
.emergency-text h3{ color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.emergency-text p{ color: rgba(255,255,255,0.68); font-size: 0.92rem; }
.emergency-actions{ display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 560px){
  .emergency-inner{ flex-direction: column; align-items: stretch; text-align: center; }
  .emergency-text{ flex-direction: column; text-align: center; }
  .emergency-actions{ flex-direction: column; }
  .emergency-actions .btn{ width: 100%; justify-content: center; }
}
.emergency-actions .btn-secondary{
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.emergency-actions .btn-secondary:hover{ border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

/* =========================================================
   Map
   ========================================================= */
.map-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe{ width: 100%; height: 380px; border: 0; display: block; }
@media (max-width: 560px){
  .map-wrap iframe{ height: 260px; }
}

/* =========================================================
   Contact
   ========================================================= */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 44px;
}
.contact-card{
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.contact-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg{ width: 22px; height: 22px; }
.contact-label{ font-size: 0.85rem; color: var(--slate); font-weight: 500; }
.contact-value{ font-weight: 700; color: var(--navy); word-break: break-word; }

.contact-hospital{
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 24px;
}
.contact-hospital svg{ width: 26px; height: 26px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.contact-hospital .qual-label{ margin-bottom: 4px; }

.tips-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px; margin-bottom: 40px; }
.tip-card{ background: var(--white); border: 1px solid var(--gray-line); border-radius: var(--radius-md); padding: 22px; }
.tip-card h4{ font-family: var(--font-display); font-weight: 600; color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.tip-card p{ color: var(--slate); }

.contact-cta{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ max-width: 760px; }
.faq-item{
  border-bottom: 1px solid var(--gray-line);
}
.faq-item summary{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-icon{
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition);
}
.faq-item[open] .faq-icon{ transform: rotate(45deg); border-color: var(--blue); }
.faq-icon svg{ width: 14px; height: 14px; color: var(--blue); }
.faq-answer{ padding: 0 4px 22px; color: var(--slate); max-width: 62ch; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.72);
  padding: 68px 0 32px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3{ color: var(--white); margin-bottom: 10px; }
.footer-brand .bn{ color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.footer-brand .role{ color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-pills{ display: flex; flex-wrap: wrap; gap: 8px; }
.footer-pill{
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  color: #BBD6EC;
}
.footer-col h4{ color: var(--white); font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul li{ margin-bottom: 10px; }
.footer-col a{ transition: color var(--transition); }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.85rem;
}
.footer-heart{ color: #E06B6B; display: inline-flex; }
.footer-heart svg{ width: 15px; height: 15px; }

@media (max-width: 760px){
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================================
   Sticky mobile call bar
   ========================================================= */
.mobile-cta-bar{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--gray-line);
  box-shadow: 0 -6px 20px rgba(15,42,67,0.08);
  padding: 10px 14px;
  gap: 10px;
}
@media (max-width: 640px){
  .mobile-cta-bar{ display: flex; }
  body{ padding-bottom: 68px; }
}
.mobile-cta-bar .btn{ flex: 1; padding: 12px; font-size: 0.88rem; }

/* Narrow phones: single-column grids to avoid horizontal overflow */
@media (max-width: 360px){
  .quals-grid,
  .specialty-grid,
  .procedure-grid,
  .chamber-grid,
  .contact-grid,
  .tips-grid{
    grid-template-columns: 1fr;
  }
}

/* Utility */
.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
