/* ═══════════════════════════════════════════════════
   DR ANDRÉ EL ZOGHBI — 2026 PREMIUM DESIGN SYSTEM
   ═══════════════════════════════════════════════════ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Palette */
  --gold:        #dab600;
  --gold-strong: #c1a100;
  --gold-glow:   rgba(218, 182, 0, 0.45);
  --gold-light:  rgba(218, 182, 0, 0.10);
  --teal:        #2a7d8c;
  --teal-light:  rgba(42, 125, 140, 0.08);
  --teal-glow:   rgba(42, 125, 140, 0.35);
  --dark:        #111114;
  --dark-card:   #19191c;
  --text:        #3a3a3f;
  --text-light:  #6b6b73;
  --muted:       #a1a1a8;
  --light:       #f7f5f0;
  --lighter:     #faf9f6;
  --border:      #e8e6e1;
  --white:       #ffffff;

  /* Shadows — layered for realism */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.06), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  --shadow-xl:   0 16px 48px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --shadow-glow-gold: 0 0 24px var(--gold-glow), 0 0 4px var(--gold-glow);
  --shadow-glow-teal: 0 0 24px var(--teal-glow), 0 0 4px var(--teal-glow);

  /* Radius — pill trend */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --pill:      100px;

  /* Motion — spring-eased */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --speed:     0.35s;
  --speed-fast:0.2s;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Rubik", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Spartan", system-ui, sans-serif;
  margin: 0 0 1rem;
  line-height: 1.2;
  color: var(--dark);
  letter-spacing: -0.02em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { padding-left: 1.2rem; }
p { margin: 0 0 1rem; }
.container { width: min(90%, 1200px); margin: 0 auto; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--lighter); }
::-webkit-scrollbar-thumb {
  background: var(--muted); border-radius: var(--pill);
  border: 2px solid var(--lighter);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 2000;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  width: 0%; transition: none;
  pointer-events: none;
}

/* ===== UTILITY ===== */
.lead {
  font-size: 1.12rem; line-height: 1.85; color: var(--text-light);
  max-width: 640px;
}
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--teal); margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem; border-radius: var(--pill);
  background: var(--teal-light); border: 1px solid rgba(42, 125, 140, 0.12);
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem; line-height: 1.15;
}
.section-title--light { color: var(--white); }
.text-center { text-align: center; }

/* ===== HEADER — Glassmorphism ===== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 230, 225, 0.6);
  transition: box-shadow var(--speed) var(--ease), background var(--speed) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1rem;
}
.brand__logo { height: 32px; width: auto; }

.nav-toggle { display: none; background: none; border: 0; padding: 6px; cursor: pointer; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); margin: 5px 0;
  border-radius: 2px; transition: var(--speed) var(--ease);
}

.nav__list { display: flex; gap: 0.1rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__item { position: relative; }
.nav__link, .nav__link--btn {
  border: 0; background: none; font: inherit; font-size: 0.85rem; font-weight: 500;
  color: var(--text-light); cursor: pointer; padding: 0.45rem 0.65rem;
  border-radius: var(--radius); transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.nav__link:hover, .nav__link--btn:hover,
.nav__link.is-active, .nav__link--btn.is-active {
  color: var(--dark); background: var(--gold-light);
}

.submenu {
  position: absolute; left: 50%; top: 100%; min-width: 260px;
  transform: translateX(-50%) translateY(8px);
  padding-top: 10px; /* invisible bridge — keeps hover active across the gap */
  background: transparent;
  list-style: none; margin: 0;
  opacity: 0; pointer-events: none;
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease);
  z-index: 20;
}
.submenu::before {
  content: ""; display: block;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.6rem;
  position: absolute; inset: 10px 0 0 0; /* start below the invisible bridge */
  pointer-events: none;
}
.submenu li { position: relative; z-index: 1; padding: 0 0.6rem; }
.submenu li:first-child { padding-top: 0.6rem; }
.submenu li:last-child { padding-bottom: 0.6rem; }
.submenu li a {
  display: block; padding: 0.6rem 1rem;
  color: var(--text-light); font-size: 0.88rem;
  border-radius: var(--radius);
  transition: color var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease);
}
.submenu li a:hover { color: var(--dark); background: var(--gold-light); }
.nav__item:hover .submenu, .nav__item.is-open .submenu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}

