
/* ===== CSS VARIABLES ===== */
:root {
  --bs-primary: #F0538A;
  --bs-primary-dark: #c93d70;
  --bs-secondary: #3e2f5e;
  --title-color: #1a0a2e;
  --body-color: #666666;
  --border-color: #f0d5e2;
  --bg-light: #f9f5f7;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ===== BASE (Task 4) ===== */
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 15px; color: var(--body-color); background: #fff; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: var(--title-color); font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
/* Pink placeholder only for real photo images that may load slowly */
.dz-media img, .testimonial-media img, .faq-media img, .hero-bg { background: #fde8f0; }
/* Transparent illustrations — no pink bg */
.dummy-media img, .content-media img, picture img { background: transparent; }
p { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: var(--body-color); }
li { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
input, select { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }

/* ===== BUTTONS (Task 3 — pill shape everywhere) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px;
  padding: 12px 28px; border-radius: 50px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease; text-decoration: none;
}
.btn-primary { background: var(--bs-primary); color: #fff; box-shadow: 0 6px 20px rgba(240,83,138,.35); }
.btn-primary:hover { background: var(--bs-primary-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,83,138,.4); }
.btn-secondary { background: var(--bs-secondary); color: #fff; border-radius: 50px; box-shadow: 0 6px 20px rgba(62,47,94,.3); }
.btn-secondary:hover { background: #2d2248; transform: translateY(-2px); }
.btn-lg { padding: 15px 34px; font-size: 15px; }
.btn-white { background: #fff; color: var(--bs-primary); border-radius: 50px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-weight: 700; }
.btn-white:hover { background: #f5f5f5; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); border-radius: 50px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-weight: 700; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.w-100 { width: 100%; justify-content: center; }

/* ===== FLOATING NAV ===== */
.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: min(1200px, calc(100% - 96px));
}
.site-nav {
  background: #fff;
  min-height: 74px;
  padding: 0 24px;
  border-radius: 38px;
  box-shadow: 0 12px 34px rgba(62,47,94,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  padding-right: 22px;
  border-right: 1px solid rgba(62,47,94,.12);
  text-decoration: none;
  flex-shrink: 0;
}
.site-brand-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.site-brand-name {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--title-color);
}
.site-brand-doctor {
  font-size: 11px;
  color: #c03070;
}
.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
}
.site-nav-link {
  display: block;
  background: transparent;
  color: var(--title-color);
  padding: 8px 2px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s;
}
#navMenu a[aria-current="page"],
#navMenu a.active-menu {
  color: var(--bs-primary) !important;
}
.site-nav-cta-item {
  margin-left: auto;
  list-style: none;
}
.nav-appointment-btn {
  display: inline-flex !important;
  align-items: center;
  background: var(--bs-primary);
  color: #fff;
  min-height: 50px;
  padding: 0 24px !important;
  border-radius: 999px !important;
  box-shadow: 0 14px 28px rgba(240,83,138,.24);
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .2px;
  white-space: nowrap;
  transition: transform .2s, background-color .2s;
}
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.burger-line {
  width: 24px;
  height: 2px;
  background: var(--title-color);
  display: block;
  border-radius: 2px;
}
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 1500;
}
.menu-overlay:not([hidden]) {
  display: block;
}
nav a:hover { color: var(--bs-primary) !important; background: transparent !important; }

/* Accessibility — visible focus for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ===== HERO BANNER (Task 1 — full screen bg image) ===== */
nav, header {
  contain: layout;
  min-height: 74px;
}

