*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #66b5e3;
  --navy-mid: #66b5e3;
  --navy-light: #66b5e3;
  --steel: #2e5fa3;
  --steel-light: #4a7bc8;
  --gold: #b8882a;
  --gold-light: #d4a84b;
  --gold-pale: #fdf3dc;
  --off-white: #f7f6f2;
  --white: #ffffff;
  --text-dark: #0b1f3a;
  --text-mid: #3a5275;
  --text-muted: #6b7f9b;
  --border: #d8e2ef;
  --header-offset: 110px;
  --brand-cyan: #35c4db;
  --brand-green: #a1d96a;
  --brand-blue-deep: #0f5d96;
  --brand-blue-soft: #1f9ccf;
  --why-surface-a: #eef9fc;
  --why-surface-b: #dff4f9;
  --why-surface-c: #e9f6e5;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--header-offset);
}

img,
svg {
  max-width: 100%;
}

/* ── TOP BAR ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: var(--white);
}

section[id] {
  scroll-margin-top: calc(var(--header-offset) + 10px);
}
.topbar {
  background: linear-gradient(
    90deg,
    var(--brand-blue-deep) 0%,
    var(--brand-blue-soft) 65%,
    var(--brand-cyan) 100%
  );
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .inner {
  max-width: 1140px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
}
.topbar a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.topbar a:hover {
  color: black;
}

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
nav .inner {
  max-width: 1140px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.logo-text img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.logo-text span {
  display: block;
  font-size: 11px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--navy);
}
.btn-appt {
  background: #47bbbc;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-appt:hover {
  background: var(--navy-light) !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(
    135deg,
    var(--brand-blue-deep) 0%,
    var(--brand-blue-soft) 58%,
    var(--brand-cyan) 84%,
    var(--brand-green) 100%
  );
  color: var(--white);
  padding: 90px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 60px solid rgba(180, 140, 42, 0.08);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.04);
}
.hero .inner {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--white);
}
.hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: #47bbbc;
  color: white!important;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white) !important;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 36px;
}
.hero-photo-card {
  padding: 0;
  border: 0;
  background: transparent;
}
.hero-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-doctor-image {
  display: block;
}
.hero-doctor-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  display: block;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 16px 8px;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
}

/* ── HIGHLIGHTS STRIP ── */
.highlights {
  background: var(--off-white);
  padding: 28px 24px;
  border-bottom: 1px solid var(--border);
}
.highlights .inner {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.hi-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hi-icon svg {
  fill: var(--gold-light);
}

/* ── ABOUT ── */
.about {
  padding: 90px 24px;
}
.about .inner {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}
.about p {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.qual-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qual-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.qual-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.about-visual {
  position: relative;
}
.about-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    155deg,
    var(--brand-blue-deep) 0%,
    var(--brand-blue-soft) 42%,
    var(--brand-cyan) 82%,
    rgba(161, 217, 106, 0.45) 100%
  );
  border-radius: 16px;
  padding: 48px 40px;
  color: var(--white);
  box-shadow:
    0 28px 56px rgba(15, 93, 150, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 90% 55% at 100% 0%,
    rgba(255, 255, 255, 0.22) 0%,
    transparent 52%
  );
  pointer-events: none;
  z-index: 0;
}
.about-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -80px;
  background: radial-gradient(
    circle,
    rgba(161, 217, 106, 0.35) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
.about-card > * {
  position: relative;
  z-index: 1;
}
.about-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
  text-shadow: 0 2px 18px rgba(0, 28, 56, 0.18);
  letter-spacing: 0.02em;
}
.about-card-deg {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.93);
  line-height: 1.65;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 0;
}
.exp-item {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-left: 3px solid var(--brand-green);
}
.exp-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(8, 48, 88, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
}
.exp-item-title {
  color: #fef9c3;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.exp-item-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.45;
}
.gold-bar {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--brand-green) 0%,
    var(--brand-cyan) 100%
  );
  border-radius: 14px;
  opacity: 0.85;
  z-index: -1;
  box-shadow: 0 12px 28px rgba(31, 156, 207, 0.25);
}

