:root {
  --navy: #0a1628;
  --deep-blue: #0d2244;
  --teal: #1a7a8a;
  --teal-light: #22a0b8;
  --gold: #c9a84c;
  --gold-light: #e8c97b;
  --cream: #f9f5ee;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3a4a6b;
  --text-light: #6b7ea6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar { background: var(--navy); padding: 10px 0; font-size: 13px; }
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.topbar a {
  color: #a8c4d8; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.topbar a:hover { color: var(--gold-light); }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-socials { display: flex; gap: 14px; }
.topbar-socials a {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: background 0.2s, color 0.2s;
}
.topbar-socials a:hover { background: var(--teal); color: white; }

/* ── HEADER ── */
header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,22,40,0.1);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.logo-area { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-circle {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: white; font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 15px rgba(26,122,138,0.4);
  flex-shrink: 0; border: 2px solid var(--gold);
}
.logo-text .name {
  font-family: 'Playfair Display', serif; font-size: 18px;
  font-weight: 700; color: var(--navy); line-height: 1.2;
}
.logo-text .title {
  font-size: 11px; color: var(--teal);
  letter-spacing: 1px; text-transform: uppercase; font-weight: 500;
}
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--text-mid); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 14px; border-radius: 6px; transition: all 0.2s;
}
nav a:hover { color: var(--teal); background: rgba(26,122,138,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: white !important; padding: 10px 20px !important;
  border-radius: 8px !important; font-weight: 600 !important;
  margin-left: 8px; box-shadow: 0 4px 12px rgba(26,122,138,0.35);
}
.nav-cta:hover { opacity: 0.9; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 60%, #0f3460 100%);
  padding: 80px 24px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,122,138,0.18) 0%, transparent 65%);
}
.hero-deco {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12); pointer-events: none;
}
.hero-deco-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-deco-2 { width: 300px; height: 300px; bottom: -100px; left: 40%; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); padding: 6px 16px; border-radius: 30px;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px; font-weight: 500;
}
.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 54px); font-weight: 700;
  color: var(--white); line-height: 1.15; margin-bottom: 8px;
}
.hero-name span { color: var(--gold-light); }
.hero-degree {
  font-size: 14px; color: var(--teal-light);
  letter-spacing: 1px; margin-bottom: 24px; font-weight: 500;
}
.hero-bio {
  color: #8faac5; font-size: 15px; line-height: 1.8;
  margin-bottom: 32px; max-width: 520px;
}
.hero-reg {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-light); font-size: 13px; font-weight: 600;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  padding: 6px 14px; border-radius: 6px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  color: white; text-decoration: none; padding: 14px 28px;
  border-radius: 10px; font-weight: 600; font-size: 15px;
  transition: all 0.3s; box-shadow: 0 6px 20px rgba(26,122,138,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,122,138,0.5); }
.btn-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.btn-outline {
  border: 2px solid rgba(201,168,76,0.4); color: var(--gold-light);
  background: transparent; text-decoration: none; padding: 13px 24px;
  border-radius: 10px; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }

/* Hero Right */
.hero-right { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.hero-photo-wrap { position: relative; width: 260px; height: 300px; }
.hero-photo-wrap::before {
  content: ''; position: absolute; inset: -8px; border-radius: 24px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  opacity: 0.35; z-index: 0;
}
.hero-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  border-radius: 20px; position: relative; z-index: 1;
  border: 3px solid rgba(255,255,255,0.15);
}
.hero-photo-badge {
  position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #a87c2a);
  color: white; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 6px 18px; border-radius: 20px; white-space: nowrap;
  z-index: 2; box-shadow: 0 4px 12px rgba(0,0,0,0.3); text-transform: uppercase;
}
.contact-chips {
  display: flex; flex-direction: column; gap: 10px;
  width: 100%; max-width: 300px; margin-top: 20px;
}
.chip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 12px 16px; text-decoration: none;
  transition: all 0.25s; color: white;
}
.chip:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.chip-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.chip-icon.call { background: rgba(26,122,138,0.3); color: var(--teal-light); }
.chip-icon.wa   { background: rgba(37,211,102,0.2); color: #25d366; }
.chip-icon.email{ background: rgba(201,168,76,0.2); color: var(--gold-light); }
.chip-text .label { font-size: 10px; color: #8faac5; text-transform: uppercase; letter-spacing: 0.8px; }
.chip-text .value { font-size: 14px; font-weight: 600; }

/* ── STATS ── */
.stats { background: var(--white); padding: 40px 24px; border-bottom: 1px solid #e8e4da; }
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; text-align: center;
}
.stat-item { padding: 20px; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 48px;
  font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 6px;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 13px; color: var(--text-light); font-weight: 500; letter-spacing: 0.5px; }

/* ── HAPPY PATIENTS ── */
.happy-patients {
  max-width: 1200px; margin: 0 auto; padding: 24px;
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.review-card {
  display: flex; align-items: center; gap: 16px;
  background: white; border: 2px solid transparent; border-radius: 16px;
  padding: 20px 28px; text-decoration: none; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); cursor: pointer;
  position: relative; overflow: hidden;
}
.review-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,122,138,0.04), rgba(201,168,76,0.04));
  opacity: 0; transition: opacity 0.3s;
}
.review-card:hover { border-color: var(--teal-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(26,122,138,0.15); }
.review-card:hover::before { opacity: 1; }
.review-icon { font-size: 40px; }
.review-text .big { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--navy); }
.review-text .small { font-size: 13px; color: var(--text-light); }
.stars { color: #fbbf24; font-size: 16px; }

/* ── SECTION TITLES ── */
.section-title-wrap { text-align: center; margin-bottom: 50px; }
.section-eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
  color: var(--navy); line-height: 1.25;
}
.section-title span { color: var(--teal); }
.section-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px; margin: 16px auto 0;
}
section { padding: 80px 24px; }

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr;
  gap: 60px; align-items: start;
}
.about-photo-col { position: relative; }
.about-photo-frame {
  width: 100%; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden;
  box-shadow: 20px 20px 60px rgba(10,22,40,0.15), -5px -5px 20px rgba(201,168,76,0.08);
  border: 2px solid rgba(201,168,76,0.2);
}
.about-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
}
.about-photo-overlay {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(10,22,40,0.85); backdrop-filter: blur(10px);
  border-radius: 12px; padding: 16px 20px;
  border: 1px solid rgba(201,168,76,0.2);
}
.about-photo-overlay .doc-name { font-family: 'Playfair Display', serif; font-size: 18px; color: white; }
.about-photo-overlay .doc-tag { font-size: 12px; color: var(--teal-light); margin-top: 3px; }
.about-content { padding-top: 10px; }
.about-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,122,138,0.1); border: 1px solid rgba(26,122,138,0.25);
  color: var(--teal); padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
}
.about-heading {
  font-family: 'Playfair Display', serif; font-size: 32px;
  font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 20px;
}
.about-para { color: var(--text-mid); font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.highlight {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; background: white; border-radius: 12px;
  border-left: 3px solid var(--teal); box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.highlight i { color: var(--teal); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.highlight span { font-size: 13px; color: var(--text-mid); font-weight: 500; line-height: 1.5; }

/* ── APPOINTMENT ── */
#appointment {
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  position: relative; overflow: hidden;
}
#appointment::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,122,138,0.2), transparent 60%);
}
.appointment-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.appointment-inner .section-title { color: white; }
.appointment-inner p { color: #8faac5; font-size: 16px; margin: 16px 0 36px; line-height: 1.7; }
.appt-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.appt-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 12px; text-decoration: none;
  font-weight: 600; font-size: 16px; transition: all 0.3s;
}
.appt-btn-wa { background: #25d366; color: white; box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.appt-btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.45); }
.appt-btn-call { background: var(--teal); color: white; box-shadow: 0 6px 20px rgba(26,122,138,0.4); }
.appt-btn-call:hover { transform: translateY(-3px); }

/* ── SERVICES ── */
#services { background: var(--white); }
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  border: 1px solid #ece8df; background: var(--cream); cursor: default;
}
.service-card:hover { transform: scale(1.04) translateY(-4px); box-shadow: 0 20px 50px rgba(10,22,40,0.15); z-index: 2; }
.service-img { height: 160px; overflow: hidden; }
.service-img-inner {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 60px; transition: transform 0.35s;
}
.service-card:hover .service-img-inner { transform: scale(1.08); }
.s1 { background: linear-gradient(135deg,#e8f4f8,#c8e6f0); }
.s2 { background: linear-gradient(135deg,#fef3e2,#fde6b8); }
.s3 { background: linear-gradient(135deg,#e8f8ee,#c6efd4); }
.s4 { background: linear-gradient(135deg,#f3e8fb,#e2c9f5); }
.s5 { background: linear-gradient(135deg,#fde8e8,#f5c9c9); }
.s6 { background: linear-gradient(135deg,#e8eef8,#c9d7f0); }
.s7 { background: linear-gradient(135deg,#e8fbf8,#c9f0ea); }
.s8 { background: linear-gradient(135deg,#f8f3e8,#f0dec9); }
.s9 { background: linear-gradient(135deg,#f8e8f2,#f0c9e4); }
.service-body { padding: 20px; }
.service-body h3 { font-family:'Playfair Display',serif; font-size:17px; color:var(--navy); margin-bottom:8px; }
.service-body p { font-size:13px; color:var(--text-light); line-height:1.6; }

/* ── LOCATIONS ── */
#locations { background: var(--cream); }
.locations-inner { max-width: 1200px; margin: 0 auto; }
.locations-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.location-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #ece8df;
  transition: box-shadow 0.3s;
}
.location-card:hover { box-shadow: 0 12px 40px rgba(10,22,40,0.12); }
.location-map { width:100%; height:200px; border:none; display:block; background:#e8f0f8; }
.location-body { padding: 22px; }
.location-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,122,138,0.1); color: var(--teal);
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.location-badge.broncho { background: rgba(201,168,76,0.12); color: #a07828; }
.location-name { font-family:'Playfair Display',serif; font-size:18px; color:var(--navy); margin-bottom:8px; line-height:1.3; }
.location-addr { font-size:13px; color:var(--text-light); line-height:1.7; margin-bottom:14px; }
.location-phones { display:flex; flex-direction:column; gap:8px; }
.phone-link {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  background: linear-gradient(135deg, var(--teal), #0d5c6b);
  color: white; padding: 11px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(26,122,138,0.25);
}
.phone-link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,122,138,0.35); }

/* ── YOUTUBE ── */
#videos { background: var(--white); }
.videos-inner { max-width: 1200px; margin: 0 auto; }
.yt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.yt-card {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  background: #000; display: block; transition: all 0.3s;
}
.yt-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,22,40,0.2); }
.yt-card iframe { display: block; width: 100%; height: 180px; border: none; }
.yt-cta { text-align: center; margin-top: 36px; }
.yt-sub-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ff0000; color: white; text-decoration: none;
  padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 15px;
  transition: all 0.3s; box-shadow: 0 6px 20px rgba(255,0,0,0.3);
}
.yt-sub-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,0,0,0.4); }

/* ── FOOTER ── */
footer { background: var(--navy); color: #8faac5; padding: 60px 24px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 30px;
}
.footer-brand .logo-area { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-brand .logo-circle { width:44px; height:44px; font-size:18px; }
.footer-brand .logo-text .name { color: white; font-size: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; }
.footer-brand .socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-brand .socials a {
  width:36px; height:36px; background:rgba(255,255,255,0.08); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#8faac5; text-decoration:none; font-size:14px; transition:all 0.2s;
}
.footer-brand .socials a:hover { background: var(--teal); color: white; }
.footer-col h4 { color:white; font-size:15px; font-weight:600; margin-bottom:20px; font-family:'Playfair Display',serif; }
.footer-col a { display:block; color:#8faac5; text-decoration:none; font-size:14px; margin-bottom:10px; transition:color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { text-align:center; font-size:13px; color:#5a7090; }
.footer-bottom span { color: var(--teal-light); }

/* ── ANIMATIONS ── */
.reveal { opacity:0; transform:translateY(30px); transition:opacity 0.6s ease,transform 0.6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.count-up { display: inline-block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-right { display: none; }
  .hero-bio { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-col { max-width: 320px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: 1fr 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  nav { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
}