/* ===== Tokens (রঙ পোস্টার থেকে নেওয়া) ===== */
:root {
  /* ===== Palette: "Clinical Teal & Saffron" ===== */
  --teal: #0b5d66;        /* মূল রং — শান্ত, ভরসাযোগ্য */
  --teal-deep: #063a41;   /* গাঢ় ব্যাকগ্রাউন্ড */
  --teal-mid: #147a80;    /* সেকেন্ডারি টিল */
  --ink: #0f2529;         /* মূল লেখা */
  --muted: #3d5a60;       /* সেকেন্ডারি লেখা */
  --amber: #f2a93b;       /* সাফ্রন — বাটন ও হাইলাইট */
  --amber-deep: #a86200;  /* সাফ্রনের গাঢ় রূপ (লেখা/বর্ডারের জন্য) */
  --green: #2e7d4f;       /* সেজ গ্রিন */
  --red: #b3261e;         /* শুধু জরুরি সতর্কতায় */
  --sky: #eaf6f4;         /* হালকা মিন্ট ব্যাকগ্রাউন্ড */
  --sky-2: #cfe8e3;
  --mint: #bfe6df;
  --white: #fff;
  --line: #cfe0dd;
  --grad: linear-gradient(100deg, var(--teal), var(--teal-mid));
  --radius: 14px;
  --shadow: 0 10px 30px rgba(6, 58, 65, .14);
  --font: "Hind Siliguri", "Noto Sans Bengali", "Kalpurush", "SolaimanLipi", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0; font-family: var(--font); font-size: 18px; line-height: 1.75;
  color: var(--ink); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); }
h1, h2, h3 { line-height: 1.3; margin: 0; }
p { margin: 0 0 1em; }
.wrap { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
.skip { position: absolute; left: -999px; top: 0; background: var(--teal); color: #fff; padding: .6rem 1rem; z-index: 200; }
.skip:focus { left: 1rem; top: 1rem; }
:focus-visible { outline: 3px solid var(--amber-deep); outline-offset: 3px; border-radius: 4px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  font: 600 1.05rem/1 var(--font); padding: .95rem 1.5rem; border-radius: 999px;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(242, 169, 59, .4); }
.btn-ghost { background: #fff; color: var(--teal); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: #fff; }
.btn-outline { background: #fff; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal); }
.btn-wa { background: var(--green); color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.header-in { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--teal); }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-size: 1.15rem; }
.brand-text small { font-size: .85rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a:not(.btn) { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 1rem; padding: .3rem 0; border-bottom: 2px solid transparent; }
.nav a:not(.btn):hover, .nav a.active { color: var(--teal); border-color: var(--amber-deep); }
.nav-cta { padding: .7rem 1.2rem; font-size: 1rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .6rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--teal); margin: 5px 0; border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden; padding: 4.5rem 0 5rem;
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(120, 205, 190, .35), transparent 70%),
    linear-gradient(180deg, var(--sky) 0%, #f7fcfb 100%);
}
.hero-bg { position: absolute; inset: auto 0 0 0; height: 220px; pointer-events: none; }
.ecg { width: 100%; height: 100%; }
.ecg path { fill: none; stroke: var(--teal); stroke-opacity: .16; stroke-width: 3; stroke-linejoin: round; stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: draw 3.2s ease-out .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.pill {
  display: inline-block; background: var(--grad); color: #fff; font-weight: 700; font-size: 1.15rem;
  padding: .45rem 1.6rem; border-radius: 14px; margin-bottom: 1.1rem;
}
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); color: var(--teal); font-weight: 700; letter-spacing: -.5px; margin-bottom: 1rem; }
.hero .degrees { font-size: 1.35rem; font-weight: 600; margin: 0; color: var(--ink); }
.hero .degrees.fcps { color: var(--green); }
.hero .role { font-size: 1.35rem; font-weight: 700; color: var(--red); margin: 0; }
.hero .place { font-size: 1.3rem; font-weight: 600; color: var(--teal); margin: .1rem 0 1.6rem; padding-bottom: 1.1rem; border-bottom: 3px solid var(--ink); max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero-visit {
  display: flex; gap: .9rem; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-left: 6px solid var(--red); border-radius: var(--radius); padding: 1rem 1.3rem; max-width: 30em; box-shadow: var(--shadow);
}
.hero-visit p { margin: 0; font-size: 1.1rem; line-height: 1.6; }
.hero-visit strong { color: var(--red); }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); margin-top: .55rem; flex: none; box-shadow: 0 0 0 0 rgba(10, 122, 66, .5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(10, 122, 66, 0); } 100% { box-shadow: 0 0 0 0 rgba(10, 122, 66, 0); } }
.today-note { font-size: 1rem; color: var(--green); font-weight: 600; }

.hero-photo { margin: 0; position: relative; justify-self: center; }
.ring {
  width: min(420px, 78vw); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 12px solid var(--teal); background: var(--mint); box-shadow: 0 24px 60px rgba(6, 58, 65, .35);
}
.ring img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; }
.badge {
  position: absolute; right: -6px; bottom: 26px; background: var(--green); color: #fff; border-radius: var(--radius);
  padding: .55rem 1.1rem; display: flex; flex-direction: column; line-height: 1.25; text-align: center; box-shadow: var(--shadow);
}
.badge strong { font-size: 1.25rem; letter-spacing: 1px; }
.badge span { font-size: .9rem; }