.portal-btn {
  display: inline-block; background: var(--dark); border: 1px solid var(--dark);
  color: var(--white); font-weight: 500; font-size: 0.82rem;
  padding: 0.4rem 0.9rem; border-radius: var(--pill);
  transition: var(--speed) var(--ease);
}
.portal-btn:hover { background: #2a2a30; transform: translateY(-1px); }

/* Header CTA — pill + glow */
.header-cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--gold); color: var(--white);
  font-weight: 600; font-size: 0.82rem;
  padding: 0.5rem 1.15rem; border-radius: var(--pill);
  transition: var(--speed) var(--ease);
  white-space: nowrap; box-shadow: var(--shadow-sm);
}
.header-cta:hover {
  background: var(--gold-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-gold);
}
.header-cta svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ===== BUTTONS — Pill shaped + glow ===== */
.btn {
  display: inline-block; border: 2px solid transparent;
  padding: 0.75rem 1.8rem; font-weight: 600; font-size: 0.92rem;
  border-radius: var(--pill); cursor: pointer;
  transition: all var(--speed) var(--ease);
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn--line { position: relative; padding-left: 2.6rem; }
.btn--line::before {
  content: ""; position: absolute; width: 18px; height: 2px;
  left: 16px; top: 50%; transform: translateY(-50%);
  background: currentColor; border-radius: 2px;
}
.btn--primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-strong); border-color: var(--gold-strong);
  box-shadow: var(--shadow-glow-gold);
}
.btn--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--dark:hover { background: #2a2a30; box-shadow: var(--shadow-lg); }
.btn--outline {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: var(--white); color: var(--dark);
  border-color: var(--white);
}
.btn--accent { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--accent:hover {
  background: #236a77; border-color: #236a77;
  box-shadow: var(--shadow-glow-teal);
}
.btn--lg { padding: 0.95rem 2.4rem; font-size: 1rem; }

/* ===== HERO CAROUSEL ===== */
.hero { position: relative; background: var(--dark); overflow: hidden; }
.hero__slider { position: relative; height: clamp(620px, 88vh, 1000px); }
.hero__slide {
  position: absolute; inset: 0;
  background-image: linear-gradient(160deg, rgba(17,17,20,0.72) 0%, rgba(17,17,20,0.18) 70%), var(--bg);
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__content {
  height: 100%; display: grid; align-content: center; justify-items: start;
  padding-left: clamp(0.5rem, 2vw, 2rem);
}
.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem); max-width: 780px;
  letter-spacing: -0.03em; margin-bottom: 0.8rem;
  line-height: 1.08;
  /* Gradient text — 2026 trend */
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  color: rgba(255, 255, 255, 0.82); font-size: 1.12rem;
  margin-bottom: 2rem; max-width: 560px; line-height: 1.75;
}
/* Hero navigation — bottom-centered arrows + dots, no overlap */
.hero__nav {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 1.4rem;
  z-index: 3;
}
.hero__arrow {
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white); cursor: pointer; font-size: 1rem;
  border-radius: 50%; transition: var(--speed) var(--ease);
  flex-shrink: 0;
}
.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  transform: scale(1.08);
}
.hero__dots {
  display: flex; align-items: center; gap: 10px;
}
.hero__dots button {
  width: 10px; height: 10px; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer; border-radius: 50%;
  padding: 0; transition: var(--speed) var(--ease);
}
.hero__dots button.is-active {
  background: var(--gold); border-color: var(--gold);
  box-shadow: 0 0 12px var(--gold-glow);
  transform: scale(1.25);
}
.hero__indicator {
  color: rgba(255, 255, 255, 0.45); font-size: 0.7rem;
  margin: 0; text-transform: lowercase; letter-spacing: 0.06em;
  white-space: nowrap;
}
.hero__scroll {
  position: absolute; right: 1.6rem; bottom: 2.4rem;
  color: rgba(255, 255, 255, 0.45); writing-mode: vertical-rl;
  letter-spacing: 0.08em; font-size: 0.68rem; text-transform: uppercase;
  text-decoration: none; transition: color var(--speed) var(--ease);
}
.hero__scroll:hover { color: var(--gold); }

