:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --text: #1f1726;
  --muted: #655b6d;
  --brand: #5b2c83;
  --brand-dark: #3d1b5c;
  --accent: #f3c969;
  --line: #eadff0;
  --soft: #f6eef8;
  --shadow: 0 18px 50px rgba(64, 32, 83, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

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

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--brand);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  color: var(--brand);
  font-size: 1.5rem;
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: var(--shadow);
}

.hero, .page-hero, .article-hero {
  padding: clamp(56px, 9vw, 112px) clamp(16px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 201, 105, 0.35), transparent 32%),
    linear-gradient(135deg, #fffaf5 0%, #f8effb 100%);
}

.hero h1,
.page-hero h1,
.article-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.page-hero, .article-hero {
  background: linear-gradient(135deg, #fffaf5 0%, #f4eafd 100%);
  text-align: center;
}

.page-hero p, .article-hero p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--muted);
  max-width: 790px;
}

.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.78rem;
  margin: 0 0 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cta-row.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.btn:hover { text-decoration: none; }

.btn.primary {
  background: var(--brand);
  color: white;
}

.btn.primary:hover { background: var(--brand-dark); }

.btn.secondary {
  background: white;
  color: var(--brand);
  border: 1px solid var(--line);
}

.trust-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 18px;
}

.hero-card, .highlight-box, .contact-card, .map-card, .service-card, .blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.section {
  padding: clamp(48px, 8vw, 88px) clamp(16px, 5vw, 72px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.section h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.035em;
}

.muted {
  background: var(--soft);
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card, .blog-card {
  padding: 24px;
}

.service-card h2,
.service-card h3,
.blog-card h3 {
  margin-top: 0;
  line-height: 1.2;
}

.service-card p,
.blog-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.highlight-box {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(91, 44, 131, 0.08), rgba(243, 201, 105, 0.18)),
    white;
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.keyword-cloud span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-weight: 700;
}

.faq details {
  max-width: 860px;
  margin: 14px auto;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
}

.cta-section p { color: rgba(255, 255, 255, 0.86); }

.cta-section .btn.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  padding: 28px;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.article {
  max-width: 880px;
  margin: 0 auto;
}

.article h2 {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  margin-top: 36px;
}

.inline-cta {
  margin-top: 38px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--soft);
  border: 1px solid var(--line);
}

.note, .small {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #1d1128;
  color: white;
  padding: 48px clamp(16px, 5vw, 72px) 24px;
}

.site-footer a { color: #ffe49b; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 28px;
}

.footer-grid h3, .footer-grid h4 {
  margin-top: 0;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero, .split, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: 77px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

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

  .site-nav a:hover {
    background: var(--soft);
  }

  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .brand small { display: none; }
  .card-grid.three { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero-card, .highlight-box, .contact-card, .service-card, .blog-card { padding: 20px; }
}


.rating-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.rating-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.rating-card.featured {
  background: linear-gradient(135deg, rgba(91, 44, 131, 0.08), rgba(243, 201, 105, 0.22)), white;
}

.rating-source {
  display: inline-flex;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.rating-card strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 10px;
  color: var(--text);
}

.rating-card p {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.source-note {
  max-width: 920px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 960px) {
  .rating-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .rating-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}


.platform-ratings {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.google-card {
  background: linear-gradient(135deg, rgba(91, 44, 131, 0.08), rgba(243, 201, 105, 0.22)), white;
}

.justdial-card {
  border-style: dashed;
}

.scrolling-reviews {
  overflow: hidden;
  margin-top: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  position: relative;
}

.scrolling-reviews::before,
.scrolling-reviews::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.scrolling-reviews::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.scrolling-reviews::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), transparent);
}

.review-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 20px;
  animation: reviewScroll 54s linear infinite;
}

.scrolling-reviews:hover .review-track {
  animation-play-state: paused;
}

.review-pill {
  width: min(390px, 82vw);
  min-height: 180px;
  padding: 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(64, 32, 83, 0.08);
}

.review-pill p {
  margin: 8px 0 12px;
  color: var(--text);
  font-weight: 650;
  line-height: 1.45;
}

