/* ==========================================================================
   Javed Medical Centre — Design tokens
   ========================================================================== */

:root {
  --navy: #06223f;
  --navy-dark: #041a31;
  --teal: #0e8f90;
  --teal-dark: #086b73;
  --teal-light: #18a7a4;
  --mint: #e9fbf9;
  --gold: #d8a24a;
  --gold-light: #f0c36a;
  --ink: #102033;
  --muted: #637083;
  --line: #dfe9ef;
  --bg: #f7fbfc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(6, 34, 63, 0.12);
  --shadow-soft: 0 12px 34px rgba(6, 34, 63, 0.08);
  --radius-lg: 28px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --header-height: 86px;
  --trust-overlap: 50%;
  --focus-ring: 0 0 0 3px rgba(24, 167, 164, 0.45);
}

/* ==========================================================================
   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.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 94px 0;
  scroll-margin-top: calc(var(--header-height) + 16px);
}

/* ==========================================================================
   Skip link
   ========================================================================== */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ==========================================================================
   Header & navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 34, 63, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 34, 63, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.44rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.875rem;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding: 4px 0;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(216, 162, 74, 0.28);
  white-space: nowrap;
}

.nav-cta:hover {
  filter: brightness(1.04);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 20px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow.light {
  color: var(--gold-light);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-head h2,
.split-section h2,
.location-content h3,
.cta-band h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p {
  color: var(--muted);
  margin: 14px auto 0;
  font-size: 1.05rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  min-height: 52px;
  border-radius: 15px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, filter 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn-dark svg,
.btn-gold svg {
  fill: currentColor;
  stroke: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  box-shadow: 0 18px 35px rgba(14, 143, 144, 0.28);
}

.btn-primary svg {
  fill: currentColor;
  stroke: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--teal);
  border-color: rgba(14, 143, 144, 0.38);
  box-shadow: var(--shadow-soft);
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.95);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(6, 34, 63, 0.22);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(216, 162, 74, 0.32);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 780px;
  padding-top: 74px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 8% 18%, rgba(24, 167, 164, 0.18), transparent 31%),
    radial-gradient(circle at 90% 25%, rgba(216, 162, 74, 0.15), transparent 28%),
    linear-gradient(180deg, #f8feff 0%, #eef9f9 73%, var(--bg) 100%);
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.22)),
    url("data:image/svg+xml,%3Csvg width='1200' height='700' viewBox='0 0 1200 700' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='90' cy='210' r='190' stroke='%230e8f90' stroke-opacity='.08' stroke-width='42'/%3E%3Cpath d='M1010 40c90 55 132 132 125 232-8 113-86 203-201 232' stroke='%230e8f90' stroke-opacity='.06' stroke-width='48' stroke-linecap='round'/%3E%3Cpath d='M670 92h380v260H670z' fill='%2306223f' fill-opacity='.025'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  background: rgba(24, 167, 164, 0.16);
  left: -160px;
  top: 140px;
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  background: rgba(216, 162, 74, 0.13);
  right: -90px;
  top: 170px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 40px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.75rem, 6vw, 4.875rem);
  line-height: 0.98;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.04em;
  max-width: 720px;
}

.lead {
  margin: 26px 0 0;
  font-size: 1.125rem;
  color: #435268;
  max-width: 650px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quick-info {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 690px;
}

.quick-info div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(14, 143, 144, 0.13);
  border-radius: var(--radius-sm);
  padding: 17px 18px;
  box-shadow: 0 14px 30px rgba(6, 34, 63, 0.05);
}

.quick-info strong {
  display: block;
  color: var(--navy);
  font-size: 0.8125rem;
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
  margin-top: 3px;
}

.quick-info a {
  color: var(--teal);
  font-weight: 700;
}

.quick-info a:hover {
  text-decoration: underline;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.doctor-frame {
  position: relative;
  width: min(450px, 100%);
  margin: 0;
  border-radius: 48px 48px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, #dff7f5, var(--white));
  box-shadow: var(--shadow);
}

.doctor-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 34, 63, 0.18));
  z-index: 2;
  pointer-events: none;
}