/* ===== Quick facts ===== */
.facts { background: var(--teal); color: #fff; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 1.3rem 1.2rem; display: flex; flex-direction: column; gap: .15rem; border-left: 1px solid rgba(255, 255, 255, .22); }
.fact:first-child { border-left: 0; }
.fact-k { font-size: .9rem; color: #bcd9d5; }
.fact-v { font-weight: 600; font-size: 1.08rem; line-height: 1.4; }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-tint { background: var(--sky); }
.sec-title { font-size: clamp(1.8rem, 3.6vw, 2.5rem); color: var(--teal); font-weight: 700; margin-bottom: 1rem; }
.sec-title::after { content: ""; display: block; width: 70px; height: 5px; border-radius: 4px; background: var(--grad); margin-top: .6rem; }
.sec-sub { max-width: 40em; color: var(--muted); font-size: 1.1rem; margin-bottom: 2.2rem; }
.lead { font-size: 1.25rem; font-weight: 500; color: var(--ink); }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: start; }
.about-copy p { max-width: 36em; }
.quals { list-style: none; margin: 0; padding: 0; border-left: 3px solid var(--line); }
.quals li { display: flex; gap: 1rem; padding: 1rem 0 1rem 1.4rem; position: relative; }
.quals strong { display: block; font-size: 1.15rem; color: var(--ink); line-height: 1.4; }
.quals small { color: var(--muted); font-size: .98rem; }
.q-mark { position: absolute; left: -10px; top: 1.5rem; width: 17px; height: 17px; border-radius: 50%; border: 4px solid #fff; }
.q-mark.navy { background: var(--teal); } .q-mark.green { background: var(--green); } .q-mark.red { background: var(--red); }

/* Services */
.svc-grid { list-style: none; margin: 0 0 2.5rem; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.svc {
  background: #fff; border: 1px solid var(--line); border-top: 5px solid currentColor; border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.5rem; transition: transform .2s ease, box-shadow .2s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc svg { width: 46px; height: 46px; margin-bottom: .8rem; }
.svc h3 { font-size: 1.15rem; color: var(--ink); margin-bottom: .4rem; }
.svc p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.c-navy { color: var(--teal); } .c-purple { color: var(--teal-mid); } .c-green { color: var(--green); } .c-red { color: var(--red); }

.alert {
  display: flex; gap: 1rem; align-items: flex-start; background: #fff4f3; border: 2px solid var(--red);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; color: #7a1610;
}
.alert svg { color: var(--red); flex: none; margin-top: .2rem; }
.alert strong { display: block; font-size: 1.15rem; color: var(--red); }
.alert p { margin: .2rem 0 0; color: var(--ink); }

/* Schedule */
.schedule { background: linear-gradient(135deg, var(--teal-deep), var(--teal) 60%, #14808a); color: #fff; }
.on-dark { color: #fff; }
.sched-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sched-day { font-size: 2.4rem; font-weight: 700; margin: 0; line-height: 1.2; }
.sched-time { font-size: 1.6rem; margin: .2rem 0 .8rem; color: #ffd99a; font-weight: 600; }
.sched-place { color: #e2f1ee; margin-bottom: 1rem; }
.sched-next { display: inline-block; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .3); padding: .5rem 1rem; border-radius: 999px; margin: 0; }
.week { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .22); border-radius: var(--radius); padding: 1.4rem; display: grid; gap: 1.2rem; }
.week-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: .5rem; }
.day { text-align: center; padding: .8rem .2rem; border-radius: 12px; background: rgba(255, 255, 255, .08); color: #cfe6e2; font-size: .95rem; line-height: 1.35; }
.day b { display: block; font-size: 1.05rem; color: #fff; font-weight: 600; }
.day.on { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(0, 0, 0, .3); }
.day.today { outline: 2px dashed #fff; outline-offset: 2px; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 1rem; }
.g-item { position: relative; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--sky-2); height: 100%; }
.g-wide { grid-column: span 2; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item span {
  position: absolute; inset: auto 0 0 0; padding: 2.2rem 1rem .9rem; color: #fff; font: 600 1.05rem/1.3 var(--font); text-align: left;
  background: linear-gradient(to top, rgba(4, 35, 40, .88), transparent);
}
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(3, 28, 32, .94); display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1000px, 86vw); text-align: center; }
.lightbox img { max-height: 76vh; margin-inline: auto; border-radius: 10px; }
.lightbox figcaption { color: #fff; margin-top: .9rem; font-size: 1.1rem; }
.lb-close, .lb-nav { position: absolute; background: rgba(255, 255, 255, .14); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 2rem; line-height: 1; cursor: pointer; }
.lb-close:hover, .lb-nav:hover { background: var(--amber-deep); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }

/* Appointment */
.appt-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.phones { display: flex; flex-direction: column; gap: .3rem; margin: 1.2rem 0; }
.phones a { font-size: 1.7rem; font-weight: 700; color: var(--teal); text-decoration: none; }
.phones a:hover { color: var(--amber-deep); }
.fine { color: var(--muted); font-size: .98rem; }
.form { background: #fff; border-radius: 18px; padding: 1.8rem; box-shadow: var(--shadow); border: 1px solid var(--line); display: grid; gap: 1.1rem; }
.row2 { display: grid; grid-template-columns: 1fr 1.6fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-weight: 600; font-size: 1rem; color: var(--teal); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1.05rem; padding: .8rem 1rem; border: 2px solid #a9c4c0; border-radius: 10px; background: #fff; color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(11, 93, 102, .18); }
.field.invalid input { border-color: var(--red); }
.err { color: var(--red); font-size: .92rem; min-height: 1.1em; font-weight: 500; }
.form-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* FAQ */
.faq-wrap { max-width: 820px; }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { cursor: pointer; list-style: none; padding: 1.15rem 2.5rem 1.15rem 0; font-weight: 600; font-size: 1.15rem; color: var(--ink); position: relative; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; translate: 0 -50%; font-size: 1.8rem; color: var(--amber-deep); font-weight: 400; transition: rotate .2s; }
.qa[open] summary::after { rotate: 45deg; }
.qa[open] summary { color: var(--teal); }
.qa p { margin: 0 0 1.2rem; color: var(--muted); }

/* Contact */
.contact { background: var(--sky); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hosp-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: .8rem; }
.hosp-logo span { font-weight: 700; color: var(--teal); font-size: 1.4rem; letter-spacing: 1px; }
.hosp-name { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--amber-deep); font-weight: 700; }
.hosp-en { font-weight: 700; color: var(--teal); letter-spacing: .5px; margin: .2rem 0 .3rem; font-size: 1.1rem; }
.hosp-tag { color: var(--teal-mid); font-weight: 600; margin: 0; }
.addr { font-style: normal; background: #fff; border-radius: 18px; padding: 1.8rem; box-shadow: var(--shadow); display: grid; gap: 1.2rem; }
.addr h3 { font-size: 1.05rem; color: var(--teal); margin-bottom: .2rem; }
.addr p { margin: 0; }
.phones-lg { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.phones-lg a { font-size: 1.45rem; font-weight: 700; color: var(--teal); text-decoration: none; }
.addr .btn { justify-self: start; }


/* Footer */
.site-footer { background: var(--teal-deep); color: #dcefec; font-size: 1rem; }
.foot-cta { background: var(--grad); color: #fff; }
.foot-cta-in { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; padding: 1.5rem 0; flex-wrap: wrap; }
.foot-cta strong { display: block; font-size: 1.3rem; line-height: 1.4; }
.foot-cta span { font-size: 1rem; opacity: .95; }
.foot-grid { display: grid; grid-template-columns: 1.3fr .8fr 1.3fr 1fr; gap: 2.5rem; padding: 3.2rem 0 2.6rem; }
.foot-col h3 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: .6rem; position: relative; }
.foot-col h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 2px; background: var(--amber-deep); }
.foot-col p { margin: 0 0 .8rem; line-height: 1.7; color: #dcefec; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-col a { color: #dcefec; text-decoration: none; }
.foot-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.brand-light { color: #fff; margin-bottom: 1rem; }
.brand-light .brand-text small { color: #a9cbc7; }
.foot-deg { font-weight: 600; color: #fff !important; }
.foot-role { color: #a9cbc7 !important; font-size: .98rem; }
.foot-hosp { font-weight: 600; color: #fff !important; margin-bottom: .4rem !important; }
.foot-time { display: flex; align-items: center; gap: .55rem; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18); border-radius: 10px; padding: .55rem .8rem; font-weight: 600; color: #fff !important; }
.foot-dot { width: 9px; height: 9px; border-radius: 50%; background: #4fd08a; flex: none; }
.foot-phones a { font-size: 1.35rem; font-weight: 700; color: #fff; letter-spacing: .3px; }
.foot-map { display: inline-block; margin-top: 1rem; padding: .6rem 1.1rem; border: 1.5px solid rgba(255, 255, 255, .55); border-radius: 999px; font-weight: 600; }
.foot-map:hover { background: #fff; color: var(--teal) !important; text-decoration: none !important; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .16); background: rgba(0, 0, 0, .18); }
.foot-bottom-in { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .6rem 1.5rem; padding: 1.1rem 0; }
.foot-bottom p { margin: 0; font-size: .95rem; color: #dcefec; }
.foot-note { color: #a9cbc7 !important; flex: 1 1 320px; }
.to-top { color: #fff; font-weight: 600; text-decoration: none; padding: .35rem .9rem; border: 1px solid rgba(255, 255, 255, .4); border-radius: 999px; font-size: .95rem; }
.to-top:hover { background: #fff; color: var(--teal); }

.fab { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: var(--grad); color: #fff; display: none; place-items: center; box-shadow: 0 10px 24px rgba(11, 93, 102, .4); opacity: 0; pointer-events: none; transition: opacity .25s; }
.fab.show { opacity: 1; pointer-events: auto; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .22); }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem 1.25rem 1.2rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none;
  }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: .9rem; }
  .hero { padding: 2.5rem 0 4rem; }
  .hero-grid, .about-grid, .sched-grid, .appt-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-photo { order: -1; margin-bottom: 1.2rem; }
  .ring { width: min(270px, 68vw); border-width: 8px; }
  .badge { right: auto; left: 50%; bottom: -16px; translate: -50% 0; flex-direction: row; align-items: baseline; gap: .5rem; padding: .45rem 1.1rem; white-space: nowrap; }
  .badge strong { font-size: 1.05rem; }
  .badge span { font-size: .95rem; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .pill { font-size: 1.02rem; padding: .4rem 1.3rem; margin-bottom: .8rem; }
  .hero h1 { font-size: clamp(2.2rem, 9.5vw, 2.8rem); margin-bottom: .7rem; }
  .hero .degrees, .hero .role { font-size: 1.15rem; line-height: 1.6; }
  .hero .place { font-size: 1.1rem; margin: .5rem 0 1.4rem; padding-bottom: 1rem; width: 100%; max-width: none; }
  .hero-actions { width: 100%; flex-direction: column; gap: .7rem; margin-bottom: 1.3rem; }
  .hero-actions .btn { width: 100%; padding: 1rem 1.2rem; }
  .hero-visit { width: 100%; max-width: none; text-align: left; padding: .9rem 1.1rem; }
  .hero-visit p { font-size: 1.02rem; }
  .today-note { font-size: .95rem; }
  .hero-bg { height: 120px; opacity: .6; }
  .section { padding: 3.6rem 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-auto-rows: 170px; }
  .g-wide { grid-column: auto; }
  .fab { display: grid; }
  .foot-cta-in { flex-direction: column; align-items: stretch; text-align: center; }
  .foot-cta .btn { width: 100%; }
  .foot-bottom-in { flex-direction: column; text-align: center; padding-bottom: 5rem; }
  .foot-note { flex: none; }
  .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .foot-grid { grid-template-columns: 1fr; padding-top: 2.4rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .fact { padding: 1rem .9rem; }
  .fact-v { font-size: .98rem; }
  .brand-text small { display: none; }
  .week-row { grid-template-columns: repeat(4, 1fr); }
  .lb-nav { top: auto; bottom: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .ecg path { stroke-dashoffset: 0; }
}


/* ===== Design 2 overrides (Teal & Saffron) ===== */
.btn-accent { background: var(--amber); color: var(--ink); }
.btn-accent:hover { background: #f7b850; }
.btn-white { color: var(--teal); }
.sec-title::after { background: var(--amber); }
.c-red { color: var(--amber-deep); }
.q-mark.red { background: var(--amber-deep); }
.dot { background: var(--green); }

/* Hero: গাঢ় টিল */
.hero {
  background:
    radial-gradient(900px 520px at 88% 12%, rgba(90, 190, 180, .38), transparent 70%),
    linear-gradient(160deg, var(--teal-deep) 0%, var(--teal) 75%);
  color: #fff;
}
.ecg path { stroke: #fff; stroke-opacity: .16; }
.hero h1 { color: #fff; }
.hero .degrees { color: #fff; }
.hero .degrees.fcps { color: #ffd99a; }
.hero .role { color: #9fe3d6; }
.hero .place { color: #e2f1ee; border-bottom-color: rgba(255, 255, 255, .55); }
.pill { background: var(--amber); color: var(--ink); }
.hero .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .85); }
.hero .btn-ghost:hover { background: #fff; color: var(--teal); }
.hero-visit { border-left-color: var(--amber); }
.hero-visit strong { color: var(--teal); }
.today-note { color: var(--teal-mid); }
.ring { border-color: var(--amber); background: var(--mint); box-shadow: 0 24px 60px rgba(0, 0, 0, .35); }
.badge { background: var(--amber); color: var(--ink); }

/* Facts strip: হালকা */
.facts { background: #fff; color: var(--ink); border-bottom: 1px solid var(--line); }
.fact { border-left-color: var(--line); }
.fact-k { color: var(--muted); }
.fact-v { color: var(--teal); }
@media (max-width: 980px) { .fact:nth-child(n+3) { border-top-color: var(--line); } }

/* Footer CTA */
.foot-cta { background: var(--amber); color: var(--ink); }
.foot-cta .btn-white { background: var(--teal-deep); color: #fff; }
.foot-col h3::after { background: var(--amber); }
.foot-dot { background: #6fdc9f; }

/* Misc */
.hosp-name { color: var(--teal); }
.svc.c-purple h3, .svc h3 { color: var(--ink); }
.hero-visit { color: var(--ink); }
.day.on { background: var(--amber); color: var(--ink); box-shadow: 0 6px 18px rgba(0, 0, 0, .3); }
.day.on b { color: var(--ink); }
.sched-next { background: rgba(255, 255, 255, .1); }
