/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:   #0A0F1E;
  --navy2:  #111827;
  --card:   #141B2D;
  --slate:  #1E2A4A;
  --gold:   #C9A84C;
  --gold-light: #E2C97E;
  --teal:   #2DD4BF;
  --cream:  #F0EDE8;
  --muted:  #8B96AA;
  --white:  #FFFFFF;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-mono:    'Space Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4rem;
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  transition: padding .3s;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
}
.nav-logo-icon {
  width: 36px; height: 36px;
}
.nav-logo-text { font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: .02em; }
.nav-logo-text span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--ff-mono);
  font-size: .74rem; font-weight: 400; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--ff-mono);
  background: var(--gold); color: var(--navy);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .65rem 1.6rem;
  border-radius: 2px; transition: background .2s, transform .1s;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding: 0 4rem 6rem;
  overflow: hidden;
}
/* Real photography, duotone-treated to match brand palette */
.hero-photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.15) brightness(.55) sepia(.25) hue-rotate(155deg) saturate(2.2);
  opacity: .5;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10,15,30,.98) 0%, rgba(10,15,30,.88) 38%, rgba(10,15,30,.55) 62%, rgba(10,15,30,.85) 100%),
    radial-gradient(ellipse 60% 80% at 70% 20%, rgba(45, 212, 191, .08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 90%, rgba(201, 168, 76, .1) 0%, transparent 55%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  font-family: var(--ff-mono);
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .68rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.4);
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.8;
  max-width: 480px; margin-bottom: 3rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-primary {
  font-family: var(--ff-mono);
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gold); color: var(--navy);
  font-size: .76rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 1rem 2rem;
  border-radius: 2px; transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(201,168,76,.4);
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.25);
}
.btn-secondary {
  font-family: var(--ff-mono);
  display: inline-flex; align-items: center; gap: .6rem;
  border: 1px solid rgba(201,168,76,.35); color: var(--cream);
  font-size: .76rem; font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase; padding: 1rem 2rem;
  border-radius: 2px; transition: border-color .2s, color .2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll-hint {
  font-family: var(--ff-mono);
  position: absolute; bottom: 2.5rem; right: 4rem;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .75rem;
  z-index: 2;
}
.hero-scroll-hint::before {
  content: ''; display: block; width: 1px; height: 50px;
  background: linear-gradient(to top, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.5); transform-origin: bottom; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--slate);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  padding: 2.5rem 4rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--gold);
  display: block; line-height: 1;
  margin-bottom: .35rem;
}
.stat-label {
  font-family: var(--ff-mono);
  font-size: .66rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.stat-item:not(:last-child) {
  border-right: 1px solid rgba(201,168,76,.12);
}

/* ===== SECTION COMMON ===== */
section { padding: 7rem 4rem; position: relative; }
.section-eyebrow {
  font-family: var(--ff-mono);
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .64rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-eyebrow::before {
  content: ''; display: block; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: .95rem; color: var(--muted); line-height: 1.85;
  max-width: 520px; font-weight: 300;
}

/* ===== ABOUT ===== */
.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-main {
  background: var(--card);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; z-index: 3;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
/* Photo-backed variant of the about card */
.about-card-photo { padding: 0; min-height: 480px; display: flex; align-items: flex-end; }
.about-card-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(.5) sepia(.2) hue-rotate(155deg) saturate(2);
}
.about-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,15,30,.15) 0%, rgba(10,15,30,.75) 55%, rgba(10,15,30,.97) 100%);
}
.about-card-inner { position: relative; z-index: 2; padding: 2.5rem; width: 100%; }
.about-card-main .card-icon {
  width: 56px; height: 56px; margin-bottom: 1.5rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.about-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1.3rem; line-height: 1.5; color: var(--cream);
  margin-bottom: 1.5rem;
}
.about-quote-attr {
  font-family: var(--ff-mono);
  font-size: .68rem; font-weight: 400; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold);
}
.about-card-facts {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,.15);
  display: flex; flex-direction: column; gap: .6rem;
}
.about-card-fact { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: var(--cream); }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--navy);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 700; line-height: 1.2; text-align: center; font-size: .75rem;
  box-shadow: 0 0 40px rgba(201,168,76,.3);
  z-index: 3;
}
.about-badge strong { font-family: var(--ff-display); font-size: 1.6rem; display: block; }
.about-text { }
.about-features {
  margin-top: 2.5rem; display: flex; flex-direction: column; gap: .9rem;
}
.about-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(201,168,76,.04);
  border-left: 2px solid rgba(201,168,76,.3);
  border-radius: 0 2px 2px 0;
  transition: background .2s, border-color .2s;
}
.about-feature:hover { background: rgba(201,168,76,.08); border-color: var(--gold); }
.about-feature-icon { flex-shrink: 0; margin-top: .1rem; }
.about-feature-title { font-size: .85rem; font-weight: 600; margin-bottom: .2rem; color: var(--cream); }
.about-feature-desc { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ===== SERVICES ===== */
.services-section { background: var(--navy2); overflow: hidden; }
/* Thin duotone photo band as a section signature divider */
.services-photo-band {
  position: absolute; top: 0; left: 0; right: 0; height: 220px;
  overflow: hidden; z-index: 0;
}
.services-photo-band img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  filter: grayscale(1) contrast(1.2) brightness(.35) sepia(.2) hue-rotate(155deg) saturate(2.4);
  opacity: .55;
}
.services-photo-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,.2) 0%, var(--navy2) 92%);
}
.services-header, .services-grid { position: relative; z-index: 1; }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: end; margin-bottom: 4rem;
  padding-top: 6rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 4px; overflow: hidden;
}
.service-item {
  background: var(--card);
  padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  cursor: default;
  transition: background .3s;
}
.service-item::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 0;
  background: linear-gradient(to top, rgba(201,168,76,.08), transparent);
  transition: height .4s ease;
}
.service-item:hover { background: #192033; }
.service-item:hover::after { height: 100%; }
.service-num {
  font-family: var(--ff-mono);
  font-size: 1.9rem; font-weight: 700;
  color: rgba(201,168,76,.16);
  line-height: 1; margin-bottom: 1rem;
  transition: color .3s;
}
.service-item:hover .service-num { color: rgba(201,168,76,.3); }
.service-icon-wrap {
  width: 44px; height: 44px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.service-name {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600;
  margin-bottom: .6rem; color: var(--cream);
  transition: color .3s;
}
.service-item:hover .service-name { color: var(--gold-light); }
.service-desc { font-size: .78rem; color: var(--muted); line-height: 1.7; }
.service-arrow {
  position: absolute; top: 1.75rem; right: 1.75rem;
  color: var(--gold); opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity .3s, transform .3s;
}
.service-item:hover .service-arrow { opacity: 1; transform: translate(0, 0); }

/* ===== DOCTORS ===== */
.doctors-section { }
.doctors-layout {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem;
  align-items: start; margin-top: 4rem;
}
.doctor-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 4px; overflow: hidden;
  position: sticky; top: 100px;
}
.doctor-card-top {
  background: linear-gradient(135deg, var(--slate), #1a2440);
  padding: 2.5rem; text-align: center;
  border-bottom: 1px solid rgba(201,168,76,.1);
  position: relative;
}
.doctor-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 2.2rem; font-weight: 700;
  color: var(--navy);
  position: relative; z-index: 1;
  box-shadow: 0 0 0 4px rgba(201,168,76,.2), 0 0 30px rgba(201,168,76,.15);
}
.doctor-name {
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600;
  margin-bottom: .25rem;
}
.doctor-title { font-family: var(--ff-mono); font-size: .7rem; color: var(--gold); letter-spacing: .08em;
  text-transform: uppercase; }
.doctor-creds {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem;
  margin-top: 1rem;
}
.cred-badge {
  font-family: var(--ff-mono);
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  color: var(--gold-light); font-size: .62rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 50px;
}
.doctor-card-body { padding: 1.75rem 2rem; }
.doctor-stat-row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: rgba(201,168,76,.1);
  border-radius: 2px; overflow: hidden; margin-bottom: 1.5rem;
}
.doctor-stat {
  background: var(--card); padding: 1rem .5rem; text-align: center;
}
.doctor-stat-n {
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700;
  color: var(--teal); display: block; line-height: 1;
}
.doctor-stat-l {
  font-family: var(--ff-mono);
  font-size: .58rem; color: var(--muted); letter-spacing: .06em;
  text-transform: uppercase; margin-top: .3rem; display: block;
}
.pmdc-badge {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(45,212,191,.06); border: 1px solid rgba(45,212,191,.2);
  border-radius: 2px; padding: .9rem 1rem; margin-top: .5rem;
}
.pmdc-badge-text { font-size: .75rem; color: var(--teal); font-weight: 500; }
.pmdc-badge-sub { font-size: .65rem; color: var(--muted); }
/* Timeline / expertise list */
.expertise-list { display: flex; flex-direction: column; gap: 1.5rem; }
.expertise-item {
  padding: 1.5rem 2rem;
  background: var(--card);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 4px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 1.25rem; align-items: center;
  transition: border-color .25s, transform .2s;
}
.expertise-item:hover { border-color: rgba(201,168,76,.35); transform: translateX(4px); }
.expertise-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,168,76,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.expertise-name { font-size: .95rem; font-weight: 600; color: var(--cream); margin-bottom: .25rem; }
.expertise-desc { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.expertise-badge {
  font-family: var(--ff-mono);
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.15);
  color: var(--gold); font-size: .58rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 50px; white-space: nowrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--navy2); }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: .75rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: 4px; padding: 2rem;
  position: relative; transition: border-color .25s, transform .2s;
}
.testimonial-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.testimonial-card.featured {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--slate), #192240);
  border-color: rgba(201,168,76,.3);
}
.testimonial-quote-mark {
  font-family: var(--ff-display); font-size: 4rem; line-height: .8;
  color: rgba(201,168,76,.2); margin-bottom: .75rem; display: block;
}
.testimonial-text { font-size: .88rem; color: var(--cream); line-height: 1.8;
  margin-bottom: 1.5rem; font-style: italic; }