.hero-banner {
  min-height: min(860px, 100svh);
  contain: layout style;
  background: #fff5f8 url('images/banner-1.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0.93) 0%, rgba(255,247,250,0.78) 42%, rgba(255,247,250,0.18) 67%);
}
.hero-content { position: relative; z-index: 2; padding: 132px 6% 64px; max-width: 690px; }
.hero-tag {
  display: flex; align-items: center; gap: 12px;
  color: #c43678; font-size: 14px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-tag::before { content: ''; width: 30px; height: 2px; background: #F0538A; flex-shrink: 0; }
.hero-banner .title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(40px, 4.75vw, 62px); font-weight: 850; color: #28103d; line-height: 1.08; margin-bottom: 20px;
}
.hero-highlight { color: var(--bs-primary); }
.hero-banner p.text { font-size: 18px; color: #6b6472; max-width: 590px; line-height: 1.75; margin-bottom: 34px; }
.hero-btns { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero-play-btn {
  display: inline-flex; align-items: center; gap: 12px;
  min-height: 48px; min-width: 180px;
  font-weight: 700; color: #28103d; font-size: 16px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}
.play-circle {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  border: 2px solid rgba(240,83,138,.55); background: rgba(255,255,255,.68); display: flex; align-items: center; justify-content: center;
}
.play-circle::after {
  content: ''; width: 0; height: 0;
  border-top: 7px solid transparent; border-bottom: 7px solid transparent;
  border-left: 12px solid var(--bs-primary); margin-left: 3px;
}
.hero-play-btn:hover { color: #F0538A; }

/* ===== LAYOUT UTILS ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.content-inner { padding: 90px 0; }
.content-inner.bg-light { background: var(--bg-light); }
.content-inner.bg-white { background: #fff; }
.content-inner-3 { padding: 48px 0; background: var(--bg-light); border-top: 1px solid var(--border-color); }
.row { display: grid; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.m-b0 { margin-bottom: 0 !important; }
.m-b30 { margin-bottom: 30px; }
.text-center { text-align: center; }

/* ===== COUNTER ===== */
.counter-row { grid-template-columns: repeat(4,1fr); gap: 0; }
.content-bx.style-12 { text-align: center; padding: 0 20px; border-right: 1px solid var(--border-color); }
.content-bx.style-12:last-child { border-right: none; }
.content-bx.style-12 .content-text { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 44px; font-weight: 700; color: var(--bs-primary); line-height: 1; display: block; margin-bottom: 8px; }
.content-bx.style-12 .title { font-size: 13px; color: var(--body-color); font-weight: 500; }

/* ===== SECTION HEAD ===== */
.sub-title.text-primary {
  color: #c03070; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.sub-title.text-primary::before { content: ''; width: 28px; height: 2px; background: #c03070; }
.sub-title-icon { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--bs-primary); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.section-head.text-center .sub-title-icon { justify-content: center; }
.section-head h2.title { font-size: clamp(26px,3vw,40px); margin-bottom: 14px; }
.section-head p { font-size: 15px; line-height: 1.8; }
.sub-title-center { justify-content: center; }
.section-lead { max-width: 600px; margin: 0 auto; }
.btn-space-top { margin-top: 16px; }
.section-no-top { padding-top: 0; }
.timeline-number.current { background: var(--bs-primary); color: #fff; }
.cta-btns-center { justify-content: center; }
.faq-contact-panel { text-align: center; max-width: 600px; margin: 0 auto; }
.faq-contact-icon { font-size: 64px; margin-bottom: 20px; }
.faq-contact-title { font-size: clamp(24px,3vw,36px); margin-bottom: 16px; }
.faq-contact-copy { font-size: 15px; line-height: 1.8; margin-bottom: 28px; }

/* ===== ABOUT ===== */
.content-wrapper.style-27 { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.list-check { list-style: none; margin: 24px 0 28px; }
.list-check.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.list-check li { font-size: 14px; font-weight: 600; color: var(--title-color); display: flex; align-items: center; gap: 10px; padding: 4px 0; }
.list-check.text-secondary li { color: var(--bs-primary); }
.list-check li::before { content: '✓'; min-width: 20px; height: 20px; border-radius: 50%; background: var(--bs-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.info-widget.style-5 { display: flex; align-items: center; gap: 12px; }
.info-widget .widget-content .info-widget-label { font-size: 12px; font-weight: 600; color: var(--body-color); margin: 0 0 3px; }
.info-widget .widget-content .info-widget-phone { font-size: 15px; font-weight: 700; color: var(--bs-primary); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.content-media .dz-media { border-radius: 20px; overflow: hidden; height: 520px; }
.content-media .dz-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.content-wrapper.style-27 > .content-media:not(.nutrition-illustration) .dz-media { background: transparent; }
.content-wrapper.style-27 > .content-media:not(.nutrition-illustration) .dz-media img { transform: scale(1.28); transform-origin: center 36%; }

/* ===== SERVICES ===== */
.svc-4col { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.icon-bx-wraper.style-21 { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease; position: relative; }
.icon-bx-wraper.style-21::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg,var(--bs-primary),var(--bs-primary-dark)); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.icon-bx-wraper.style-21:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(240,83,138,.14); }
.icon-bx-wraper.style-21:hover::after { transform: scaleX(1); }
.icon-bx-wraper.style-21 .dz-media { height: 180px; overflow: hidden; }
.icon-bx-wraper.style-21 .dz-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.icon-bx-wraper.style-21:hover .dz-media img { transform: scale(1.06); }
.icon-bx-wraper.style-21 .icon-content { padding: 22px 20px; }
.icon-bx-wraper.style-21 .dz-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.icon-bx-wraper.style-21 p { font-size: 13px; line-height: 1.7; margin-bottom: 14px; color: var(--body-color); }
.icon-link-hover-end { font-size: 13px; font-weight: 700; color: var(--bs-primary); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.icon-link-hover-end:hover { gap: 10px; }
.dz-separator.style-4 { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 24px 0 0; border-top: 1px dashed var(--border-color); }
.dz-separator .title { font-size: 15px; font-weight: 500; color: var(--body-color); }

/* ===== SERVICES DETAIL (services.html) ===== */
.svc-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.svc-detail-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease; display: flex; gap: 0; flex-direction: column; }
.svc-detail-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(240,83,138,.12); }
.svc-detail-card .dz-media { height: 220px; overflow: hidden; }
.svc-detail-card .dz-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.svc-detail-card:hover .dz-media img { transform: scale(1.05); }
.svc-detail-body { padding: 28px; flex: 1; }
.svc-detail-body h3 { font-size: 20px; margin-bottom: 12px; }
.svc-detail-body p { font-size: 14px; line-height: 1.8; margin-bottom: 16px; }

/* ===== PREGNANCY TIMELINE ===== */
.dummy-wrapper { overflow-x: auto; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
.dummy-swiper { min-width: 1080px; display: flex; gap: 0; position: relative; }
.dummy-swiper::before { content: ''; position: absolute; top: 230px; left: 2%; right: 2%; height: 3px; background: linear-gradient(90deg,rgba(240,83,138,.3),var(--bs-primary),rgba(240,83,138,.3)); }
.dummy-box { flex: 1; text-align: center; padding: 0 4px; position: relative; cursor: pointer; }
.dummy-media { display: flex; justify-content: center; align-items: flex-end; margin-bottom: 12px; height: 380px; }
.dummy-media img { height: 100%; width: auto; object-fit: contain; display: block; background: transparent; }
.timeline-number { display: inline-block; background: #fff; border: 2px solid var(--bs-primary); color: var(--bs-primary); border-radius: 50px; padding: 6px 16px; font-size: 12px; font-weight: 700; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; margin-top: 10px; transition: background .2s, color .2s; }
.dummy-box:hover .timeline-number { background: var(--bs-primary); color: #fff; }
.trimester-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.trimester-card { background: var(--bg-light); border-radius: 20px; padding: 28px; border: 1px solid var(--border-color); }
.trimester-icon { font-size: 32px; margin-bottom: 12px; }
.trimester-title { font-size: 18px; margin-bottom: 10px; }
.trimester-copy { font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.list-flush { margin: 0; }
.pregnancy-nutrition { padding: 90px 0; background: #fff; }
.pregnancy-nutrition-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nutr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.nutr-visual { display: flex; justify-content: center; align-items: center; }
.nutr-title { font-size: clamp(28px,3vw,42px); font-weight: 700; color: var(--title-color); line-height: 1.2; margin-bottom: 16px; }
.nutr-copy { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 24px; }
.nutr-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 28px; padding: 0; }
.nutr-list-item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--title-color); }
.nutr-check { color: var(--bs-primary); font-size: 16px; font-weight: 700; }
.nutr-button { display: inline-flex; align-items: center; gap: 8px; background: var(--bs-primary); color: #fff; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 20px rgba(240,83,138,.35); }
.overflow-hidden-section { overflow: hidden; }
.support-tab-btn { display: flex; flex-direction: row; align-items: center; gap: 8px; padding: 8px 18px; }
.support-tab-icon { font-size: 20px; }

/* ===== APPOINTMENT FORM ===== */
.dzForm .row.g-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.form-floating.floating-outline-rounded { position: relative; }
.form-floating.floating-outline-rounded .input-group-text { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--bs-primary); font-size: 16px; pointer-events: none; z-index: 2; }
.form-floating label { display: none; }
.form-control { width: 100%; padding: 14px 16px 14px 44px; border: 1.5px solid var(--border-color); border-radius: 50px; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; outline: none; background: #fff; transition: border-color .2s; }
.form-control:focus { border-color: var(--bs-primary); }
select.form-control { cursor: pointer; -webkit-appearance: none; padding-left: 16px; }
.col-xl-4 { width: 100%; }
.appointment-band { min-height: 500px; }
.appointment-band-home { background: var(--bg-light); position: relative; overflow: hidden; padding: 90px 0; }
.appointment-photo { position: absolute; right: 0; top: 0; bottom: 0; width: 44%; pointer-events: none; }
.appointment-photo::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--bg-light) 0%, rgba(249,245,247,.88) 18%, rgba(249,245,247,.18) 48%, rgba(249,245,247,0) 100%); }
.appointment-photo img { position: relative; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; filter: grayscale(100%); display: block; }
.appointment-layer { position: relative; z-index: 2; }
.appointment-form-wrap { max-width: 60%; }
.appointment-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--bs-primary); margin-bottom: 10px; }
.appointment-title { font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--title-color); margin-bottom: 0; }
.appointment-lead { color: #555; font-size: 16px; line-height: 1.7; margin: 0 0 24px; max-width: 640px; }
.appointment-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.appointment-cta-row .btn { min-width: 200px; flex: 0 1 auto; }
.appointment-hours { font-size: 13.5px; color: #666; margin: 0; padding-top: 16px; border-top: 1px dashed #e6d8ee; max-width: 640px; }
.nutrition-section .content-wrapper.style-27 { align-items: center; }
.nutrition-illustration .dz-media { height: auto; min-height: 0; background: transparent; border-radius: 0; overflow: visible; }
.nutrition-illustration .dz-media img { width: min(100%, 560px); height: auto; object-fit: contain; background: transparent !important; display: block; }
.home-nutrition-title { font-size: clamp(24px,3vw,38px); margin-bottom: 16px; }
.home-nutrition-copy { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.home-faq-title { font-size: clamp(26px,3.5vw,44px); margin-bottom: 14px; }
.home-faq-copy { font-size: 15px; line-height: 1.8; color: var(--body-color); margin-bottom: 28px; }
.home-faq-actions { margin-top: 28px; }
.tab-icon-wrap { display: flex; align-items: center; }
.tab-label { font-size: 12px; }
.testimonial-heading { text-align: center; margin-bottom: 40px; }
.testimonial-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--bs-primary); margin-bottom: 12px; }
.testimonial-kicker-line { width: 30px; height: 2px; background: var(--bs-primary); display: inline-block; }
.testimonial-title { font-size: clamp(26px,3vw,40px); margin-bottom: 20px; }
.testimonial-rating { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.testimonial-score { font-size: 56px; font-weight: 800; color: var(--bs-primary); line-height: 1; }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 6px; }
.testimonial-stars-text { color: #fbbf24; font-size: 24px; }
.testimonial-source { font-size: 13px; color: var(--body-color); }
.testimonial-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-pill { border-radius: 50px; }
.btn-outline-primary { border: 2px solid var(--bs-primary); color: var(--bs-primary); background: transparent; }
.map-frame { border: none; border-radius: 16px; }
.more-links-section { background: #fff8fb; padding: 48px 0; border-top: 1px solid #f0e0e8; }
.more-links-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.more-links-title { font-size: 18px; font-weight: 700; color: var(--title-color); margin-bottom: 24px; font-family: inherit; }
.more-links-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.more-link-card { display: flex; align-items: center; gap: 10px; padding: 16px; background: #fff; border-radius: 12px; border: 1px solid #f0e0e8; text-decoration: none; color: var(--title-color); font-size: 14px; font-weight: 600; transition: transform .2s, border-color .2s; }
.more-link-card-primary { background: var(--bs-primary); color: #fff; font-weight: 700; border-color: var(--bs-primary); }

/* ===== TABS ===== */
.dz-tabs.style-3 .nav-tabs.center { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 2px solid #eee; margin-bottom: 36px; }
.dz-tabs.style-3 .nav-tabs.center { list-style: none; }
.dz-tabs.style-3 .nav-tabs.center li { list-style: none; }
.dz-tabs.style-3 .nav-link { display: flex; flex-direction: row; align-items: center; gap: 8px; padding: 10px 18px; font-size: 13px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: var(--bs-primary); cursor: pointer; border: none; background: none; border-bottom: none; transition: color 0.2s ease, background-color 0.2s ease; white-space: nowrap; line-height: 1; }
.dz-tabs.style-3 .nav-link svg { flex-shrink: 0; width: 24px; height: 24px; }
.dz-tabs.style-3 .nav-link:hover { color: var(--bs-primary-dark); }
.dz-tabs.style-3 .nav-link.active { background: #F0538A; color: #fff; border-radius: 50px; padding: 10px 22px; }
.tab-content .tab-pane { display: none; }
.tab-content .tab-pane.show.active { display: block; }
.service-wrapper.style-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-wrapper .section-head h2 { font-size: clamp(22px,2.5vw,34px); margin-bottom: 14px; }
.service-wrapper .section-head p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.service-wrapper .dz-media { border-radius: 20px; overflow: hidden; height: 400px; }
.service-wrapper .dz-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== FAQ ===== */
.content-wrapper.style-5 { display: grid; grid-template-columns: 5fr 7fr; gap: 60px; align-items: start; }
.faq-media { border-radius: 20px; overflow: hidden; height: 520px; background: transparent; }
.faq-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; background: transparent; }
.accordion-item { border-bottom: 1px solid #eee; }
.accordion-button { width: 100%; text-align: left; padding: 18px 0; font-size: 14.5px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; color: var(--title-color); background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color .2s; }
.accordion-button::after { content: '+'; min-width: 28px; height: 28px; border-radius: 50%; background: rgba(240,83,138,.1); border: 1.5px solid rgba(240,83,138,.3); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--bs-primary); font-weight: 700; transition: transform .3s, background .3s; }
.accordion-button:not(.collapsed) { color: var(--bs-primary); }
.accordion-button:not(.collapsed)::after { transform: rotate(45deg); background: var(--bs-primary); color: #fff; border-color: var(--bs-primary); }
.accordion-collapse { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.accordion-collapse.show { max-height: 600px; }
.accordion-body { font-size: 14px; color: var(--body-color); line-height: 1.8; padding-bottom: 16px; }

.section-head.row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.info-widget.style-12 { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.avatar-group { display: flex; }
.avatar-group .avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid #fff; margin-left: -10px; object-fit: cover; }
.avatar-group .avatar:first-child { margin-left: 0; }
.info-widget.style-12 .font-20 { font-size: 13px; font-weight: 600; color: var(--title-color); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }

/* ===== MAP ===== */
.map-wrap iframe { display: block; width: 100%; height: 400px; border: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: linear-gradient(135deg, var(--bs-secondary) 0%, #5a3d8a 100%); padding: 140px 0 60px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('images/image.webp') center/cover no-repeat; opacity: 0.08; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(28px,4vw,48px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 16px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; list-style: none; margin-top: 16px; font-size: 13px; }
.breadcrumb li { color: rgba(255,255,255,.6); }
.breadcrumb li a { color: rgba(255,255,255,.8); transition: color .2s; }
.breadcrumb li a:hover { color: var(--bs-primary); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; color: rgba(255,255,255,.4); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-dark) 100%); padding: 60px 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(24px,3vw,40px); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 16px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-card { background: var(--bg-light); border-radius: 20px; padding: 36px; border: 1px solid var(--border-color); }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; background: rgba(240,83,138,.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-text h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--title-color); }
.contact-text p, .contact-text a { font-size: 13px; margin: 0; color: var(--body-color); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.hours-item { background: #fff; border-radius: 12px; padding: 14px; border: 1px solid var(--border-color); text-align: center; }
.hours-item .day { font-size: 11px; font-weight: 700; color: var(--body-color); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.hours-item .time { font-size: 14px; font-weight: 700; color: var(--bs-primary); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.cnt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cnt-photo { border-radius: 24px; overflow: hidden; height: 600px; }
.cnt-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.contact-cta-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-cta { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 14px; text-decoration: none; border: 1.5px solid #f0e0f5; background: #fafafd; transition: transform .15s, box-shadow .15s, border-color .15s; }
.contact-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(120,40,140,.12); border-color: var(--bs-primary); }
.contact-cta-icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.contact-cta-text { display: flex; flex-direction: column; gap: 2px; }
.contact-cta-label { font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.contact-cta-value { font-size: 15.5px; font-weight: 700; color: var(--title-color); }
.contact-cta-phone .contact-cta-value { color: var(--bs-primary); }
.contact-cta-note { font-size: 13px; color: #666; text-align: center; margin: 0; padding-top: 18px; border-top: 1px solid #f0e0f5; }
.map-loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.map-loc-iframe { width: 100%; height: 500px; border: none; border-radius: 20px; display: block; }
.loc-card { background: #fff; border: 1px solid #ece4f0; border-radius: 16px; padding: 24px; margin-bottom: 16px; }
.loc-card-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.loc-mini-map { width: 88px; height: 88px; border-radius: 12px; overflow: hidden; flex-shrink: 0; border: 1px solid #f0e0f0; background: #fdf5fa; display: flex; align-items: center; justify-content: center; }
.cta-appt { position: relative; overflow: hidden; padding: 80px 0; background: linear-gradient(135deg,#fff5f8 0%,#f8f0ff 100%); }
.cta-appt-photo { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; pointer-events: none; }
.cta-appt-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.cta-appt-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right,#fff5f8 5%,rgba(255,240,250,0) 50%); }
.cta-appt-text { position: relative; z-index: 2; max-width: 480px; }
.page-hero-photo { position: absolute; right: 0; top: 0; bottom: 0; width: 48%; overflow: hidden; }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.page-hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right,var(--bs-secondary,#6a1e8a) 0%,transparent 60%); }
.contact-hero { text-align: left; padding: 150px 0 80px; }
.contact-hero-content { position: relative; z-index: 2; max-width: 52%; text-align: left; }
.contact-form-card { background: #fff; border-radius: 20px; padding: 44px 48px; box-shadow: 0 12px 60px rgba(90,30,120,0.1); border: 1px solid #f0e0f5; }
.contact-form-head { margin-bottom: 32px; }
.contact-form-title { font-size: 30px; font-weight: 700; color: var(--title-color); margin-bottom: 6px; }
.contact-form-subtitle { color: #999; font-size: 14px; margin: 0; }
.contact-map-section { background: #f8f5fb; padding: 90px 0; }
.contact-location-copy { margin-top: 10px; color: #666; }
.loc-card-body { flex: 1; }
.loc-card-title { font-size: 17px; font-weight: 700; color: var(--title-color); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.loc-address { font-size: 13.5px; color: #666; margin-bottom: 10px; line-height: 1.7; }
.loc-phone { font-size: 14px; color: var(--bs-primary); font-weight: 700; text-decoration: none; }
.loc-map-link-wrap { margin-top: 14px; padding-top: 14px; border-top: 1px solid #f5eef8; }
.loc-map-link { color: var(--bs-primary); font-size: 13.5px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; }
.loc-contact-title { font-size: 16px; font-weight: 700; color: var(--title-color); margin-bottom: 16px; }
.loc-contact-list { display: flex; flex-direction: column; gap: 12px; }
.loc-contact-item { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: #555; }
.loc-contact-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(240,83,138,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.loc-contact-link { color: var(--bs-primary); text-decoration: none; }
.cta-appt-title { font-size: clamp(28px,4vw,46px); font-weight: 800; color: var(--title-color); margin-bottom: 28px; line-height: 1.2; }
.text-primary-inline { color: var(--bs-primary); }
.cta-appt-btn { border-radius: 50px; padding: 14px 36px; font-size: 15px; }

/* ===== ABOUT FULL PAGE ===== */
.about-full-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }
.about-photo-wrap { border-radius: 24px; overflow: hidden; position: sticky; top: 100px; }
.about-photo-wrap img { width: 100%; display: block; object-fit: cover; object-position: top; max-height: 600px; }
.credential-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.badge-item { background: rgba(240,83,138,.08); border: 1px solid rgba(240,83,138,.2); color: var(--bs-primary); border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.about-title { font-size: clamp(28px,3.5vw,44px); margin-bottom: 16px; }
.about-copy { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.about-copy-tight { margin-bottom: 24px; }
.about-section-title { font-size: 20px; margin-bottom: 16px; }
.about-section-title-spaced { margin-top: 24px; }
.doctor-timeline { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.doctor-timeline-item { display: flex; gap: 16px; align-items: flex-start; }
.doctor-timeline-dot { min-width: 10px; height: 10px; border-radius: 50%; background: var(--bs-primary); margin-top: 6px; }
.doctor-timeline-title { font-weight: 700; color: var(--title-color); font-family: 'Be Vietnam Pro', sans-serif; }
.doctor-timeline-subtitle { font-size: 13px; color: var(--body-color); }
.about-actions { gap: 16px; }
.about-benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.about-benefit-card { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid var(--border-color); text-align: center; }
.about-benefit-icon { font-size: 48px; margin-bottom: 16px; }
.about-benefit-title { font-size: 18px; margin-bottom: 10px; }
.about-benefit-copy { font-size: 14px; line-height: 1.7; }

/* ===== FOOTER ===== */
.site-footer { background: var(--bs-secondary); }
.footer-top { padding: 64px 0 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-inner-wraper { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo-txt { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 4px; }
.footer-logo-sub { font-size: 11px; color: #f8a0c0; }
.footer-desc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 18px; }
.dz-social { list-style: none; display: flex; gap: 10px; }
.dz-social li a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.7); transition: background .2s; }
.dz-social li a:hover { background: var(--bs-primary); color: #fff; }
.footer-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.list-hover1 { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.list-hover1 li a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color .2s, padding-left .2s; display: flex; align-items: center; gap: 6px; }
.list-hover1 li a span::before { content: '› '; color: var(--bs-primary); }
.list-hover1 li a:hover { color: var(--bs-primary); padding-left: 4px; }
.footer-middle { background: rgba(0,0,0,.2); padding: 36px 0; }
.copyright-text { font-size: 12px; color: rgba(255,255,255,.4); text-align: right; }

/* Current shared footer */
.site-footer {
  background: #3e2f5e url('images/bg1.webp') center/cover no-repeat;
  background-blend-mode: overlay;
}
.footer-shell {
  padding: 16px 16px 0;
}
.footer-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.footer-card-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 460px;
}
.footer-left {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.footer-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #f0d5e2;
  flex-shrink: 0;
}
.footer-brand-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--title-color);
  line-height: 1.2;
}
.footer-brand-subtitle {
  font-size: 11px;
  color: var(--bs-primary);
  font-weight: 600;
}
.footer-photo-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.footer-photo {
  height: 96%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
}
.footer-socials {
  position: absolute;
  bottom: 24px;
  left: 28px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-right {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #f0f0f0;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bs-primary);
  margin-bottom: 20px;
}
.footer-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-link {
  font-size: 14px;
  color: #444;
  text-decoration: none;
}
.footer-copy {
  border-top: 1px solid #efefef;
  padding-top: 12px;
  text-align: right;
  margin-top: 20px;
}
.footer-copy-text {
  font-size: 12px;
  color: #999;
  margin: 0;
}
.footer-copy-text span {
  color: var(--bs-primary);
}
.footer-newsletter {
  padding: 44px 32px;
}
.footer-newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.footer-newsletter-title {
  color: #fff;
  font-size: clamp(20px,2.5vw,32px);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.35;
}
.footer-newsletter-copy {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin: 0;
}
.footer-newsletter-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-newsletter-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.footer-newsletter-cta .btn {
  flex: 1 1 auto;
  min-width: 160px;
  text-align: center;
}

/* ===== MESSENGER HUB ===== */
.msg-hub { position: fixed; right: 20px; bottom: 90px; z-index: 1000; }
.msg-hub-btn { width: 52px; height: 52px; background: var(--bs-secondary); border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.3); transition: transform .3s cubic-bezier(0.34,1.56,0.64,1); }
.msg-hub-btn:hover { transform: scale(1.1); }
.msg-hub.open .msg-hub-btn { transform: rotate(45deg); }
.msg-items { position: absolute; bottom: 62px; right: 3px; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.msg-item { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 3px 10px rgba(0,0,0,.25); transform: scale(0) translateY(12px); opacity: 0; transition: transform .25s cubic-bezier(0.34,1.56,0.64,1),opacity .2s ease; pointer-events: none; position: relative; }
.msg-zalo-text { font-weight: 900; font-size: 13px; font-family: 'Be Vietnam Pro', sans-serif; color: #fff; }
.msg-item:hover { transform: scale(1.12) !important; }
.msg-hub.open .msg-items { pointer-events: auto; }
.msg-hub.open .msg-item { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.msg-hub.open .msg-item:nth-child(4){transition-delay:0s;}
.msg-hub.open .msg-item:nth-child(3){transition-delay:.06s;}
.msg-hub.open .msg-item:nth-child(2){transition-delay:.12s;}
.msg-hub.open .msg-item:nth-child(1){transition-delay:.18s;}
.msg-label { position: absolute; right: 58px; background: rgba(0,0,0,.75); color: #fff; font-size: 12px; padding: 5px 10px; border-radius: 4px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity .2s; }
.msg-item:hover .msg-label { opacity: 1; }
.msg-zalo { background: #0068FF; }
.msg-tg { background: #29A8EB; }
.msg-wa { background: #25D366; }
.msg-fb { background: #0084FF; }

/* ===== CHAT FAB ===== */
.chat-fab { position: fixed; right: 20px; bottom: 20px; z-index: 1001; width: 60px; height: 60px; background: var(--bs-primary); border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(240,83,138,.5); transition: transform .2s,box-shadow .2s; }
.chat-fab:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(240,83,138,.65); }
#chatWidget { display: none; position: fixed; right: 84px; bottom: 20px; z-index: 998; width: 320px; background: #fff; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,.2); overflow: hidden; }
.chat-hdr { background: var(--bs-primary); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-hdr-info { display: flex; align-items: center; gap: 10px; }
.chat-hdr-ava { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.5); }
.chat-hdr-ava img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.chat-hdr-name { color: #fff; font-weight: 700; font-size: 14px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; }
.chat-hdr-status { color: rgba(255,255,255,.75); font-size: 11px; display: flex; align-items: center; gap: 4px; }
.online-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; }
.chat-close { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
#chatMessages { height: 220px; overflow-y: auto; padding: 16px; background: #fff5f8; display: flex; flex-direction: column; gap: 10px; }
.chat-bubble { background: #fff; padding: 10px 14px; border-radius: 0 10px 10px 10px; max-width: 88%; box-shadow: 0 1px 4px rgba(0,0,0,.08); font-size: 13.5px; line-height: 1.5; }
.chat-bubble-user { background: var(--bs-primary); color: #fff; border-radius: 10px 0 10px 10px; max-width: 85%; align-self: flex-end; margin-left: auto; }

/* 404 error page */
.error-page { max-width: 640px; margin: 0 auto; text-align: center; padding: 120px 20px 60px; }
.error-code { font-size: clamp(80px, 18vw, 160px); font-weight: 900; color: var(--bs-primary); line-height: 1; letter-spacing: -4px; opacity: .85; }
.error-title { font-size: clamp(26px, 4vw, 36px); margin: 0 0 16px; color: var(--title-color); }
.error-copy { font-size: 16px; line-height: 1.7; color: #666; margin: 0 0 32px; }
.error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 32px; }
.error-link { display: inline-block; padding: 12px 22px; background: #fafafd; border: 1.5px solid #f0e0f5; border-radius: 999px; color: var(--title-color); text-decoration: none; font-size: 14px; font-weight: 600; transition: border-color .2s, transform .15s; }
.error-link:hover { border-color: var(--bs-primary); transform: translateY(-2px); }
.error-cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 24px; }
.error-hours { font-size: 13.5px; color: #666; padding-top: 20px; border-top: 1px dashed #e6d8ee; margin: 0; }

.chat-input-area { padding: 12px; border-top: 1px solid #f0e0e8; display: flex; gap: 8px; }
.chat-input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border-color); border-radius: 50px; font-size: 13.5px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif; outline: none; }
.chat-input:focus { border-color: var(--bs-primary); }
.chat-send { background: var(--bs-primary); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ===== FIX CLS — reserve space ===== */
.dz-media { min-height: 180px; background: #fde8f0; }
.content-bx.style-12 { min-height: 80px; }

/* ===== ANIMATIONS ===== */
.wow { opacity: 0; transition: opacity 0.4s ease; }
.wow.fadeInUp { opacity: 1; transform: none; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* ===== CONTENT VISIBILITY ===== */
.content-inner:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 300px;
}

/* ===== MOBILE ===== */
/* ===== FLOATING NAV MOBILE — same #navMenu morphs into off-canvas drawer ===== */
@media(max-width:900px) {
  .site-header {
    top: 12px;
    width: calc(100% - 28px);
  }
  .site-nav {
    min-height: 66px;
    padding: 0 14px;
    border-radius: 34px;
    gap: 0;
  }
  .site-brand {
    min-width: 0;
    border-right: none;
    padding-right: 0;
    flex: 1 1 auto !important;
    overflow: hidden;
  }
  .site-brand-img {
    width: 50px;
    height: 50px;
  }
  .site-brand > div {
    min-width: 0;
  }
  .site-brand-name,
  .site-brand-doctor {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #burgerBtn { display: flex !important; }

  /* Same <ul id="navMenu"> becomes an off-canvas drawer */
  .site-nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 400;
    padding: 80px 24px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    transition: right .3s ease;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    flex: 0 0 auto;
  }
  .site-nav-menu.open {
    right: 0;
  }
  .site-nav-menu li:not(.site-nav-cta-item) {
    border-bottom: 1px solid #f0f0f0;
  }
  .site-nav-menu .site-nav-link {
    padding: 14px 0;
    font-family: 'Be Vietnam Pro', sans-serif;
  }
  .site-nav-cta-item {
    margin-left: 0;
    margin-top: 24px;
  }
  .site-nav-cta-item .nav-appointment-btn {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 14px !important;
    border-radius: 50px !important;
    box-shadow: none;
    min-height: 0;
  }
}
nav a:hover { color: #F0538A !important; background: transparent !important; }

@media(max-width:992px) {
  .hero-content { padding: 110px 5% 60px; }
  .counter-row { grid-template-columns: 1fr 1fr; }
  .content-wrapper.style-27, .content-wrapper.style-5, .about-full-grid, .contact-grid { grid-template-columns: 1fr; }
  .cnt-grid { grid-template-columns: 1fr; gap: 32px; }
  .cnt-photo { height: 320px; }
  .map-loc-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-loc-iframe { height: 320px; }
  .cta-appt-photo { width: 100%; opacity: .25; }
  .cta-appt-photo::after { background: linear-gradient(to right,#fff5f8 0%,rgba(255,240,250,0.8) 100%); }
  .cta-appt-text { max-width: 100%; }
  .page-hero { text-align: center !important; }
  .page-hero-photo { display: none; }
  .page-hero-content { max-width: 100% !important; }
  .service-wrapper.style-1 { grid-template-columns: 1fr; }
  .faq-media, .service-wrapper .dz-media { display: none; }
  .svc-4col, .svc-detail-grid, .about-benefit-grid, .trimester-grid { grid-template-columns: 1fr 1fr; }
  .nutr-grid { grid-template-columns: 1fr; gap: 36px; }
  .testim-row { grid-template-columns: 1fr; }
  .footer-inner-wraper { grid-template-columns: 1fr; gap: 28px; }
  .dzForm .row.g-3 { grid-template-columns: 1fr 1fr; }
  .list-check.grid-2 { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; }
}
@media(max-width:575px) {
  .loc-card-inner { flex-direction: column; }
  .loc-mini-map { display: none; }
}
@media(max-width:600px) {
  .hero-banner { min-height: 720px; background-position: 58% center; }
  .hero-bg { object-position: 63% center; }
  .svc-4col, .svc-detail-grid, .about-benefit-grid, .trimester-grid, .dzForm .row.g-3, .hours-grid { grid-template-columns: 1fr; }
  .nutr-list { grid-template-columns: 1fr; }
  .hero-banner::before { background: linear-gradient(to bottom, rgba(255,255,255,0.96) 0%, rgba(255,247,250,0.8) 62%, rgba(255,247,250,0.2) 100%); }
  .hero-content { width: 100%; max-width: 100%; padding: 118px 24px 56px; }
  .hero-banner .title { font-size: clamp(32px, 9.4vw, 38px); max-width: 100%; overflow-wrap: normal; }
  .hero-banner .title span { display: inline; }
  .hero-banner p.text { font-size: 15.5px; max-width: 96%; }
}

/* Appointment section responsive */
@media(max-width:992px) {
  #dat-lich > div[style*="position:absolute"] { display: none; }
  #dat-lich > .container > div[style*="max-width:60%"] { max-width: 100% !important; }
  #dat-lich > .container > div > #appt-form > div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media(max-width:600px) {
  #dat-lich > .container > div > #appt-form > div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ===== NUTRITION SECTION ===== */
@media(max-width:768px) {
  .nutr-grid { grid-template-columns: 1fr !important; }
  .nutr-grid img { max-width: 300px; margin: 0 auto; }
}

/* ===== TESTIMONIALS ===== */
.testim-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-2.list { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.testimonial-2.list:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(240,83,138,.12); }
.testimonial-media { height: 220px; overflow: hidden; position: relative; }
.testimonial-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-detail { padding: 24px; }
.star-list { list-style: none; display: flex; gap: 4px; margin-bottom: 10px; }
.star-list li { color: #fbbf24; font-size: 14px; }
.testimonial-head .title { font-size: 16px; font-weight: 700; margin-bottom: 0; color: var(--title-color); }
.testimonial-text p { font-size: 14px; color: var(--body-color); line-height: 1.8; font-style: italic; margin: 12px 0 16px; }
.testimonial-info { display: flex; align-items: center; gap: 12px; }
.testimonial-info .dz-media { width: 46px; height: 46px; min-height: 46px; min-width: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #fde8f0; }
.testimonial-info .dz-media img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; display: block; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--title-color); }
.testimonial-position { font-size: 12px; color: var(--body-color); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--bs-secondary); padding: 60px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.newsletter-title { font-size: clamp(22px,3vw,36px); color: #fff; font-weight: 700; margin-bottom: 8px; }
.newsletter-sub { color: rgba(255,255,255,.7); font-size: 15px; }
.newsletter-form { display: flex; gap: 0; border: 1.5px solid rgba(255,255,255,.25); border-radius: 50px; overflow: hidden; background: rgba(255,255,255,.08); }
.newsletter-input { flex: 1; background: transparent; border: none; padding: 15px 24px; font-size: 14px; color: #fff; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-btn { background: var(--bs-primary); border: none; color: #fff; padding: 15px 28px; cursor: pointer; font-size: 18px; transition: background .2s; }
.newsletter-btn:hover { background: var(--bs-primary-dark); }

@media(max-width:992px) {
  .testim-row { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media(max-width:600px) {
  .testimonial-media { height: 180px; }
}

/* ===== MOBILE RESPONSIVE — HOMEPAGE SECTIONS ===== */

/* Hero: text centered on mobile */
@media(max-width:768px) {
  .hero-banner { align-items: center; min-height: 100svh; }
  .hero-content { padding: 110px 5% 60px; }
  .hero-banner::before { background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.2) 100%); }
}

/* Appointment form mobile */
@media(max-width:768px) {
  #dat-lich { padding: 60px 0 !important; }
  #dat-lich > div[aria-hidden] { display: none !important; }
  #dat-lich > .container > div[style*="max-width:60%"] { max-width: 100% !important; }
  #dat-lich > .container > div > #appt-form > div { grid-template-columns: 1fr 1fr !important; }
}
@media(max-width:480px) {
  #dat-lich > .container > div > #appt-form > div { grid-template-columns: 1fr !important; }
}

/* Footer card mobile */
@media(max-width:768px) {
  .footer-card-grid { grid-template-columns: 1fr; }
  .footer-left {
    min-height: 220px;
  }
  .footer-photo-wrap {
    display: none;
  }
  .footer-right {
    border-left: none;
    border-top: 1px solid #f0f0f0;
    padding: 24px 20px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-newsletter-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-newsletter-title {
    font-size: 22px;
  }
}

/* "We Are Helping" tabs: horizontal scroll on mobile */
@media(max-width:768px) {
  .dz-tabs.style-3 .nav-tabs.center { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; justify-content: flex-start; padding-bottom: 8px; }
  .dz-tabs.style-3 .nav-link { min-width: 100px; }
  .service-wrapper.style-1 { grid-template-columns: 1fr !important; }
  .service-wrapper .dz-media { height: 280px !important; }
}

/* Timeline: only silhouettes visible, no overlap from tab content */
@media(max-width:600px) {
  .dummy-swiper { min-width: 720px; }
  .dummy-media { height: 260px; }
  .dummy-swiper::before { top: 160px; }
}

/* FAQ: stack on mobile */
@media(max-width:768px) {
  .content-wrapper.style-5 { grid-template-columns: 1fr !important; gap: 32px !important; }
  .faq-media { display: none; }
}

/* Counters: 2x2 on mobile */
@media(max-width:480px) {
  .counter-row { grid-template-columns: 1fr 1fr !important; }
  .content-bx.style-12 { border-right: none !important; border-bottom: 1px solid var(--border-color); padding: 16px 0; }
}

/* About section: stack on mobile */
@media(max-width:768px) {
  .content-wrapper.style-27 { grid-template-columns: 1fr !important; gap: 32px !important; }
  .content-media .dz-media { height: 300px !important; }
}

/* Services 4col → 1col on mobile */
@media(max-width:480px) {
  .svc-4col, .about-benefit-grid, .trimester-grid { grid-template-columns: 1fr !important; }
}

/* Internal links section */
@media(max-width:600px) {
  section[style*="fff8fb"] > div > div[style*="auto-fit"] { grid-template-columns: 1fr 1fr !important; }
}

/* ===== SERVICE PAGES ===== */

/* Intro section */
.svc-intro p { font-size: 16px; line-height: 1.8; max-width: 820px; margin: 0 auto 16px; }
.svc-intro p:last-child { margin-bottom: 0; }

/* Content sections */
.svc-section { margin-bottom: 48px; }
.svc-section:last-child { margin-bottom: 0; }
.svc-section .title { font-size: clamp(18px,2.5vw,22px); margin-bottom: 20px; }

/* Benefits / features list */
.svc-benefits { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; }
.svc-benefits li { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; background: #fff; border: 1px solid var(--border-color); border-radius: 10px; font-size: 14px; line-height: 1.5; }
.svc-benefits li::before { content: '✓'; color: var(--bs-primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Numbered steps list */
.svc-steps { list-style: none; padding: 0; margin: 0; counter-reset: steps; }
.svc-steps li { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border-color); font-size: 15px; line-height: 1.6; counter-increment: steps; }
.svc-steps li:last-child { border-bottom: none; }
.svc-steps li::before { content: counter(steps); display: flex; align-items: center; justify-content: center; min-width: 32px; height: 32px; background: var(--bs-primary); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700; flex-shrink: 0; }

/* Info cards grid */
.svc-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 20px 0; }
.svc-info-card { text-align: center; padding: 22px 14px; background: #fff; border: 1px solid var(--border-color); border-radius: 14px; }
.svc-info-icon { font-size: 28px; margin-bottom: 8px; }
.svc-info-card h3 { font-size: 12px; color: var(--body-color); font-weight: 400; margin-bottom: 4px; }
.svc-info-card p { font-size: 15px; font-weight: 700; color: var(--title-color); margin: 0; }

/* FAQ Accordion */
.spk-faq { max-width: 820px; margin: 0 auto; }
.spk-faq-item { border: 1px solid var(--border-color); border-radius: 12px; margin-bottom: 10px; overflow: hidden; transition: border-color .2s; }
.spk-faq-item[open] { border-color: var(--bs-primary); }
.spk-faq-q { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; font-weight: 600; font-size: 15px; color: var(--title-color); cursor: pointer; list-style: none; }
.spk-faq-q::-webkit-details-marker { display: none; }
.spk-faq-q::after { content: '+'; font-size: 22px; color: var(--bs-primary); flex-shrink: 0; transition: transform .2s; line-height: 1; }
.spk-faq-item[open] .spk-faq-q { color: var(--bs-primary); }
.spk-faq-item[open] .spk-faq-q::after { transform: rotate(45deg); }
.spk-faq-a { padding: 0 22px 18px; }
.spk-faq-a p { margin: 0; line-height: 1.7; font-size: 14px; }

/* CTA Strip */
.svc-cta-strip { background: linear-gradient(135deg, var(--bs-secondary) 0%, #2a1f4e 100%); padding: 64px 0; text-align: center; }
.svc-cta-strip h2 { color: #fff; font-size: clamp(22px,3vw,30px); margin-bottom: 12px; }
.svc-cta-strip p { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 16px; }
.svc-cta-address { color: rgba(255,255,255,.7) !important; font-size: 13px !important; margin-top: 24px !important; margin-bottom: 0 !important; }
.svc-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* Extra button colours */
.btn-phone    { background: #28a745; color: #fff !important; }
.btn-phone:hover { background: #1e7e34; transform: translateY(-2px); }
.btn-zalo     { background: #0068FF; color: #fff !important; }
.btn-zalo:hover { background: #0052cc; transform: translateY(-2px); }
.btn-messenger { background: #0099FF; color: #fff !important; }
.btn-messenger:hover { background: #007acc; transform: translateY(-2px); }

/* Related services grid */
.related-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.related-service-card { display: block; border: 1px solid var(--border-color); border-radius: 14px; padding: 22px; transition: box-shadow .2s, border-color .2s, transform .2s; text-decoration: none; }
.related-service-card:hover { border-color: var(--bs-primary); box-shadow: 0 4px 20px rgba(240,83,138,.15); transform: translateY(-2px); }
.related-service-name { font-size: 15px; font-weight: 700; color: var(--title-color); margin-bottom: 6px; }
.related-service-desc { font-size: 13px; color: var(--body-color); margin-bottom: 10px; }
.related-service-link { font-size: 13px; font-weight: 600; color: var(--bs-primary); }

/* Centre-align + gap for two buttons */
.center-spaced { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.related-services-cta { margin-top: 32px; }

/* Service hub grid (services.html) */
.svc-hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }
.svc-hub-card { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: #fff; border: 1px solid var(--border-color); border-radius: 10px; text-decoration: none; transition: border-color .2s, box-shadow .2s, transform .15s; }
.svc-hub-card:hover { border-color: var(--bs-primary); box-shadow: 0 3px 14px rgba(240,83,138,.12); transform: translateY(-1px); }
.svc-hub-name { font-size: 14px; font-weight: 600; color: var(--title-color); }
.svc-hub-arrow { color: var(--bs-primary); font-weight: 700; flex-shrink: 0; margin-left: 8px; }

/* Service card title links (services.html cards) */
.svc-card-title-link { color: var(--title-color); text-decoration: none; }
.svc-card-title-link:hover { color: var(--bs-primary); }

/* Mobile adjustments */
@media(max-width:640px) {
  .svc-cta-btns { flex-direction: column; align-items: center; }
  .svc-cta-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .related-services-grid { grid-template-columns: 1fr; }
  .svc-benefits { grid-template-columns: 1fr; }
  .svc-hub-grid { grid-template-columns: 1fr; }
}

/* ===== BLOG ===== */

/* Blog index grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border: 1px solid var(--border-color); border-radius: 16px; overflow: hidden; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(62,47,94,.1); transform: translateY(-3px); }
.blog-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.blog-card-date { font-size: 12px; color: var(--body-color); }
.blog-card-read { font-size: 12px; color: var(--bs-primary); font-weight: 600; }
.blog-card-title { font-size: 16px; font-weight: 700; color: var(--title-color); margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--bs-primary); }
.blog-card-excerpt { font-size: 14px; color: var(--body-color); line-height: 1.6; flex: 1; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--bs-primary); text-decoration: none; }
.blog-card-link:hover { gap: 10px; }

/* Article page */
.article-wrap { max-width: 780px; margin: 0 auto; }
.article-meta-bar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); font-size: 13px; color: var(--body-color); }
.article-meta-bar strong { color: var(--title-color); }
.article-meta-author { display: flex; align-items: center; gap: 8px; }
.article-meta-author img { border-radius: 50%; object-fit: cover; object-position: top; }
.article-excerpt { font-size: 17px; color: var(--title-color); line-height: 1.7; margin-bottom: 28px; padding: 20px 24px; background: var(--bg-light); border-left: 4px solid var(--bs-primary); border-radius: 0 10px 10px 0; }
.article-body h2 { font-size: clamp(18px,2.5vw,22px); margin: 36px 0 14px; }
.article-body h3 { font-size: 17px; margin: 24px 0 10px; }
.article-body p { line-height: 1.8; margin-bottom: 14px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 14px; }
.article-body li { line-height: 1.7; margin-bottom: 6px; }

.medical-disclaimer { margin: 32px 0 0; padding: 18px 22px; background: #fff8ef; border: 1px solid #f0d8a8; border-left: 4px solid #d99a3b; border-radius: 0 10px 10px 0; font-size: 14px; line-height: 1.65; color: #5a4220; }
.medical-disclaimer strong { color: #8a6118; }
.medical-disclaimer a { color: var(--bs-primary); text-decoration: underline; }

/* Related posts grid */
.related-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 14px; }
.related-post-card { display: block; padding: 16px 18px; background: #fff; border: 1px solid var(--border-color); border-radius: 10px; text-decoration: none; transition: border-color .2s, box-shadow .2s; }
.related-post-card:hover { border-color: var(--bs-primary); box-shadow: 0 3px 12px rgba(240,83,138,.1); }
.related-post-title { font-size: 14px; font-weight: 600; color: var(--title-color); line-height: 1.4; }
.related-post-link { font-size: 12px; color: var(--bs-primary); margin-top: 6px; display: block; font-weight: 600; }

/* Article breadcrumb back link */
.article-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--bs-primary); font-weight: 600; margin-bottom: 12px; }

@media(max-width:640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related-posts-grid { grid-template-columns: 1fr; }
  .article-excerpt { font-size: 15px; }
}
