/* ============================================================
   MediUS Healthcare — Main Stylesheet
   Vanilla CSS3. Colors, layout, header, footer, components.
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --red: #d72a2e;
  --red-dark: #b71f24;
  --navy: #2a314d;          /* dark navy section bg */
  --heading: #29305a;       /* heading blue */
  --teal: #449abd;          /* teal info box */
  --light: #d5d9e2;         /* light gray section bg */
  --text: #5a5f6e;          /* body text */
  --muted: #8a8f9c;
  --white: #ffffff;
  --black: #111111;
  --footer-bg: #050505;

  --ff-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --ff-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;

  --container: 1200px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --transition: .3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-head); color: var(--heading); line-height: 1.2; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--red); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--navy); color: #fff; }
.btn-blue { background: #2f57d8; color: #fff; border-radius: 4px; }
.btn-blue:hover { background: #2143b0; color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #1c2138; color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.top-bar {
  background: var(--red);
  color: #fff;
  font-size: .8rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  gap: 16px;
}
.top-bar__msg { font-weight: 600; }
.top-bar__right { display: flex; align-items: center; gap: 18px; }
.top-bar__phone { color: #fff; font-weight: 700; }
.top-bar__phone:hover { color: #fff; opacity: .85; }
.top-bar__apply {
  background: #fff; color: var(--red); padding: 7px 18px; border-radius: 3px;
  font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em;
}
.top-bar__apply:hover { background: var(--navy); color: #fff; }

/* Main navigation — overlays hero, becomes sticky/solid on scroll */
.site-header {
  position: absolute;
  top: 40px; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  background: var(--navy);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
  animation: slideDown .35s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Logo */
.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo img { height: 46px; width: auto; display: block; }
.logo__word { font-family: var(--ff-head); font-weight: 800; font-size: 1.7rem; letter-spacing: -.5px; display: inline-flex; align-items: center; }
.logo__med { color: #fff; }
.logo__us { color: var(--red); }
.logo__mark { display: inline-block; width: 26px; height: 20px; margin-left: 4px; position: relative; }
.logo__mark::before { content: ""; position: absolute; inset: 0; background: var(--red); }
.logo__mark::after { content: ""; position: absolute; top: 3px; left: 3px; right: 8px; bottom: 3px; background: #fff; }
.logo__tag { font-family: var(--ff-head); font-size: .5rem; letter-spacing: .22em; color: #d7d9e0; margin-top: 4px; text-transform: uppercase; font-weight: 500; }

/* Primary menu */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; margin: 5px 0; border-radius: 2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.primary-nav > ul { display: flex; align-items: center; gap: 6px; }
.primary-nav a { color: #fff; font-family: var(--ff-head); font-weight: 500; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; padding: 10px 14px; display: inline-flex; align-items: center; gap: 5px; }
.primary-nav a:hover { color: #ffd0d1; }
.primary-nav .has-dropdown { position: relative; }
.primary-nav .caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; margin-left: 3px; transition: transform var(--transition); }
.primary-nav .has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 210px;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition);
}
.primary-nav .has-dropdown:hover .dropdown,
.primary-nav .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { color: var(--heading); text-transform: none; letter-spacing: 0; font-size: .9rem; font-weight: 500; padding: 9px 20px; width: 100%; }
.dropdown li a:hover { background: var(--light); color: var(--red); }

/* ============================================================
   PAGE HERO BANNERS (image with baked title)
   ============================================================ */
.page-hero { position: relative; width: 100%; overflow: hidden; }
.page-hero img { width: 100%; display: block; }
/* home hero has a clickable CTA hotspot over the baked button */
.hero-cta-hotspot {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: 14%;
  width: 210px; height: 46px;
  border-radius: 3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.cta-band { background: var(--red); padding: 44px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin: 0; font-size: 1.7rem; font-weight: 700; }

.site-footer { background: var(--footer-bg); color: #cfd2da; padding: 44px 0 34px; text-align: center; }
.site-footer .socials { display: flex; justify-content: center; gap: 22px; margin-bottom: 20px; }
.site-footer .socials a { color: #fff; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; }
.site-footer .socials a:hover { color: var(--red); transform: translateY(-2px); }
.site-footer .socials svg { width: 16px; height: 16px; fill: currentColor; }
.site-footer p { margin: 4px 0; font-size: .9rem; }
.site-footer a { color: #cfd2da; }
.site-footer a:hover { color: #fff; }

/* ============================================================
   SHARED SECTION / CARD PIECES
   ============================================================ */
.eyebrow { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.section-title { font-size: 2.1rem; }

/* framed image (navy offset frame like the PDFs) */
.framed-img { position: relative; display: inline-block; }
.framed-img::before {
  content: ""; position: absolute; top: -22px; left: -22px;
  width: 62%; height: 60%; background: var(--navy); z-index: 0;
}
.framed-img img { position: relative; z-index: 1; border-radius: 2px; }

/* ---------- Cookie banner ---------- */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
  background: var(--red); color: #fff; font-size: .82rem;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 12px 20px; flex-wrap: wrap;
}
.cookie-bar button {
  background: transparent; border: 1px solid #fff; color: #fff;
  padding: 6px 22px; border-radius: 3px; cursor: pointer; font-size: .82rem;
  transition: var(--transition);
}
.cookie-bar button:hover { background: #fff; color: var(--red); }
.cookie-bar.hide { display: none; }

/* ============================================================
   HOME PAGE
   ============================================================ */
/* Better People section */
.better { background: var(--light); }
.better .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.better h2 { font-size: 1.7rem; }
.better .btn { margin-top: 10px; }

/* Ready to Travel (red + map) */
.ready { background: var(--red); color: #fff; }
.ready .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; }
.ready h2 { color: #fff; font-size: 2.6rem; font-weight: 700; margin-bottom: 18px; }
.ready p { color: #fff; font-size: .95rem; max-width: 340px; }
.ready .us-map { width: 100%; }
.ready .btn { margin-top: 14px; }

/* National agency (navy + teal box) */
.national { background: var(--navy); color: #fff; }
.national .grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; }
.national__img img { border-radius: 40px 6px 6px 6px; }
.national__box { background: var(--teal); color: #fff; padding: 46px 44px; margin-left: -60px; border-radius: 4px; box-shadow: var(--shadow); }
.national__box h2 { color: #fff; font-size: 1.55rem; margin-bottom: 18px; }
.national__box p { color: #eaf6fb; font-size: .92rem; }

/* Stats */
.stats { background: #fff; }
.stats .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stats__num { font-family: var(--ff-head); font-weight: 800; font-size: 3.6rem; color: var(--red); line-height: 1; }
.stats__label { font-size: .88rem; color: var(--text); max-width: 260px; margin: 14px auto 0; }
.stats__intro { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.stats__intro h2 { color: var(--navy); font-size: 1.5rem; }

/* Testimonials */
.testimonials { background: var(--light); }
.testimonials h2 { text-align: center; color: var(--navy); font-size: 2.2rem; margin-bottom: 46px; }
.testimonials .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.testi-card { background: #fff; border-top: 3px solid var(--red); padding: 30px 28px; box-shadow: 0 6px 20px rgba(0,0,0,.05); }
.testi-card p { font-size: .9rem; color: #555; }
.testi-card .who { font-weight: 700; color: var(--heading); font-size: .85rem; margin: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro .grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-intro h2 { color: var(--navy); font-size: 1.7rem; }
.about-intro { background: var(--light); }

.benefits { background: var(--light); padding-top: 0; }
.benefits .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.benefits h2 { color: var(--navy); font-size: 1.7rem; margin-bottom: 24px; }
.accordion__item { border-bottom: 1px solid #c3c8d3; }
.accordion__head {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 12px; padding: 16px 0;
  font-family: var(--ff-head); font-weight: 600; color: var(--red); font-size: 1rem;
}
.accordion__icon { font-size: 1.1rem; width: 18px; display: inline-block; color: var(--red); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.accordion__body-inner { padding: 0 0 18px 30px; font-size: .9rem; }
.accordion__item.active .accordion__body { max-height: 400px; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { background: var(--light); }
.faq-section h2 { text-align: center; color: var(--black); font-size: 2rem; margin-bottom: 44px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 26px; max-width: 900px; margin: 0 auto; }
.faq-card { display: flex; background: #fbfbfc; box-shadow: 0 4px 14px rgba(0,0,0,.05); overflow: hidden; }
.faq-card__img { flex: 0 0 130px; }
.faq-card__img img { width: 130px; height: 100%; object-fit: cover; }
.faq-card__body { padding: 20px 22px; }
.faq-card__body h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.faq-card__body p { font-size: .85rem; margin: 0; color: var(--muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--light); }
.contact-section .grid { display: grid; grid-template-columns: 260px 1fr; gap: 50px; }
.contact-info h2 { color: var(--navy); font-size: 1.3rem; }
.contact-info p { font-size: .95rem; }
.form-head { color: var(--navy); font-size: 1.3rem; margin-bottom: 22px; }

/* ============================================================
   CLIENTS PAGE
   ============================================================ */
/* Clients banner overlay (bold title + intro line + request button) */
.clients-hero { position: relative; }
.clients-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,10,26,.72) 0%, rgba(6,10,26,.55) 42%, rgba(6,10,26,.28) 100%);
  z-index: 1;
}
.clients-hero__caption {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: min(760px, 88%);
  text-align: center;
}
.clients-hero__caption h2 {
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 14px;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.clients-hero__caption p {
  color: #fff;
  font-size: clamp(.95rem, 1.7vw, 1.15rem);
  line-height: 1.5;
  margin: 0 auto 24px;
  max-width: 620px;
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
}
.clients-hero-btn { position: relative; display: inline-flex; }
.clients-intro { background: var(--light); }
.clients-intro .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.clients-intro p { font-size: .9rem; }
.clients-band { background: var(--red); text-align: center; padding: 30px 0; }
.clients-band h2 { color: #fff; margin: 0; font-size: 1.5rem; }
.clients-form-wrap { background: #fff; padding: 70px 0; }
.clients-form { max-width: 640px; margin: 0 auto; }

/* ============================================================
   JOINT COMMISSION PAGE
   ============================================================ */
.joint-section { background: var(--light); }
.joint-section .grid { display: grid; grid-template-columns: 300px 1fr; gap: 50px; align-items: center; max-width: 900px; margin: 0 auto; }
.joint-section h2 { color: var(--navy); font-size: 1.7rem; }
.joint-seal img { width: 230px; margin: 0 auto; }
.joint-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.joint-links .btn { font-size: .72rem; padding: 12px 20px; }

/* ============================================================
   REFER A FRIEND PAGE
   ============================================================ */
.refer-band { background: var(--red); text-align: center; padding: 40px 0; }
.refer-band h2 { color: #fff; margin: 0 auto; max-width: 680px; font-size: 1.6rem; }
.refer-section { background: #fff; padding: 70px 0; }
.refer-card { max-width: 700px; margin: 0 auto; border: 1px solid #e6e6ea; border-radius: 8px; padding: 44px 46px; box-shadow: var(--shadow); text-align: center; }
.refer-card__logo { font-family: var(--ff-head); font-weight: 800; font-size: 1.6rem; color: var(--red); margin-bottom: 10px; }
.refer-card h2 { color: var(--heading); font-size: 1.35rem; }
.refer-card > p { color: var(--text); font-size: .95rem; }
.refer-card .form-grid { text-align: left; margin-top: 26px; }
.refer-card .btn-red { display: block; width: 100%; margin-top: 8px; background: #f0554f; }
.refer-card .btn-red:hover { background: var(--red); }
.refer-note { text-align: center; margin-top: 14px; }
.refer-note a { font-size: .85rem; color: var(--muted); text-decoration: underline; }

/* ============================================================
   BLOG PAGES
   ============================================================ */
.blog-hero { background: #000; text-align: center; padding: 90px 0 70px; }
.blog-hero h1 { color: #fff; font-size: 2.6rem; letter-spacing: .03em; margin: 0; }
.blog-listing { background: var(--light); padding: 70px 0; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 44px; max-width: 1000px; margin: 0 auto; }
.blog-card { background: transparent; }
.blog-card__img { overflow: hidden; border-radius: 2px; }
.blog-card__img img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card h2 { font-size: 1.15rem; color: var(--black); margin: 18px 0 10px; line-height: 1.3; }
.blog-card h2 a { color: var(--black); }
.blog-card h2 a:hover { color: var(--red); }
.blog-card p { font-size: .82rem; color: var(--muted); margin: 0 0 10px; }
.blog-card .read-more { font-size: .82rem; font-weight: 600; color: #3a5bd0; }
.blog-card .read-more:hover { color: var(--red); }

/* Blog detail */
.blog-detail { background: #fff; padding: 60px 0; }
.blog-detail article { max-width: 820px; margin: 0 auto; }
.blog-detail h1 { font-size: 2.2rem; color: var(--navy); margin-bottom: 12px; }
.blog-meta { color: var(--muted); font-size: .85rem; margin-bottom: 26px; }
.blog-detail .lead-img { border-radius: 4px; margin-bottom: 28px; width: 100%; }
.blog-detail p { color: #444; }
.blog-back { display: inline-block; margin-top: 30px; font-weight: 600; }
.related { background: var(--light); padding: 60px 0; }
.related h2 { text-align: center; color: var(--navy); margin-bottom: 40px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field .req { color: var(--red); font-weight: 400; font-size: .72rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cfd3dc; border-radius: 3px;
  font-family: var(--ff-body); font-size: .92rem; background: #fff; color: #333;
  transition: border-color var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field textarea { min-height: 150px; resize: vertical; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--red); background: #fff6f6; }
.field .err-msg { display: none; color: var(--red); font-size: .76rem; margin-top: 5px; }
.field.error .err-msg { display: block; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; }
.checkbox-field input { width: auto; margin-top: 3px; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-group label { display: flex; gap: 8px; align-items: center; font-weight: 400; font-size: .9rem; color: var(--text); }
.radio-group input { width: auto; }
.form-success {
  display: none; background: #e7f6ec; border: 1px solid #9ed6b1; color: #1c7a3f;
  padding: 14px 18px; border-radius: 4px; margin-bottom: 18px; font-size: .9rem;
}
.form-success.show { display: block; }

/* ============================================================
   ENHANCEMENTS (v2): header readability, video hero, blog article,
   map embed, richer motion helpers
   ============================================================ */

/* Header readability over light hero images */
.site-header:not(.sticky)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,15,28,.60), rgba(10,15,28,.15) 60%, rgba(10,15,28,0));
}
.site-header:not(.sticky) .primary-nav > ul > li > a,
.site-header:not(.sticky) .logo__word,
.site-header:not(.sticky) .logo__tag {
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}

/* Video hero (home) */
.home-hero { position: relative; height: 90vh; min-height: 560px; max-height: 840px; overflow: hidden; background: #10141c; }
.home-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.home-hero__overlay { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,20,28,.55), rgba(16,20,28,.35) 40%, rgba(16,20,28,.6)); }
.home-hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; color: #fff; padding: 90px 20px 40px; }
.home-hero__content h1 { color: #fff; font-family: var(--ff-head); font-weight: 800; text-transform: uppercase;
  font-size: 2.9rem; line-height: 1.12; max-width: 900px; margin: 0 0 22px; text-shadow: 0 3px 16px rgba(0,0,0,.45); }
.home-hero__content p { max-width: 680px; color: #eef1f5; font-size: 1rem; margin-bottom: 28px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; }
.scroll-cue::after { content: ""; position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: #fff; border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(14px); } 100% { opacity: 0; } }

/* Blog article typography */
.blog-detail article h2 { font-size: 1.4rem; color: var(--navy); margin: 1.7em 0 .5em; }
.blog-detail article p { color: #454b57; }
.post-list { margin: 0 0 1.3em; padding-left: 1.3em; list-style: disc; }
.post-list li { margin-bottom: .55em; color: #454b57; }
.post-quote { border-left: 4px solid var(--red); background: #f4f6f9; padding: 20px 26px; margin: 1.6em 0; border-radius: 0 6px 6px 0; }
.post-quote p:last-child { margin-bottom: 0; }

/* Google Map embed */
.map-embed { margin-top: 28px; }
.map-embed iframe { width: 100%; height: 300px; border: 0; border-radius: 6px; box-shadow: var(--shadow); display: block; }
.map-note { font-size: .78rem; color: var(--muted); margin-top: 8px; }

/* Zoom-in reveal + hover image zoom helpers */
.js .reveal-zoom { opacity: 0; transform: scale(.92); }
.reveal-zoom { transition: opacity .7s ease, transform .7s ease; }
.reveal-zoom.visible { opacity: 1; transform: none; }
.hover-zoom { overflow: hidden; }
.hover-zoom img { transition: transform .6s ease; }
.hover-zoom:hover img { transform: scale(1.06); }

/* Nav link underline animation */
.primary-nav > ul > li > a { position: relative; }
.primary-nav > ul > li > a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.primary-nav > ul > li > a:hover::after { transform: scaleX(1); }
@media (max-width: 960px) { .primary-nav > ul > li > a::after { display: none; } }

/* Blog detail hero (black title banner, matches PDF) */
.blog-detail-hero { padding: 140px 0 46px; text-align: left; }
.blog-detail-hero .container { max-width: 900px; }
.blog-detail-hero h1 { color: #fff; font-size: 2.3rem; line-height: 1.2; margin: 0; max-width: 820px; }
.blog-crumb { color: #b9bdc9; font-size: .82rem; margin: 0 0 14px; text-transform: uppercase; letter-spacing: .05em; }
.blog-crumb a { color: #fff; }
.blog-crumb a:hover { color: var(--red); }
.blog-crumb span { margin: 0 6px; color: #6b7080; }
.blog-detail article { max-width: 900px; }
.blog-detail .lead-img { max-height: 460px; object-fit: cover; }
@media (max-width: 640px){ .blog-detail-hero { padding: 120px 0 34px; } .blog-detail-hero h1 { font-size: 1.5rem; } }