.testimonial-footer { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; color: var(--navy); flex-shrink: 0;
}
.testimonial-name { font-size: .82rem; font-weight: 600; color: var(--cream); }
.testimonial-meta { font-family: var(--ff-mono); font-size: .64rem; color: var(--muted); }
.google-strip {
  margin-top: 3rem; display: flex; align-items: center;
  justify-content: center; gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: rgba(201,168,76,.04); border: 1px solid rgba(201,168,76,.12);
  border-radius: 4px;
}
.google-strip-rating {
  font-family: var(--ff-display); font-size: 2.5rem; font-weight: 700; color: var(--gold);
}
.google-strip-text { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.google-strip-text strong { color: var(--cream); }

/* ===== BRANCHES ===== */
.branches-section { }
.branches-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 4rem;
}
.branch-card {
  background: var(--card);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 4px; overflow: hidden;
  transition: border-color .25s;
}
.branch-card:hover { border-color: var(--gold); }
.branch-card-header {
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--slate), #192240);
  border-bottom: 1px solid rgba(201,168,76,.1);
  display: flex; align-items: center; gap: 1rem;
}
.branch-num {
  font-family: var(--ff-mono); font-size: 1.9rem; font-weight: 700;
  color: rgba(201,168,76,.25); line-height: 1; flex-shrink: 0;
}
.branch-name { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; }
.branch-type { font-family: var(--ff-mono); font-size: .66rem; color: var(--gold); letter-spacing: .08em;
  text-transform: uppercase; margin-top: .2rem; }