/* Noise overlay for textured depth */
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
  mix-blend-mode: overlay;
}
.hero__content { position: relative; z-index: 2; }
.hero__scroll { z-index: 3; }

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 5.5rem 0;
  background: var(--white);
  position: relative;
}
.trust-bar__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.trust-item {
  text-align: center; padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--lighter);
  border: 1px solid var(--border);
  transition: var(--speed) var(--ease);
}
.trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.trust-item__icon {
  width: 60px; height: 60px; margin: 0 auto 1.4rem;
  background: linear-gradient(135deg, var(--gold-light), rgba(218, 182, 0, 0.18));
  border-radius: var(--radius-lg); display: grid; place-items: center;
}
.trust-item__icon svg { width: 26px; height: 26px; fill: var(--gold-strong); }
.trust-item__number {
  font-family: "Spartan", sans-serif; font-size: 2.6rem;
  font-weight: 700; color: var(--dark); line-height: 1;
  margin-bottom: 0.4rem; letter-spacing: -0.03em;
}
.trust-item h4 {
  font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark);
}
.trust-item p {
  font-size: 0.9rem; color: var(--text-light);
  line-height: 1.65; max-width: 300px; margin: 0 auto;
}

/* ===== DOCTOR INTRO ===== */
.doctor-intro {
  padding: 6rem 0;
  background: var(--light);
}
.doctor-intro__grid {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 4rem; align-items: center;
}
.doctor-intro__photo {
  width: 100%; border-radius: var(--radius-xl);
  aspect-ratio: 3 / 4; object-fit: cover;
  box-shadow: var(--shadow-xl);
  transition: transform 0.6s var(--ease-out);
}
.doctor-intro__photo:hover { transform: scale(1.03); }
.doctor-intro__content .section-title { margin-bottom: 1.4rem; }
.doctor-intro__content p {
  font-size: 1.02rem; color: var(--text-light);
  margin-bottom: 1.1rem; max-width: 560px;
}
.doctor-intro__content .btn { margin-top: 0.8rem; }

/* ===== TREATMENT GRID ===== */
.treatments {
  padding: 6rem 0;
  background: var(--white);
}
.treatments__header {
  text-align: center; margin-bottom: 3.5rem;
}
.treatments__header .lead { margin: 0 auto; }
.treatments__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Treatment card — gradient-border hover glow */
.treatment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.2rem 1.6rem;
  text-align: center;
  transition: all var(--speed) var(--ease);
  position: relative; overflow: hidden;
}
.treatment-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transition: transform var(--speed) var(--ease); transform-origin: left;
}
.treatment-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.treatment-card:hover::before { transform: scaleX(1); }
.treatment-card__icon {
  width: 68px; height: 68px; margin: 0 auto 1.4rem;
  background: linear-gradient(135deg, var(--teal-light), rgba(42, 125, 140, 0.14));
  border-radius: var(--radius-lg); display: grid; place-items: center;
  transition: var(--speed) var(--ease);
}
.treatment-card:hover .treatment-card__icon {
  background: linear-gradient(135deg, rgba(42, 125, 140, 0.18), rgba(42, 125, 140, 0.25));
  transform: scale(1.08);
}
.treatment-card__icon svg { width: 28px; height: 28px; fill: var(--teal); }
.treatment-card h3 { font-size: 1.08rem; margin-bottom: 0.7rem; }
.treatment-card p {
  font-size: 0.9rem; color: var(--text-light);
  line-height: 1.65; margin-bottom: 1.1rem;
}
.treatment-card__link {
  font-size: 0.85rem; font-weight: 600;
  color: var(--teal); display: inline-flex;
  align-items: center; gap: 0.35rem;
  transition: gap var(--speed) var(--ease), color var(--speed) var(--ease);
}
.treatment-card:hover .treatment-card__link { gap: 0.7rem; color: #1d6a76; }
.treatment-card__link svg { width: 14px; height: 14px; fill: currentColor; }

/* ===== SERVICES (2-col CTA blocks) ===== */
.services { padding: 0; }
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.service-card {
  text-align: center; padding: clamp(3.5rem, 7vw, 6rem) 2rem;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0); transition: var(--speed) var(--ease);
}
.service-card:hover::after { background: rgba(0, 0, 0, 0.08); }
.service-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  position: relative; z-index: 1;
  background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-card p {
  color: rgba(255, 255, 255, 0.82); max-width: 480px;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
}
.service-card .btn { position: relative; z-index: 1; }
.service-card--primary { background: var(--gold); }
.service-card--dark { background: var(--dark); }

