﻿:root {
  --primary-blue: #123E8A;
  --accent-orange: #F97316;
  --whatsapp-green: #25D366;
  --background: #F7FAFD;
  --surface: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --border: #E6ECF2;
  --shadow: 0 18px 42px rgba(18, 62, 138, 0.12);
  --shadow-soft: 0 12px 28px rgba(18, 62, 138, 0.08);
  --radius: 18px;
  --container: min(1180px, calc(100% - 2rem));
  --header-offset: 96px;
}

/* ==========================================================
   CAREERS PAGE
========================================================== */
.career-page {
  background: var(--background);
}

.career-page > .career-hero,
.career-page > .career-section,
.career-page > .career-cta {
  width: 100%;
  margin: 0;
}

.career-hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(135deg, #f8fbff 0%, #edf4ff 100%);
}

.career-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.career-hero-copy h1 {
  max-width: 760px;
  margin: 1rem 0 1.25rem;
  color: var(--primary-blue);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.career-hero-copy > p:not(.career-hero-note) {
  max-width: 720px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.career-hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.career-hero-note i {
  margin-top: 0.25rem;
  color: var(--accent-orange);
}

.career-interest-card {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid rgba(18, 62, 138, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.career-interest-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 20px;
  background: rgba(249, 115, 22, 0.13);
  color: var(--accent-orange);
  font-size: 1.5rem;
}

.career-interest-card > p {
  margin: 1.25rem 0 0.85rem;
  color: var(--primary-blue);
  font-weight: 800;
}

.career-interest-card ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-interest-card li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
}

.career-interest-card li i {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--primary-blue);
  font-size: 0.72rem;
}

.career-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.career-section-heading {
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.career-section-heading h2,
.career-expectations-grid h2 {
  margin: 0.85rem 0 0;
  color: var(--primary-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
}

.career-section-heading > p,
.career-expectations-grid > div > p {
  margin: 0.9rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.career-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.career-role-card {
  min-width: 0;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.career-role-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.career-role-card > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: #eef5ff;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.career-role-card h3 {
  margin: 1.1rem 0 0.55rem;
  color: var(--primary-blue);
  font-size: 1.05rem;
}

.career-role-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.career-expectations-section {
  background: #eef5ff;
}

.career-expectations-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.career-value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid rgba(18, 62, 138, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.career-value-list i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 13px;
  background: rgba(249, 115, 22, 0.13);
  color: var(--accent-orange);
}

.career-value-list span {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.career-value-list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--primary-blue);
  font-size: 0.95rem;
}

.career-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.career-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.career-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-blue);
  color: #fff;
  font-weight: 800;
}

.career-steps h3,
.career-steps p {
  margin: 0;
}

.career-steps h3 {
  color: var(--primary-blue);
  font-size: 1rem;
}

.career-steps p {
  margin-top: 0.4rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.career-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 1000px;
  margin: 1.5rem auto 0;
  padding: 1.4rem;
  border: 1px solid rgba(18, 62, 138, 0.15);
  border-radius: 18px;
  background: #f8fbff;
}

.career-privacy-note > i {
  color: var(--primary-blue);
  font-size: 1.3rem;
}

.career-privacy-note h3,
.career-privacy-note p {
  margin: 0;
}

.career-privacy-note h3 {
  color: var(--primary-blue);
  font-size: 1rem;
}

.career-privacy-note p {
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.career-faq-section {
  background: #f8fbff;
}

.career-faq-list {
  display: grid;
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
}

.career-faq-list details {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.career-faq-list summary {
  color: var(--primary-blue);
  font-weight: 700;
  cursor: pointer;
}

.career-faq-list p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.career-cta {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--primary-blue);
}

.career-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.career-cta-card span {
  color: #ffb347;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.career-cta-card h2 {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.career-cta-card p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.career-cta-card .button {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .career-hero-grid,
  .career-expectations-grid {
    grid-template-columns: 1fr;
  }

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

  .career-steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .career-hero,
  .career-section,
  .career-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .career-hero-copy,
  .career-interest-card {
    text-align: center;
  }

  .career-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .career-actions .button,
  .career-cta-card .button {
    width: 100%;
  }

  .career-hero-note {
    text-align: left;
  }

  .career-interest-icon {
    margin-inline: auto;
  }

  .career-interest-card li {
    text-align: left;
  }

  .career-role-grid,
  .career-value-list {
    grid-template-columns: 1fr;
  }

  .career-role-card {
    text-align: center;
  }

  .career-role-card > i {
    margin-inline: auto;
  }

  .career-privacy-note {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .career-role-card {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

section {
  scroll-margin-top: var(--header-offset);
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Poppins", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at top left, rgba(18, 62, 138, 0.06), transparent 26%), var(--background);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--primary-blue);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

img,
iframe {
  display: block;
  max-width: 100%;
}

section:not(.hero-section) {
  width: var(--container);
  margin: 0 auto;
}

.site-footer {
  width: 100%;
}

.site-header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(18, 62, 138, 0.08);
  transition: box-shadow 0.3s ease;
  padding: 0 20px;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(18, 62, 138, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: 22px;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 1rem;
}

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

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.header-call-mobile {
  display: none;
  width: auto;
  min-width: 120px;
  height: 44px;
  padding: 0 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 0.5rem;
}

.header-call-mobile i {
  margin-right: 0.55rem;
}

.header-call,
.button-primary {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 18px 36px rgba(249, 115, 22, 0.18);
}

.header-call:hover,
.button-primary:hover,
.header-call:focus-visible,
.button-primary:focus-visible {
  background: #e56b0e;
}

.button-secondary {
  background: var(--surface);
  color: var(--primary-blue);
  box-shadow: 0 14px 30px rgba(18, 62, 138, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #f4f7fb;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(18, 62, 138, 0.18);
  outline-offset: 2px;
}

.hero-section {
  width: 100%;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 1rem 0;
}

.hero-section .hero-copy {
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
}

.hero-copy {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.hero-copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--accent-orange);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--primary-blue);
}

.hero-text {
  margin: 0 0 1.75rem;
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-actions .button-secondary {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.22);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  background: #1dbb53;
}

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

.feature-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.feature-list li {
  margin-bottom: 0.8rem;
}

.feature-list li::marker {
  color: var(--accent-orange);
}

.about-section,
.services-section,
.contact-section {
  padding: 3rem 0;
}

.about-grid,
.services-grid {
  display: grid;
  gap: 1.75rem;
}

.about-grid {

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 32px;

    align-items: stretch;

}

.about-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-card.doctor-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}


.about-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-height: 100%;
}

.about-card h2,
.about-card h3 {
  margin: 0;
  font-size: 1.9rem;
  color: var(--primary-blue);
  position: relative;
  padding-bottom: 0.75rem;
}

.about-card h2::after,
.about-card h3::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent-orange);
  margin-top: 0.75rem;
  border-radius: 999px;
}

.about-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--accent-orange);
  font-size: 0.95rem;
}

.about-badge {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(18, 62, 138, 0.08);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: auto;
}

.doctor-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.doctor-subtitle {
  margin: 0;
  color: var(--accent-orange);
  font-weight: 700;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  background: transparent;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(18, 62, 138, 0.08);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card.doctor-card {
    display: flex;
    flex-direction: column;
  }

  .about-card.doctor-card img {
    border-radius: 16px 16px 0 0;
    min-height: 220px;
  }

  .about-card.doctor-card .about-card-body {
    padding: 24px;
  }

  #hero .hero-trust {
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.85rem;
}

  #hero .trust-item {
    justify-content: center;
    font-size: 0.9rem;
  }
}

.about-section .feature-list {
  margin: 0;
}

.about-content h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.subhead {
  margin: 0 0 1rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.about-content p {
  margin: 0;
  max-width: 680px;
  color: var(--text-muted);
}

.section-header {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

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

.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(18, 62, 138, 0.16);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 62, 138, 0.08);
  color: var(--primary-blue);
}