.branch-card-body { padding: 1.75rem 2rem; }
.branch-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1rem; font-size: .85rem; color: var(--muted);
}
.branch-detail:last-child { margin-bottom: 0; }
.branch-detail strong { color: var(--cream); display: block; margin-bottom: .2rem; }
.branch-icon { flex-shrink: 0; margin-top: .15rem; color: var(--gold); }
.branch-cta {
  font-family: var(--ff-mono);
  display: block; text-align: center; margin-top: 1.5rem;
  padding: .85rem; border: 1px solid rgba(201,168,76,.3);
  border-radius: 2px; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
  transition: background .2s, color .2s;
}
.branch-cta:hover { background: var(--gold); color: var(--navy); }

/* ===== CONTACT / CTA ===== */
.cta-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--slate) 0%, #0d1830 100%);
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  text-align: center; padding: 7rem 4rem;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.08), transparent 70%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700; line-height: 1.08;
  margin-bottom: 1.25rem;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-sub { font-size: .95rem; color: var(--muted); font-weight: 300;
  margin-bottom: 3rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
.btn-whatsapp {
  font-family: var(--ff-mono);
  display: inline-flex; align-items: center; gap: .75rem;
  background: #25D366; color: #fff;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 1rem 2rem;
  border-radius: 2px; transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-whatsapp:hover {
  background: #22c35d; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.3);
}
.cta-contact-strip {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 3.5rem; flex-wrap: wrap;
}
.cta-contact-item { display: flex; align-items: center; gap: .75rem;
  font-size: .85rem; color: var(--muted); }
.cta-contact-item a { color: var(--cream); font-weight: 500; transition: color .2s; }
.cta-contact-item a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy2);
  border-top: 1px solid rgba(201,168,76,.08);
  padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: var(--ff-display); font-size: 1rem; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-family: var(--ff-mono); font-size: .7rem; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-family: var(--ff-mono); font-size: .68rem; color: var(--muted); }

/* ===== DIVIDER ===== */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 1.25rem 0 2rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== FLOATING WHATSAPP ===== */
.fab-whatsapp {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  background: #25D366; color: #fff;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: fabPulse 2.5s ease-in-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 36px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav { padding: 1.25rem 2rem; }
  section { padding: 5rem 2rem; }
  .hero { padding: 0 2rem 5rem; }
  .stats-strip { padding: 2rem; grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-layout { grid-template-columns: 1fr; }
  .doctor-card { position: static; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .services-header { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 1.5rem; }
  .stat-item { border-right: none !important; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(201,168,76,.12); }
  .services-grid { grid-template-columns: 1fr; }
  .expertise-item { grid-template-columns: auto 1fr; }
  .expertise-badge { display: none; }
  .cta-section { padding: 4rem 1.5rem; }
  .cta-contact-strip { flex-direction: column; align-items: center; gap: 1.25rem; }
  .about-card-photo { min-height: 380px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll-hint::before { animation: none; }
  .fab-whatsapp { animation: none; }
}