/* ── SERVICES ── */
.services {
  background: var(--off-white);
  padding: 90px 24px;
}
.services .inner {
  max-width: 1140px;
  margin: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--steel);
  transform: translateY(-3px);
}
.service-icon {
  width: 50px;
  height: 50px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  fill: var(--gold);
}
.service-icon i {
  color: var(--gold);
  font-size: 22px;
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── WHY CHOOSE ── */
.why {
  position: relative;
  padding: 90px 24px;
  overflow: hidden;
  background: linear-gradient(
    125deg,
    var(--why-surface-a) 0%,
    var(--why-surface-b) 48%,
    var(--why-surface-c) 100%
  );
  color: var(--text-dark);
}
.why::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(
    ellipse at center,
    rgba(53, 196, 219, 0.22) 0%,
    transparent 62%
  );
  pointer-events: none;
}
.why::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -10%;
  width: 45%;
  height: 90%;
  background: radial-gradient(
    ellipse at center,
    rgba(161, 217, 106, 0.28) 0%,
    transparent 58%
  );
  pointer-events: none;
}
.why .inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why .section-label {
  color: var(--gold);
}
.why .section-title {
  color: var(--brand-blue-deep);
}
.why p {
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.75;
}
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.55;
  padding: 12px 14px;
  margin-left: -14px;
  margin-right: -14px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.why-list li:hover {
  background: rgba(255, 255, 255, 0.65);
}
.check-circle {
  width: 26px;
  height: 26px;
  background: rgba(31, 156, 207, 0.12);
  border: 1px solid rgba(31, 156, 207, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 8px rgba(15, 93, 150, 0.08);
}
.check-circle svg {
  fill: var(--brand-blue-deep);
}
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 156, 207, 0.14);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow:
    0 16px 36px rgba(15, 93, 150, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border-top: 3px solid var(--brand-cyan);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 44px rgba(15, 93, 150, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(53, 196, 219, 0.35);
}
.why-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--brand-blue-deep) 0%,
    var(--brand-blue-soft) 55%,
    var(--brand-cyan) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not (background-clip: text) {
  .why-card-num {
    color: var(--brand-blue-deep);
    background: none;
  }
}
.why-card-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.45;
}

/* ── FAQ ── */
.faq {
  padding: 90px 24px;
}
.faq .inner {
  max-width: 820px;
  margin: auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.faq-q {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-a {
  display: none;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
}
.faq-item.active .faq-a {
  display: block;
}
.faq-item.active .faq-q::after {
  content: "-";
}

/* ── APPOINTMENT ── */
.appt {
  background: var(--off-white);
  padding: 90px 24px;
}
.appt .inner {
  max-width: 1140px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.appt h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}
.appt p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}
.appt-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-dark {
  background: #47bbbc;
  color: var(--white) !important;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.btn-gold {
  background:#47bbbc;
  color: white !important;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-mid);
}
.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  fill: var(--gold-light);
}
.contact-row strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-row a {
  color: var(--text-mid);
  text-decoration: none;
}