/* ===== CTA BANNER — gradient + noise ===== */
.cta-banner {
  padding: 5.5rem 0;
  background: linear-gradient(160deg, var(--dark) 0%, #1e1e24 50%, #2a2a32 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none; mix-blend-mode: overlay;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 0.9rem;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.6); font-size: 1.06rem;
  margin-bottom: 2.2rem; max-width: 540px; margin-left: auto; margin-right: auto;
}
.cta-banner__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: var(--dark); color: var(--white);
  padding: 4.5rem 0 4rem; position: relative; overflow: hidden;
}
.page-hero--has-bg {
  padding: 5.5rem 0 5rem;
  background-size: cover; background-position: center;
}
.page-hero--has-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(17,17,20,0.85) 0%, rgba(17,17,20,0.45) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 0.5rem; color: var(--white);
  letter-spacing: -0.02em;
}
.breadcrumb {
  color: rgba(255, 255, 255, 0.5); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.5); transition: color var(--speed) var(--ease); }
.breadcrumb a:hover { color: var(--gold); }

/* ===== INNER PAGE CONTENT ===== */
.page-content { padding: 4rem 0 5rem; }
.page-content--alt { background: var(--light); }

.content-grid {
  display: grid; grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 2.5rem; align-items: start;
}

/* Card — layered shadow + glow border hover */
.card {
  border: 1px solid var(--border); padding: 2rem 2.2rem;
  background: var(--white); border-radius: var(--radius-xl);
  transition: all var(--speed) var(--ease);
  box-shadow: var(--shadow-xs);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(218, 182, 0, 0.2);
}
.card h3 {
  font-size: 1.1rem; margin-bottom: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--dark);
}
.card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.card p { margin: 0 0 1rem; font-size: 0.97rem; line-height: 1.8; color: var(--text); }
.card ul { margin: 0 0 1.2rem; font-size: 0.95rem; }
.card li { margin-bottom: 0.5rem; line-height: 1.7; }

.card--sticky { position: sticky; top: 92px; }

