@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #102d3d;
  --navy-2: #173e50;
  --teal: #2a9d91;
  --teal-dark: #19796f;
  --mint: #eaf7f4;
  --cream: #f7fbfa;
  --text: #1c3039;
  --muted: #65767d;
  --white: #ffffff;
  --line: #dce9e6;
  --shadow: 0 24px 70px rgba(16, 45, 61, .12);
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,233,230,.8);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--teal);
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.brand strong,
.brand small { display: block; }

.brand strong { font-size: 14px; letter-spacing: -.2px; }
.brand small { color: var(--muted); font-size: 10px; margin-top: -2px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
  color: #4e626b;
}

.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--teal-dark); }

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  transition: .2s ease;
}
.nav-cta:hover { border-color: var(--teal); color: var(--teal-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 35%, rgba(62, 170, 154, .13), transparent 32%),
    linear-gradient(135deg, #f7fcfb 0%, #eef8f5 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow-one {
  width: 340px; height: 340px;
  right: -90px; top: -120px;
  border: 1px solid rgba(42,157,145,.16);
}
.hero-glow-two {
  width: 170px; height: 170px;
  left: 42%; bottom: -100px;
  border: 1px solid rgba(42,157,145,.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 65px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(42,157,145,.12);
}

.hero h1 {
  max-width: 650px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(48px, 5.3vw, 72px);
  line-height: 1.06;
  letter-spacing: -2.6px;
  color: var(--navy);
}
.hero h1 em {
  color: var(--teal-dark);
  font-style: normal;
}

.hero-text {
  max-width: 590px;
  margin: 23px 0 30px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  min-height: 50px;
  padding: 0 21px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn span { font-size: 17px; }
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(16,45,61,.18);
}
.btn-primary:hover { background: #0b2533; }

.btn-light {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}
.btn-white { color: var(--navy); background: #fff; }

.trust-row {
  display: flex;
  margin-top: 40px;
  gap: 0;
}
.trust-row > div {
  padding: 0 24px;
  border-left: 1px solid #cbdedb;
}
.trust-row > div:first-child { padding-left: 0; border-left: 0; }
.trust-row strong { display: block; color: var(--navy); font-size: 16px; }
.trust-row span { display: block; color: var(--muted); font-size: 10px; margin-top: 1px; }

/* Doctor visual */
.doctor-visual { position: relative; min-height: 480px; display: grid; place-items: center; }

.visual-card {
  width: min(385px, 100%);
  min-height: 445px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(160deg, #d8efea 0%, #b5ddd6 42%, #79b8b0 100%);
  box-shadow: var(--shadow);
}

.visual-card::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -80px;
  right: -70px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
}

.doctor-avatar {
  position: absolute;
  width: 245px;
  height: 245px;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff, #e9f4f1);
  border: 12px solid rgba(255,255,255,.52);
  box-shadow: 0 18px 50px rgba(16,45,61,.16);
}
.doctor-avatar span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
}
.avatar-ring {
  position: absolute;
  inset: 17px;
  border: 1px dashed rgba(42,157,145,.35);
  border-radius: 50%;
}

.visual-info {
  position: relative;
  z-index: 2;
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.mini-label {
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.visual-info h2 {
  margin: 4px 0 1px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}
.visual-info p { color: var(--muted); font-size: 12px; }

.verified-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 50px;
  background: rgba(255,255,255,.86);
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  right: -20px;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(16,45,61,.15);
}
.note-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--mint);
  color: var(--teal-dark);
}
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-size: 11px; }
.floating-note small { color: var(--muted); font-size: 9px; }

/* Intro */
.intro-section { padding: 105px 0; }

.two-col {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: start;
}
h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -1.4px;
}
h2 span { color: var(--teal-dark); }

.intro-section h2 { margin-top: 12px; max-width: 500px; }
.intro-copy { padding-top: 32px; }
.intro-copy p { color: var(--muted); font-size: 16px; max-width: 560px; }
.text-link {
  display: inline-flex;
  gap: 13px;
  margin-top: 23px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}