.doctor-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.experience-card {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 258px;
  padding: 21px 23px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #09294a, #061d35);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(6, 34, 63, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-card strong {
  font-family: "Playfair Display", serif;
  color: var(--gold-light);
  font-size: 3rem;
  line-height: 1;
}

.experience-card span {
  display: block;
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.15;
}

.experience-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -2px;
  transform: translateY(var(--trust-overlap));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 34, 63, 0.07);
  overflow: hidden;
}

.trust-strip article {
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 16px;
  border-right: 1px solid var(--line);
}

.trust-strip article:last-child {
  border-right: 0;
}

.icon,
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eafffc, #d9f5f2);
  color: var(--teal);
}

.icon {
  grid-area: icon;
}

.icon svg,
.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip h3 {
  grid-area: title;
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.trust-strip p {
  grid-area: text;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ==========================================================================
   Doctors
   ========================================================================== */

.doctors-section {
  padding-top: calc(94px + 80px);
  background: var(--white);
}

.doctor-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, var(--white), #fbfeff);
  border: 1px solid rgba(6, 34, 63, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.doctor-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(14, 143, 144, 0.07);
  right: -70px;
  top: -70px;
  pointer-events: none;
}

.doctor-card.featured {
  border-color: rgba(216, 162, 74, 0.24);
}

.doctor-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(6, 34, 63, 0.13);
  background: var(--mint);
  position: relative;
}

.doctor-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(6, 34, 63, 0.06));
  pointer-events: none;
}

.doctor-photo img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.doctor-photo--javed img {
  object-position: center top;
}

.doctor-photo--arslan {
  background: linear-gradient(160deg, #d9f5f2 0%, #eef9f9 50%, var(--mint) 100%);
}

.doctor-photo--arslan img {
  object-fit: cover;
  object-position: center 22%;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(14, 143, 144, 0.1);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 7px 11px;
  margin-bottom: 12px;
}

.doctor-info h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 1.6875rem;
  line-height: 1.15;
}

.qualification {
  color: var(--teal);
  font-weight: 800;
  margin: 7px 0 8px;
  font-size: 0.9375rem;
}

.experience-line {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.8125rem;
  margin: 0 0 12px;
  opacity: 0.85;
}

.doctor-info p:not(.qualification):not(.experience-line) {
  color: var(--muted);
  margin: 0;
  font-size: 0.90625rem;
}

.doctor-info ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.875rem;
  color: #3f4d5e;
}

.doctor-info li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.doctor-info li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex: 0 0 auto;
}

/* ==========================================================================
   Services
   ========================================================================== */

.services-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(14, 143, 144, 0.07), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--white));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(6, 34, 63, 0.08);
  border-radius: var(--radius-md);
  padding: 27px;
  box-shadow: 0 12px 30px rgba(6, 34, 63, 0.055);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(14, 143, 144, 0.2);
}

.service-card h3 {
  margin: 20px 0 8px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.90625rem;
}

/* ==========================================================================
   Health education & hours
   ========================================================================== */

.split-section {
  background: linear-gradient(135deg, rgba(6, 34, 63, 0.96), rgba(7, 59, 82, 0.93));
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.premium-panel,
.hours-card {
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.premium-panel {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.premium-panel h2 {
  color: var(--white);
}

.premium-panel p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 690px;
}

.social-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hours-card {
  background: linear-gradient(180deg, var(--white), #eefaf8);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hours-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 2.125rem;
  margin: 0 0 20px;
}

.time-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.time-row span {
  color: var(--muted);
  font-weight: 800;
}

.time-row strong {
  color: var(--navy);
  text-align: right;
}

.hours-card p {
  color: var(--muted);
  margin: 22px 0;
  font-size: 0.9375rem;
}

.hours-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.9375rem;
}

.hours-whatsapp:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Quick summary (AIO)
   ========================================================================== */

.summary-section {
  background: linear-gradient(180deg, var(--white), var(--bg));
  padding-top: 72px;
  padding-bottom: 72px;
}

.summary-card {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(6, 34, 63, 0.08);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-soft);
}

.summary-card h2 {
  text-align: center;
  margin: 0 0 28px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.summary-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.summary-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.summary-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.summary-list dt {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.96875rem;
  line-height: 1.55;
}

.summary-list a {
  color: var(--teal);
  font-weight: 700;
}

.summary-list a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Local SEO block
   ========================================================================== */

.local-seo-block {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

.local-seo-heading {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  line-height: 1.15;
}

.local-seo-block p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 1.03125rem;
  line-height: 1.65;
}

.local-seo-block a {
  color: var(--teal);
  font-weight: 700;
}

.local-seo-block a:hover {
  text-decoration: underline;
}

.visit-note {
  margin: 20px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.visit-note a {
  color: var(--teal);
  font-weight: 700;
}

.visit-note a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FAQ (AEO)
   ========================================================================== */

.faq-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 162, 74, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--white));
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(6, 34, 63, 0.08);
  border-radius: var(--radius-sm);
  padding: 0 22px;
  box-shadow: 0 8px 22px rgba(6, 34, 63, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 28px 20px 0;
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 8px;
}

.faq-item p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.96875rem;
  line-height: 1.65;
  padding-top: 2px;
}

