:root{
  --bg:#F5F7F8;
  --surface:#FFFFFF;
  --ink:#0B2B33;
  --primary:#0F6E6B;
  --primary-dark:#0B4F4D;
  --accent:#E8A33D;
  --success:#2F9E6E;
  --danger:#D64550;
  --text:#1F2A30;
  --text-muted:#5C6E75;
  --border:#E4E9EA;
  --radius:12px;
}
*{box-sizing:border-box;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
h1,h2,h3,h4,.font-display{ font-family:'Manrope','Inter',sans-serif; }
a{ text-decoration:none; }

/* ---------- Top nav ---------- */
.pub-nav{
  background:var(--ink);
  padding:14px 0;
  position:sticky; top:0; z-index:200;
}
.pub-nav .brand{ display:flex; align-items:center; gap:10px; color:#fff; font-weight:800; font-size:17px; }
.pub-nav .brand .mark{
  width:32px;height:32px;border-radius:9px;
  background:linear-gradient(135deg, var(--primary), #1A9E93);
  display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;
}
.pub-nav .nav-link{
  color:#B9D6D3; font-weight:600; font-size:14px; padding:8px 14px !important;
}
.pub-nav .nav-link:hover, .pub-nav .nav-link.active{ color:#fff; }
.pub-nav .btn-book{
  background:var(--accent); color:#40290A; font-weight:700; border-radius:8px; padding:9px 18px;
  font-size:13.5px;
}
.pub-nav .btn-book:hover{ background:#d6922f; color:#40290A; }

/* ---------- Hero ---------- */
.hero{
  background:
    radial-gradient(circle at 15% 20%, rgba(15,110,107,.35), transparent 45%),
    radial-gradient(circle at 85% 30%, rgba(232,163,61,.25), transparent 45%),
    var(--ink);
  color:#fff;
  padding:80px 0 90px;
  position:relative;
  overflow:hidden;
}
.hero h1{ font-size:42px; font-weight:800; line-height:1.15; }
.hero p.lead{ color:#BFDAD7; font-size:17px; max-width:520px; }
.hero .stats{ display:flex; gap:34px; margin-top:36px; flex-wrap:wrap; }
.hero .stats .num{ font-size:26px; font-weight:800; font-family:'Manrope',sans-serif; }
.hero .stats .lbl{ font-size:12.5px; color:#8FB8B4; text-transform:uppercase; letter-spacing:.04em; }
.hero-ekg{ opacity:.5; }

/* ---------- Sections ---------- */
.section{ padding:64px 0; }
.section-title{ font-size:28px; font-weight:800; margin-bottom:8px; }
.section-sub{ color:var(--text-muted); font-size:15px; margin-bottom:36px; max-width:600px; }
.eyebrow{
  color:var(--primary); font-weight:700; font-size:12.5px; text-transform:uppercase;
  letter-spacing:.06em; margin-bottom:8px; display:inline-block;
}

/* ---------- Cards ---------- */
.pub-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:26px; height:100%; transition:box-shadow .15s ease, transform .15s ease;
}
.pub-card:hover{ box-shadow:0 12px 30px rgba(11,43,51,.08); transform:translateY(-2px); }
.pub-card .icon-badge{
  width:44px;height:44px;border-radius:11px;background:rgba(15,110,107,.1);color:var(--primary);
  display:flex;align-items:center;justify-content:center;font-size:20px;margin-bottom:14px;
}

.doctor-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  overflow:hidden; height:100%;
}
.doctor-card .avatar{
  height:110px; background:linear-gradient(135deg, rgba(15,110,107,.14), rgba(232,163,61,.14));
  display:flex; align-items:center; justify-content:center;
}
.doctor-card .avatar .initials{
  width:64px;height:64px;border-radius:50%;background:var(--primary);color:#fff;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:22px;
}
.doctor-card .body{ padding:18px 20px 20px; }
.doctor-card h3{ font-size:16px; font-weight:700; margin-bottom:2px; }
.doctor-card .spec{ color:var(--primary); font-size:12.5px; font-weight:600; margin-bottom:10px; }
.doctor-card .meta{ font-size:12.5px; color:var(--text-muted); display:flex; gap:6px; align-items:center; margin-bottom:4px; }

/* ---------- Forms ---------- */
.form-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:32px;
}
.form-label{ font-size:13px; font-weight:600; }
.required:after{ content:" *"; color:var(--danger); }
.btn-primary-pub{
  background:var(--primary); border-color:var(--primary); color:#fff; font-weight:700;
  padding:11px 26px; border-radius:9px;
}
.btn-primary-pub:hover{ background:var(--primary-dark); border-color:var(--primary-dark); color:#fff; }

/* ---------- Footer ---------- */
.pub-footer{ background:var(--ink); color:#9FC2BF; padding:46px 0 26px; margin-top:40px; }
.pub-footer h4{ color:#fff; font-size:14.5px; font-weight:700; margin-bottom:14px; }
.pub-footer a{ color:#9FC2BF; font-size:13.5px; display:block; margin-bottom:8px; }
.pub-footer a:hover{ color:#fff; }
.pub-footer .bottom{ border-top:1px solid rgba(255,255,255,.08); margin-top:30px; padding-top:20px; font-size:12.5px; color:#77A19D; }

.badge-dept{
  background:rgba(15,110,107,.1); color:var(--primary); font-size:11.5px; font-weight:600;
  padding:5px 11px; border-radius:20px; display:inline-block;
}

@media (max-width: 767px){
  .hero h1{ font-size:30px; }
  .hero{ padding:56px 0 64px; }
}