.text-link span { font-size: 17px; }

/* Expertise */
.expertise-section {
  padding: 105px 0;
  background: var(--cream);
}
.section-heading.centered { text-align: center; }
.section-heading h2 { max-width: 680px; margin: 12px auto 10px; }
.section-heading p { color: var(--muted); font-size: 14px; }

.care-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.care-card {
  min-height: 235px;
  padding: 27px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.care-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(16,45,61,.08); }
.care-card.featured { background: var(--navy); border-color: var(--navy); }
.care-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 19px;
}
.featured .care-icon { background: rgba(255,255,255,.12); color: #bcece4; }
.care-card h3 { color: var(--navy); font-size: 17px; margin-bottom: 8px; }
.featured h3 { color: #fff; }
.care-card p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.featured p { color: #c5d4da; }

/* Schedule */
.schedule-section { padding: 110px 0; }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.schedule-content h2 { margin: 12px 0 15px; }
.schedule-lead { color: var(--muted); font-size: 14px; max-width: 520px; }

.info-list { margin: 30px 0; display: grid; gap: 18px; }
.info-item { display: flex; align-items: flex-start; gap: 13px; }
.info-icon {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--mint);
  color: var(--teal-dark);
}
.info-item small, .info-item strong { display: block; }
.info-item small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-item strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.5;
}
.info-item a { color: var(--teal-dark); }

.map-card {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #e8efed;
  box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 440px; border: 0; display: block; }
.map-link {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 10px 14px;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0,0,0,.12);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

/* Appointment */
.appointment-section { padding: 0 0 90px; }
.appointment-box {
  min-height: 245px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 60px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 85% 10%, rgba(64,175,158,.25), transparent 28%),
    var(--navy);
}
.appointment-box h2 {
  max-width: 650px;
  margin-top: 10px;
  color: #fff;
  font-size: 40px;
}
.appointment-box h2 span { color: #78c9bd; }
.appointment-box p { margin-top: 9px; color: #b7c8cf; font-size: 13px; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 30px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand .brand-mark { width: 34px; height: 34px; font-size: 21px; }
.footer-wrap p { color: var(--muted); font-size: 10px; }

/* Responsive */
@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 35px; }
  .hero { min-height: auto; padding: 80px 0; }
  .doctor-visual { min-height: 430px; }
  .care-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 45px; }
  .schedule-grid { gap: 40px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 600px); }
  .site-header { position: relative; }
  .nav-wrap { min-height: 70px; }
  .main-nav, .nav-cta { display: none; }

  .hero { padding: 65px 0 55px; }
  .hero-grid, .two-col, .schedule-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero h1 { font-size: clamp(43px, 12vw, 60px); letter-spacing: -2px; }
  .hero-text { font-size: 14px; }
  .trust-row { margin-top: 32px; }
  .trust-row > div { padding: 0 14px; }
  .trust-row strong { font-size: 14px; }
  .trust-row span { font-size: 9px; }

  .doctor-visual { min-height: 410px; }
  .visual-card { min-height: 390px; width: min(350px, 90%); }
  .doctor-avatar { width: 205px; height: 205px; }
  .doctor-avatar span { font-size: 41px; }
  .floating-note { right: 0; bottom: 30px; }

  .intro-section, .expertise-section, .schedule-section { padding: 75px 0; }
  .intro-copy { padding-top: 0; }
  .care-grid { grid-template-columns: 1fr; margin-top: 35px; }
  .care-card { min-height: auto; }
  .schedule-grid { gap: 45px; }

  .map-card, .map-card iframe { min-height: 350px; height: 350px; }

  .appointment-section { padding-bottom: 60px; }
  .appointment-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 28px;
  }
  .appointment-box h2 { font-size: 33px; }

  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .brand strong { font-size: 12px; }
  .hero-actions .btn { width: 100%; }
  .trust-row > div { padding: 0 9px; }
  .trust-row strong { font-size: 12px; }
  .visual-card { width: 100%; }
  .floating-note { right: -2px; transform: scale(.92); transform-origin: right bottom; }
}