.review-pill small {
  color: var(--muted);
  font-weight: 800;
}

.stars {
  color: #9a6a00;
  letter-spacing: 0.08em;
  font-weight: 900;
}

@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  .platform-ratings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .platform-ratings {
    grid-template-columns: 1fr;
  }

  .scrolling-reviews::before,
  .scrolling-reviews::after {
    width: 32px;
  }
}


.doctor-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.doctor-photo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.doctor-photo-card img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.stats-row span {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-width: 150px;
}

.stats-row strong {
  color: var(--brand);
  font-size: 1.1rem;
}

.stats-row small {
  color: var(--muted);
  font-weight: 700;
}

.surgery-focus {
  background:
    radial-gradient(circle at 8% 8%, rgba(243, 201, 105, 0.25), transparent 28%),
    linear-gradient(135deg, #fffaf5 0%, #f8effb 100%);
}

.surgery-card {
  border-top: 5px solid var(--brand);
}

.mini-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
}

.surgery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.surgery-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.surgery-panel h3 {
  margin-top: 0;
  color: var(--brand);
}

.surgery-panel p {
  color: var(--muted);
}

.surgery-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.surgery-panel li {
  margin: 9px 0;
  font-weight: 650;
}

.insurance-section {
  background: linear-gradient(135deg, rgba(91, 44, 131, 0.06), rgba(243, 201, 105, 0.16));
}

@media (max-width: 960px) {
  .doctor-profile,
  .surgery-grid {
    grid-template-columns: 1fr;
  }
}


.doctor-mini-profile {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.doctor-mini-profile img {
  width: 140px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
}

.doctor-mini-profile h3 {
  margin: 0 0 8px;
  color: var(--brand);
}

.doctor-mini-profile p {
  margin: 0 0 8px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .doctor-mini-profile {
    grid-template-columns: 1fr;
  }
  .doctor-mini-profile img {
    width: 100%;
    height: auto;
    max-width: 220px;
  }
}


.brand-logo {
  display: block;
  height: 54px;
  width: auto;
}

.hero-enhanced {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
}

.hero-logo {
  width: min(320px, 78vw);
  display: block;
  margin-bottom: 14px;
}

.hero-bullets {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
  font-weight: 700;
}

.hero-bullets li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--brand);
  font-weight: 900;
}

.hero-visual-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-photo-frame {
  background: linear-gradient(135deg, #f8effb 0%, #fff8e4 100%);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-photo-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-visual-meta {
  padding: 18px 6px 4px;
}

.hero-visual-meta h2 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.hero-visual-meta p {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 700;
}

.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px;
}

.mini-badges span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--brand);
  font-weight: 800;
  font-size: 0.88rem;
}

.address-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fffaf2;
  border: 1px solid #f0dfb6;
  color: var(--text);
  font-weight: 650;
}

.contact-doctor-strip {
  padding-bottom: 0;
}

.doctor-inline-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.doctor-inline-card img {
  width: 220px;
  height: 260px;
  object-fit: cover;
  border-radius: 20px;
}

.page-hero-photo {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  text-align: left;
}

.page-hero-photo-wrap img {
  width: 100%;
  max-width: 260px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: block;
}

.page-hero-copy p {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 960px) {
  .hero-enhanced,
  .doctor-inline-card,
  .page-hero-photo {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 48px;
  }

  .doctor-inline-card img,
  .page-hero-photo-wrap img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}


.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(91, 44, 131, 0.22);
}

.header-phone:hover {
  color: white;
  text-decoration: none;
  background: var(--brand-dark);
}

.header-phone span {
  opacity: 0.85;
  font-weight: 750;
}

.insurance-highlight {
  margin-top: 26px;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  gap: 14px;
}

.brand-logo {
  max-width: min(320px, 42vw);
}