.service-card h3 {
  margin: 0 0 0.75rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-card {
  padding: 0;
  border-radius: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
  max-width: none;
  margin: 0;
}

.contact-fullrow {
  display: grid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.75rem;
  overflow: hidden;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.contact-text {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

.contact-block a {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-buttons .button {
  flex: 1;
}

@media (max-width: 1024px) {
  .contact-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .contact-row {
    grid-template-columns: 1fr;
  }
}

.contact-item {
  margin: 0;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item address,
.contact-item a,
.contact-item p {
  color: var(--text-dark);
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.contact-hours p {
  margin: 0.2rem 0;
}

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

.compact-actions .button {
  flex: 1;
  min-width: 140px;
}

.compact-actions .button {
  flex: 1;
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--accent-orange);
  font-weight: 700;
}

.contact-item a,
.contact-item p,
.contact-item address {
  margin: 0;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Contact row layout */
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

.compact-actions .button {
  flex: 1;
  min-width: 140px;
}

iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 20px;
}

.site-footer {
  background: linear-gradient(135deg, var(--primary-blue), #0f3d92);
  color: #fff;
  padding: 3rem 0 2rem;
  border-radius: 32px 32px 0 0;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-column {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-heading {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.footer-links nav {
  display: grid;
  gap: 0.75rem;
}

.footer-links nav a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact {
  text-align: left;
}

.footer-copy {
  width: 100%;
  text-align: center;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-name {
  margin: 0;
  font-weight: 700;
}

.footer-tag,
.footer-contact p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.footer-copy {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.floating-action {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.floating-action:hover,
.floating-action:focus-visible {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.22);
}

.floating-action-directions {
    background: var(--primary-blue);
}

.floating-whatsapp {
    background: #25D366;
}

.floating-share {
    display: none;
    background: var(--accent-orange);
}

@media (max-width: 600px) {
  .floating-share {
    display: inline-flex;
  }
}

@media (min-width: 640px) {
  section:not(.hero-section) {
    padding: 1rem 0;
  }
}

@media (min-width: 768px) {

 .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

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

  .footer-inner {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    align-items: start;
  }

  .floating-action-directions {
    display: none;
  }
}

@media (max-width: 768px) {

    .menu-toggle{
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        background:none;
        border:none;
        cursor:pointer;
        z-index:1002;
    }

    .menu-toggle span{
        width:24px;
        height:2px;
        background:#1d4b9b;
        transition:.3s;
    }

    .main-nav{

        position:absolute;
        top:100%;
        left:20px;
        right:20px;

        display:flex;
        flex-direction:column;
        align-items:center;

        gap:20px;

        padding:24px;

        background:#fff;

        border-radius:18px;

        box-shadow:0 15px 40px rgba(0,0,0,.15);

        opacity:0;
        visibility:hidden;
        transform:translateY(-15px);

        pointer-events:none;

        transition:.30s;
    }

    .main-nav.is-open{

        opacity:1;
        visibility:visible;
        transform:translateY(0);

        pointer-events:auto;

    }

}


@media (max-width: 768px) {
  .header-call-desktop {
    display: none;
  }

  .header-call-mobile {
    display: inline-flex;
  }

  .site-header .header-inner {
    flex-wrap: nowrap;
    align-items: center;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .floating-action-directions {
    display: inline-flex;
  }
}

@media (min-width: 1024px) {
  .hero-copy h1 {
    font-size: 3rem;
  }
}

/* ===========================================
ABOUT DOCTOR HERO
=========================================== */



.doctor-grid{

display:grid;

grid-template-columns:58% 42%;

align-items:center;

gap:60px;

}

.doctor-content h1{

font-size:3rem;

margin-bottom:10px;

color:#123c8a;

}

.doctor-content h2{

font-size:1.35rem;

margin-bottom:25px;

font-weight:600;

color:#666;

}

.doctor-intro{

font-size:1.1rem;

line-height:1.9;

color:#555;

margin-bottom:35px;

}

.doctor-buttons{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.doctor-photo{

text-align:center;

}

.doctor-photo img{

width:100%;

max-width:420px;

}

.doctor-card{

display:inline-block;

padding:20px 35px;

background:#fff;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.doctor-card h3{

margin:0;

color:#123c8a;

}

.doctor-card p{

margin:6px 0;

}

.doctor-eyebrow{

display:inline-block;

background:#eef5ff;

padding:8px 18px;

border-radius:50px;

font-weight:700;

color:#123c8a;

margin-bottom:18px;

}

@media(max-width:992px){

.doctor-grid{

grid-template-columns:1fr;

text-align:center;

}

.doctor-buttons{

justify-content:center;

}

}
/* ==========================================================
ABOUT PAGE SECTIONS
========================================================== */

.doctor-about,
.doctor-expertise,
.conditions-section,
.why-doctor{

padding:90px 0;

}

.section-heading{

text-align:center;

margin-bottom:60px;

}

.section-tag{

display:inline-block;

background:#eef5ff;

padding:8px 18px;

border-radius:40px;

font-weight:700;

color:#123c8a;

margin-bottom:18px;

}

.section-heading h2{

font-size:2.3rem;

color:#123c8a;

}

.doctor-about-grid{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:50px;

align-items:center;

}

.doctor-about p{

font-size:1.08rem;

line-height:2;

margin-bottom:20px;

color:#555;

}

.doctor-stats{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.stat-card{

background:#fff;

padding:30px;

border-radius:18px;

text-align:center;

box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.stat-card h3{

font-size:2rem;

color:#123c8a;

margin-bottom:8px;

}

.expertise-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:24px;

}

.expertise-card{

background:#fff;

padding:30px;

border-radius:18px;

text-align:center;

box-shadow:0 12px 30px rgba(0,0,0,.08);

transition:.3s;

}

.expertise-card:hover{

transform:translateY(-6px);

}

.expertise-card i{

font-size:2rem;

color:#0f5ca8;

margin-bottom:18px;

}

.conditions-grid{

display:flex;

flex-wrap:wrap;

gap:15px;

justify-content:center;

}

.conditions-grid span{

background:#eef5ff;

padding:12px 20px;

border-radius:40px;

font-weight:600;

color:#123c8a;

}

.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.why-grid div{

background:#fff;

padding:20px;

border-radius:14px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

font-weight:600;

}

@media(max-width:992px){

.doctor-about-grid,

.expertise-grid,

.why-grid{

grid-template-columns:1fr;

}

.doctor-stats{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.doctor-stats{

grid-template-columns:1fr;

}

.section-heading h2{

font-size:1.9rem;

}

}
/* ===========================================
DOCTOR PHILOSOPHY
=========================================== */

.doctor-philosophy{

padding:90px 0;

background:#f8fbff;

}

.philosophy-card{

max-width:900px;

margin:auto;

padding:50px;

background:#fff;

border-radius:24px;

text-align:center;

box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.philosophy-card i{

font-size:2.6rem;

color:#0f5ca8;

margin-bottom:30px;

}

.philosophy-card blockquote{

font-size:1.4rem;

line-height:1.8;

font-style:italic;

color:#444;

margin-bottom:25px;

}

.philosophy-card p{

font-weight:700;

color:#123c8a;

}

/* ===========================================
SERVICE AREAS
=========================================== */

.service-areas{

padding:90px 0;

}

.areas-intro{

max-width:900px;

margin:auto;

text-align:center;

line-height:2;

margin-bottom:40px;

color:#555;

}

.areas-grid{

display:flex;

flex-wrap:wrap;

justify-content:center;

gap:18px;

}

.areas-grid span{

background:#ffffff;

padding:14px 22px;

border-radius:999px;

box-shadow:0 10px 25px rgba(0,0,0,.06);

font-weight:600;

}

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

.doctor-cta{

padding:90px 0;

background:linear-gradient(135deg,#123c8a,#0f5ca8);

}

.cta-card{

text-align:center;

color:#fff;

max-width:850px;

margin:auto;

}

.cta-card h2{

font-size:2.4rem;

color:#fff;

margin-bottom:20px;

}

.cta-card p{

font-size:1.15rem;

line-height:1.9;

margin-bottom:40px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

@media(max-width:768px){

.philosophy-card{

padding:35px 25px;

}

.philosophy-card blockquote{

font-size:1.15rem;

}

.cta-card h2{

font-size:1.9rem;

}

}
/* ======================================
FAQ
====================================== */

.doctor-faq{

padding:90px 0;

background:#f8fbff;

}

.faq-list{

max-width:900px;

margin:auto;

display:flex;

flex-direction:column;

gap:18px;

}

.faq-list details{

background:#fff;

border-radius:18px;

padding:20px 24px;

box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.faq-list summary{

cursor:pointer;

font-weight:700;

font-size:1.05rem;

color:#123c8a;

list-style:none;

}

.faq-list summary::-webkit-details-marker{

display:none;

}

.faq-list p{

margin-top:15px;

line-height:1.9;

color:#555;

}
.breadcrumb{

max-width:1200px;

margin:25px auto;

padding:0 20px;

font-size:.95rem;

color:#666;

}

.breadcrumb a{

color:#123c8a;

text-decoration:none;

}
/*=========================================
ABOUT DOCTOR
=========================================*/

.doctor-about{

padding:90px 0;

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:30px;

align-items:start;

}

.section-tag{

display:inline-block;

background:#eef5ff;

color:#143c8a;

padding:8px 18px;

border-radius:999px;

font-size:.9rem;

font-weight:700;

margin-bottom:18px;

}

.about-content h2{

font-size:2.3rem;

margin-bottom:25px;

color:#143c8a;

line-height:1.2;

}

.about-content p{

font-size:1.06rem;

line-height:1.9;

color:#555;

margin-bottom:22px;

}

.doctor-values{

margin-top:35px;

display:flex;

flex-direction:column;

gap:18px;

}

.value-item{

display:flex;

gap:18px;

align-items:flex-start;

padding:20px;

border-radius:18px;

background:#f8fbff;

transition:.3s;

}

.value-item:hover{

transform:translateY(-4px);

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.value-item i{

font-size:1.4rem;

color:#f58220;

margin-top:5px;

}

.value-item h4{

margin-bottom:6px;

color:#143c8a;

}

.value-item p{

margin:0;

font-size:.95rem;

line-height:1.7;

}

.about-side{

display:flex;

flex-direction:column;

gap:25px;

}

.info-card{

background:#fff;

padding:30px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.info-card h3{

margin-bottom:18px;

color:#143c8a;

}

.info-card ul{

padding-left:18px;

line-height:2;

}

.info-card p{

line-height:1.8;

color:#555;

}

@media(max-width:991px){

.about-grid{

grid-template-columns:1fr;

}

}

/* ===========================
   Main Navigation
=========================== */

.main-nav{
    align-items:center;
    gap:0.5rem;
}

.main-nav a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    font-size:0.95rem;

    font-weight:600;

    color:var(--text-dark);

    text-decoration:none;

    transition:all .25s ease;

}

.main-nav a:hover{

    color:var(--primary-orange);

    background:#FFF7EF;

}

.main-nav a.active{

    background:#EEF4FF;

    color:var(--primary-blue);

    font-weight:700;

}

/* ===========================================
   ABOUT DOCTOR PAGE
   =========================================== */
.doctor-page-container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.doctor-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.doctor-eyebrow, .section-tag { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1rem; padding: .48rem .9rem; border-radius: 999px; background: rgba(18,62,138,.08); color: var(--primary-blue); font-size: .82rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.doctor-eyebrow i { color: var(--accent-orange); }
.doctor-hero h1, .doctor-section h2, .doctor-cta h2 { margin: 0; color: var(--primary-blue); line-height: 1.08; letter-spacing: -.035em; }
.doctor-hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.0rem); }
.doctor-credential { margin: 1rem 0; color: var(--accent-orange); font-size: 1.18rem; font-weight: 800; }
.doctor-intro, .section-lead { max-width: 630px; margin: 0; color: var(--text-muted); font-size: 1.07rem; line-height: 1.85; }
.doctor-actions, .cta-buttons { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.8rem; }
.doctor-actions .button i, .cta-buttons i { margin-right: .35rem; }
.doctor-trust-list { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; margin: 1.45rem 0 0; padding: 0; list-style: none; color: var(--text-dark); font-size: .92rem; font-weight: 600; }
.doctor-trust-list i { color: var(--accent-orange); }
.doctor-portrait-wrap { position: relative; justify-self: center; padding: .85rem; border-radius: 40px 40px 96px 40px; background: linear-gradient(135deg, rgba(18,62,138,.12), rgba(249,115,22,.2)); }
.doctor-portrait { overflow: hidden; border-radius: 32px 32px 88px 32px; background: #dfeeff; box-shadow: 0 24px 50px rgba(18,62,138,.19); }
.doctor-portrait img { width: 100%; height: 440px; object-fit: cover; object-position: center; }
.doctor-identity-card { position: absolute; bottom: -1.5rem; left: -1.6rem; display: grid; gap: .2rem; min-width: 210px; padding: 1rem 1.2rem; border: 1px solid rgba(18,62,138,.08); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); backdrop-filter: blur(12px); color: var(--text-muted); font-size: .88rem; }
.doctor-identity-card strong { color: var(--primary-blue); font-size: 1rem; }
.doctor-facts { width: 100%; background: var(--primary-blue); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact-item { min-height: 130px; display: grid; align-content: center; gap: .3rem; padding: 1.5rem; color: #fff; border-right: 1px solid rgba(255,255,255,.17); }
.fact-item:last-child { border-right: 0; }.fact-item strong { color: #fff; font-size: 1.75rem; line-height: 1; }.fact-item span { color: rgba(255,255,255,.76); font-size: .9rem; }
.doctor-google-review { padding: 1rem; border-top: 1px solid rgba(255,255,255,.17); background: rgba(8,42,105,.16); }
.doctor-google-review a { display: flex; align-items: center; justify-content: center; gap: .8rem; width: fit-content; max-width: calc(100% - 2rem); min-height: 60px; margin: 0 auto; padding: .75rem 1.15rem; border: 1px solid rgba(255,255,255,.7); border-radius: 18px; background: #fff; color: var(--primary-blue); box-shadow: 0 14px 30px rgba(4,25,65,.2); font-size: .92rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.doctor-google-review a:hover, .doctor-google-review a:focus-visible { border-color: rgba(249,115,22,.45); background: #fff; color: var(--primary-blue); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(4,25,65,.27); }
.doctor-google-icon { width: 24px; height: 24px; flex: 0 0 24px; }
.doctor-google-review strong { color: var(--primary-blue); font-size: 1rem; }
.doctor-google-review strong i { color: #fbbc04; }
.doctor-google-review span { color: var(--text-muted); }
.doctor-google-review > a > i:last-child { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 50%; background: #eef5ff; color: #4285f4; font-size: .72rem; }
.doctor-section h2 { font-size: clamp(2rem, 4vw, 3rem); }.doctor-about-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.care-principles { display: grid; gap: .85rem; margin-top: 2rem; }.care-principles article { display: flex; gap: 1rem; padding: 1.1rem; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }.care-principles i, .info-card > i { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 14px; background: rgba(249,115,22,.13); color: var(--accent-orange); }.care-principles h3, .care-principles p, .info-card span, .info-card strong { margin: 0; }.care-principles h3 { color: var(--primary-blue); font-size: 1rem; }.care-principles p { color: var(--text-muted); font-size: .92rem; line-height: 1.65; }.doctor-info-panel { display: grid; gap: .85rem; }.info-card, .coverage-card { padding: 1.2rem; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }.info-card { display: flex; align-items: center; gap: 1rem; }.info-card div { display: grid; gap: .16rem; }.info-card span { color: var(--text-muted); font-size: .82rem; }.info-card strong { color: var(--primary-blue); }.coverage-card { margin-top: .7rem; background: linear-gradient(135deg, var(--primary-blue), #1c55a9); color: #fff; }.coverage-card h3 { margin: 0 0 .4rem; font-size: 1rem; }.coverage-card p { margin: 0; color: rgba(255,255,255,.8); font-size: .92rem; line-height: 1.7; }
.doctor-credentials { margin-top: clamp(2.5rem, 5vw, 4rem); }
.doctor-credentials-heading { margin-bottom: 1.5rem; text-align: center; }
.doctor-credentials-heading h2 { margin: .65rem 0 0; }
.doctor-credentials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.doctor-credential-card { display: flex; align-items: center; gap: 1rem; min-width: 0; padding: 1.35rem; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.doctor-credential-card > i { display: grid; flex: 0 0 48px; width: 48px; height: 48px; place-items: center; border-radius: 15px; background: rgba(18,62,138,.08); color: var(--primary-blue); font-size: 1.2rem; }
.doctor-credential-card h3, .doctor-credential-card p { margin: 0; }
.doctor-credential-card h3 { color: var(--primary-blue); font-size: 1rem; line-height: 1.4; }
.doctor-credential-card p { margin-top: .35rem; color: var(--text-muted); font-size: .9rem; line-height: 1.55; }
.doctor-recognition-card { border-color: rgba(249,115,22,.35); background: rgba(249,115,22,.045); }
.doctor-recognition-card > i { background: rgba(249,115,22,.14); color: var(--accent-orange); }
.doctor-recognition-card span { display: block; margin-bottom: .35rem; color: var(--accent-orange); font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.section-heading { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }.section-heading > p:last-child { margin: .85rem 0 0; color: var(--text-muted); }.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }.expertise-card, .trust-grid article { padding: 1.6rem; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }.expertise-card:hover, .trust-grid article:hover { transform: translateY(-5px); border-color: rgba(249,115,22,.35); box-shadow: var(--shadow); }.expertise-card > i, .trust-grid i { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 1.1rem; border-radius: 15px; background: rgba(18,62,138,.08); color: var(--primary-blue); font-size: 1.2rem; }.expertise-card h3, .trust-grid h3 { margin: 0 0 .5rem; color: var(--primary-blue); font-size: 1.05rem; }.expertise-card p, .trust-grid p { margin: 0; color: var(--text-muted); font-size: .93rem; line-height: 1.7; }
.condition-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; max-width: 1000px; margin: 0 auto; padding: 0; list-style: none; }.condition-list li { display: flex; align-items: center; gap: .65rem; padding: 1rem; border: 1px solid var(--border); border-radius: 14px; background: #fff; color: var(--primary-blue); font-weight: 700; box-shadow: 0 7px 18px rgba(18,62,138,.05); }.condition-list li::before { content: ""; width: .55rem; height: .55rem; border-radius: 50%; background: var(--accent-orange); box-shadow: 0 0 0 4px rgba(249,115,22,.13); }.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }.trust-grid i { background: rgba(249,115,22,.13); color: var(--accent-orange); }
.philosophy-section { background: #fff; }.philosophy-card { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 1.5rem; max-width: 1000px; padding: clamp(1.7rem, 5vw, 4rem); border-radius: 28px; background: linear-gradient(135deg, #113a85, #1c5bb3); color: #fff; box-shadow: var(--shadow); }.philosophy-card > i { color: #ffb347; font-size: 2.2rem; }.philosophy-card .section-tag { background: rgba(255,255,255,.12); color: #fff; }.philosophy-card h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }.philosophy-card blockquote { margin: 1.2rem 0; color: rgba(255,255,255,.9); font-size: 1.1rem; line-height: 1.85; }.philosophy-card cite { color: #ffca8b; font-style: normal; font-weight: 700; }
.philosophy-attribution { display: inline-flex; align-items: center; justify-content: center; gap: .85rem; margin-top: .25rem; }
.philosophy-attribution img { width: 68px; height: 68px; flex: 0 0 68px; border: 3px solid rgba(255,255,255,.9); border-radius: 50%; object-fit: cover; object-position: center 42%; box-shadow: 0 10px 24px rgba(4,25,65,.28); }
.doctor-cta { width: 100%; padding: clamp(4rem, 8vw, 6rem) 0; background: radial-gradient(circle at 84% 10%, rgba(249,115,22,.28), transparent 18rem), var(--primary-blue); }.cta-card { text-align: center; }.cta-card h2 { color: #fff; }.cta-card > p:not(.cta-kicker) { max-width: 600px; margin: 1rem auto 0; color: rgba(255,255,255,.84); }.cta-kicker { margin: 0 0 .75rem; color: #ffb347; font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.cta-buttons { justify-content: center; }.button-call { background: #fff; color: var(--primary-blue); box-shadow: 0 14px 30px rgba(0,0,0,.15); }.doctor-cta .button-outline { margin: 0; border-color: rgba(255,255,255,.76); color: #fff; }.doctor-cta .button-outline:hover, .doctor-cta .button-outline:focus-visible { background: rgba(255,255,255,.12); color: #fff; }
.faq-list { max-width: 900px; }.faq-list details { border: 1px solid var(--border); box-shadow: 0 7px 18px rgba(18,62,138,.05); }.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }.faq-list summary::after { content: "+"; color: var(--accent-orange); font-size: 1.45rem; line-height: 1; }.faq-list details[open] summary::after { content: "−"; }
@media (max-width: 900px) { .doctor-hero-grid, .doctor-about-grid { grid-template-columns: 1fr; }.doctor-hero-copy { text-align: center; }.doctor-actions, .doctor-trust-list { justify-content: center; }.doctor-portrait-wrap { margin-top: 1rem; }.facts-grid { grid-template-columns: repeat(2, 1fr); }.fact-item:nth-child(2) { border-right: 0; }.fact-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }.expertise-grid { grid-template-columns: repeat(2, 1fr); }.trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .doctor-credentials-grid { grid-template-columns: 1fr 1fr; }.doctor-recognition-card { grid-column: 1 / -1; } }
@media (max-width: 600px) { .doctor-credentials-grid { grid-template-columns: 1fr; }.doctor-recognition-card { grid-column: auto; }.doctor-credential-card { align-items: flex-start; } }
@media (max-width: 600px) { .doctor-hero { padding-top: 3.2rem; }.doctor-portrait img { height: 355px; }.doctor-identity-card { left: .5rem; bottom: -1.2rem; }.facts-grid, .expertise-grid, .condition-list, .trust-grid { grid-template-columns: 1fr; }.fact-item, .fact-item:nth-child(2) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }.fact-item:last-child { border-bottom: 0; }.doctor-google-review a { flex-wrap: wrap; gap: .35rem .6rem; min-height: 72px; padding: .75rem 0; text-align: center; }.doctor-google-review span { flex-basis: 100%; }.doctor-section { padding: 4rem 0; }.philosophy-card { grid-template-columns: 1fr; }.philosophy-card > i { font-size: 1.7rem; }.philosophy-attribution { gap: .7rem; }.philosophy-attribution img { width: 56px; height: 56px; flex-basis: 56px; }.doctor-actions .button, .cta-buttons .button { width: 100%; }.doctor-trust-list { display: grid; text-align: left; }.section-heading { margin-bottom: 2rem; } }
@media (prefers-reduced-motion: reduce) { .expertise-card, .trust-grid article { transition: none; } }

/* ==========================================================
   SERVICES HERO
========================================================== */

.services-hero-grid{

    display:grid;

    grid-template-columns:1fr 420px;

    align-items:center;

    gap:70px;

}

.services-content h1{

    margin:18px 0;

    font-size:clamp(2.3rem,5vw,3.4rem);

    line-height:1.15;

    color:var(--primary-blue);

}

.services-content .hero-subtitle{

    font-size:1.08rem;

    line-height:1.9;

    color:var(--text-muted);

    margin-bottom:2rem;

}

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:1rem;

    margin-bottom:2rem;

}

.hero-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.hero-highlights span{

    display:flex;

    align-items:center;

    gap:.5rem;

    padding:.7rem 1rem;

    border-radius:999px;

    background:#eef5ff;

    color:var(--primary-blue);

    font-weight:600;

    font-size:.92rem;

}

.hero-highlights i{

    color:var(--primary-orange);

}

.services-image{

    text-align:center;

}

.services-image img{

    width:100%;

    max-width:430px;

    border-radius:24px;

}

@media(max-width:992px){

.services-hero-grid{

grid-template-columns:1fr;

text-align:center;

gap:40px;

}

.hero-buttons{

justify-content:center;

}

.hero-highlights{

justify-content:center;

}

}
/* ==========================================================
   OUR MEDICAL SERVICES
========================================================== */

.services-grid{

margin-top:70px;

margin-bottom:40px;

}

.service-card{

    background:#fff;

    border-radius:24px;

    padding:34px;

    box-shadow:0 15px 40px rgba(20,60,138,.08);

    transition:.3s;

    display:flex;

    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(20,60,138,.12);

}

.service-icon{

    width:68px;

    height:68px;

    border-radius:18px;

    background:#EEF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:24px;

}

.service-icon i{

    font-size:28px;

    color:var(--primary-blue);

}

.service-card h3{

    color:var(--primary-blue);

    margin-bottom:16px;

    font-size:1.25rem;

}

.service-card p{

    color:var(--text-muted);

    line-height:1.8;

    flex:1;

    margin-bottom:24px;

}

.service-card a{

    color:var(--primary-orange);

    font-weight:700;

    text-decoration:none;

}

.service-card a:hover{

    text-decoration:underline;

}

@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

}
/* ==========================================================
   SERVICE DETAILS
========================================================== */

.service-detail:nth-child(even){
    background:#f8fbff;
}

.service-detail-grid{

display:grid;

grid-template-columns:1.6fr .9fr;

gap:70px;

align-items:center;

}

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

.service-detail-content h2{
    margin:18px 0;
    color:var(--primary-blue);
}

.service-detail-content p{

font-size:1.05rem;

line-height:1.9;

max-width:720px;

color:var(--text-muted);

}

.service-list{

margin-top:28px;

display:grid;

gap:14px;

}

.service-list li{
    list-style:none;
    position:relative;
    padding-left:28px;
}

.service-list li::before{
    content:"✔";
    color:var(--primary-orange);
    position:absolute;
    left:0;
}

.service-box{
    background:#fff;
    border-radius:22px;
    padding:32px;
    box-shadow:0 12px 30px rgba(20,60,138,.08);
    max-width:360px;
}

.service-box h3{
    color:var(--primary-blue);
    margin-bottom:20px;
}

.service-box ul{
    display:grid;
    gap:12px;
    padding-left:18px;
    margin-top:18px;
}

@media(max-width:992px){

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

}
.service-detail:nth-child(even){

background:#FAFCFF;

border-top:1px solid #edf2fa;

border-bottom:1px solid #edf2fa;

}

.services-summary-card{

    background:#ffffff;

    border-radius:24px;

    padding:36px;

    box-shadow:0 18px 45px rgba(20,60,138,.08);

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:28px;

    align-self:center;

}

.summary-item{

    text-align:center;

}

.summary-number{

    display:block;

    font-size:2rem;

    font-weight:800;

    color:var(--primary-blue);

    margin-bottom:8px;

}

.summary-label{

    display:block;

    font-size:.95rem;

    color:var(--text-muted);

    line-height:1.6;

}

@media(max-width:768px){

.services-summary-card{

grid-template-columns:1fr;

margin-top:40px;

}

}
/* ==========================================================
   SECTION BADGE
========================================================== */

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:8px 18px;

    background:#EEF5FF;

    color:var(--primary-blue);

    border-radius:999px;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:.03em;

    text-transform:uppercase;

    border:1px solid rgba(20,60,138,.08);

    margin-bottom:20px;

}

.section-badge::before{

    content:"✦";

    color:var(--primary-orange);

    font-size:.8rem;

}
.services-footer .button{

    min-width:240px;

}
/*==================================================
 HOME SERVICES
==================================================*/

.services-home{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    margin-top:60px;

}

.services-list{

    list-style:none;

    margin:35px 0;

    padding:0;

    display:grid;

    grid-template-columns:repeat(2,minmax(220px,1fr));

    gap:18px 30px;

}

.services-list li{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:var(--text-dark);

}

.services-list i{

    width:28px;

    height:28px;

    border-radius:50%;

    background:#EEF5FF;

    color:var(--primary-blue);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.8rem;

}

.highlight-card{

    background:#ffffff;

    border-radius:26px;

    padding:42px;

    box-shadow:0 18px 45px rgba(20,60,138,.08);

}

.highlight-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#EEF5FF;

    color:var(--primary-blue);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.8rem;

    margin-bottom:24px;

}

.highlight-card h3{

    margin-bottom:16px;

    color:var(--primary-blue);

}

.highlight-card p{

    color:var(--text-muted);

    line-height:1.8;

}

.highlight-grid{

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.highlight-grid div{

    background:#F8FBFF;

    border-radius:18px;

    padding:22px;

    text-align:center;

}

.highlight-grid strong{

    display:block;

    font-size:1.8rem;

    color:var(--primary-blue);

    margin-bottom:8px;

}

.highlight-grid span{

    color:var(--text-muted);

    font-size:.92rem;

}

@media(max-width:992px){

.services-home{

grid-template-columns:1fr;

}

.services-list{

grid-template-columns:1fr;

}

.highlight-card{

margin-top:20px;

}

}
/*==================================================
VIDEO CONSULTATION HERO
==================================================*/

.video-hero{
    padding:90px 0 70px;
}

.video-hero-grid{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.video-content h1{

    margin:18px 0;

    font-size:clamp(2.3rem,4vw,3rem);

    line-height:1.15;

    color:var(--primary-blue);

}

.video-content h1 span{

    display:block;

    color:var(--primary-orange);

}

.video-highlights{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:35px;

}

.video-highlights span{

    display:flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:#EEF5FF;

    color:var(--primary-blue);

    font-weight:600;

    font-size:.92rem;

}

.video-highlights i{

    color:var(--primary-orange);

}

.video-summary-card{

    background:#ffffff;

    border-radius:26px;

    padding:40px;

    box-shadow:0 18px 45px rgba(20,60,138,.08);

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.video-summary-card .summary-item{

    text-align:center;

    background:#F8FBFF;

    border-radius:18px;

    padding:24px;

}

.video-summary-card .summary-number{

    display:block;

    font-size:1.8rem;

    font-weight:800;

    color:var(--primary-blue);

    margin-bottom:8px;

}

.video-summary-card .summary-label{

    color:var(--text-muted);

    font-size:.92rem;

    line-height:1.5;

}

@media(max-width:992px){

.video-hero-grid{

grid-template-columns:1fr;

}

.video-summary-card{

margin-top:25px;

}

}

@media(max-width:768px){

.video-summary-card{

grid-template-columns:1fr;

}

.video-highlights{

justify-content:center;

}

.video-content{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

}

.page-hero{

    padding:90px 0 70px;

    background:#fff;

    position:relative;

    overflow:hidden;

}

.page-hero::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(25,80,170,.04);

}

.page-hero::after{

    content:"";

    position:absolute;

    bottom:-120px;

    left:-120px;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,122,24,.04);

}
/*==================================================
VIDEO CONSULTATION STEPS
==================================================*/

.video-steps{

    padding:90px 0;

}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:24px;

    margin-top:60px;

}

.step-card{

    position:relative;

    background:#fff;

    border:1px solid #edf2fa;

    border-radius:24px;

    padding:35px 24px;

    text-align:center;

    transition:.35s;

}

.step-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(25,80,170,.10);

}

.step-number{

    position:absolute;

    top:18px;

    right:18px;

    font-size:.85rem;

    font-weight:700;

    color:#d9e4f5;

}

.step-icon{

    width:72px;

    height:72px;

    margin:0 auto 22px;

    border-radius:18px;

    background:#EEF5FF;

    display:flex;

    justify-content:center;

    align-items:center;

}

.step-icon i{

    font-size:1.8rem;

    color:var(--primary-blue);

}

.step-card h3{

    margin-bottom:15px;

    color:var(--primary-blue);

    font-size:1.15rem;

}

.step-card p{

    color:var(--text-muted);

    line-height:1.8;

    font-size:.95rem;

}

/* Responsive */

@media(max-width:1200px){

.steps-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.steps-grid{

grid-template-columns:1fr;

}

}
/*==================================
WHO CAN BENEFIT
==================================*/

.video-benefits{

    padding:90px 0;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

    margin-top:60px;

}

.benefit-card{

    background:#fff;

    border:1px solid #edf2fa;

    border-radius:24px;

    padding:36px 30px;

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(25,80,170,.08);

}

.benefit-card i{

    font-size:2rem;

    color:var(--primary-blue);

    margin-bottom:22px;

}

.benefit-card h3{

    color:var(--primary-blue);

    margin-bottom:14px;

    font-size:1.2rem;

}

.benefit-card p{

    color:var(--text-muted);

    line-height:1.8;

}

@media(max-width:992px){

.benefits-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.benefits-grid{

grid-template-columns:1fr;

}

}
/*==================================
VIDEO CONSULTATION INSTRUCTIONS
==================================*/

.video-instructions{

    padding:90px 0;

}

.instruction-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:26px;

    margin-top:60px;

}

.instruction-item{

    display:flex;

    gap:22px;

    align-items:flex-start;

    background:#fff;

    border:1px solid #edf2fa;

    border-radius:22px;

    padding:28px;

    transition:.3s;

}

.instruction-item:hover{

    box-shadow:0 18px 40px rgba(25,80,170,.08);

    transform:translateY(-4px);

}

.instruction-item i{

    width:58px;

    height:58px;

    border-radius:16px;

    background:#EEF5FF;

    color:var(--primary-blue);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.4rem;

    flex-shrink:0;

}

.instruction-item h3{

    margin-bottom:10px;

    color:var(--primary-blue);

    font-size:1.1rem;

}

.instruction-item p{

    color:var(--text-muted);

    line-height:1.7;

    margin:0;

}

@media(max-width:768px){

.instruction-grid{

grid-template-columns:1fr;

}

}
/*==================================
VIDEO CTA
==================================*/

.video-cta{

    padding:90px 0;

}

.video-cta-card{

    background:linear-gradient(135deg,#123e8a,#0d5cc8);

    color:#fff;

    border-radius:32px;

    padding:60px;

    text-align:center;

}

.video-cta-card .section-badge{

    background:rgba(255,255,255,.12);

    color:#fff;

}

.video-cta-card h2{

    color:#fff;

    margin:20px 0;

}

.video-cta-card p{

    color:rgba(255,255,255,.92);

    max-width:760px;

    margin:0 auto;

    line-height:1.9;

}

.consultation-info{

    margin:45px 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.consult-item{

    background:rgba(255,255,255,.10);

    border-radius:22px;

    padding:28px;

    display:flex;

    gap:18px;

    align-items:center;

    text-align:left;

}

.consult-item i{

    font-size:1.6rem;

    color:#fff;

}

.consult-item strong{

    display:block;

    margin-bottom:6px;

}

.consult-item span{

    font-size:.95rem;

    color:rgba(255,255,255,.85);

}

.video-cta .hero-buttons{

    justify-content:center;

    margin-top:10px;

}

.consult-note{

    margin-top:40px;

    display:flex;

    gap:14px;

    align-items:flex-start;

    text-align:left;

    background:rgba(255,255,255,.10);

    border-radius:18px;

    padding:22px;

}

.consult-note i{

    margin-top:3px;

    font-size:1.2rem;

}

.consult-note p{

    margin:0;

    max-width:none;

}

@media(max-width:992px){

.consultation-info{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.video-cta-card{

padding:35px 25px;

}

.consult-item{

text-align:left;

}

}
.button{

    display:inline-flex;

    align-items:center;

    gap:10px;

}/*==================================
PAGE QUICK NAVIGATION
==================================*/

.page-nav{

    padding:60px 0;

}

.page-nav-links{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

}

.page-nav-links a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 26px;

    border-radius:999px;

    background:#ffffff;

    border:1px solid #e7edf8;

    color:var(--primary-blue);

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.page-nav-links a:hover{

    background:var(--primary-blue);

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(25,80,170,.18);

}

.page-nav-links a i{

    color:var(--primary-orange);

    transition:.3s;

}

.page-nav-links a:hover i{

    color:#fff;

}

@media(max-width:768px){

.page-nav{

padding:40px 0;

}

.page-nav-links{

justify-content:flex-start;

overflow-x:auto;

flex-wrap:nowrap;

padding-bottom:10px;

}

.page-nav-links::-webkit-scrollbar{

display:none;

}

}
.video-consultation-strip{

    padding:70px 0;

}

.video-strip-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:45px;

    background:#ffffff;

    border-radius:28px;

    box-shadow:0 15px 45px rgba(0,0,0,.06);

}

.video-strip-content{

    flex:1;

}

.video-strip-content h2{

    margin:15px 0;

}

@media(max-width:768px){

.video-strip-card{

flex-direction:column;

text-align:center;

}

}

.services-video{

    padding:80px 0;

}

.services-video-card{

    display:grid;

    grid-template-columns:120px 1fr;

    gap:35px;

    align-items:center;

    background:linear-gradient(135deg,#f7fbff,#ffffff);

    border-radius:28px;

    padding:50px;

    border:1px solid #e8eef8;

}

.services-video-icon{

    width:100px;

    height:100px;

    border-radius:24px;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2.2rem;

    color:var(--primary-blue);

}

.services-video-content h2{

    margin:15px 0;

}

.services-video-content p{

    margin-bottom:25px;

}

@media(max-width:768px){

.services-video-card{

grid-template-columns:1fr;

text-align:center;

}

.services-video-icon{

margin:auto;

}

}

/*==================================
HOME VIDEO CONSULTATION
==================================*/

.video-consult-home{

    padding:30px 0 60px;

}

.video-consult-card{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    padding:40px 50px;

    border-radius:24px;

    background:linear-gradient(135deg,#f8fbff,#ffffff);

    border:1px solid #e7edf8;

}

.video-left{

    flex:1;

}

.video-left h2{

    margin:15px 0;

    color:var(--primary-blue);

}

.video-left p{

    margin:0;

    line-height:1.8;

}

.video-right{

    flex-shrink:0;

}

@media(max-width:768px){

.video-consult-card{

flex-direction:column;

text-align:center;

padding:30px;

}

.video-right{

width:100%;

}

.video-right .button{

width:100%;

justify-content:center;

}

}

.contact-location,
.contact-hours,
.contact-actions{

display:flex;

flex-direction:column;

}

.contact-phone{

font-size:2rem;

font-weight:700;

color:var(--primary-blue);

margin:18px 0 25px;

text-decoration:none;

}



@media(max-width:992px){

.contact-card-horizontal{

grid-template-columns:1fr;

padding:35px;

gap:35px;

}

.contact-phone{

font-size:1.6rem;

}

}
/*==================================
NEW CONTACT SECTION
==================================*/

.contact-wrapper-new{

    background:#fff;

    border-radius:30px;

    padding:50px;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.contact-top{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-bottom:40px;

    border-bottom:1px solid #edf2fa;

}

.contact-location h3,
.contact-hours h3{

    margin:14px 0;

    color:var(--primary-blue);

}

.contact-location p,
.contact-hours p{

    line-height:1.8;

}

.contact-bottom{

    text-align:center;

}

.contact-phone{

    display:block;

    font-size:2rem;

    font-weight:700;

    color:var(--primary-blue);

    text-decoration:none;

    margin:15px 0 30px;

}



@media(max-width:768px){

.contact-wrapper-new{

padding:30px;

}

.contact-top{

grid-template-columns:1fr;

gap:35px;

}

.contact-phone{

font-size:1.6rem;

}

.contact-buttons{

grid-template-columns:1fr;

}

}
.contact-buttons{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:16px;

    margin-top:24px;

}

.contact-buttons .button{

    width:100%;

    justify-content:center;

    padding:16px 20px;

    border-radius:14px;

    font-size:1rem;

    font-weight:600;

    min-height:56px;

}
.button-outline-secondary{

    background:#eef5ff;

    color:var(--primary-blue);

    border:1px solid #d9e8ff;

}

.button-outline-secondary:hover{

    background:var(--primary-blue);

    color:#fff;

}

/* ==========================================================
   PRODUCTION RESPONSIVE CONSOLIDATION
   ========================================================== */

/* TYPOGRAPHY */
h1, h2, h3, h4, p, li, a, span {
  overflow-wrap: break-word;
}

/* CONTAINERS AND SECTIONS */
.container {
  width: var(--container);
  margin-inline: auto;
}

main,
section,
.container,
.doctor-page-container {
  min-width: 0;
}

/* BUTTONS */
.button,
.header-call,
.button-outline {
  min-height: 48px;
  line-height: 1.2;
  text-align: center;
}

/* HEADER AND NAVIGATION */
.site-header {
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.header-inner {
  position: relative;
  max-width: 1180px;
}

.menu-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 10px;
}

.menu-toggle span {
  width: 24px;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: static;
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.main-nav a {
  white-space: nowrap;
}

/* CONTACT */
.social-card:nth-child(1) .card-icon { background: #ff0000; }
.social-card:nth-child(2) .card-icon { background: #1877f2; }
.social-card:nth-child(3) .card-icon { background: #e4405f; }
.social-card:nth-child(4) .card-icon { background: #0a66c2; }
.social-card:nth-child(5) .card-icon { background: #25d366; }

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

/* FOOTER */
.footer-inner {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-column {
  min-width: 0;
}

.footer-nav {
  display: grid;
  gap: 0.65rem;
}

.footer-description,
.footer-seo {
  line-height: 1.75;
}

/* FLOATING ACTIONS */
.floating-actions {
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
}

/* TABLET RESPONSIVE */
@media (max-width: 991px) {
  :root {
    --header-offset: 82px;
  }

  .brand img {
    width: 132px;
  }

  .menu-toggle {
    display: inline-flex;
    z-index: 1002;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    display: flex;
    width: min(360px, calc(100vw - 2rem));
    max-height: calc(100vh - var(--header-offset) - 1rem);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.75rem);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    justify-content: flex-start;
    width: 100%;
    min-height: 44px;
  }

  .services-hero-grid,
  .video-hero-grid,
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-grid.reverse > * {
    order: initial;
  }

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

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

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

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
  :root {
    --container: min(100% - 2rem, 1180px);
  }

  .site-header {
    padding-inline: 1rem;
  }

  .header-inner {
    padding-block: 0.75rem;
  }

  .main-nav {
    right: 0;
  }

  .hero-actions,
  .hero-buttons,
  .doctor-actions,
  .cta-buttons {
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-buttons .button,
  .doctor-actions .button,
  .cta-buttons .button {
    width: 100%;
  }

  .about-card-body,
  .contact-wrapper-new,
  .video-cta-card {
    padding: 1.5rem;
  }

  .services-grid,
  .expertise-grid,
  .benefits-grid,
  .instruction-grid,
  .steps-grid,
  .contact-buttons,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .page-nav-links {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
  }

  .page-nav-links a {
    justify-content: center;
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .site-footer,
  .footer-contact {
    text-align: left;
  }

  .footer-nav {
    align-items: start;
  }

  .floating-action {
    width: 52px;
    height: 52px;
    font-size: 23px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(100% - 1.5rem, 1180px);
  }

  .brand img {
    width: 116px;
  }

  .main-nav {
    width: calc(100vw - 1.5rem);
  }
}

/* REDUCED MOTION */
@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;
  }

  .hero-copy {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   TARGETED HOMEPAGE LAYOUT REPAIR
   ========================================================== */

/* Home hero */
#hero .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

#hero .hero-copy {
  width: auto;
  max-width: 650px;
  margin: 0;
}

#hero .hero-copy h1 {
  font-size: clamp(2.75rem, 4.8vw, 3rem);
}

#hero .hero-media {
  min-width: 0;
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  justify-content: center;
}

#hero .hero-media img {
  width: min(100%, 470px);
  height: auto;
  max-height: 570px;
  object-fit: contain;
  object-position: center bottom;
}

@media (min-width: 1025px) {
  #hero .hero-media {
    position: relative;
    width: 100%;
    height: 100%;
    align-self: stretch;
    align-items: flex-start;
    justify-self: stretch;
  }

  #hero .hero-media img {
    right: 0;
    bottom: auto;
    width: auto;
    max-width: none;
    height: min(100%, calc(100svh - var(--header-offset) - 3rem));
    max-height: calc(100svh - var(--header-offset) - 3rem);
    object-position: right top;
  }
}

#hero .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 1.5rem;
}

#hero .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

#hero .trust-item i {
  color: var(--accent-orange);
}

/* Home about and service split */
#about .about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

#about .about-card-body {
  height: 100%;
}

#about .about-card-body .button {
  align-self: flex-start;
  margin-top: auto;
}

#about .about-google-rating {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin-top: auto;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff, #fffaf2);
  color: inherit;
  box-shadow: 0 10px 24px rgba(18, 62, 138, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

#about .about-google-rating:hover,
#about .about-google-rating:focus-visible {
  border-color: rgba(249, 115, 22, 0.45);
  color: inherit;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

#about .about-google-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #4285f4;
  box-shadow: 0 5px 14px rgba(66, 133, 244, 0.16);
  font-size: 1.15rem;
}

#about .about-google-icon img {
  width: 24px;
  height: 24px;
}

#about .about-google-copy {
  display: grid;
  gap: 0.15rem;
}

#about .about-google-copy small {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#about .about-google-copy strong {
  color: var(--primary-blue);
  font-size: 1rem;
}

#about .about-google-copy strong > i {
  color: #fbbc04;
}

#about .about-google-copy strong span {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

#about .about-google-rating > i {
  color: #4285f4;
  font-size: 0.75rem;
}

#about .about-google-rating + .button {
  margin-top: 1rem;
}

#services {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

#services .services-home {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  margin-top: 0;
}

#services .services-content,
#services .services-highlight,
#services .highlight-card {
  min-width: 0;
}

#services .services-content > .button {
  margin: 0.5rem 0.5rem 0.5rem 0;
}

#services .highlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Home hospital photos */
.hospital-gallery-section {
  padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(4rem, 7vw, 5.5rem);
}

.hospital-gallery-header {
  max-width: min(100%, 1020px);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.hospital-gallery-header h2 {
  margin: 0;
  color: var(--primary-blue);
  font-size: clamp(2rem, 4vw, 3rem);
}

.hospital-gallery-header p {
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.hospital-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hospital-gallery-grid figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #eaf1fb;
  box-shadow: var(--shadow-soft);
}

.hospital-gallery-grid .hospital-gallery-featured {
  grid-row: 1 / 3;
  min-height: 500px;
}

.hospital-gallery-grid figure:not(.hospital-gallery-featured) {
  min-height: 242px;
}

.hospital-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hospital-gallery-grid figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(18, 62, 138, 0.14);
  font-size: 0.88rem;
  font-weight: 700;
}

/* Homepage patient testimonials */
.home-testimonials {
  padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.home-testimonials-header {
  max-width: 820px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.home-testimonials-header h2 {
  margin: 0;
  color: var(--primary-blue);
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-testimonials-header p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-testimonial-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.home-testimonial-rating {
  display: flex;
  gap: 0.25rem;
  color: #fbbc04;
  font-size: 0.9rem;
}

.home-testimonial-card blockquote {
  flex: 1;
  margin: 1rem 0 1.4rem;
  color: var(--text-dark);
  font-size: 0.96rem;
  line-height: 1.75;
}

.home-testimonial-card footer {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.home-testimonial-card footer img {
  width: 36px;
  height: 36px;
}

.home-testimonial-card footer div {
  display: grid;
  min-width: 0;
}

.home-testimonial-card footer strong {
  overflow-wrap: anywhere;
  color: var(--primary-blue);
  font-size: 0.92rem;
}

.home-testimonial-card footer span {
  color: var(--text-muted);
  font-size: 0.76rem;
}

.home-testimonial-card footer > a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #eef5ff;
  color: #4285f4;
  font-size: 0.75rem;
}

.home-testimonial-card footer > a:hover,
.home-testimonial-card footer > a:focus-visible {
  background: var(--primary-blue);
  color: #fff;
}

.home-testimonials-action {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

@media (max-width: 767px) {
  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .home-testimonials-action .button {
    width: 100%;
  }
}

/* Home contact and consultation strip */
#contact .contact-wrapper-new {
  width: 100%;
}

#contact .contact-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 2rem;
}

#contact .contact-details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--primary-blue);
  font-weight: 700;
}

#contact .contact-details-link:hover,
#contact .contact-details-link:focus-visible {
  color: var(--accent-orange);
}

.video-consult-home > .container {
  width: 100%;
}

.video-consult-home .video-consult-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

/* Social Connect */
#connect .social-connect-container {
  width: 100%;
  margin-inline: auto;
}

#connect .social-connect-top {
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

#connect .social-connect-top h2 {
  margin: 0 0 1rem;
  color: var(--primary-blue);
  font-size: clamp(2rem, 4vw, 3rem);
}

#connect .social-connect-top p,
#connect .bottom-message p {
  color: var(--text-muted);
  line-height: 1.75;
}

#connect .social-connect-top > p {
  max-width: 1040px;
  margin-inline: auto;
}

#connect .social-proof {
  margin-top: 1rem;
  color: var(--primary-blue);
  font-weight: 700;
}

#connect .social-connect-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

#connect .social-card {
  min-width: 0;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

#connect .card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 1.3rem;
}

#connect .card-title {
  margin: 1rem 0 0.25rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

#connect .card-heading {
  margin: 0 0 0.5rem;
  color: var(--primary-blue);
  font-size: 1rem;
}

#connect .social-card .button {
  font-size: 0.85rem;
}

#connect .bottom-message {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  text-align: center;
}

#connect .bottom-message p:last-child {
  max-width: 1040px;
  margin-inline: auto;
}

/* Consistent four-page footer */
.site-footer {
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.site-footer .footer-inner {
  width: var(--container);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.site-footer .footer-column {
  min-width: 0;
  gap: 0.8rem;
}

.site-footer .footer-name,
.site-footer .footer-heading {
  margin: 0;
  line-height: 1.35;
}

.site-footer .footer-description,
.site-footer .footer-contact p,
.site-footer .footer-nav a {
  font-size: 0.9rem;
  line-height: 1.75;
}

.site-footer .footer-nav {
  display: grid;
  align-items: start;
  gap: 0.6rem;
}

.site-footer .footer-bottom {
  width: var(--container);
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.site-footer .footer-seo {
  width: var(--container);
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1199px) {
  #hero .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: 2.5rem;
  }

  #connect .social-connect-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  #hero .hero-copy h1 {
    font-size: clamp(2.35rem, 5vw, 3rem);
  }

  #services .services-home {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hospital-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .hospital-gallery-grid .hospital-gallery-featured {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 420px;
  }

  .hospital-gallery-grid figure:not(.hospital-gallery-featured) {
    min-height: 280px;
  }

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

@media (max-width: 767px) {
  #hero {
    padding: 2.5rem 0 0;
  }

  #hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #hero .hero-copy {
    max-width: none;
    text-align: center;
  }

  #hero .hero-actions,
  #hero .hero-trust {
    justify-content: center;
  }

  #hero .hero-actions .button {
    width: auto;
    flex: 1 1 170px;
  }

  #hero .hero-media {
    max-height: 430px;
    overflow: hidden;
  }

  #hero .hero-media img {
    width: min(88%, 390px);
    max-height: 430px;
  }

  #about .about-grid,
  #contact .contact-top,
  .video-consult-home .video-consult-card {
    grid-template-columns: 1fr;
  }

  .hospital-gallery-grid {
    grid-template-columns: 1fr;
  }

  .hospital-gallery-grid .hospital-gallery-featured {
    grid-column: auto;
    min-height: 320px;
  }

  .hospital-gallery-grid figure:not(.hospital-gallery-featured) {
    min-height: 260px;
  }

  #connect .social-connect-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer .footer-column,
  .site-footer .footer-contact {
    align-items: center;
    text-align: center;
  }

  .site-footer .footer-nav {
    align-items: center;
  }

}

@media (max-width: 479px) {
  #hero .hero-actions .button {
    flex-basis: 100%;
    width: 100%;
  }

  #hero .hero-trust {
    display: grid;
    justify-content: stretch;
    text-align: left;
  }

  #connect .social-connect-grid,
  #services .highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   FACILITIES PAGE
   ========================================================== */