/* ── FOOTER ── */
footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--brand-blue-deep) 0%,
    var(--brand-blue-soft) 52%,
    var(--brand-cyan) 100%
  );
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 24px 28px;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 0%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 55%
  );
  pointer-events: none;
}
footer .inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 1.55fr) minmax(0, 1fr) minmax(0, 1fr) minmax(
      0,
      1.2fr
    );
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-bottom: 44px;
}
.footer-about {
  padding-right: clamp(0px, 2vw, 24px);
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
}
.footer-logo img {
  display: block;
  height: 94px;
  width: auto;
  max-width: min(280px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0, 28, 56, 0.18));
}
.footer-logo span {
  display: block;
  font-size: 11px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 15px;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.88);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-col a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  padding: 6px 0;
  margin-left: 0;
  border-radius: 0;
}
.footer-col:not(.footer-col-contact):not(.footer-col-location) a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-col-contact a,
.footer-col-location a {
  align-items: flex-start;
  padding: 8px 0;
  margin-left: 0;
  max-width: 100%;
}
.footer-col-contact a:hover,
.footer-col-location a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-col-contact a span,
.footer-col-location a span {
  flex: 1;
  min-width: 0;
}
.footer-map {
  margin-bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 24px rgba(0, 28, 56, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}
.footer-col a i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}
.footer-hours {
  display: inline-flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  margin-left: 0;
  border-radius: 0;
}
.footer-hours > .fa {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  margin: 0 4px;
  transition: color 0.2s ease;
}
.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  :root {
    --header-offset: 128px;
  }
  .topbar .inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    text-align: center;
  }
  nav .inner {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 64px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    width: 100%;
    gap: 0;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a {
    border-bottom: 0;
  }
  .nav-links .btn-appt {
    border-radius: 0;
    text-align: center;
  }
  .hero .inner,
  .about .inner,
  .why .inner,
  .appt .inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero h1 {
    font-size: 40px;
    word-break: break-word;
  }
  .hero-tagline {
    letter-spacing: 2px;
  }
  .hero-doctor-image img {
    height: 420px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .highlights .inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-about {
    padding-right: 0;
  }
  .footer-tagline {
    max-width: none;
  }
}
@media (max-width: 600px) {
  :root {
    --header-offset: 112px;
  }
  .topbar .inner,
  nav .inner,
  .hero .inner,
  .highlights .inner,
  .about .inner,
  .services .inner,
  .why .inner,
  .faq .inner,
  .appt .inner,
  footer .inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero {
    padding: 64px 16px 56px;
  }
  .about,
  .services,
  .why,
  .faq,
  .appt,
  footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .topbar {
    font-size: 12px;
  }
  .topbar a {
    overflow-wrap: anywhere;
  }
  .logo-text img {
    height: 46px;
  }
  nav .inner {
    padding-left: 0;
    padding-right: 0;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .hero-tagline {
    font-size: 11px;
    letter-spacing: 1.4px;
  }
  .badge {
    font-size: 11px;
    padding: 5px 10px;
  }
  .hero p {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-cta a,
  .appt-actions a {
    width: 100%;
    text-align: center;
  }
  .hero-doctor-image img {
    height: 380px;
    object-position: center 8%;
  }
  .section-title,
  .appt h2 {
    font-size: 30px;
    line-height: 1.15;
  }
  .faq .section-title {
    font-size: 30px !important;
  }
  .about-card {
    padding: 28px 22px;
  }
  .about-card-name {
    font-size: 28px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .contact-row {
    font-size: 14px;
    word-break: break-word;
  }
  .footer-col a {
    word-break: break-word;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .highlights .inner {
    grid-template-columns: 1fr;
  }
  .highlight-item span {
    overflow-wrap: anywhere;
  }
  .why-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .topbar .inner {
    gap: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero,
  .about,
  .services,
  .why,
  .faq,
  .appt,
  footer {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero {
    padding-top: 52px;
    padding-bottom: 46px;
  }
  .hero h1 {
    font-size: 27px;
  }
  .btn-primary,
  .btn-outline,
  .btn-dark,
  .btn-gold {
    padding: 12px 16px;
    font-size: 14px;
  }
  .hero-doctor-image img {
    height: 340px;
    object-position: center 6%;
  }
  .about-card {
    padding: 24px 16px;
  }
  .about-card-name {
    font-size: 24px;
  }
  .section-title,
  .appt h2,
  .faq .section-title {
    font-size: 27px !important;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 24px;
  }
  .hero p,
  .about p,
  .why p,
  .appt p,
  .faq-a {
    font-size: 13px;
  }
  .badge {
    font-size: 10px;
  }
}