@media (max-width: 1120px) {
  .header-phone {
    order: 3;
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  .brand-logo {
    max-width: min(270px, 52vw);
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-wrap: wrap;
  }
  .header-phone {
    order: 2;
    margin-left: auto;
  }
  .nav-toggle {
    order: 3;
  }
  .site-nav {
    top: 86px;
  }
  .brand-logo {
    max-width: 220px;
  }
}


.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qualification-section {
  background: linear-gradient(135deg, rgba(91, 44, 131, 0.05), rgba(243, 201, 105, 0.14));
}

.local-links-section {
  background: var(--soft);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 900;
}

@media (max-width: 760px) {
  .card-grid.two {
    grid-template-columns: 1fr;
  }
}


.hero-experience {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .platform-ratings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .platform-ratings {
    grid-template-columns: 1fr;
  }
}


.btn.whatsapp {
  background: #0f8f5f;
  color: white;
}

.btn.whatsapp:hover {
  background: #0b704a;
  text-decoration: none;
}

.hero-direct-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.hero-direct-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
  background: var(--brand);
  color: white;
}

.hero-direct-cta a:nth-child(2) {
  background: var(--soft);
  color: var(--brand);
  border: 1px solid var(--line);
}

.hero-direct-cta a:hover {
  text-decoration: none;
}

.appointment-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
}

.appointment-cta .eyebrow,
.appointment-cta h2,
.appointment-cta p {
  color: white;
}

.appointment-cta h2 {
  margin-bottom: 10px;
}

.appointment-cta p {
  opacity: 0.88;
  max-width: 760px;
}

.appointment-cta .btn.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.45);
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .appointment-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 66px;
  }

  .sticky-mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(31, 23, 38, 0.22);
  }

  .sticky-mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--brand);
    border-right: 1px solid var(--line);
  }

  .sticky-mobile-cta a:nth-child(2) {
    background: #0f8f5f;
    color: white;
  }

  .sticky-mobile-cta a:last-child {
    border-right: 0;
  }
}


/* Mobile-first final polish */
html {
  scroll-behavior: smooth;
}

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

.site-header {
  min-height: 68px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn,
.header-phone,
.sticky-mobile-cta a {
  touch-action: manipulation;
}

.locality-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto 28px;
}

.locality-chip-grid a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: var(--brand);
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(64, 32, 83, 0.06);
}

.locality-chip-grid a:hover {
  text-decoration: none;
  background: var(--soft);
}

.locality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.locality-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(64, 32, 83, 0.07);
}

.locality-card h3 {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 1.05rem;
}

.locality-card p {
  margin: 0;
  color: var(--muted);
}

.localities-seo-section {
  background: linear-gradient(135deg, rgba(91, 44, 131, 0.045), rgba(243, 201, 105, 0.14));
}