/* ===== CONTACT FORM — Modern rounded inputs ===== */
.contact-form {
  border: 1px solid var(--border); padding: 2rem 2.2rem;
  border-radius: var(--radius-xl); background: var(--white);
  box-shadow: var(--shadow-xs);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.contact-form label {
  display: block; margin-bottom: 0.5rem;
  font-weight: 600; font-size: 0.88rem; color: var(--dark);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  padding: 0.75rem 1rem; font: inherit; font-size: 0.95rem;
  background: var(--lighter); border-radius: var(--radius);
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease), background var(--speed) var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px var(--gold-light), var(--shadow-sm);
}
.contact-form input.is-invalid,
.contact-form textarea.is-invalid { border-color: #d92d20; }
.form-status { min-height: 1.2rem; margin: 0.8rem 0 0; font-size: 0.88rem; }
.form-status.is-success { color: #067647; }
.form-status.is-error { color: #d92d20; }

/* ===== MAP ===== */
.map-embed {
  border-radius: var(--radius-xl); overflow: hidden;
  margin-top: 1.2rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ===== FOOTER — Gradient dark ===== */
.site-footer {
  background: linear-gradient(180deg, var(--dark) 0%, #0c0c0e 100%);
  color: var(--muted); padding-top: 5rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand { margin-bottom: 1.2rem; }
.footer__brand img { height: 30px; margin-bottom: 1rem; filter: brightness(10); }
.footer__tagline {
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.65; max-width: 260px; margin-bottom: 1.4rem;
}
.footer__socials { display: flex; gap: 0.7rem; }
.footer__socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius); display: grid; place-items: center;
  transition: var(--speed) var(--ease);
  background: rgba(255, 255, 255, 0.03);
}
.footer__socials a:hover {
  background: var(--gold); border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}
.footer__socials svg { width: 16px; height: 16px; fill: var(--muted); }
.footer__socials a:hover svg { fill: var(--white); }

.site-footer h4 {
  color: var(--white); margin-bottom: 1.4rem;
  font-size: 0.88rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6rem; font-size: 0.88rem; }
.site-footer a {
  transition: color var(--speed) var(--ease);
}
.site-footer a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin-bottom: 0.75rem; font-size: 0.88rem;
}
.footer__contact-item svg {
  width: 16px; height: 16px; fill: var(--gold);
  flex-shrink: 0; margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem; padding: 1.2rem 0;
  font-size: 0.82rem; text-align: center;
}

/* ===== MOBILE CTA BAR ===== */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 1050; display: grid; grid-template-columns: 1fr 1fr;
  text-align: center;
  opacity: 0; visibility: hidden; transform: translateY(100%);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.mobile-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-cta a {
  padding: 0.9rem 0.5rem; color: var(--white);
  font-size: 0.92rem; font-weight: 600;
}
.mobile-cta a:first-child { background: var(--teal); }
.mobile-cta a:last-child { background: var(--gold); }

@media (min-width: 992px) {
  .mobile-cta { display: none !important; }
}

/* ===== ANIMATIONS — Spring motion ===== */
.reveal-on-scroll {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }

/* Stagger */
.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }

/* ===== FAQ ACCORDION ===== */
.faq-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 0.85rem; overflow: hidden;
  transition: all var(--speed) var(--ease);
  background: var(--white);
}
.faq-item:hover { border-color: rgba(218, 182, 0, 0.25); }
.faq-item.is-open {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-light), var(--shadow-sm);
}
.faq-question {
  width: 100%; background: none; border: 0; padding: 1.15rem 1.5rem;
  font: inherit; font-size: 0.98rem; font-weight: 600;
  color: var(--dark); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  transition: background var(--speed) var(--ease);
}
.faq-question:hover { background: var(--lighter); }
.faq-question::after {
  content: "+"; font-size: 1.4rem; font-weight: 400;
  color: var(--muted); transition: transform var(--speed) var(--ease), color var(--speed) var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-question::after {
  content: "\2212"; color: var(--gold); transform: rotate(180deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer p, .faq-answer__inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.95rem; color: var(--text-light); line-height: 1.8;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 991px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    display: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
  .nav.is-open { display: block; }
  .nav__list { display: block; padding: 0.6rem 1.4rem 1.2rem; }
  .nav__item { border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  .nav__item--portal { border-bottom: 0; padding-top: 0.8rem; }
  .nav__link, .nav__link--btn { width: 100%; text-align: left; padding: 0.9rem 0; border-radius: 0; }
  .submenu {
    position: static; box-shadow: none; opacity: 1; pointer-events: auto;
    transform: none; display: none; min-width: 0;
    background: var(--lighter); padding: 0.3rem 0; border-radius: var(--radius);
    border: none; backdrop-filter: none; -webkit-backdrop-filter: none;
  }
  .nav__item.is-open .submenu { display: block; }

  .header-cta { display: none; }
  .trust-bar__grid { grid-template-columns: 1fr; gap: 1rem; }
  .doctor-intro__grid { grid-template-columns: 1fr; text-align: center; }
  .doctor-intro__photo { max-width: 280px; margin: 0 auto; }
  .doctor-intro__content p { margin-left: auto; margin-right: auto; }
  .treatments__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid, .footer__grid, .content-grid { grid-template-columns: 1fr; }
  .footer__grid { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  body { padding-bottom: 54px; }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 767px) {
  .header__inner { min-height: 64px; }
  .brand__logo { height: 26px; }
  .hero__slider { height: 560px; }
  .hero__arrow { width: 36px; height: 36px; font-size: 0.85rem; }
  .hero__nav { gap: 0.8rem; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .treatments__grid { grid-template-columns: 1fr; }
  .trust-bar { padding: 3rem 0; }
  .trust-item { padding: 1.5rem 1rem; }
  .doctor-intro { padding: 3.5rem 0; }
  .treatments { padding: 3.5rem 0; }
  .cta-banner { padding: 3.5rem 0; }
  .card { padding: 1.5rem 1.3rem; }
  .contact-form { padding: 1.5rem 1.3rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .page-content { padding: 2.5rem 0 3.5rem; }
  .services__grid { grid-template-columns: 1fr; }
}