.facilities-page {
  background: #f7faff;
}

.facilities-page section {
  width: 100%;
}

.facilities-hero {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
}

.facilities-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.facilities-hero-copy,
.facilities-hero-image,
.facility-card {
  min-width: 0;
}

.facilities-hero-copy h1 {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--primary-blue);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.facilities-hero-copy > p {
  max-width: 680px;
  margin: 1.4rem 0 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.facilities-hero-actions,
.facilities-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.facilities-hero-image {
  height: clamp(360px, 42vw, 540px);
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  background: #e5edf8;
  box-shadow: 0 24px 55px rgba(18, 62, 138, 0.18);
}

.facilities-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.facilities-intro-section {
  padding: clamp(4rem, 7vw, 5.5rem) 0 2rem;
}

.facilities-intro {
  max-width: 1180px;
  text-align: center;
}

.facilities-intro h2 {
  margin: 1rem 0 0;
  color: var(--primary-blue);
  font-size: clamp(2rem, 4vw, 3rem);
}

.facilities-intro > p {
  margin: 1rem auto 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.facilities-gallery-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.facilities-gallery-muted {
  background: #edf4fd;
}

.facilities-section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.facilities-heading-icon {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: var(--accent-orange);
  box-shadow: var(--shadow-soft);
  font-size: 1.25rem;
}

.facilities-section-heading .section-tag {
  margin: 0 0 0.35rem;
}

.facilities-section-heading h2 {
  margin: 0;
  color: var(--primary-blue);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.facilities-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.facility-card {
  display: flex;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.facility-card-wide {
  grid-column: span 2;
}

.facility-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.facilities-gallery-arrival .facility-card-wide img {
  object-position: center 38%;
}

.facility-card figcaption {
  display: grid;
  gap: 0.4rem;
  padding: 1.25rem 1.35rem 1.4rem;
}

.facility-card figcaption strong {
  color: var(--primary-blue);
  font-size: 1.05rem;
}

.facility-card figcaption span {
  color: var(--text-muted);
  line-height: 1.6;
}

.facilities-room-gallery .facility-card img {
  height: 320px;
}

.facilities-cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}

.facilities-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 26px;
  background: var(--primary-blue);
  color: #fff;
  box-shadow: var(--shadow);
}

.facilities-cta-card h2 {
  max-width: 720px;
  margin: 0.65rem 0 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.facilities-cta-card p:not(.section-tag) {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.facilities-cta-card .section-tag {
  color: #ffb347;
}

.facilities-cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.facilities-cta-actions .button-whatsapp {
  background: #25d366;
  color: #fff;
}

@media (max-width: 991px) {
  .facilities-hero-grid {
    grid-template-columns: 1fr;
  }

  .facilities-hero-image {
    height: 430px;
  }

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

  .facility-card-wide {
    grid-column: span 2;
  }

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

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

@media (max-width: 600px) {
  .facilities-hero {
    padding-top: 3rem;
  }

  .facilities-hero-copy {
    text-align: center;
  }

  .facilities-hero-actions {
    justify-content: center;
  }

  .facilities-hero-actions .button,
  .facilities-cta-actions .button {
    width: 100%;
  }

  .facilities-hero-image {
    height: 300px;
    border-width: 5px;
    border-radius: 22px;
  }

  .facilities-section-heading {
    align-items: flex-start;
  }

  .facilities-gallery {
    grid-template-columns: 1fr;
  }

  .facility-card-wide {
    grid-column: auto;
  }

  .facility-card img,
  .facilities-room-gallery .facility-card img {
    height: 250px;
  }
}

/* ==========================================================
   HEALTH ARTICLES
========================================================== */
.articles-page {
  background: #f8fbff;
}

.articles-hero,
.article-hero {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, #f8fbff, #eef5ff);
  text-align: center;
}

.articles-hero .container,
.article-hero .container {
  max-width: 900px;
}

.articles-hero h1,
.article-hero h1 {
  margin: 0;
  color: var(--primary-blue);
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.articles-hero p:last-child,
.article-hero p:last-child {
  max-width: 760px;
  margin: 1.2rem auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.articles-list {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.article-card,
.article-body,
.article-aside,
.article-share-section {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1.6rem;
}

.article-card > span {
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 0.75rem 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.article-card h2 a,
.article-link {
  color: var(--primary-blue);
}

.article-card p {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  font-weight: 700;
}

.article-card-languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.article-card-languages a {
  padding: 0.45rem 0.7rem;
  border: 1px solid #d9e5f7;
  border-radius: 999px;
  background: #f4f8ff;
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 800;
}

.article-card-languages a:hover,
.article-card-languages a:focus-visible {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: #fff;
}

.articles-entry {
  margin-top: 2rem;
  text-align: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 2rem;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.article-body,
.article-aside {
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-offset) + 1rem);
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 1rem;
}

.article-sidebar > .article-share-section {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.article-share-section h2 {
  margin: 0 0 0.45rem;
  color: var(--primary-blue);
  font-size: 1.15rem;
}

.article-share-section p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.article-body > section + section {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.article-body h2,
.article-aside h2,
.article-warning h2 {
  margin: 0 0 0.75rem;
  color: var(--primary-blue);
  line-height: 1.25;
}

.article-body p,
.article-aside p {
  color: var(--text-muted);
  line-height: 1.8;
}

.article-warning {
  margin-top: 2.25rem;
  padding: 1.4rem;
  border-left: 4px solid var(--accent-orange);
  border-radius: 14px;
  background: #fff7ed;
}

.article-warning p,
.article-disclaimer {
  margin: 0;
}

.article-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.article-aside .button {
  width: 100%;
  margin-top: 0.75rem;
}

.article-share-section .article-share-button {
  width: 100%;
  border-color: #1fa855;
  background: #1fa855;
  color: #fff;
}

.article-share-section .article-share-button:hover,
.article-share-section .article-share-button:focus-visible {
  border-color: #168b46;
  background: #168b46;
  color: #fff;
}

.article-aside > a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 1.25rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(18, 62, 138, 0.18);
  border-radius: 12px;
  background: #eef5ff;
  color: var(--primary-blue);
  font-weight: 700;
  text-align: center;
}

.article-aside > a:last-child:hover,
.article-aside > a:last-child:focus-visible {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: #fff;
}

/* Long-form multilingual health articles */
.article-breadcrumb {
  padding: 1rem 0 0;
}

.article-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-breadcrumb li + li::before {
  margin-right: 0.4rem;
  color: #8ea0b9;
  content: "/";
}

.article-breadcrumb a {
  color: var(--primary-blue);
  font-weight: 700;
}

.article-language-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: fit-content;
  gap: 0.35rem;
  margin: 0 auto 1.4rem;
  padding: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.article-language-switcher a {
  min-width: 88px;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  color: var(--primary-blue);
  font-weight: 800;
  text-align: center;
}

.article-language-switcher a[aria-current="page"] {
  background: var(--primary-blue);
  color: #fff;
}

/* A medical disclaimer belongs only at the end of the article body. */
.articles-page > .article-disclaimer {
  display: none;
}

.article-language-sticky-bar {
  position: -webkit-sticky;
  position: sticky;
  top: var(--header-offset);
  z-index: 950;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(18, 62, 138, 0.08);
  background: rgba(248, 251, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.article-language-sticky-bar .article-language-switcher {
  margin: 0;
}

/* Keep the language selector available throughout multilingual articles. */
.fixed-language-switcher-page #main-content {
  padding-top: 70px;
}

.fixed-language-switcher-page .article-language-sticky-bar {
  position: fixed;
  top: var(--header-offset);
  right: 0;
  left: 0;
  z-index: 999;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.1rem;
  margin-top: 1.35rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.longform-article .article-key-answer,
.longform-article .article-toc,
.longform-article .article-reviewer,
.longform-article .article-cta-panel {
  margin-bottom: 2rem;
  padding: 1.4rem;
  border-radius: 16px;
}

.longform-article .article-key-answer {
  border-left: 4px solid var(--accent-orange);
  background: #fff7ed;
}

.longform-article .article-key-answer h2,
.longform-article .article-toc h2,
.longform-article .article-reviewer h2,
.longform-article .article-cta-panel h2 {
  margin-top: 0;
}

.longform-article .article-toc {
  border: 1px solid #dbe8fa;
  background: #f4f8ff;
}

.longform-article .article-toc ol {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.25rem;
}

.longform-article .article-toc a {
  color: var(--primary-blue);
  font-weight: 700;
}

.longform-article .article-content-section + .article-content-section {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.longform-article .article-warning + .article-content-section,
.longform-article .article-faq + .article-content-section {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.longform-article .article-content-section h2,
.longform-article .article-faq h2,
.longform-article .related-articles h2 {
  margin: 0 0 0.9rem;
  color: var(--primary-blue);
  line-height: 1.25;
}

.longform-article h3 {
  margin: 1.4rem 0 0.6rem;
  color: #1d4f9e;
}

.longform-article p,
.longform-article li {
  color: var(--text-muted);
  line-height: 1.85;
}

.longform-article ul,
.longform-article ol {
  padding-left: 1.35rem;
}

.article-faq {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.article-faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdff;
}

.article-faq details + details {
  margin-top: 0.75rem;
}

.article-faq summary {
  padding: 1rem 1.1rem;
  color: var(--primary-blue);
  font-weight: 800;
  cursor: pointer;
}

.article-faq details p {
  margin: 0;
  padding: 0 1.1rem 1rem;
}

.longform-article .article-reviewer {
  margin-top: 2.25rem;
  border: 1px solid #dbe8fa;
  background: #f4f8ff;
}

.longform-article .article-cta-panel {
  margin-top: 2.25rem;
  margin-bottom: 0;
  background: var(--primary-blue);
  color: #fff;
}

.longform-article .article-cta-panel h2,
.longform-article .article-cta-panel p {
  color: #fff;
}

.article-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.article-cta-actions .button {
  flex: 1 1 190px;
}

.article-cta-panel .button-whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
}

.article-cta-panel .button-whatsapp:hover,
.article-cta-panel .button-whatsapp:focus-visible {
  border-color: #168f45;
  background: #168f45;
  color: #fff;
}

.related-articles {
  margin-top: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.related-articles-grid a {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fbfdff;
  color: var(--primary-blue);
  font-weight: 800;
}

.article-source-list {
  font-size: 0.92rem;
}

.article-source-list a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .articles-hero,
  .article-hero,
  .articles-list {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

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

  .article-layout {
    gap: 1.25rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .article-card,
  .article-body,
  .article-aside {
    padding: 1.4rem;
  }

  .article-language-switcher {
    display: grid;
    width: 100%;
  }

  .article-language-switcher a {
    min-width: 0;
    padding-inline: 0.45rem;
  }

  .article-language-sticky-bar {
    padding-inline: 0.75rem;
  }

  .article-language-sticky-bar .article-language-switcher {
    width: 100%;
    max-width: 420px;
  }

  .article-meta {
    align-items: center;
    flex-direction: column;
  }

  .related-articles-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   CONTACT PAGE
   ========================================================== */
.contact-page {
  background: #f8fbff;
}

.contact-page section {
  width: 100%;
}

.contact-page-hero {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.contact-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.contact-page-copy,
.contact-availability-card,
.contact-option-card,
.contact-address-card,
.contact-map-card,
.contact-video-card,
.contact-visit-grid article {
  min-width: 0;
}

.contact-page-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--primary-blue);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.contact-page-lead {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.8;
}

.contact-page-actions,
.contact-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.contact-page-actions .button-whatsapp {
  width: auto;
  border: 2px solid #25d366;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.22);
}

.contact-page-actions .button-whatsapp:hover,
.contact-page-actions .button-whatsapp:focus-visible {
  border-color: #1ebe5d;
  background: #1ebe5d;
  color: #fff;
}

.contact-page-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-page-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-page-trust i {
  color: var(--accent-orange);
}

.contact-availability-card {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-availability-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

.contact-availability-heading div {
  display: grid;
  gap: 0.2rem;
}

.contact-availability-heading span:not(.contact-page-icon),
.contact-availability-row span {
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-availability-heading strong,
.contact-availability-row strong {
  color: var(--primary-blue);
}

.contact-availability-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.45rem 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-availability-row strong {
  grid-column: 2;
  text-align: right;
}

.contact-availability-card > p {
  display: flex;
  gap: 0.7rem;
  margin: 1.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-availability-card > p i {
  margin-top: 0.25rem;
  color: var(--accent-orange);
}

.contact-page-icon {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  background: #eef5ff;
  color: var(--primary-blue);
  font-size: 1.2rem;
}

.contact-page-icon-whatsapp {
  background: #ecfdf3;
  color: #15803d;
}

.contact-page-section {
  padding: clamp(4.5rem, 8vw, 6rem) 0;
}

.contact-page-heading {
  max-width: 780px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.contact-page-heading h2,
.contact-address-card h2,
.contact-video-card h2 {
  margin: 0;
  color: var(--primary-blue);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.contact-page-heading > p:last-child {
  margin: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.contact-option-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-option-card h3,
.contact-visit-grid h3,
.contact-map-card h3 {
  margin: 1.1rem 0 0.55rem;
  color: var(--primary-blue);
  font-size: 1.08rem;
}

.contact-option-card p,
.contact-visit-grid p,
.contact-map-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-option-card > a,
.contact-map-card > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.contact-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.contact-address-card,
.contact-map-card {
  padding: clamp(1.75rem, 5vw, 3rem);
  border-radius: 26px;
}

.contact-address-card {
  border: 1px solid var(--border);
  background: #f8fbff;
}

.contact-address-card address {
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.85;
}

.contact-address-details {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.contact-address-details p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
}

.contact-address-details i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--surface);
  color: var(--accent-orange);
}

.contact-address-details span {
  display: grid;
  gap: 0.2rem;
}

.contact-address-details small {
  color: var(--text-muted);
}

.contact-address-details strong {
  color: var(--primary-blue);
}

.contact-google-rating {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  margin: 1.5rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, #fffaf2);
  color: inherit;
  box-shadow: 0 10px 24px rgba(18, 62, 138, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-google-rating:hover,
.contact-google-rating:focus-visible {
  border-color: rgba(249, 115, 22, 0.45);
  color: inherit;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.contact-google-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 14px rgba(66, 133, 244, 0.16);
}

.contact-google-icon img {
  width: 24px;
  height: 24px;
}

.contact-google-rating > span:nth-child(2) {
  display: grid;
  gap: 0.15rem;
}

.contact-google-rating small {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-google-rating strong {
  color: var(--primary-blue);
}

.contact-google-rating strong > i {
  color: #fbbc04;
}

.contact-google-rating strong span {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.contact-google-rating > i {
  color: #4285f4;
  font-size: 0.75rem;
}

.contact-map-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(18, 60, 138, 0.9), rgba(18, 60, 138, 0.94)),
    url("images/hospital/building-1.jpg") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-map-marker {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffb347;
  font-size: 1.5rem;
}

.contact-map-card h3 {
  margin-top: 0.3rem;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.contact-map-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-map-local-info {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-map-local-info h4,
.contact-map-local-info p {
  margin: 0;
}

.contact-map-local-info h4 {
  color: #fff;
  font-size: 1.05rem;
}

.contact-map-local-info p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-map-card > a {
  color: #fff;
}

.contact-video-section {
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: 0;
}

.contact-video-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-video-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 20px;
  background: #eef5ff;
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.contact-video-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.contact-video-card p:not(.section-tag) {
  max-width: 720px;
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-video-actions {
  flex-direction: column;
  margin-top: 0;
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-visit-grid article {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.contact-visit-grid article > i {
  color: var(--accent-orange);
  font-size: 1.35rem;
}

.contact-page-faq {
  padding-top: 0;
}

.contact-page-faq .faq-list {
  max-width: 860px;
  margin-inline: auto;
}

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

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

  .contact-video-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-video-actions {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .contact-page-hero {
    padding: 3rem 0;
  }

  .contact-page-copy {
    text-align: center;
  }

  .contact-page-actions,
  .contact-page-trust {
    justify-content: center;
  }

  .contact-page-actions .button,
  .contact-video-actions .button {
    width: 100%;
  }

  .contact-page-trust {
    display: grid;
    justify-content: stretch;
    text-align: left;
  }

  .contact-option-grid,
  .contact-visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-video-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-video-icon {
    margin-inline: auto;
  }

  .contact-video-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .contact-availability-row {
    grid-template-columns: 1fr;
  }

  .contact-availability-row strong {
    grid-column: 1;
    text-align: left;
  }
}

/* ==========================================================
   MOBILE RHYTHM REFINEMENTS
   Keeps desktop/tablet presentation intact while preventing
   stacked mobile sections and cards from doubling their space.
========================================================== */
@media (max-width: 600px) {
  /* Shared floating controls stay reachable without covering content. */
  .floating-actions {
    right: max(0.65rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    gap: 0.5rem;
  }

  .floating-action {
    width: 46px;
    height: 46px;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(18, 62, 138, 0.22);
  }

  /* Homepage: compact only the marked mobile transitions and card interiors. */
  main > #about.about-section,
  main > #services.services-section,
  main > #contact.contact-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  #services .services-home {
    gap: 1.25rem;
    margin-top: 0;
  }

  #services .highlight-card {
    margin-top: 0;
    padding: 1.5rem;
  }

  #services .highlight-icon {
    margin-inline: auto;
    margin-bottom: 1rem;
  }

  main > section.hospital-gallery-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  main > section.hospital-gallery-section .hospital-gallery-header {
    margin-bottom: 1.5rem;
  }

  main > section.video-consult-home {
    padding-top: 0;
    padding-bottom: 1.5rem;
  }

  #connect.social-connect-section {
    padding-top: 0;
    padding-bottom: 2.5rem;
  }

  /* About Doctor page. */
  .doctor-eyebrow {
    justify-content: center;
  }

  .doctor-section {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .doctor-section-tint + .doctor-section:not(.philosophy-section),
  .doctor-section:not(.philosophy-section) + .doctor-section-tint {
    padding-top: 1rem;
  }

  .expertise-card,
  .trust-grid article {
    padding: 1.35rem;
  }

  .expertise-card > i,
  .trust-grid i {
    margin-inline: auto;
    margin-bottom: 0.85rem;
  }

  .service-card .service-icon,
  .benefit-card > i,
  .contact-option-card > .contact-page-icon,
  .contact-visit-grid article > i {
    margin-inline: auto;
  }

  .benefit-card > i,
  .contact-visit-grid article > i {
    display: block;
    width: fit-content;
  }

  .doctor-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .video-consultation-strip {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* Services page. */
  .services-hero,
  .services-overview,
  .service-detail,
  .services-video {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .services-grid {
    margin-top: 2rem;
    margin-bottom: 0;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-icon {
    margin-bottom: 1rem;
  }

  .service-detail-grid,
  .service-detail-grid.reverse {
    gap: 1.5rem;
  }

  .service-box,
  .services-summary-card {
    max-width: none;
    margin-top: 0;
    padding: 1.5rem;
  }

  /* Video Consultation page. */
  .video-hero,
  .video-steps,
  .video-benefits,
  .video-instructions,
  .video-cta {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .video-hero-grid {
    gap: 1.5rem;
  }

  .video-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.75rem;
  }

  .video-highlights span {
    justify-content: center;
    min-width: 0;
    min-height: 64px;
    padding: 0.75rem;
    border-radius: 16px;
    text-align: center;
  }

  .video-summary-card {
    margin-top: 0;
    padding: 1.5rem;
    gap: 1rem;
  }

  .video-summary-card .summary-item,
  .step-card,
  .benefit-card,
  .instruction-item {
    padding: 1.5rem;
  }

  .steps-grid,
  .benefits-grid,
  .instruction-grid {
    margin-top: 2rem;
    gap: 1.25rem;
  }

  .page-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .page-nav-links {
    padding-bottom: 0.35rem;
  }

  .video-cta-card {
    padding: 2rem 1.25rem;
  }

  .consultation-info {
    margin: 2rem 0;
    gap: 1rem;
  }

  /* Contact page. */
  .contact-page-hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .contact-page-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .contact-page-heading {
    margin-bottom: 2rem;
  }

  .contact-option-grid,
  .contact-visit-grid {
    gap: 1.25rem;
  }

  .contact-option-card,
  .contact-visit-grid article {
    padding: 1.4rem;
  }

  .contact-location-grid {
    gap: 1.5rem;
  }

  .contact-address-card,
  .contact-map-card {
    padding: 1.5rem;
    overflow-wrap: anywhere;
  }

  .contact-video-section {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }

  .contact-video-card {
    gap: 1rem;
    padding: 1.5rem;
  }

  .contact-page-faq {
    padding-top: 0;
  }

  /* Facilities page. */
  .facilities-hero,
  .facilities-intro-section,
  .facilities-gallery-section,
  .facilities-cta-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .facilities-section-heading {
    margin-bottom: 2rem;
  }

  .facilities-gallery {
    gap: 1.25rem;
  }

  /* Shared mobile footer: keep safe-area clearance, reduce column gaps. */
  .site-footer .footer-inner {
    gap: 1.5rem;
  }

  .site-footer .footer-column,
  .site-footer .footer-nav,
  .site-footer .footer-contact {
    gap: 0.65rem;
  }

  .site-footer .footer-contact {
    align-items: center;
    text-align: center;
  }
}