@media (min-width: 520px) {
  .locality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .locality-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .locality-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Mobile-first header and hero refinements */
@media (max-width: 680px) {
  .hero,
  .page-hero,
  .article-hero {
    padding-top: 34px;
    padding-bottom: 44px;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-visual-card {
    padding: 12px;
  }

  .hero-photo-frame img {
    aspect-ratio: 1 / 1.12;
  }

  .section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .section h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .cta-row {
    gap: 10px;
  }

  .cta-row .btn {
    width: 100%;
  }

  .rating-grid,
  .platform-ratings,
  .testimonial-grid,
  .card-grid.three,
  .card-grid.two,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .review-pill {
    width: 82vw;
  }

  .locality-chip-grid {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
  }

  .locality-chip-grid a {
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand-logo {
    max-width: 190px;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    min-height: 40px;
    font-size: 0.86rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}


/* Compact hero ratings below doctor photo */
.compact-hero-meta {
  padding-top: 16px;
}

.compact-hero-meta h2 {
  margin-bottom: 4px;
}

.compact-hero-meta > p {
  margin-bottom: 10px;
}

.hero-rating-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 14px;
}

.hero-rating {
  display: grid;
  gap: 2px;
  min-height: 82px;
  align-content: center;
  border-radius: 16px;
  padding: 10px 8px;
  text-align: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(31, 23, 38, 0.14);
}

.hero-rating:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.hero-rating .rating-platform {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.hero-rating strong {
  font-size: 1.25rem;
  line-height: 1;
}

.hero-rating small {
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0.92;
}

.google-rating {
  background: linear-gradient(135deg, #4285F4 0%, #34A853 52%, #FBBC05 100%);
}

.justdial-rating {
  background: linear-gradient(135deg, #078a10 0%, #0aad22 100%);
}

.magicpin-rating {
  background: linear-gradient(135deg, #e6007e 0%, #7b2cff 100%);
}

.compact-experience {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.compact-bullets {
  grid-template-columns: 1fr;
  max-width: 760px;
}

/* Platform color cards */
.platform-color-card {
  position: relative;
  overflow: hidden;
}

.platform-color-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
}

.google-card::before {
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
}

.justdial-card::before {
  background: #078a10;
}

.magicpin-card::before {
  background: linear-gradient(90deg, #e6007e, #7b2cff);
}

.practo-card::before {
  background: #14b8a6;
}

.google-card strong,
.google-card .rating-source {
  color: #1a73e8;
}

.justdial-card strong,
.justdial-card .rating-source {
  color: #078a10;
}

.magicpin-card strong,
.magicpin-card .rating-source {
  color: #c0006f;
}

.practo-card strong,
.practo-card .rating-source {
  color: #0f766e;
}

@media (max-width: 680px) {
  .hero-rating-strip {
    grid-template-columns: 1fr;
  }

  .hero-rating {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
    padding: 10px 14px;
  }

  .hero-rating small {
    grid-column: 1 / -1;
  }

  .hero-rating strong {
    font-size: 1.2rem;
  }

  .compact-experience {
    font-size: 0.9rem;
  }
}


.compact-service-area {
  background: linear-gradient(135deg, rgba(91, 44, 131, 0.04), rgba(243, 201, 105, 0.12));
}


/* Above-the-fold hero + header call placement */
@media (min-width: 961px) {
  .site-header {
    justify-content: flex-start;
    gap: 28px;
  }

  .site-nav {
    margin-left: auto;
  }

  .header-phone {
    order: 99;
    margin-left: 12px;
  }

  .nav-toggle {
    order: 100;
  }
}

.hero-enhanced {
  min-height: calc(100vh - 84px);
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: clamp(28px, 4vw, 54px);
}

.hero-enhanced .hero-content {
  align-self: center;
}

.hero-visual-compact {
  max-width: 560px;
  justify-self: end;
  padding: 14px;
}

.hero-visual-compact .hero-photo-frame img {
  aspect-ratio: 4 / 4.45;
  max-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.hero-rating-strip-priority {
  margin: 12px 0 10px;
}

.hero-visual-compact .compact-hero-meta {
  padding: 8px 4px 2px;
}

.hero-visual-compact .compact-hero-meta h2 {
  font-size: 1.22rem;
  margin: 0 0 4px;
}

.hero-visual-compact .compact-hero-meta p {
  font-size: 0.92rem;
  margin: 0 0 8px;
}

.hero-visual-compact .hero-direct-cta {
  margin: 8px 0 0;
}

.hero-visual-compact .hero-direct-cta a {
  min-height: 38px;
  padding: 8px 12px;
}

@media (min-width: 1180px) {
  .hero-visual-compact .hero-photo-frame img {
    max-height: 455px;
  }
}

@media (max-width: 960px) {
  .site-header {
    gap: 10px;
  }

  .header-phone {
    margin-left: auto;
  }

  .hero-enhanced {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-visual-compact {
    justify-self: stretch;
    max-width: 100%;
  }

  .hero-visual-compact .hero-photo-frame img {
    max-height: 440px;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    max-width: 178px;
  }

  .header-phone {
    order: 2;
    margin-left: auto;
  }

  .nav-toggle {
    order: 3;
  }

  .hero-enhanced {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-logo {
    width: min(240px, 70vw);
    margin-bottom: 10px;
  }

  .hero-visual-compact {
    padding: 10px;
  }

  .hero-visual-compact .hero-photo-frame img {
    aspect-ratio: 1 / 1.04;
    max-height: 355px;
  }

  .hero-rating-strip-priority {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-rating-strip-priority .hero-rating {
    min-height: 56px;
  }

  .hero-visual-compact .compact-hero-meta h2 {
    font-size: 1.08rem;
  }
}


.high-demand-services {
  background: linear-gradient(135deg, rgba(91, 44, 131, 0.045), rgba(243, 201, 105, 0.13));
}