/* ==========================================================================
   Mobile action bar
   ========================================================================== */

.mobile-action-bar {
  display: none;
}

@media (max-width: 840px) {
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
  }

  .mobile-action-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 60px;
    padding: 8px 6px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
  }

  .mobile-action-bar a:nth-child(2) {
    background: rgba(29, 168, 81, 0.18);
    color: #7eeaa0;
  }

  .mobile-action-bar svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-action-bar a:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
  }

  .floating-whatsapp {
    display: none;
  }
}

/* ==========================================================================
   Location
   ========================================================================== */

.location-section {
  background: var(--white);
}

.location-card {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 34, 63, 0.08);
  overflow: hidden;
}

.location-content {
  padding: 42px;
}

.location-content h3 {
  margin: 0;
}

.location-content .address {
  color: #3f4d5e;
  font-size: 1.0625rem;
  margin: 18px 0 24px;
  line-height: 1.55;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.contact-list a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fbfeff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-list a:hover {
  border-color: rgba(14, 143, 144, 0.35);
  box-shadow: 0 8px 20px rgba(6, 34, 63, 0.06);
}

.contact-list strong {
  display: block;
  color: var(--navy);
  font-size: 0.8125rem;
}

.contact-list span {
  color: var(--muted);
}

.location-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.map-wrap {
  min-height: 430px;
  background: var(--mint);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.92) contrast(1.02);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(135deg, var(--navy), #082c4f);
  color: var(--white);
  padding: 66px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -110px;
  width: 320px;
  height: 320px;
  border: 46px solid rgba(216, 162, 74, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  color: var(--white);
  max-width: 720px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  margin: 12px 0 0;
}

.cta-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.74);
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  gap: 42px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.8125rem;
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  background: #1da851;
  color: var(--white);
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9375rem;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1050px) {
  :root {
    --trust-overlap: 42%;
  }

  .hero-grid,
  .doctor-cards,
  .split-grid,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 530px;
    order: -1;
  }

  .doctor-frame img {
    height: 540px;
  }

  .experience-card {
    right: 30px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(1),
  .trust-strip article:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctors-section {
    padding-top: calc(80px + 120px);
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .site-nav a:not(.nav-cta):hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 100px;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .doctor-photo {
    max-width: 320px;
  }

  .doctor-photo img {
    height: 360px;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  :root {
    --trust-overlap: 36%;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .brand strong {
    font-size: 1.1875rem;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .social-actions,
  .location-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .doctor-frame {
    border-radius: 34px 34px 0 0;
  }

  .doctor-frame img {
    height: 440px;
  }

  .experience-card {
    width: min(220px, 72%);
    right: 6px;
    bottom: 50px;
    padding: 18px;
  }

  .experience-card strong {
    font-size: 2.375rem;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .doctors-section {
    padding-top: calc(68px + 140px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .premium-panel,
  .hours-card,
  .location-content,
  .summary-card {
    padding: 26px;
  }

  .time-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .time-row strong {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    height: 48px;
    padding: 0 16px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    width: 48px;
    padding: 0;
    border-radius: 50%;
  }
}
