﻿
/* ════════════════════════════════════════════════════════════
   CUSTOM FONTS
   ════════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Northwell Swash';
  src: url('assets/northwell_1-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ════════════════════════════════════════════════════════════
   DESIGN TOKENS
   ════════════════════════════════════════════════════════════ */
:root {
  --primary:       #2660ab;
  --primary-dark:  #1b4a80;
  --primary-light: #3d7ec9;
  --secondary:     #f6931d;
  --secondary-dark:#e07d0a;
  --dark:          #071535;
  --navy:          #0d2055;
  --red:           #ef4444;
  --red-dark:      #dc2626;
  --white:         #ffffff;
  --gray-50:       #f0f5ff;
  --gray-100:      #e8f0fe;
  --gray-200:      #d0dff8;
  --gray-400:      #94a3b8;
  --gray-500:      #64748b;
  --gray-600:      #475569;
  --gray-700:      #334155;
  --gray-900:      #0f172a;
  --blue-1:        #e8f0fe;
  --blue-2:        #c7d9f8;
  --blue-3:        #3d7ec9;
  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;
  --shadow-sm:     0 2px 8px rgba(38,96,171,.10);
  --shadow-md:     0 4px 24px rgba(38,96,171,.18);
  --shadow-lg:     0 12px 48px rgba(38,96,171,.28);
  --shadow-glow:   0 0 32px rgba(38,96,171,.35);
}

/* ════════════════════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Kill white gap above header ───────────────────────────────────────────
   WP injects html{margin-top:32px!important} for admin bar users via JS.
   For non-admin / cached-page visitors that margin has no admin bar to
   justify it, so we force it to 0. For real admin-bar pages we KEEP WP's
   margin (it correctly offsets below the fixed bar) and match the sticky
   top offset to it so the header sticks exactly at the bar's bottom edge.
   ─────────────────────────────────────────────────────────────────────── */
html:not(.admin-bar) { margin-top: 0 !important; }
body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); line-height: 1.6; overflow-x: hidden; margin: 0 !important; padding: 0 !important; }
#wpadminbar { position: fixed !important; top: 0 !important; }

/* ── Sticky header wrapper — topbar + navbar as one unit, zero gap ── */
.hcp-site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--primary); /* blue fallback — any sub-pixel gap stays blue not white */
  line-height: 0; font-size: 0; /* prevent any phantom inline spacing */
}
/* Admin bar present: WP margin pushes body down 32px — match sticky point */
html.admin-bar .hcp-site-header,
body.admin-bar .hcp-site-header { top: 32px; }
@media screen and (max-width: 782px) {
  html.admin-bar .hcp-site-header,
  body.admin-bar .hcp-site-header { top: 46px; }
}
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ════════════════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ════════════════════════════════════════════════════════════ */
.tag {
  display: inline-block; font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 12px;
}
.tag--red   { color: var(--red); }
.tag--white { color: rgba(255,255,255,.88); font-family: 'Northwell Swash', cursive; font-size: 20px; letter-spacing: 0.5px; text-transform: none; font-weight: 400; }
.tag--blue  { color: var(--primary); }

.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 6vw, 64px); line-height: 1;
  letter-spacing: 2px; color: var(--dark); text-transform: uppercase;
}
.section-title--white { color: var(--white); }
.section-sub { font-size: 17px; color: var(--gray-500); max-width: 560px; line-height: 1.7; margin-top: 12px; }
.section-sub--white { color: rgba(255,255,255,.65); }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════ */
@keyframes float      { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }
@keyframes pulse-slow { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes pulse-ring { 0%{box-shadow:0 0 0 0 rgba(239,68,68,.7)} 70%{box-shadow:0 0 0 10px rgba(239,68,68,0)} 100%{box-shadow:0 0 0 0 rgba(239,68,68,0)} }
@keyframes cloudMove  { from{transform:translateX(-120%)} to{transform:translateX(120vw)} }

.animate-float      { animation: float 3s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse-slow 2s ease-in-out infinite; }

.scroll-section { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1); }
.scroll-section.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .scroll-section { opacity: 1; transform: none; transition: none; }
  .animate-float { animation: none; }
}

/* ════════════════════════════════════════════════════════════
   GLASS SURFACES
   ════════════════════════════════════════════════════════════ */
.glass       { background: rgba(255,255,255,.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); }
.glass-white { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(0,0,0,.05); }

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 13px 26px; border-radius: 9999px; border: none; cursor: pointer;
  white-space: nowrap; transition: transform .18s, box-shadow .18s, opacity .18s;
  text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: none; }
.btn-primary   { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: var(--white); }
.btn-primary:hover { box-shadow: 0 8px 28px rgba(38,96,171,.35); }
.btn-secondary { background: linear-gradient(135deg,var(--secondary),var(--secondary-dark)); color: var(--white); }
.btn-secondary:hover { box-shadow: 0 8px 28px rgba(246,147,29,.35); }
.btn-emergency { background: linear-gradient(135deg,var(--red),var(--red-dark)); color: var(--white); }
.btn-emergency:hover { box-shadow: 0 8px 28px rgba(239,68,68,.35); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); box-shadow: none; }
/* WhatsApp green — used on dark-background CTAs */
.btn-sky { background: linear-gradient(135deg,#25d366,#1db954); color: var(--white); }
.btn-sky:hover { box-shadow: 0 8px 28px rgba(37,211,102,.4); }
/* Solid white — clean contrast button on dark-background CTAs */
.btn-navy { background: var(--white); color: var(--primary); }
.btn-navy:hover { box-shadow: 0 8px 28px rgba(255,255,255,.25); }

/* Pulse dot */
.pulse-dot { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.pulse-dot::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; background: var(--red); animation: pulse-ring 2s infinite; }
.pulse-dot span    { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }

/* Emergency pill */
.emergency-pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 9999px; border: 1.5px solid var(--red); color: var(--red); font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; transition: all .25s; white-space: nowrap; }
.emergency-pill:hover { background: rgba(239,68,68,.08); }
.emergency-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse-ring 2s infinite; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════════════════ */
.widget-topbar {
  background: var(--primary); padding: 9px 0;
  display: block; position: relative; z-index: 1;
  margin: 0; /* belt-and-suspenders — kill any inherited spacing */
}
.widget-topbar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.widget-topbar__alert { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.9); }
.widget-topbar__contact { display: flex; align-items: center; gap: 20px; }
.widget-topbar__contact a { font-size: 12px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 5px; transition: color .15s; }
.widget-topbar__contact a:hover { color: var(--white); }
@media (max-width: 640px) {
  .widget-topbar { padding: 7px 0; }
  .widget-topbar__alert { font-size: 11.5px; }
  .widget-topbar__contact { gap: 12px; }
  .widget-topbar__contact a { font-size: 11px; }
}

/* ════════════════════════════════════════════════════════════
   NAVBAR  — redesigned with dropdown support
   ════════════════════════════════════════════════════════════ */
.widget-navbar {
  display: block; position: relative; z-index: 2;
  margin: 0; /* no gap above */
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(38,96,171,.07);
  padding: 0;
  transition: box-shadow .3s, background .3s;
}
.widget-navbar.scrolled {
  box-shadow: 0 2px 32px rgba(38,96,171,.12);
  background: rgba(255,255,255,.99);
}
.widget-navbar__inner {
  display: flex; align-items: center; justify-content: space-between; height: 82px;
}

/* ─── Logo ─────────────────────────────────────────────────── */
.widget-navbar__logo {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; padding: 0 4px;
  min-width: 0; /* allow this block to shrink instead of forcing the sticky navbar wider than the viewport */
}
/* Logo sized to fit fully inside the navbar bar (with a little breathing
   room top/bottom) — no overflow, no clipping into the topbar or hero. */
.widget-navbar__logo-img {
  height: 66px; width: auto; max-height: calc(100% - 14px); flex-shrink: 0;
  display: flex; align-items: center;
}
.widget-navbar__logo-img img { height: 100%; width: auto; max-width: none; object-fit: contain; display: block; }
.widget-navbar__logo-text {
  display: flex; flex-direction: column; line-height: 1.15;
  min-width: 0; overflow: hidden;
}
.widget-navbar__logo-main {
  font-family: var(--font-display); font-size: 18px;
  color: var(--primary); letter-spacing: .5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.widget-navbar__logo-sub {
  font-size: 8.5px; color: var(--gray-400);
  letter-spacing: 2px; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ─── Desktop nav links ─────────────────────────────────────── */
.widget-navbar__links {
  display: flex; align-items: stretch;
  list-style: none; margin: 0; padding: 0; gap: 0;
}
/* Top-level <li> — block so sub-menu doesn't become a flex sibling of <a> */
.widget-navbar__links > li {
  position: relative;
  list-style: none;
  display: block; /* NOT flex — keeps <a> and hidden <ul.sub-menu> stacked, not side-by-side */
}
/* Vertically centre the top-level link inside the navbar */
.widget-navbar__links > li > a {
  display: flex; align-items: center; gap: 5px;
  height: 82px;
  font-size: 14px; font-weight: 600; color: var(--gray-700);
  padding: 0 15px;
  border-bottom: 3px solid transparent;
  transition: color .18s, border-color .18s;
  white-space: nowrap;
  text-decoration: none;
}
.widget-navbar__links > li > a:hover,
.widget-navbar__links > li.hsj-active > a {
  color: var(--primary); border-bottom-color: var(--primary);
}
/* Chevron — SVG data-uri */
.widget-navbar__links > li.menu-item-has-children > a::after {
  content: '';
  display: inline-block; width: 10px; height: 6px; margin-left: 5px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23374151' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain;
  transition: transform .2s;
}
.widget-navbar__links > li.menu-item-has-children:hover > a::after,
.widget-navbar__links > li.menu-item-has-children.hsj-dropdown-open > a::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2309579d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ─── Dropdown sub-menu — premium dark glass ────────────────── */
.widget-navbar__links ul.sub-menu,
.widget-navbar__links .sub-menu {
  display: none !important;
  position: absolute; 
  top: calc(100% + 2px); 
  left: 0;
  min-width: 220px;
  list-style: none; 
  margin: 0; 
  padding: 6px;
  background:rgb(38 96 171);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid var(--primary);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 4px 12px rgba(38,96,171,.18);
  z-index: 500;
}
/* Reveal on hover / js class */
.widget-navbar__links > li.menu-item-has-children:hover > ul.sub-menu,
.widget-navbar__links > li.menu-item-has-children:hover > .sub-menu,
.widget-navbar__links > li.menu-item-has-children.hsj-dropdown-open > .sub-menu {
  display: block !important;
}
.widget-navbar__links .sub-menu li { list-style: none; position: relative; }
.widget-navbar__links .sub-menu a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.72);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
  white-space: nowrap; text-decoration: none;
}
.widget-navbar__links .sub-menu a:hover {
  color: var(--white);
  background: rgba(38,96,171,.22);
  /* border-left-color: var(--secondary); */
}
/* No dividers — clean list */
.widget-navbar__links .sub-menu li + li { border-top: none; }
/* Nested sub-sub-menu */
.widget-navbar__links .sub-menu li.menu-item-has-children:hover > .sub-menu {
  display: block !important; top: 0; left: 100%;
}
.widget-navbar__links .sub-menu li.menu-item-has-children > a::after {
  content: '›'; margin-left: auto; font-size: 16px; line-height: 1;
  background: none; width: auto; height: auto; flex-shrink: 0; transform: none !important;
}

/* ─── CTAs ─────────────────────────────────────────────────── */
.widget-navbar__cta {
  display: flex; align-items: center; gap: 10px; padding: 0 0 0 12px;
}
.widget-navbar__book {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white); font-weight: 700; font-size: 13.5px;
  padding: 9px 20px; border-radius: 9999px;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.widget-navbar__book:hover {
  opacity: .92; transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(246,147,29,.35);
}

/* ─── Hamburger ─────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 8px; background: none; border: none;
  border-radius: 8px; transition: background .18s;
  position: relative; z-index: 201; /* above navbar stacking context */
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .28s, width .28s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile menu — side drawer ─────────────────────────────── */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 92vw);
  z-index: 300; overflow-y: auto; overflow-x: hidden;
  background: #fff;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 48px rgba(10,22,40,.25);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__backdrop {
  position: fixed; inset: 0; z-index: 295;
  background: rgba(10,22,40,.55); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .32s;
}
.mobile-menu__backdrop.show { opacity: 1; pointer-events: auto; }

/* ── Drawer header ──────────────────────────────────────── */
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--dark, #071535) 0%, var(--primary, #2660ab) 100%);
  flex-shrink: 0; position: relative; overflow: hidden;
}
.mobile-menu__head::after {
  content: '';
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.mobile-menu__head-logo {
  display: inline-flex; align-items: center; text-decoration: none;
  background: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  flex: 0 0 auto;
  height: 60px;
}
.mobile-menu__logo-img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: left center;
  display: block;
}
.mobile-menu__close {
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background .18s, transform .18s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }

/* ── Nav list ────────────────────────────────────────────── */
.mobile-menu__inner { flex: 1; padding: 8px 0; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__list > li {
  display: flex; flex-wrap: wrap; align-items: stretch;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu__list > li > a {
  flex: 1 1 0; min-width: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 15px 22px;
  font-family: var(--font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 15px; font-weight: 600; color: var(--dark, #071535);
  transition: color .15s, background .15s, padding-left .15s;
}
.mobile-menu__list > li > a:hover,
.mobile-menu__list > li.hsj-active > a,
.mobile-menu__list > li.sub-open > a {
  color: var(--primary, #2660ab);
  background: rgba(38,96,171,.05);
  padding-left: 26px;
}
.mobile-menu__list > li > .sub-menu { flex-basis: 100%; }

/* Arrow button — sits beside the <a> link */
.mobile-menu__list li.menu-item-has-children > .mobile-sub-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; flex-shrink: 0;
  background: none; border: none; border-left: 1px solid var(--gray-100);
  cursor: pointer; padding: 0;
  color: var(--gray-500);
  transition: background .18s, color .18s;
}
.mobile-menu__list li.menu-item-has-children > .mobile-sub-arrow svg {
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu__list li.menu-item-has-children > .mobile-sub-arrow:hover {
  background: rgba(38,96,171,.06); color: var(--primary, #2660ab);
}
.mobile-menu__list li.menu-item-has-children.sub-open > .mobile-sub-arrow svg {
  transform: rotate(90deg);
}
.mobile-menu__list li.menu-item-has-children.sub-open > .mobile-sub-arrow {
  background: rgba(38,96,171,.10); color: var(--primary, #2660ab);
}

/* Sub-menu accordion */
.mobile-menu__list .sub-menu {
  list-style: none; padding: 0; margin: 0;
  overflow: hidden; max-height: 0; display: block !important;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
  background: #fafafa;
  border-left: 3px solid rgba(38,96,171,.25);
  margin-left: 22px;
}
.mobile-menu__list .sub-menu li { border-bottom: 1px solid rgba(0,0,0,.04); }
.mobile-menu__list .sub-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px;
  font-size: 13.5px; font-weight: 500; color: var(--gray-600);
  transition: color .15s, background .15s;
}
.mobile-menu__list .sub-menu a::before {
  content: ''; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary, #2660ab); opacity: .5;
}
.mobile-menu__list .sub-menu a:hover {
  color: var(--primary, #2660ab);
  background: rgba(38,96,171,.06);
}

/* ── CTA buttons ─────────────────────────────────────────── */
.mobile-menu__cta {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px 18px 14px; flex-shrink: 0;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.mobile-menu__cta .btn { justify-content: center; width: 100%; font-size: 14px; }

/* ── Quick contact strip ─────────────────────────────────── */
.mobile-menu__contact {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 18px 18px; flex-shrink: 0; flex-wrap: wrap;
  background: var(--gray-50);
}
.mobile-menu__contact a {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 600; color: var(--gray-500);
  transition: color .15s; white-space: nowrap;
}
.mobile-menu__contact a:hover { color: var(--primary, #2660ab); }
.mobile-menu__contact-sep { color: var(--gray-300); font-size: 12px; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.widget-hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
  /* fallback: shows even before video loads / if autoplay is blocked */
  background: linear-gradient(135deg,#071535 0%,#2660ab 55%,#0d2a5e 100%);
}
/* ── Widget background media layer (shared by all sections) ── */
.widget-bg-layer {
  position: absolute; inset: 0; overflow: hidden;
  z-index: 0; pointer-events: none;
}
.widget-bg-layer__video,
.widget-bg-layer__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.widget-bg-layer__overlay {
  position: absolute; inset: 0;
}
/* Sections that may receive a bg-layer need position:relative so the
   absolute bg-layer is contained — but NO overflow:hidden here, because
   SiteOrigin Page Builder positions its own background layers absolutely
   and overflow:hidden clips them. The bg-layer div has its own overflow:hidden. */
.widget-rescue,
.widget-insurance,
.widget-tours,
.widget-why,
.widget-contact,
.widget-paths {
  position: relative;
}
/* Content always sits above the bg layer */
.widget-rescue > .container,
.widget-insurance > .container,
.widget-tours > .container,
.widget-why > .container,
.widget-contact > .container,
.widget-paths > .container,
.widget-testimonials > .container {
  position: relative; z-index: 1;
}

/* Hero bg-layer elements (video / image inside .hero-bg) */
.hero-bg__video,
.hero-bg__img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-bg__overlay {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: relative; overflow: hidden;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 70% 30%,rgba(246,147,29,.18) 0%,transparent 60%),
              radial-gradient(ellipse at 30% 70%,rgba(38,96,171,.3) 0%,transparent 50%);
}
.mountain-silhouette {
  position: absolute; bottom: 0; left: 0; right: 0; height: 32%; pointer-events: none; z-index: 3;
  background: linear-gradient(to top,rgba(10,22,40,.85),transparent);
  clip-path: polygon(0 60%,5% 45%,12% 55%,20% 30%,28% 50%,35% 25%,42% 45%,50% 15%,58% 40%,65% 20%,72% 45%,80% 30%,88% 50%,95% 35%,100% 55%,100% 100%,0 100%);
}
.hero-cloud { position: absolute; border-radius: 9999px; background: rgba(255,255,255,.04); filter: blur(18px); pointer-events: none; z-index: 3; }
.hero-cloud-1 { width: 180px; height: 56px; top: 20%; left: 5%; animation: cloudMove 55s linear infinite; }
.hero-cloud-2 { width: 260px; height: 80px; top: 45%; left: 65%; animation: cloudMove 75s linear infinite; animation-delay: -35s; }

.widget-hero__content { position: relative; z-index: 2; padding: 80px 0 100px; max-width: 780px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 9999px; padding: 8px 18px;
  color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500;
}
.hero-badge .badge-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse-slow 2s infinite; flex-shrink: 0; }

.widget-hero__headline { font-family: var(--font-display); font-weight: 400; font-size: clamp(54px, 9vw, 96px); line-height: .95; letter-spacing: 2px; color: var(--white); margin-bottom: 6px; }
.widget-hero__headline-accent { color: var(--secondary); }
.widget-hero__sub { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,.7); max-width: 580px; line-height: 1.7; margin: 20px 0 36px; }
.widget-hero__sub strong { color: rgba(255,255,255,.95); font-weight: 600; }
.widget-hero__cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.widget-hero__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.hero-stat { background: rgba(255,255,255,.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 18px 14px; text-align: center; transition: transform .2s, background .2s; }
.hero-stat:hover { transform: translateY(-3px); background: rgba(255,255,255,.15); }
.hero-stat__num { font-family: var(--font-display); font-size: clamp(28px, 4vw, 38px); color: var(--white); line-height: 1; letter-spacing: 1px; }
.hero-stat__num span, .hero-stat__num .stat-suffix { color: var(--secondary); }
.hero-stat__label { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 5px; line-height: 1.4; }

/* ════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════ */
.widget-trust { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 28px 0; }
.widget-trust__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; gap: 20px; }
.widget-trust__badge { display: flex; align-items: center; gap: 10px; color: var(--gray-700); font-size: 13px; font-weight: 600; }
.widget-trust__badge-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(38,96,171,.07); border: 1px solid rgba(38,96,171,.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.widget-trust__divider { width: 1px; height: 32px; background: var(--gray-200); }

/* ════════════════════════════════════════════════════════════
   SERVICE PATHS
   ════════════════════════════════════════════════════════════ */
.widget-paths { padding: 90px 0; }
.widget-paths__header { text-align: center; margin-bottom: 56px; }
.widget-paths__header .section-sub { margin: 12px auto 0; }
.widget-paths__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.path-card {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 440px;
  cursor: pointer; transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.path-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--shadow-lg); }
.path-card__bg { position: absolute; inset: 0; }
.path-card--travellers .path-card__bg { background: linear-gradient(145deg,var(--primary) 0%,#1a5c8a 100%); }
.path-card--emergency  .path-card__bg { background: linear-gradient(145deg,#b91c1c 0%,#7f1d1d 100%); }
.path-card--partners   .path-card__bg { background: linear-gradient(145deg,#92400e 0%,#451a03 100%); }
.path-card__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top,rgba(0,0,0,.88) 30%,rgba(0,0,0,.3) 65%,rgba(0,0,0,.05) 100%); }
.path-card__hover-cta { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; opacity: 0; background: rgba(0,0,0,.5); transition: opacity .3s; }
.path-card:hover .path-card__hover-cta { opacity: 1; }
.path-card__body { position: relative; z-index: 3; padding: 32px; }
.path-card__label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 8px; }
.path-card--travellers .path-card__label { color: rgba(255,255,255,.65); }
.path-card--emergency  .path-card__label { color: rgba(255,180,180,.75); }
.path-card--partners   .path-card__label { color: rgba(246,147,29,.8); }
.path-card__title { font-family: var(--font-display); font-size: 28px; color: var(--white); line-height: 1.05; margin-bottom: 12px; letter-spacing: 1px; }
.path-card__desc  { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 16px; }
.path-card__list  { list-style: none; margin-bottom: 22px; }
.path-card__list li { font-size: 12px; color: rgba(255,255,255,.7); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.path-card__list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--secondary); flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   RESCUE WORKFLOW
   ════════════════════════════════════════════════════════════ */
.widget-rescue { padding: 90px 0; position: relative; }
.widget-rescue__header { margin-bottom: 60px; }
.widget-rescue__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.rescue-step { background: rgba(255,255,255,.08); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 32px 24px; text-align: center; transition: background .2s, transform .2s; }
.rescue-step:hover { background: rgba(255,255,255,.14); transform: translateY(-5px); }
.rescue-step__icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.rescue-step:nth-child(1) .rescue-step__icon { background: rgba(239,68,68,.2); }
.rescue-step:nth-child(2) .rescue-step__icon { background: rgba(249,115,22,.2); }
.rescue-step:nth-child(3) .rescue-step__icon { background: rgba(234,179,8,.2); }
.rescue-step:nth-child(4) .rescue-step__icon { background: rgba(34,197,94,.2); }
.rescue-step__num { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.rescue-step__title { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.3; }
.rescue-step__desc { font-size: 13px; color: rgba(255,255,255,.58); margin-top: 8px; line-height: 1.6; }

.rescue-cta-box { text-align: center; background: rgba(255,255,255,.07); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(239,68,68,.22); border-radius: 20px; padding: 48px 36px; max-width: 680px; margin: 0 auto; }
.rescue-cta-box__icon  { font-size: 56px; line-height: 1; margin-bottom: 16px; }
.rescue-cta-box__title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--white); margin-bottom: 10px; letter-spacing: 1px; }
.rescue-cta-box__sub   { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.65; margin-bottom: 28px; }
.rescue-cta-box__btns  { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.rescue-note { margin-top: 40px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-left: 4px solid var(--secondary); border-radius: 0 12px 12px 0; padding: 18px 24px; display: flex; align-items: flex-start; gap: 14px; }
.rescue-note p { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.65; }
.rescue-note strong { color: var(--white); }

/* ════════════════════════════════════════════════════════════
   TOURS
   ════════════════════════════════════════════════════════════ */
.widget-tours { padding: 90px 0; }
.widget-tours__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.widget-tours__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Tour card — full-bleed poster style */
.tour-card {
  position: relative;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: #0d2c4a;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  transition: transform .32s cubic-bezier(.25,.46,.45,.94), box-shadow .32s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.32); }

/* Background layer */
.tour-card__bg { position: absolute; inset: 0; }
.tour-card__visual-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.tour-card:hover .tour-card__visual-bg { transform: scale(1.08); }
.tour-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(
    170deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.22) 38%,
    rgba(0,0,0,.88) 100%
  );
  transition: background .3s;
}
.tour-card:hover .tour-card__shade {
  background: linear-gradient(
    170deg,
    rgba(0,0,0,.1) 0%,
    rgba(0,0,0,.25) 38%,
    rgba(0,0,0,.93) 100%
  );
}

/* Gradient bg fallbacks */
.tour-bg--ebc        { background: linear-gradient(160deg,#0d2c4a,#1a5c8a); }
.tour-bg--annapurna  { background: linear-gradient(160deg,#0a1050,#3d1a6e); }
.tour-bg--muktinath  { background: linear-gradient(160deg,#0d2a1a,#1a5c3a); }
.tour-bg--gosaikunda { background: linear-gradient(160deg,#0a1f3c,#1a4a6e); }
.tour-bg--lukla      { background: linear-gradient(160deg,#2a1400,#6e3a00); }
.tour-bg--private    { background: linear-gradient(160deg,#1a1a2e,#0f3460); }

/* Top row: badge + price chip */
.tour-card__top {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 2;
}
.tour-card__badge {
  background: var(--secondary, #C8AA6E); color: #071535;
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; padding: 4px 11px; border-radius: 9999px;
}
.tour-card__badge--popular { background: var(--red, #C8102E); color: #fff; }
.tour-card__price-chip {
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 11px; border-radius: 10px; text-align: right;
}
.tour-card__price-from { font-size: 9px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; display: block; }
.tour-card__price-chip strong { font-family: var(--font-display, 'Bebas Neue',sans-serif); font-size: 17px; color: #fff; letter-spacing: .5px; display: block; line-height: 1.1; }

/* Content area pinned to bottom */
.tour-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 22px; z-index: 2;
  transform: translateY(0); transition: transform .32s;
}
.tour-card__chips {
  display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 10px;
}
.tour-card__chip {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.82);
  font-size: 10.5px; padding: 3px 8px; border-radius: 6px;
}
.tour-card__title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 28px; color: #fff;
  line-height: 1.0; letter-spacing: .5px; margin-bottom: 8px;
}
.tour-card__desc {
  font-size: 12.5px; color: rgba(255,255,255,.68);
  line-height: 1.6; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.tour-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red, #C8102E); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: 9px 18px; border-radius: 8px;
  transition: background .2s, gap .15s;
}
.tour-card__cta:hover { background: #a50e24; color: #fff; gap: 9px; }
.tour-card__cta--quote {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
}
.tour-card__cta--quote:hover { background: rgba(255,255,255,.25); }

/* ════════════════════════════════════════════════════════════
   INSURANCE PARTNER
   ════════════════════════════════════════════════════════════ */
.widget-insurance { padding: 90px 0; }
.widget-insurance__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.widget-insurance__text .section-sub { margin-top: 14px; max-width: 440px; }
.widget-insurance__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.widget-insurance__services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.ins-item { background: var(--gray-50); border-radius: 10px; padding: 16px; border-left: 3px solid var(--secondary); transition: border-color .2s, background .2s; }
.ins-item:hover { background: rgba(246,147,29,.05); border-color: var(--primary); }
.ins-item__title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.ins-item__desc  { font-size: 12px; color: var(--gray-500); line-height: 1.5; }
.ins-card { background: var(--dark); border-radius: 20px; padding: 36px; color: var(--white); box-shadow: var(--shadow-lg); }
.ins-card__header { font-family: var(--font-display); font-size: 24px; color: var(--secondary); margin-bottom: 6px; letter-spacing: 1px; }
.ins-card__subtitle { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.ins-stat-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.ins-stat { display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; background: rgba(255,255,255,.06); border-radius: 10px; border: 1px solid rgba(255,255,255,.08); }
.ins-stat__label { font-size: 12px; color: rgba(255,255,255,.5); }
.ins-stat__value { font-family: var(--font-display); font-size: 16px; color: var(--secondary); letter-spacing: .5px; }
.ins-badge-row { display: flex; flex-wrap: wrap; gap: 8px; }
.ins-badge { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); background: var(--secondary); padding: 4px 10px; border-radius: 9999px; }
.ins-badge--blue { background: rgba(38,96,171,.25); color: rgba(255,255,255,.8); }

/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ════════════════════════════════════════════════════════════ */
.widget-why { padding: 90px 0; position: relative; }
.widget-why::after { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; pointer-events: none; background: radial-gradient(ellipse at top right,rgba(38,96,171,.25) 0%,transparent 70%); }
.widget-why__layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.widget-why__text .section-sub--white { margin-top: 14px; }
.widget-why__slogans { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.why-slogan { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 10px; line-height: 1.3; }
.why-slogan::before { content: ''; width: 3px; height: 20px; background: var(--secondary); border-radius: 2px; flex-shrink: 0; }
.widget-why__reasons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.feat-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 24px 20px; transition: background .2s, border-color .2s, transform .2s; }
.feat-card:hover { background: rgba(38,96,171,.12); border-color: rgba(38,96,171,.3); transform: translateY(-3px); }
.feat-card__icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg,var(--primary),var(--primary-dark)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feat-card__title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.feat-card__desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   CONTACT / EMERGENCY CTA
   ════════════════════════════════════════════════════════════ */
.widget-contact { padding: 90px 0; }
.widget-contact__header { text-align: center; margin-bottom: 56px; }
.widget-contact__header .section-sub { margin: 12px auto 0; }
.widget-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-block { border-radius: 20px; padding: 44px 38px; }
.contact-block--emergency { background: #0d4e8c; position: relative; overflow: hidden; }
.contact-block--emergency::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: rgba(239,68,68,.12); }
.contact-block--general { background: var(--white); border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); }
.contact-block__tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.contact-block__tag--red  { color: var(--red); }
.contact-block__tag--blue { color: var(--primary); }
.contact-block__title { font-family: var(--font-display); font-size: clamp(24px,3vw,34px); line-height: 1.05; margin-bottom: 10px; letter-spacing: 1px; }
.contact-block__title--white { color: var(--white); }
.contact-block__title--dark  { color: var(--dark); }
.contact-block__sub { font-size: 14px; line-height: 1.65; margin-bottom: 28px; }
.contact-block__sub--muted { color: rgba(255,255,255,.6); }
.contact-block__sub--gray  { color: var(--gray-500); }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item__icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-item__icon--red  { background: rgba(239,68,68,.15); border: 1px solid rgba(239,68,68,.25); }
.contact-item__icon--blue { background: rgba(38,96,171,.1); border: 1px solid rgba(38,96,171,.2); }
.contact-item__label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 2px; }
.contact-item__label--muted { color: rgba(255,255,255,.4); }
.contact-item__label--gray  { color: var(--gray-400); }
.contact-item__value { font-family: var(--font-display); font-size: 18px; letter-spacing: .5px; }
.contact-item__value--white { color: var(--white); }
.contact-item__value--dark  { color: var(--dark); }
.contact-block__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.widget-footer {
  position: relative;
  background: #fff;
  color: var(--dark);
  border-top: 1px solid var(--gray-200);
  padding: 64px 0 32px;
  overflow: hidden;
}
.widget-footer__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  /* opacity set inline from Customizer */
}
.widget-footer .container { position: relative; z-index: 1; }
.widget-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-200); }
.widget-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.widget-footer__logo-img {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  background: #fff; border: 2px solid var(--gray-200); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; padding: 5px;
}
.widget-footer__logo-img img { width: 100%; height: 100%; object-fit: contain; }
.widget-footer__brand-name { font-family: var(--font-display); font-size: 22px; color: var(--dark); letter-spacing: 1px; line-height: 1.1; }
.widget-footer__brand-name span { color: var(--secondary); }
.widget-footer__brand-sub { font-size: 10px; color: var(--gray-500); letter-spacing: 2px; text-transform: uppercase; }
.widget-footer__brand-desc { font-size: 13px; color: var(--gray-600); line-height: 1.7; margin: 14px 0 20px; }
.widget-footer__socials { display: flex; gap: 10px; }
.widget-footer__social { width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; color: var(--dark); }
.widget-footer__social:hover { background: var(--primary); color: #fff; }
.widget-footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px; }
.widget-footer__links { display: flex; flex-direction: column; gap: 10px; }
.widget-footer__links a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-600); transition: color .15s; }
.widget-footer__links a:hover { color: var(--primary); }
.widget-footer__bottom {
  margin-top: 24px; padding: 18px 24px;
  background: var(--primary); border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.widget-footer__copy { font-size: 13px; color: #fff; }
.widget-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.widget-footer__legal a { font-size: 13px; color: rgba(255,255,255,.8); transition: color .15s; }
.widget-footer__legal a:hover { color: #fff; }

/* ════════════════════════════════════════════════════════════
   POPUP
   ════════════════════════════════════════════════════════════ */
.hsj-popup-backdrop { position: fixed; inset: 0; z-index: 9999; background: rgba(10,22,40,.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; }
.hsj-popup { background: var(--white); border-radius: 22px; overflow: hidden; max-width: 480px; width: 100%; box-shadow: 0 24px 80px rgba(0,0,0,.35); }
.hsj-popup-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.15); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--white); }
.hsj-popup-close:hover { background: rgba(255,255,255,.25); }

/* ════════════════════════════════════════════════════════════
   TOUR DETAIL PAGE  (single-hsj_tour.php)
   80% white / brand-colour accents
   ════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.td-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #071535;
}
.td-hero__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.td-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,.18) 0%,
    rgba(10,22,40,.55) 40%,
    rgba(10,22,40,.92) 80%,
    rgba(10,22,40,1)   100%
  );
}
.td-hero__content {
  position: relative;
  padding-top: 48px;
  padding-bottom: 56px;
  max-width: 860px;
}
.td-hero__top { margin-bottom: 14px; }
.td-hero__badge {
  display: inline-flex; align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 14px; border-radius: 99px;
}
.td-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: .5px;
  margin: 0 0 14px;
}
.td-hero__sub {
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 0 28px;
}
/* stat pills row */
.td-hero__stats {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 28px;
}
.td-hero__stat {
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  padding: 10px 18px; border-radius: 12px;
  min-width: 110px;
}
.td-hero__stat-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.5);
}
.td-hero__stat-val {
  font-size: 15px; font-weight: 700; color: #fff; line-height: 1.2;
}
/* CTA buttons */
.td-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.td-hero__cta-book {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #fff; font-size: 14px; font-weight: 700;
  padding: 13px 26px; border-radius: 10px;
  text-decoration: none; letter-spacing: .03em;
  transition: background .2s, transform .2s;
}
.td-hero__cta-book:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }
.td-hero__cta-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 13px 22px; border-radius: 10px;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.td-hero__cta-wa:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff; }

/* ── Body layout ── */
.td-body {
  background: #f8fafc;
  padding: 56px 0 80px;
}
.td-body__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

/* ── Main column sections ── */
.td-main { display: flex; flex-direction: column; gap: 0; }
.td-section {
  background: #fff;
  border-radius: 18px;
  padding: 36px 36px 32px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.04);
}
.td-section:last-child { margin-bottom: 0; }
.td-section--book { background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%); border: 1px solid #d0e8fa; }
.td-section__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--dark);
  margin: 0 0 22px;
  letter-spacing: .8px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 10px;
}
.td-section__title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 22px;
  background: var(--primary);
  border-radius: 3px;
  flex-shrink: 0;
}

/* prose inside tour overview */
.td-prose { color: var(--gray-700); font-size: 16px; line-height: 1.8; }
.td-prose p  { margin: 0 0 1.2em; }
.td-prose h2,.td-prose h3 { font-family: var(--font-display); color: var(--dark); margin: 1.6em 0 .6em; letter-spacing: 1px; }
.td-prose a  { color: var(--primary); text-decoration: underline; }
.td-prose img { max-width: 100%; border-radius: 12px; }

/* itinerary */
.td-itinerary {
  color: var(--gray-700); font-size: 15px; line-height: 1.9;
  padding-left: 0;
}

/* ── Checklist ── */
.td-checklist {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.td-checklist__item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--gray-700); line-height: 1.55;
}
.td-checklist__icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.td-checklist__icon--inc { background: #dcfce7; color: #16a34a; }
.td-checklist__icon--exc { background: #fee2e2; color: #dc2626; }

/* ── Included / Excluded ── */
.td-inex {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.td-inex__col {
  background: #f9fafb;
  border-radius: 14px;
  padding: 24px;
  border-top: 3px solid;
}
.td-inex__col--inc { border-color: #16a34a; }
.td-inex__col--exc { border-color: #dc2626; }
.td-inex__hd {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 16px;
}
.td-inex__hd--inc { color: #16a34a; }
.td-inex__hd--exc { color: #dc2626; }

/* ── Sidebar ── */
.td-sidebar {
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column; gap: 18px;
}
.td-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
  border: 1px solid #e8eef4;
}

/* Booking card */
.td-card--booking {
  border-top: 4px solid var(--primary);
}
.td-card__price-wrap { margin-bottom: 20px; }
.td-card__price-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gray-400); margin-bottom: 4px;
}
.td-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem; color: var(--dark);
  line-height: 1; letter-spacing: 1px;
}
.td-card__price-sub {
  font-size: 12px; color: var(--gray-400); margin-top: 2px; text-transform: uppercase; letter-spacing: .06em;
}
/* Booking card buttons */
.td-card__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: .03em;
  text-decoration: none; text-align: center; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  margin-top: 10px;
}
.td-card__btn:first-of-type { margin-top: 0; }
.td-card__btn:hover { transform: translateY(-2px); }
.td-card__btn--primary {
  background: var(--primary);
  color: #fff;
}
.td-card__btn--primary:hover { background: var(--primary-dark); box-shadow: 0 8px 24px rgba(38,96,171,.3); color: #fff; }
.td-card__btn--wa {
  background: #25D366; color: #fff;
}
.td-card__btn--wa:hover { background: #1ebe5d; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.td-card__btn--emergency {
  background: linear-gradient(135deg,#C8102E,#a00d25);
  color: #fff;
}
.td-card__btn--emergency:hover { box-shadow: 0 8px 24px rgba(200,16,46,.4); color: #fff; }
/* trust badges under buttons */
.td-card__trust {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.td-card__trust span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--gray-500); font-weight: 600;
}

/* Details card */
.td-card__heading {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gray-400);
  margin: 0 0 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.td-detail-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.td-detail-row:last-child { border-bottom: none; }
.td-detail-row__icon { color: var(--primary); flex-shrink: 0; display: flex; }
.td-detail-row__label { color: var(--gray-500); flex: 1; }
.td-detail-row__val { font-weight: 700; color: var(--dark); text-align: right; }

/* Emergency card */
.td-card--emergency {
  /* background: var(--dark); */
  border: 1px solid rgba(255,255,255,.08);
}
.td-emergency__label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #C8102E;
  margin-bottom: 8px;
}
.td-emergency__pulse {
  display: inline-flex; align-items: center; justify-content: center;
  width: 12px; height: 12px; position: relative; flex-shrink: 0;
}
.td-emergency__pulse span {
  display: block; width: 8px; height: 8px; background: #C8102E;
  border-radius: 50%; position: relative;
}
.td-emergency__pulse span::before {
  content: '';
  position: absolute; inset: -4px;
  background: rgba(200,16,46,.25);
  border-radius: 50%;
  animation: pulse-ring 1.4s ease-out infinite;
}
.td-emergency__phone {
  font-family: var(--font-display);
  font-size: 1.5rem; color:var(--dark);
  letter-spacing: .5px; margin-bottom: 16px;
}

/* ════════════════════════════════════════════════════════════
   BOOKING FORM
   ════════════════════════════════════════════════════════════ */
.hsj-booking-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hsj-form-group { display: flex; flex-direction: column; gap: 6px; }
.hsj-form-group--full { grid-column: 1 / -1; }
.hsj-form-label { font-size: .875rem; font-weight: 600; color: var(--gray-700); }
.hsj-form-input { width: 100%; padding: 11px 14px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-size: .9375rem; color: var(--dark); background: var(--white); transition: border-color .2s, box-shadow .2s; font-family: inherit; }
.hsj-form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(38,96,171,.1); }
.hsj-form-textarea { min-height: 110px; resize: vertical; }
.hsj-form-notice { display: flex; align-items: flex-start; gap: 14px; padding: 16px 20px; border-radius: 12px; margin-bottom: 20px; font-size: .9375rem; line-height: 1.5; }
.hsj-form-notice--success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.hsj-form-notice--error   { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ════════════════════════════════════════════════════════════
   SEARCH FORM
   ════════════════════════════════════════════════════════════ */
.hsj-search-form { display: flex; }
.hsj-search-form__input { flex: 1; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-right: none; border-radius: 10px 0 0 10px; font-size: 14px; font-family: inherit; background: var(--white); color: var(--dark); outline: none; transition: border-color .2s; }
.hsj-search-form__input:focus { border-color: var(--primary); }
.hsj-search-form__btn { padding: 12px 18px; background: var(--primary); color: var(--white); border: none; border-radius: 0 10px 10px 0; cursor: pointer; transition: background .2s; display: flex; align-items: center; }
.hsj-search-form__btn:hover { background: var(--secondary); }
.hsj-search-form-wrap { margin-bottom: 40px; }

/* ════════════════════════════════════════════════════════════
   BLOG ARCHIVE
   ════════════════════════════════════════════════════════════ */
.hsj-archive__hero { position: relative; background: linear-gradient(135deg,var(--dark) 0%,var(--primary) 100%); padding: 80px 0 60px; text-align: center; color: var(--white); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hsj-archive__hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg,rgba(10,22,40,.85) 0%,rgba(38,96,171,.75) 100%); pointer-events: none; }
.hsj-archive__hero--has-img .hsj-archive__hero-overlay { background: linear-gradient(to top, rgba(10,22,40,.9) 0%, rgba(10,22,40,.55) 50%, rgba(10,22,40,.25) 100%); }
.hsj-archive__title { font-family: var(--font-display); font-size: clamp(2.5rem,6vw,5rem); line-height: 1; margin: 0 0 12px; letter-spacing: 2px; }
.hsj-archive__title em { color: var(--secondary); font-style: normal; }
.hsj-archive__desc { color: rgba(255,255,255,.7); font-size: 16px; margin: 0; }
.hsj-archive__body { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 64px 0 80px; align-items: start; }

.hsj-post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 48px; }
.hsj-post-card { background: var(--white); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.hsj-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hsj-post-card__thumb { display: block; overflow: hidden; aspect-ratio: 16/9; }
.hsj-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.hsj-post-card:hover .hsj-post-card__thumb img { transform: scale(1.05); }
.hsj-post-card__body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.hsj-post-card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.hsj-post-card__cat { background: rgba(38,96,171,.08); color: var(--primary); border-radius: 9999px; padding: 2px 10px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; text-decoration: none; }
.hsj-post-card__cat:hover { background: var(--primary); color: var(--white); }
.hsj-post-card__title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; line-height: 1.05; margin: 0 0 10px; letter-spacing: .5px; }
.hsj-post-card__title a { color: var(--dark); }
.hsj-post-card__title a:hover { color: var(--primary); }
.hsj-post-card__excerpt { color: var(--gray-500); font-size: 14px; line-height: 1.65; margin: 0 0 16px; flex: 1; }
.hsj-post-card__link { color: var(--primary); font-size: 13px; font-weight: 700; text-decoration: none; align-self: flex-start; }
.hsj-post-card__link:hover { color: var(--secondary); }
.hsj-no-posts { padding: 64px 32px; text-align: center; background: var(--gray-50); border-radius: 18px; color: var(--gray-500); font-size: 16px; border: 1px solid var(--gray-200); }

.hsj-pagination { display: flex; justify-content: center; margin-top: 24px; }
.hsj-pagination .page-numbers { display: flex; gap: 6px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
.hsj-pagination .page-numbers a,
.hsj-pagination .page-numbers span { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px; font-size: 14px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--gray-200); color: var(--dark); background: var(--white); transition: all .2s; }
.hsj-pagination .page-numbers a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.hsj-pagination .page-numbers .current { background: var(--primary); color: var(--white); border-color: var(--primary); }
.hsj-pagination .page-numbers .dots { border: none; background: none; }

/* ════════════════════════════════════════════════════════════
   SINGLE POST
   ════════════════════════════════════════════════════════════ */
.hsj-single__hero { position: relative; min-height: 480px; display: flex; align-items: flex-end; background: linear-gradient(135deg,var(--dark) 0%,var(--primary) 100%); overflow: hidden; }
/* When featured image present: show it via background-image (inline style on div) */
.hsj-single__hero--has-img { min-height: 560px; background-size: cover; background-position: center top; background-repeat: no-repeat; }
/* No image: solid gradient overlay */
.hsj-single__hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg,rgba(10,22,40,.96) 0%,rgba(38,96,171,.9) 100%); }
/* Has image: lighter overlay so photo shows clearly, dark only at bottom for text legibility */
.hsj-single__hero--has-img .hsj-single__hero-overlay {
  background: linear-gradient(
    to top,
    rgba(10,22,40,.88) 0%,
    rgba(10,22,40,.50) 35%,
    rgba(10,22,40,.20) 65%,
    rgba(10,22,40,.05) 100%
  );
}
.hsj-single__hero-content { position: relative; z-index: 2; padding: 64px 0 48px; color: var(--white); max-width: 760px; }
.hsj-single__cat { display: inline-block; background: var(--secondary); color: var(--dark); border-radius: 9999px; padding: 4px 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; text-decoration: none; margin-bottom: 14px; }
.hsj-single__title { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.5rem); line-height: 1; margin: 0 0 16px; letter-spacing: 1.5px; }
.hsj-single__meta { display: flex; flex-wrap: wrap; gap: 16px; }
.hsj-single__author,.hsj-single__read-time { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.7); }
.hsj-single__body { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 64px 0 80px; align-items: start; }
.hsj-single__content { min-width: 0; }

.hsj-prose { color: var(--gray-700); font-size: 17px; line-height: 1.8; }
.hsj-prose h2,.hsj-prose h3,.hsj-prose h4 { font-family: var(--font-display); font-weight: 400; color: var(--dark); text-transform: uppercase; margin: 2em 0 .6em; letter-spacing: 1.5px; }
.hsj-prose h2 { font-size: clamp(1.8rem,3vw,2.4rem); }
.hsj-prose h3 { font-size: clamp(1.4rem,2.5vw,1.8rem); }
.hsj-prose p  { margin: 0 0 1.4em; }
.hsj-prose a  { color: var(--primary); text-decoration: underline; }
.hsj-prose a:hover { color: var(--secondary); }
.hsj-prose ul,.hsj-prose ol { padding-left: 1.5em; margin: 0 0 1.4em; }
.hsj-prose li { margin-bottom: .4em; }
/* ── Blockquote ── */
.hsj-prose blockquote {
  position: relative;
  border: none;
  margin: 2.2em 0;
  padding: 36px 36px 28px 64px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
  border-radius: 0 18px 18px 0;
  border-left: 5px solid;
  border-image: linear-gradient(180deg, var(--primary) 0%, var(--secondary,#0ea5e9) 100%) 1;
  color: var(--gray-700);
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.75;
}
.hsj-prose blockquote::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 18px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--primary);
  opacity: .25;
  font-style: normal;
}
.hsj-prose blockquote p { margin: 0; }
.hsj-prose blockquote cite,
.hsj-prose blockquote footer {
  display: block;
  margin-top: 14px;
  font-size: .82em;
  font-style: normal;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
}
.hsj-prose blockquote cite::before { content: '— '; }

/* ── Images — constrain & never overflow ── */
.hsj-prose img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: 14px;
  margin: 1.8em auto;
}
/* WordPress classic editor image wrapper */
.hsj-prose .wp-caption,
.hsj-prose figure.wp-block-image {
  max-width: 100% !important;
  width: auto !important;
  margin: 1.8em auto;
}
.hsj-prose .wp-caption img,
.hsj-prose figure.wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 14px 14px 0 0;
  margin: 0;
  display: block;
}
/* Alignment helpers */
.hsj-prose .alignleft  { float: left;  margin: .5em 1.8em 1em 0; max-width: 48%; }
.hsj-prose .alignright { float: right; margin: .5em 0 1em 1.8em; max-width: 48%; }
.hsj-prose .aligncenter,
.hsj-prose .aligncenter img { margin-left: auto; margin-right: auto; }
.hsj-prose .alignwide  { max-width: 100%; }
.hsj-prose .alignfull  { max-width: 100%; border-radius: 0; }

/* ── Image captions ── */
.hsj-prose .wp-caption-text,
.hsj-prose figcaption,
.hsj-prose .wp-block-image figcaption,
.hsj-prose .wp-element-caption {
  display: block;
  background: #fff;
  border-top: 3px solid var(--primary);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  padding: 9px 16px 10px;
  border-radius: 0 0 14px 14px;
  margin: 0;
  font-style: normal;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
}
/* For captions not directly under a figure (classic editor standalone) */
.hsj-prose .wp-caption .wp-caption-text {
  border-radius: 0 0 14px 14px;
}
.hsj-prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.hsj-prose th { background: var(--primary); color: var(--white); padding: 10px 14px; text-align: left; font-size: 13px; }
.hsj-prose td { padding: 10px 14px; border-bottom: 1px solid var(--gray-200); }
.hsj-prose code { background: var(--gray-100); padding: 2px 6px; border-radius: 4px; font-size: .87em; }
.hsj-prose pre  { background: var(--dark); color: var(--gray-200); padding: 20px; border-radius: 12px; overflow-x: auto; margin: 1.5em 0; }
.hsj-prose strong { color: var(--dark); font-weight: 700; }

.hsj-single__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 32px 0 0; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.hsj-single__tags-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); }
.hsj-tag { display: inline-block; background: var(--gray-100); color: var(--gray-600); border-radius: 9999px; padding: 3px 12px; font-size: 12px; text-decoration: none; transition: all .2s; }
.hsj-tag:hover { background: var(--primary); color: var(--white); }
.hsj-single__share { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 24px; }
.hsj-single__share-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); }
.hsj-share-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; text-decoration: none; transition: all .2s; }
.hsj-share-btn--twitter:hover  { background: #1da1f2; color: var(--white); }
.hsj-share-btn--facebook { background: #e8f0fe; color: #1877f2; }
.hsj-share-btn--facebook:hover { background: #1877f2; color: var(--white); }
.hsj-share-btn--whatsapp { background: #e6f9ee; color: #25d366; }
.hsj-share-btn--whatsapp:hover { background: #25d366; color: var(--white); }
.hsj-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--gray-200); }
.hsj-post-nav__item { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px; border: 1.5px solid var(--gray-200); border-radius: 14px; text-decoration: none; transition: all .2s; }
.hsj-post-nav__item:hover { border-color: var(--primary); background: rgba(38,96,171,.04); }
.hsj-post-nav__item--next { text-align: right; }
.hsj-post-nav__dir  { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-400); font-weight: 700; }
.hsj-post-nav__name { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.3; }

/* ════════════════════════════════════════════════════════════
   SIDEBAR
   ════════════════════════════════════════════════════════════ */
.sidebar-widget { margin-bottom: 32px; }
.sidebar-widget__title { font-family: var(--font-display); font-size: 20px; letter-spacing: 1.5px; color: var(--dark); margin: 0 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--secondary); }
.sidebar-recent-posts { list-style: none; padding: 0; margin: 0; }
.sidebar-recent-posts__item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-recent-posts__item:last-child { border-bottom: none; }
.sidebar-recent-posts__thumb { flex-shrink: 0; width: 56px; height: 56px; border-radius: 10px; overflow: hidden; display: block; }
.sidebar-recent-posts__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-recent-posts__title { font-size: 13px; font-weight: 600; color: var(--dark); text-decoration: none; line-height: 1.35; display: block; }
.sidebar-recent-posts__title:hover { color: var(--primary); }
.sidebar-categories { list-style: none; padding: 0; margin: 0; }
.sidebar-categories__item { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-categories__item:last-child { border-bottom: none; }
.sidebar-categories__item a { font-size: 14px; color: var(--gray-700); text-decoration: none; font-weight: 500; }
.sidebar-categories__item a:hover { color: var(--primary); }
.sidebar-categories__count { background: var(--gray-100); color: var(--gray-500); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 9999px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tag { display: inline-block; background: var(--gray-100); color: var(--gray-600); border-radius: 9999px; padding: 4px 12px; font-size: 12px; text-decoration: none; transition: all .2s; }
.sidebar-tag:hover { background: var(--primary); color: var(--white); }
.sidebar-cta { background: linear-gradient(135deg,var(--dark) 0%,var(--primary) 100%); border-radius: 18px; padding: 24px 20px; text-align: center; color: var(--white); }
.sidebar-cta__icon { margin-bottom: 12px; }
.sidebar-cta__title { font-family: var(--font-display); font-size: 22px; letter-spacing: 1px; margin: 0 0 8px; }
.sidebar-cta__text { font-size: 13px; color: rgba(255,255,255,.7); margin: 0 0 16px; line-height: 1.5; }
.sidebar-cta__btn { display: block; text-align: center; }

/* ════════════════════════════════════════════════════════════
   INTERIOR PAGE
   ════════════════════════════════════════════════════════════ */
.hsj-page__hero { position: relative; min-height: 280px; display: flex; align-items: flex-end; background: linear-gradient(135deg,var(--dark) 0%,var(--primary) 100%); overflow: hidden; }
.hsj-page__hero-img { position: absolute; inset: 0; z-index: 0; }
.hsj-page__hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hsj-page__hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top,rgba(10,22,40,.88) 20%,rgba(10,22,40,.45) 100%); }
.hsj-page__hero-content { position: relative; z-index: 2; padding: 48px 0 36px; color: var(--white); }
.hsj-page__title { font-family: var(--font-display); font-size: clamp(2.5rem,5vw,4rem); line-height: 1; margin: 0 0 10px; letter-spacing: 2px; }
.hsj-page__breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); }
.hsj-page__breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.hsj-page__breadcrumb a:hover { color: var(--white); }
.hsj-page__body { padding: 60px 0 80px;  }
.hsj-page-links { margin-top: 32px; display: flex; gap: 8px; flex-wrap: wrap; }
.hsj-page-links a { padding: 6px 14px; background: var(--gray-100); border-radius: 8px; font-size: 13px; color: var(--primary); text-decoration: none; }
.hsj-page-links a:hover,.hsj-page-links .current { background: var(--primary); color: var(--white); }
.hsj-page__article { display: block; }
.hsj-page__cover { margin: 0 0 40px; border-radius: 16px; overflow: hidden; }
.hsj-page__cover-img { width: 100%; height: auto; display: block; max-height: 480px; object-fit: cover; }
.hsj-page__content { max-width: 800px; font-size: 16px; line-height: 1.8; color: var(--gray-700); }
.hsj-page__content h2,.hsj-page__content h3 { color: var(--dark); font-family: var(--font-display); letter-spacing: 1px; margin: 1.6em 0 .6em; }
.hsj-page__content p { margin: 0 0 1.2em; }
.hsj-page__content ul,.hsj-page__content ol { padding-left: 1.5em; margin: 0 0 1.2em; }
.hsj-page__content a { color: var(--primary); text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   404
   ════════════════════════════════════════════════════════════ */
.hsj-404 { min-height: 70vh; display: flex; align-items: center; padding: 80px 0; }
.hsj-404__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.hsj-404__badge { font-family: var(--font-display); font-size: 130px; font-weight: 400; line-height: 1; color: var(--gray-100); letter-spacing: 3px; margin-bottom: -16px; }
.hsj-404__title { font-family: var(--font-display); font-size: 3rem; letter-spacing: 2px; color: var(--dark); margin: 0 0 16px; }
.hsj-404__sub { color: var(--gray-500); font-size: 17px; line-height: 1.65; margin: 0 0 32px; }
.hsj-404__search { max-width: 440px; margin: 0 auto 32px; }
.hsj-404__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* ════════════════════════════════════════════════════════════
   CONTACT FORM (shortcode)
   ════════════════════════════════════════════════════════════ */
.hsj-contact-field { display: block; width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--dark); background: var(--white); outline: none; transition: border-color .2s; }
.hsj-contact-field:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(38,96,171,.1); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .widget-tours__grid       { grid-template-columns: repeat(2, 1fr); }
  .widget-footer__top       { grid-template-columns: 1fr 1fr; }
  .widget-why__layout       { grid-template-columns: 1fr; gap: 48px; }
  .widget-insurance__layout { grid-template-columns: 1fr; gap: 48px; }
  .td-body__grid            { grid-template-columns: 1fr; }
  .td-sidebar               { position: static; }
  .hsj-archive__body        { grid-template-columns: 1fr; gap: 48px; }
  .hsj-single__body         { grid-template-columns: 1fr; gap: 48px; }
}

/* Nav switches to hamburger earlier than the general mobile breakpoint.
   The full desktop nav (logo + 5 links + Donate button) needs close to
   the full 1200px container width — between ~769px and ~1150px there
   wasn't enough room, causing horizontal overflow (CTA button clipped
   off the right edge, page gains a horizontal scrollbar). */
@media (max-width: 1150px) {
  .widget-navbar__links,.widget-navbar__cta { display: none !important; }
  .hamburger { display: flex; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET / MOBILE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .widget-topbar { display: none; }
  .widget-navbar__inner { height: 64px; }
  .widget-navbar__logo-img { height: 50px; max-height: calc(100% - 10px); }
  .hcp-contact-widget, section[id] { scroll-margin-top: 80px; }

  /* Hero */
  .widget-hero { min-height: 100svh; }
  .widget-hero__content { padding: 72px 0 56px; }
  .widget-hero__headline { font-size: clamp(34px,9vw,52px) !important; line-height: 1.08; }
  .widget-hero__sub { font-size: 15px; margin: 12px 0 20px; }
  .widget-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
  .hero-stat { padding: 14px 10px; }
  .hero-stat__num { font-size: clamp(22px,6vw,30px); }
  .widget-hero__cta-group { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .widget-hero__cta-group .btn { width: 100%; justify-content: center; }

  /* Section padding — tighter on mobile */
  .widget-paths, .widget-rescue, .widget-insurance, .widget-tours,
  .widget-why, .widget-contact, .widget-testimonials { padding: 48px 0; }

  /* Section header margins — reduce on mobile */
  .widget-paths__header { margin-bottom: 24px; }
  .widget-rescue__header { margin-bottom: 28px; }
  .widget-tours__header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
  .widget-contact__header { margin-bottom: 28px; }
  .widget-testimonials__header { margin-bottom: 32px; }
  .widget-testimonials__stage { min-height: 300px; }

  /* ── MOBILE HORIZONTAL SLIDERS ───────────────────────────
     Paths, rescue steps, tours, why-reasons all become swipeable
     horizontal sliders. Each card is ~80vw wide so the next
     card peeks, signalling there's more to scroll.
  ─────────────────────────────────────────────────────────── */
  .widget-paths__grid,
  .widget-rescue__steps,
  .widget-tours__grid,
  .widget-why__reasons {
    display: flex !important;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    margin-left: 0; margin-right: 0;
    padding: 4px 20px 24px;
    scroll-padding-left: 20px;
  }
  .widget-paths__grid::-webkit-scrollbar,
  .widget-rescue__steps::-webkit-scrollbar,
  .widget-tours__grid::-webkit-scrollbar,
  .widget-why__reasons::-webkit-scrollbar { display: none; }

  .path-card {
    flex: 0 0 calc(100vw - 40px) !important;
    min-height: 340px;
    scroll-snap-align: start;
  }
  .rescue-step {
    flex: 0 0 calc(100vw - 40px) !important;
    scroll-snap-align: start;
  }
  .tour-card {
    flex: 0 0 calc(100vw - 40px) !important;
    height: 300px;
    scroll-snap-align: start;
  }
  .feat-card {
    flex: 0 0 calc(100vw - 40px) !important;
    scroll-snap-align: start;
  }

  /* Scroll-section animations break inside overflow-x containers
     (IntersectionObserver uses viewport, not the scroll container).
     Force all cards visible immediately on mobile. */
  .widget-paths__grid .scroll-section,
  .widget-tours__grid .scroll-section {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Disable hover transforms on mobile — translateY inside overflow-x
     container gets clipped and creates visual glitches on touch. */
  .path-card:hover,
  .tour-card:hover,
  .rescue-step:hover,
  .feat-card:hover {
    transform: none;
  }

  /* Insurance — keep 2-col on mobile (items are compact) */
  .widget-insurance__services { grid-template-columns: 1fr 1fr; }

  /* Insurance / Why — reduce layout gap when stacked */
  .widget-insurance__layout { gap: 32px; }
  .widget-why__layout { gap: 28px; }

  /* Contact */
  .widget-contact__grid { grid-template-columns: 1fr; }

  /* Rescue CTA box — tighter padding */
  .rescue-cta-box { padding: 32px 24px; }
  .rescue-cta-box__btns { flex-direction: column; }
  .rescue-cta-box__btns .btn { width: 100%; justify-content: center; }

  /* Trust bar — horizontal scroll on mobile */
  .widget-trust__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
    padding: 0 4px;
    justify-content: flex-start;
  }
  .widget-trust__inner::-webkit-scrollbar { display: none; }
  .widget-trust__badge { flex-shrink: 0; padding: 6px 16px; }
  .widget-trust__divider { flex-shrink: 0; }

  /* Footer */
  .widget-footer { padding: 40px 0 24px; }
  .widget-footer__top { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 32px; }
  .widget-footer__logo-img { width: 38px; height: 38px; }
  .widget-footer__brand-name { font-size: 17px; }
  .widget-footer__brand-desc { font-size: 12.5px; margin: 10px 0 16px; }
  .widget-footer__social { width: 32px; height: 32px; }
  .widget-footer__col-title { font-size: 10px; margin-bottom: 12px; }
  .widget-footer__links a { font-size: 13px; }
  .widget-footer__bottom { margin-top: 18px; padding: 14px 18px; }
  .widget-footer__copy,
  .widget-footer__legal a { font-size: 12px; }

  /* Blog / archive */
  .hsj-post-grid { grid-template-columns: 1fr; }
  .hsj-post-nav { grid-template-columns: 1fr; }
  .hsj-post-nav__item--next { text-align: left; }
  .hsj-booking-form__grid { grid-template-columns: 1fr; }
  .td-inex { grid-template-columns: 1fr; }
  .td-section { padding: 24px 20px; }
  .td-hero__stat { min-width: 90px; }

  /* Missions widget */
  .widget-missions { grid-template-columns: 1fr; min-height: unset; }
  .widget-missions__right { display: none; }
  .widget-missions__left { min-height: 480px; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero */
  .widget-hero__content { padding: 60px 0 44px; }
  .widget-hero__headline { font-size: 32px !important; line-height: 1.05; }
  .widget-hero__stats { gap: 8px; }
  .hero-stat { padding: 12px 8px; border-radius: 10px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }

  /* Section padding */
  .widget-paths, .widget-rescue, .widget-insurance, .widget-tours,
  .widget-why, .widget-contact, .widget-testimonials { padding: 40px 0; }

  /* Slider edge adjustment for smaller container padding */
  .widget-paths__grid,
  .widget-rescue__steps,
  .widget-tours__grid,
  .widget-why__reasons {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 28px;
  }

  /* Slightly wider cards at smallest screens */
  .path-card { flex: 0 0 84vw; min-height: 320px; }
  .rescue-step { flex: 0 0 78vw; }
  .tour-card { flex: 0 0 82vw; height: 280px; }
  .feat-card { flex: 0 0 78vw; }

  /* Insurance — 1 col at very small screens */
  .widget-insurance__services { grid-template-columns: 1fr; }

  /* Contact */
  .contact-block { padding: 28px 20px; }
  .contact-block__cta { flex-direction: column; }

  /* Footer */
  .widget-footer__top { grid-template-columns: 1fr; }
  .widget-footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Misc */
  .hsj-404__badge { font-size: 90px; }
  .hsj-404__links { flex-direction: column; align-items: center; }
  .gsap-phases { flex-direction: column; align-items: flex-start; gap: 4px; }
  .gsap-phase-connector { width: 2px; height: 16px; margin: 0 12px; }
  .gsap-rescue__cta-btns { flex-direction: column; }
  .gsap-rescue__cta-btns .btn { width: 100%; }
  .hsj-partner-grid { grid-template-columns: 1fr; }
  .hsj-checkbox-grid { grid-template-columns: 1fr; }

  /* Section titles */
  .section-title { font-size: clamp(24px,7.5vw,36px); }
  .section-sub { font-size: 15px; }
}

/* ════════════════════════════════════════════════════════════
   GSAP RESCUE ANIMATION SECTION
   ════════════════════════════════════════════════════════════ */
.widget-gsap-rescue {
  background: linear-gradient(180deg, #050e2c 0%, #071a40 60%, #0a1e38 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.gsap-rescue__bg-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 80%, rgba(38,96,171,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(246,147,29,.08) 0%, transparent 55%);
}
.gsap-rescue__header { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.gsap-rescue__header .tag { margin-bottom: 14px; }
.gsap-rescue__header .section-title { font-size: clamp(32px, 5vw, 56px); }
.gsap-rescue__header .section-sub { margin: 14px auto 0; }

/* Phase progress dots */
.gsap-phases {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 32px; flex-wrap: wrap;
}
.gsap-phase {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.3; transition: opacity .4s;
}
.gsap-phase.active { opacity: 1; }
.gsap-phase__dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,.5);
  transition: background .4s, border-color .4s, color .4s;
}
.gsap-phase.active .gsap-phase__dot {
  background: var(--red); border-color: var(--red); color: var(--white);
  box-shadow: 0 0 12px rgba(239,68,68,.5);
}
.gsap-phase__label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); text-align: center; max-width: 80px; line-height: 1.3; }
.gsap-phase.active .gsap-phase__label { color: rgba(255,255,255,.85); }
.gsap-phase-connector { width: 40px; height: 2px; background: rgba(255,255,255,.1); margin: 0 2px; margin-bottom: 20px; flex-shrink: 0; }

/* Scene wrapper */
.gsap-scene-wrapper {
  width: 100%; border-radius: 16px; overflow: visible;
  background: #050e2c; border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  margin-bottom: 24px;
}
.gsap-scene-wrapper svg {
  width: 100%; height: auto; display: block; min-height: 240px;
  overflow: visible;
}

/* Status bar */
.gsap-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 12px 20px; margin-bottom: 40px;
  flex-wrap: wrap; gap: 8px;
}
.gsap-statusbar__indicator { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.75); }
.gsap-statusbar__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0;
  animation: pulse-slow 1.5s ease-in-out infinite;
}
.gsap-statusbar__meta { font-size: 12px; color: rgba(255,255,255,.4); }

/* CTA at bottom of rescue section */
.gsap-rescue__cta { text-align: center; }
.gsap-rescue__cta-label { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.gsap-rescue__cta-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ════════════════════════════════════════════════════════════
   INSURANCE PARTNER APPLICATION FORM
   ════════════════════════════════════════════════════════════ */
.hsj-partner-form { max-width: 860px; margin: 0 auto; }

.hsj-partner-section {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 36px 32px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hsj-partner-section--last { margin-bottom: 0; }
.hsj-partner-section__title {
  font-family: var(--font-display); font-size: 22px; color: var(--dark);
  letter-spacing: 1px; display: flex; align-items: center; gap: 14px;
  padding-bottom: 20px; border-bottom: 1px solid var(--gray-100);
  margin-bottom: 24px;
}
.hsj-partner-section__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  font-family: var(--font-display); font-size: 14px; flex-shrink: 0;
}

.hsj-partner-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}

/* Form labels & inputs (reuse existing .hsj-form-group but add partner-specific) */
.hsj-form-group { display: flex; flex-direction: column; }
.hsj-form-group--full { grid-column: 1 / -1; }
.hsj-form-label { font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; letter-spacing: .02em; }
.hsj-form-label--block { display: block; }
.hsj-required { color: var(--red); }
.hsj-form-input {
  font-family: var(--font-body); font-size: 14px; color: var(--gray-900);
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 8px; padding: 10px 14px;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.hsj-form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(38,96,171,.1); }
.hsj-form-textarea { min-height: 100px; resize: vertical; }

/* Checkbox grid */
.hsj-checkbox-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-top: 10px;
}
.hsj-checkbox-grid--sm { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.hsj-checkbox-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  padding: 10px 14px; border: 1.5px solid var(--gray-100); border-radius: 8px;
  background: var(--gray-50); transition: border-color .18s, background .18s;
}
.hsj-checkbox-label:hover { border-color: var(--primary); background: rgba(38,96,171,.04); }
.hsj-checkbox {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--primary); cursor: pointer;
}
.hsj-checkbox:checked + .hsj-checkbox-text { color: var(--primary); font-weight: 600; }
.hsj-checkbox-text { font-size: 13px; color: var(--gray-700); line-height: 1.4; }

/* Attestation items */
.hsj-attestation-list { display: flex; flex-direction: column; gap: 12px; }
.hsj-attestation {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: 10px; padding: 14px 16px; transition: border-color .18s;
}
.hsj-attestation:hover { border-color: var(--primary); }
.hsj-attestation .hsj-checkbox { margin-top: 2px; }
.hsj-attestation .hsj-checkbox-text { font-size: 14px; color: var(--gray-700); line-height: 1.55; }
.hsj-attestation input:checked ~ .hsj-checkbox-text { color: var(--gray-900); }

/* Submit area */
.hsj-partner-submit { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding: 32px 0 0; margin-top: 12px; }
.hsj-partner-submit__btn {
  font-size: 15px; padding: 14px 32px; border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); border: none; cursor: pointer; font-family: var(--font-body);
  font-weight: 700; display: inline-flex; align-items: center; gap: 10px;
  transition: transform .18s, box-shadow .18s;
}
.hsj-partner-submit__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(38,96,171,.4); }
.hsj-partner-submit__note { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.hsj-partner-submit__note strong { color: var(--gray-700); }
.hsj-partner-submit__note a { color: var(--primary); text-decoration: underline; }

/* Form notices */
.hsj-form-notice {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; border-radius: 10px; margin-bottom: 24px;
  font-size: 14px; line-height: 1.55;
}
.hsj-form-notice--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.hsj-form-notice--error   { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.hsj-form-notice svg { flex-shrink: 0; margin-top: 2px; }

/* HSJ button — used in booking + rescue forms */
.hsj-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  padding: 13px 26px; border-radius: 9999px; border: none; cursor: pointer;
  white-space: nowrap; transition: transform .18s, box-shadow .18s;
  text-decoration: none;
}
.hsj-btn:hover { transform: translateY(-2px); }
.hsj-btn--red    { background: linear-gradient(135deg,var(--red),var(--red-dark)); color: var(--white); }
.hsj-btn--red:hover { box-shadow: 0 8px 28px rgba(239,68,68,.4); }
.hsj-btn--sky    { background: linear-gradient(135deg,#2e8bc0,#1a6a99); color: var(--white); }
.hsj-btn--sky:hover { box-shadow: 0 8px 28px rgba(46,139,192,.4); }
.hsj-btn--primary { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: var(--white); }
.hsj-btn--primary:hover { box-shadow: 0 8px 28px rgba(38,96,171,.4); }
.hsj-btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.45); }
.hsj-btn--outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); box-shadow: none; }

/* Booking form (used in single tour template and contact page) */
.hsj-booking-form { background: var(--white); border-radius: 20px; padding: 32px; border: 1px solid var(--gray-100); box-shadow: var(--shadow-md); }
.hsj-booking-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.hsj-form-footer { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 20px; }
.hsj-form-disclaimer { font-size: 13px; color: var(--gray-400); }

/* scroll-section extra delay variants used in tour cards */
.scroll-section1 { transition-delay: 0.12s; }
.scroll-section2 { transition-delay: 0.24s; }
.scroll-section3 { transition-delay: 0.36s; }

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT US WIDGET
   ════════════════════════════════════════════════════════════════════════════ */
.widget-about {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--dark);
  display: flex;
  align-items: stretch;
}
.widget-about__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.widget-about__image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center right;
  display: block;
}
/* Gradient overlay: dark on left, transparent on right */
.widget-about__image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,22,40,.96) 0%,
    rgba(10,22,40,.88) 38%,
    rgba(10,22,40,.55) 62%,
    rgba(10,22,40,.0)  100%
  );
}
.widget-about__play {
  position: absolute;
  bottom: 40px; right: 40px;
  z-index: 2;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(38,96,171,.85);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 0 0 0 rgba(38,96,171,.5);
  animation: pulse-play 2.4s infinite;
}
.widget-about__play:hover { background: var(--primary); transform: scale(1.08); }
.widget-about__play-ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(38,96,171,.4);
  animation: ring-expand 2.4s infinite;
}
@keyframes pulse-play {
  0%,100% { box-shadow: 0 0 0 0 rgba(38,96,171,.5); }
  50%      { box-shadow: 0 0 0 18px rgba(38,96,171,0); }
}
@keyframes ring-expand {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.6); opacity: 0; }
}
.widget-about .container { position: relative; z-index: 1; display: flex; align-items: center; }
.widget-about__inner {
  padding: 80px 0;
  width: 100%;
  display: flex;
  align-items: center;
}
.widget-about__card {
  max-width: 560px;
  padding: 52px 44px;
  background: rgba(9,20,40,.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  color: var(--white);
}
.widget-about__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--white);
  margin: 14px 0 20px;
  letter-spacing: .5px;
}
.widget-about__desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
}
.widget-about__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.widget-about__stat { display: flex; flex-direction: column; }
.widget-about__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--secondary);
}
.widget-about__stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.widget-about__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white); text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: background .2s, border-color .2s;
}
.widget-about__btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }

@media (max-width: 768px) {
  .widget-about { min-height: auto; }
  .widget-about__image { position: relative; inset: auto; height: 300px; }
  .widget-about__image::after {
    background: linear-gradient(0deg, rgba(10,22,40,1) 0%, rgba(10,22,40,.3) 100%);
  }
  .widget-about__play { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .widget-about__card { padding: 32px 24px; margin-top: -60px; position: relative; z-index: 2; max-width: 100%; }
  .widget-about__stats { gap: 18px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESCUE MISSIONS WIDGET
   ════════════════════════════════════════════════════════════════════════════ */
/* ── Rescue Missions — white/light redesign ── */
.widget-missions {
  display: grid;
  grid-template-columns: clamp(480px, 36vw, 620px) 1fr;
  min-height: 640px;
  background: #fff;
  overflow: hidden;
  border-top: 4px solid var(--primary);
}
.widget-missions__left {
  display: flex;
  flex-direction: column;
  padding: 56px 40px 56px 0;
  padding-left: var(--container-pad, 24px);
  background: #fff;
  border-right: 1px solid #e8eef4;
}
@media (min-width: 1280px) { .widget-missions__left { padding-left: calc((100vw - 1200px) / 2); } }
@media (min-width: 1024px) and (max-width: 1279px) { .widget-missions__left { padding-left: 40px; } }

.widget-missions__header { margin-bottom: 28px; }
.widget-missions__bar {
  display: block;
  width: 4px; height: 40px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 16px;
}
.widget-missions__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: .5px;
  margin: 0 0 10px;
}
.widget-missions__sub {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 380px;
}

/* scrollable cards list */
.widget-missions__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 400px;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
  padding-right: 6px;
}
.widget-missions__list::-webkit-scrollbar { width: 4px; }
.widget-missions__list::-webkit-scrollbar-track { background: transparent; }
.widget-missions__list::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

/* Mission card */
.widget-missions__card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid #e8eef4;
  cursor: pointer;
  transition: background .18s, border-color .18s, box-shadow .18s;
  background: #f9fafb;
  position: relative;
}
.widget-missions__card::before {
  content: '';
  position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 3px; border-radius: 0 3px 3px 0;
  background: transparent;
  transition: background .18s;
}
.widget-missions__card:hover {
  background: #f0f7ff;
  border-color: #bfdbfe;
  box-shadow: 0 2px 8px rgba(38,96,171,.08);
}
.widget-missions__card:hover::before,
.widget-missions__card.active::before { background: var(--primary); }
.widget-missions__card.active {
  background: #eff8ff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(38,96,171,.14);
}

/* Thumbnail */
.widget-missions__thumb {
  width: 72px; height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #e2e8f0;
}
.widget-missions__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.widget-missions__thumb--empty {
  display: flex; align-items: center; justify-content: center;
  color: #94a3b8;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Card body */
.widget-missions__card-body { flex: 1; min-width: 0; }
.widget-missions__card-tag {
  display: inline-block;
  font-size: 9.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 4px;
}
.widget-missions__card.active .widget-missions__card-tag { color: var(--primary); }
.widget-missions__card-title {
  font-size: 13px; font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
  line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.widget-missions__card-sub {
  font-size: 12px; color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 6px;
}
.widget-missions__card-meta {
  display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 6px;
}
.widget-missions__card-mi {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 11px; font-weight: 600; color: var(--gray-500);
}
.widget-missions__more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  color: var(--primary);
  background: none; border: none; padding: 0; cursor: pointer;
  letter-spacing: .3px;
  transition: gap .15s;
}
.widget-missions__more:hover { gap: 7px; color: var(--secondary); }
.widget-missions__more svg { transition: transform .25s; }
.widget-missions__more.open svg { transform: rotate(180deg); }
.widget-missions__detail {
  display: none;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid #e8eef4;
  font-size: 12px; color: var(--gray-500); line-height: 1.65;
}
.widget-missions__detail.open { display: block; }

/* ── Map panel (keep dark — maps look best dark) ── */
.widget-missions__map {
  background: #f0f4f8;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
#missions-leaflet-map {
  width: 100%; flex: 1; min-height: 480px; z-index: 1;
}
/* Leaflet controls — light map theme */
.leaflet-control-zoom a {
  background: rgba(255,255,255,.95) !important;
  color: var(--gray-700) !important;
  border-color: var(--gray-200) !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.12) !important;
}
.leaflet-control-zoom a:hover { background: var(--primary) !important; color: #fff !important; border-color: var(--primary) !important; }
.leaflet-control-attribution {
  background: rgba(255,255,255,.82) !important;
  color: var(--gray-400) !important; font-size: 10px !important;
  backdrop-filter: blur(4px);
}
.leaflet-control-attribution a { color: var(--gray-500) !important; }

/* TIA dot — same blue but adapts to light bg */
.ml-tia-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--primary); border: 2.5px solid #fff;
  box-shadow: 0 0 0 4px rgba(38,96,171,.25), 0 2px 8px rgba(38,96,171,.4);
}
/* Rescue pins — amber dots */
.ml-pin {
  width: 12px; height: 12px; border-radius: 50%;
  background: #f59e0b;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.22);
  transition: all .25s;
}

/* Tooltip — light style */
.leaflet-tooltip.ml-tooltip {
  background: rgba(255,255,255,.97);
  border: 1px solid var(--gray-200);
  color: var(--dark);
  font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  white-space: nowrap;
}
.leaflet-tooltip.ml-tooltip::before { border-top-color: var(--gray-200); }

/* ── Map stats overlay (top of map) */
.missions-map__stats {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 1000; display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid var(--gray-200); border-radius: 50px;
  padding: 8px 20px; box-shadow: 0 4px 20px rgba(0,0,0,.12);
  white-space: nowrap;
}
.missions-map__stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 14px; line-height: 1.1;
}
.missions-map__stat strong {
  font-size: 15px; font-weight: 800; color: var(--primary); letter-spacing: -.3px;
}
.missions-map__stat span {
  font-size: 10px; font-weight: 600; color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .5px; margin-top: 1px;
}
.missions-map__stat-sep {
  width: 1px; height: 28px; background: var(--gray-200); flex-shrink: 0;
}

/* ── Active mission info panel (bottom-left of map) */
.missions-map__popup {
  position: absolute; bottom: 48px; left: 16px; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border: 1px solid var(--gray-200); border-left: 3px solid var(--primary);
  border-radius: 10px; padding: 14px 16px; max-width: 240px;
  box-shadow: 0 4px 24px rgba(0,0,0,.14);
}
.missions-map__popup-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--primary); margin-bottom: 5px;
}
.missions-map__popup-title {
  font-size: 13px; font-weight: 700; color: var(--dark);
  line-height: 1.3; margin-bottom: 5px;
}
.missions-map__popup-sub {
  font-size: 11px; color: var(--gray-500); line-height: 1.55;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.missions-map__popup-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--gray-600);
}
.missions-map__popup-loc svg { flex-shrink: 0; color: var(--primary); }
.missions-map__popup-chips {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px;
}
.missions-map__popup-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: #f0f6ff; border: 1px solid #d0e4f7;
  border-radius: 4px; padding: 3px 8px;
  font-size: 10px; font-weight: 700; color: var(--primary);
  letter-spacing: .3px; white-space: nowrap;
}

/* Coordinate HUD — top-right of map */
.missions-map__hud {
  position: absolute; top: 14px; right: 14px; z-index: 1000;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border: 1px solid var(--gray-200); border-radius: 7px; padding: 7px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  font-size: 10px; font-weight: 700; letter-spacing: .8px;
  color: var(--gray-500); text-transform: uppercase; line-height: 1.9;
}
.missions-map__hud span { color: var(--primary); }

/* Legend */
.widget-missions__map-legend {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 600;
  color: var(--gray-500);
  padding: 8px 16px;
  background: rgba(255,255,255,.9);
  border-top: 1px solid var(--gray-100);
  z-index: 3; position: relative;
}
.missions-legend__base {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(38,96,171,.3);
  flex-shrink: 0; display: inline-block;
}
.missions-legend__pin {
  width: 10px; height: 10px; border-radius: 50%;
  background: #f59e0b; border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  flex-shrink: 0; display: inline-block;
}

@media (max-width: 960px) {
  .widget-missions { grid-template-columns: 1fr; }
  .widget-missions__left { padding: 48px 24px 32px; border-right: none; border-bottom: 1px solid #e8eef4; }
  #missions-leaflet-map { min-height: 340px; }
  .widget-missions__list { max-height: 300px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS WIDGET
   ════════════════════════════════════════════════════════════════════════════ */
.widget-testimonials {
  padding: 96px 0;
  position: relative;
  background: #fff;
}
.widget-testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}
.widget-testimonials__header .section-title {
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 12px 0 16px;
  letter-spacing: .5px;
}
.widget-testimonials__header .section-sub {
  color: var(--gray-400);
  max-width: 560px; margin: 0 auto;
  font-size: 15px; line-height: 1.7;
}
/* Stage container */
.widget-testimonials__stage {
  max-width: 780px;
  margin: 0 auto;
  min-height: 320px;
  overflow: hidden;
}
.widget-testimonials__quote-mark {
  font-size: 140px;
  line-height: .6;
  color: rgba(38,96,171,.10);
  font-family: Georgia, serif;
  text-align: center;
  pointer-events: none;
  user-select: none;
  margin-bottom: -50px;
  position: relative; z-index: 0;
}
.widget-testimonials__track {
  position: relative;
  min-height: 260px;
}
.widget-testimonials__item {
  background: #fff;
  border: 1px solid rgba(15,23,42,.07);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15,23,42,.06);
  padding: 36px 40px 32px;
  text-align: center;
  margin: 0 2px 8px;
}
.widget-testimonials__stars {
  display: flex; justify-content: center; gap: 3px;
  margin-bottom: 20px;
}
.widget-testimonials__text {
  font-size: clamp(.97rem, 2vw, 1.12rem);
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
  margin: 0 0 28px;
  quotes: none;
}
.widget-testimonials__author {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.widget-testimonials__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  flex-shrink: 0;
}
.widget-testimonials__avatar--initials {
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700;
  color: var(--white);
}
.widget-testimonials__author-info { text-align: left; }
.widget-testimonials__name {
  display: block;
  font-size: 15px; font-weight: 700;
  color: var(--dark);
}
.widget-testimonials__role {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* Dots */
.widget-testimonials__dots {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-top: 28px;
}
.widget-testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(15,23,42,.15);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.widget-testimonials__dot.active {
  background: var(--primary);
  transform: scale(1.4);
}

/* Prev / Next */
.widget-testimonials__nav {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: 20px;
}
.widget-testimonials__nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(15,23,42,.12);
  background: #fff;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.widget-testimonials__nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(38,96,171,.25);
}
.widget-testimonials__counter {
  font-size: 13px;
  color: var(--gray-400);
  min-width: 50px; text-align: center;
}

@media (max-width: 600px) {
  .widget-testimonials { padding: 64px 0; }
  .widget-testimonials__stage { min-height: 360px; }
  .widget-testimonials__item { padding: 28px 24px 24px; border-radius: 16px; }
  .widget-testimonials__text { font-size: 15px; }
  .widget-testimonials__quote-mark { font-size: 100px; margin-bottom: -30px; }
}

/* ── Pill tag variants used in dark-bg widgets (override base color/padding) */
.tag--white {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 14px;
  border-radius: 4px;
  font-family: 'Northwell Swash', cursive;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: none;
}
.tag--blue {
  background: rgba(38,96,171,.22);
  color: #7eb8f7;
  border: 1px solid rgba(38,96,171,.4);
  padding: 5px 12px;
  border-radius: 4px;
}

/* ── PILOT STORIES ─────────────────────────────────────────────────────── */
.pilot-stories {
  padding: 36px 0 28px;
  background: #070e1a;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.pilot-stories__header {
  text-align: center;
  margin-bottom: 24px;
}
.pilot-stories__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--secondary, #C8AA6E);
  margin-bottom: 6px;
}
.pilot-stories__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.pilot-stories__track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 4px 32px 12px;
  scrollbar-width: none;
  justify-content: center;
  flex-wrap: wrap;
}
.pilot-stories__track::-webkit-scrollbar { display: none; }
.pilot-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}
.pilot-story__ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #8b5cf6 100%);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
}
.pilot-story:hover .pilot-story__ring,
.pilot-story:focus-visible .pilot-story__ring {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(245,158,11,.25);
}
.pilot-story__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #070e1a;
  background: #112055;
}
.pilot-story__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.pilot-story__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #112055 0%, #0d3b6e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
}
.pilot-story__name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-align: center;
  max-width: 88px;
  line-height: 1.35;
}
.pilot-story__role {
  font-size: 10px;
  color: var(--secondary, #C8AA6E);
  text-align: center;
  max-width: 88px;
  line-height: 1.3;
}

/* ── PILOT MODAL ─────────────────────────────────────────────────────── */
.pilot-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.pilot-modal.open {
  pointer-events: all;
  opacity: 1;
}
.pilot-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
}
.pilot-modal__panel {
  position: relative;
  z-index: 1;
  background: #0f1e35;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px 24px 0 0;
  padding: 36px 28px 44px;
  width: 100%;
  max-width: 540px;
  transform: translateY(48px);
  transition: transform .32s cubic-bezier(.34,1.56,.64,1);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.12) transparent;
}
.pilot-modal.open .pilot-modal__panel {
  transform: translateY(0);
}
.pilot-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 20px;
  line-height: 1;
  transition: background .2s;
}
.pilot-modal__close:hover { background: rgba(255,255,255,.2); }
.pilot-modal__photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.pilot-modal__photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #f59e0b 0%, #ec4899 50%, #8b5cf6 100%);
}
.pilot-modal__photo-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #0f1e35;
  background: #112055;
}
.pilot-modal__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.pilot-modal__photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #112055, #0d3b6e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  font-family: 'Bebas Neue', sans-serif;
}
.pilot-modal__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 6px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .04em;
}
.pilot-modal__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary, #C8AA6E);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 24px;
}
.pilot-modal__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.pilot-modal__stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
}
.pilot-modal__stat-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.pilot-modal__stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.45);
}
.pilot-modal__bio {
  font-size: 0.9rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 20px;
  min-height: 1em;
}
.pilot-modal__bio:empty { display: none; }
.pilot-modal__certs-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}
.pilot-modal__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pilot-modal__cert {
  background: rgba(200,170,110,.12);
  border: 1px solid rgba(200,170,110,.28);
  color: #C8AA6E;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .pilot-stories__track { justify-content: flex-start; flex-wrap: nowrap; }
  .pilot-modal__panel { padding: 28px 18px 36px; }
  .pilot-modal__stats { gap: 8px; }
  .pilot-modal__stat-val { font-size: 1rem; }
}

/* ════════════════════════════════════════════════════════════
   FAQ ACCORDION — shared (light + dark variants)
   ════════════════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.faq-item.open  { box-shadow: 0 4px 24px rgba(0,0,0,.1); }

.faq-item__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 24px; background: none; border: none;
  cursor: pointer; text-align: left;
  transition: background .15s;
}
.faq-item__trigger:hover { background: rgba(0,0,0,.02); }
.faq-item.open .faq-item__trigger { background: rgba(46,139,192,.04); }

.faq-item__q {
  font-size: 15px; font-weight: 600; color: var(--dark);
  line-height: 1.4; flex: 1;
}
.faq-item__icon {
  flex-shrink: 0; color: var(--primary); position: relative; width: 16px; height: 16px;
}
.faq-icon-plus, .faq-icon-minus { position: absolute; top: 0; left: 0; transition: opacity .2s, transform .2s; }
.faq-icon-minus { opacity: 0; }
.faq-item.open .faq-icon-plus  { opacity: 0; transform: rotate(45deg); }
.faq-item.open .faq-icon-minus { opacity: 1; }

.faq-item__body {
  max-height: 0; overflow: hidden;
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
}
.faq-item__answer {
  padding: 0 24px 22px;
  font-size: 14px; color: var(--gray-600); line-height: 1.78;
}
.faq-item__answer p { margin: 0 0 10px; }
.faq-item__answer p:last-child { margin-bottom: 0; }
.faq-item__answer ul, .faq-item__answer ol { padding-left: 18px; margin: 0 0 10px; }
.faq-item__answer li { margin-bottom: 5px; }

/* Dark variant */
.faq-list--dark .faq-item { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.faq-list--dark .faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.faq-list--dark .faq-item.open { box-shadow: 0 4px 24px rgba(0,0,0,.35); }
.faq-list--dark .faq-item__trigger:hover { background: rgba(255,255,255,.04); }
.faq-list--dark .faq-item.open .faq-item__trigger { background: rgba(255,255,255,.06); }
.faq-list--dark .faq-item__q { color: #fff; }
.faq-list--dark .faq-item__icon { color: var(--secondary); }
.faq-list--dark .faq-item__answer { color: rgba(255,255,255,.72); }

/* Blog post FAQ section */
.hsj-post-faqs { margin: 40px 0; padding-top: 36px; border-top: 1px solid var(--gray-100); }
.hsj-post-faqs__title {
  font-family: var(--font-display); font-size: clamp(22px,3vw,30px);
  color: var(--dark); letter-spacing: .5px; margin: 0 0 20px;
}

/* ════════════════════════════════════════════════════════════
   FAQ ARCHIVE PAGE
   ════════════════════════════════════════════════════════════ */
.faq-hero {
  position: relative; overflow: hidden; padding: 80px 0 100px;
  background: linear-gradient(135deg, #071535 0%, #2660ab 55%, #0d2a5e 100%);
}
.faq-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(38,96,171,.4) 0%, transparent 70%);
  pointer-events: none;
}
.faq-hero__content { position: relative; z-index: 1; }
.faq-hero__title {
  font-family: var(--font-display); font-size: clamp(2.6rem,6vw,4.5rem);
  color: #fff; line-height: 1.0; letter-spacing: .5px; margin: 14px 0 16px;
}
.faq-hero__title-accent { color: var(--secondary); }
.faq-hero__sub { color: rgba(255,255,255,.72); font-size: 1.05rem; max-width: 540px; line-height: 1.7; margin-bottom: 32px; }

.faq-search-wrap {
  position: relative; max-width: 480px;
}
.faq-search-wrap__icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.5); pointer-events: none;
}
.faq-search {
  width: 100%; padding: 14px 18px 14px 46px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 12px;
  color: #fff; font-size: 15px; outline: none;
  transition: border-color .2s, background .2s;
}
.faq-search::placeholder { color: rgba(255,255,255,.45); }
.faq-search:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15); }

/* ── FAQ page — two-column layout ── */
.faq-page { background: #f8f9fa; padding: 56px 0 72px; }

.faq-page__layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

/* ── Left: FAQ main ── */
.faq-main { min-width: 0; }

.faq-main__controls {
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
  margin-bottom: 28px;
}
.faq-control-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px; border: 1.5px solid var(--gray-200);
  background: #fff; color: var(--gray-600); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: border-color .15s, color .15s, background .15s;
}
.faq-control-btn:hover {
  border-color: var(--primary); color: var(--primary); background: #eff8ff;
}

.faq-group { margin-bottom: 48px; }
.faq-group__title {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 2px solid var(--gray-100);
}
.faq-group__title-bar {
  display: block; width: 4px; height: 22px;
  background: var(--primary); border-radius: 2px; flex-shrink: 0;
}
.faq-group__count {
  margin-left: auto; font-size: 11px; font-weight: 700;
  background: var(--gray-100); color: var(--gray-500);
  padding: 2px 8px; border-radius: 9999px;
}

/* ── Right: FAQ sidebar ── */
.faq-sidebar { min-width: 0; }
.faq-sidebar__sticky { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }

.faq-sidebar__card {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 16px; padding: 24px;
}
.faq-sidebar__card--cta {
  background: linear-gradient(135deg, #071535 0%, #2660ab 100%);
  border-color: transparent; text-align: center;
}
.faq-sidebar__heading {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--gray-400);
  margin: 0 0 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}

/* Category list buttons */
.faq-cat-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.faq-cat-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 10px 12px; border-radius: 10px;
  border: none; background: none; cursor: pointer;
  text-align: left; transition: background .15s, color .15s;
}
.faq-cat-btn:hover { background: var(--gray-50); }
.faq-cat-btn.active { background: #eff8ff; }
.faq-cat-btn__name {
  font-size: 13.5px; font-weight: 600; color: var(--gray-700);
  flex: 1;
}
.faq-cat-btn.active .faq-cat-btn__name { color: var(--primary); }
.faq-cat-btn__count {
  font-size: 11px; font-weight: 700;
  background: var(--gray-100); color: var(--gray-500);
  padding: 2px 8px; border-radius: 9999px; flex-shrink: 0;
}
.faq-cat-btn.active .faq-cat-btn__count {
  background: rgba(38,96,171,.12); color: var(--primary);
}

/* Sidebar CTA card */
.faq-sidebar-cta__icon { color: rgba(255,255,255,.5); margin-bottom: 12px; }
.faq-sidebar-cta__title {
  font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 8px;
  font-family: var(--font-display); letter-spacing: .3px;
}
.faq-sidebar-cta__sub { font-size: 13px; color: rgba(255,255,255,.65); margin: 0 0 18px; line-height: 1.55; }
.faq-sidebar-cta__btn {
  display: block; width: 100%; padding: 11px 16px; border-radius: 10px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 13px; font-weight: 700;
  text-align: center; text-decoration: none;
  transition: background .2s;
}
.faq-sidebar-cta__btn:hover { background: rgba(255,255,255,.25); }

/* CTA strip at bottom of FAQ page */
.faq-cta-strip {
  background: linear-gradient(135deg,#071535 0%,#2660ab 100%);
  padding: 56px 0;
}
.faq-cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.faq-cta-strip__title {
  font-family: var(--font-display); font-size: clamp(22px,3vw,32px);
  color: #fff; margin: 0 0 6px; letter-spacing: .5px;
}
.faq-cta-strip__sub { color: rgba(255,255,255,.65); font-size: 14px; margin: 0; }
.faq-cta-strip__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 900px) {
  .faq-page__layout { grid-template-columns: 1fr; }
  .faq-sidebar { order: -1; }
  .faq-sidebar__sticky { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-sidebar__card { flex: 1; min-width: 220px; }
  .faq-sidebar__card--cta { display: none; }
  .faq-cat-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .faq-cat-btn { padding: 7px 14px; border-radius: 9999px; border: 1px solid var(--gray-100); background: #fff; }
  .faq-cat-btn.active { background: var(--primary); border-color: var(--primary); }
  .faq-cat-btn.active .faq-cat-btn__name { color: #fff; }
  .faq-cat-btn.active .faq-cat-btn__count { background: rgba(255,255,255,.25); color: #fff; }
  .faq-sidebar__heading { display: none; }
}
@media (max-width: 640px) {
  .faq-cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .faq-item__trigger { padding: 16px 18px; }
  .faq-item__q { font-size: 14px; }
  .faq-item__answer { padding: 0 18px 18px; }
}

/* =========================================================
   TOUR ARCHIVE PAGE  (/tours/)
   ========================================================= */
.tour-archive-hero {
  position: relative;
  background: linear-gradient(135deg, #071535 0%, #2660ab 60%, #071535 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}
.tour-archive-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(14,165,233,.18) 0%, transparent 70%);
  pointer-events: none;
}
.tour-archive-hero__content {
  position: relative;
  max-width: 700px;
}
.tour-archive-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: .5px;
  margin: 16px 0 20px;
}
.tour-archive-hero__accent { color: var(--primary-light); }
.tour-archive-hero__sub {
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 0 32px;
}
.tour-archive-hero__meta {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.tour-archive-hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: 12px; font-weight: 600; letter-spacing: .05em;
  padding: 6px 14px; border-radius: 99px;
  backdrop-filter: blur(6px);
}

.tour-archive-body {
  background: var(--body-bg, #f8fafc);
  padding: 60px 0 80px;
}

/* CTA strip at bottom of tour archive */
.tour-archive-cta {
  margin-top: 72px;
  background: linear-gradient(135deg, #071535 0%, #2660ab 100%);
  border-radius: 20px;
  padding: 48px 52px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.tour-archive-cta__text h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  color: #fff; margin: 0 0 8px; letter-spacing: .4px;
}
.tour-archive-cta__text p {
  color: rgba(255,255,255,.65);
  font-size: 14px; max-width: 480px; margin: 0;
  line-height: 1.6;
}
.tour-archive-cta__btns {
  display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0;
}

@media (max-width: 768px) {
  .tour-archive-hero { padding: 90px 0 60px; }
  .tour-archive-cta { padding: 36px 28px; flex-direction: column; align-items: flex-start; }
  .tour-archive-body { padding: 40px 0 60px; }
}


/* =========================================================
   CUSTOM FORM BUILDER — frontend form styles
   ========================================================= */

/* ── Wrapper / card ── */
.hsj-form-wrap { display: block; }
.hsj-form-wrap--card {
  background: #fff;
  border-radius: 24px;
  padding: 52px 56px;
  box-shadow:
    0 2px 4px rgba(10,22,40,.04),
    0 12px 28px -4px rgba(10,22,40,.12),
    0 40px 80px -12px rgba(10,22,40,.18),
    0 0 0 1px rgba(38,96,171,.07);
  position: relative;
  overflow: hidden;
}
/* Animated gradient accent bar across the top — thicker */
.hsj-form-wrap--card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg,
    var(--primary) 0%, var(--secondary) 35%, var(--primary) 65%, var(--secondary) 100%);
  background-size: 300% 100%;
  animation: hsj-bar-shimmer 4s linear infinite;
}
/* Subtle decorative corner glow */
.hsj-form-wrap--card::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,147,29,.06) 0%, transparent 70%);
  pointer-events: none;
}
@keyframes hsj-bar-shimmer { to { background-position: -300% 0; } }

/* ── Grid ── */
.hsj-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.hsj-form-field { display: flex; flex-direction: column; gap: 7px; }
.hsj-form-field--full { grid-column: 1 / -1; }
.hsj-form-field--half { grid-column: span 1; }

/* ── Label ── */
.hsj-form-label {
  font-size: 11.5px; font-weight: 700;
  color: var(--gray-700);
  letter-spacing: .07em; text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.hsj-form-req { color: var(--secondary); font-size: 13px; line-height: 1; }

/* ── Inputs ── */
.hsj-form-input {
  width: 100%; box-sizing: border-box;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px; color: var(--dark);
  font-family: var(--font-body);
  background: var(--gray-50);
  line-height: 1.5;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
}
.hsj-form-input::placeholder { color: var(--gray-400); font-size: 14px; }
.hsj-form-input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(38,96,171,.08);
}
.hsj-form-input--ta { resize: vertical; min-height: 140px; line-height: 1.7; }
.hsj-form-input--err {
  border-color: #ef4444 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 4px rgba(239,68,68,.08) !important;
}
.hsj-form-input--file {
  padding: 11px 16px; cursor: pointer;
  font-size: 13.5px; color: var(--gray-600);
}

/* Custom select arrow — blue chevron */
select.hsj-form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232660ab' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}

/* ── Radio / checkbox — styled pill cards ── */
.hsj-form-choices { display: flex; flex-direction: column; gap: 8px; }
.hsj-form-choice {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--gray-700); cursor: pointer;
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px; background: var(--gray-50);
  transition: border-color .18s, background .18s, color .18s;
  user-select: none;
}
.hsj-form-choice:hover {
  border-color: rgba(38,96,171,.35);
  background: rgba(38,96,171,.03);
  color: var(--dark);
}
.hsj-form-choice:has(input:checked) {
  border-color: var(--primary);
  background: rgba(38,96,171,.05);
  color: var(--dark); font-weight: 600;
}
.hsj-form-choice input[type=radio],
.hsj-form-choice input[type=checkbox] {
  width: 17px; height: 17px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0;
}

/* ── Helper & error text ── */
.hsj-form-help { font-size: 12px; color: var(--gray-400); line-height: 1.5; }
.hsj-form-error { font-size: 12px; color: #ef4444; font-weight: 600; min-height: 16px; }

/* ── Footer / submit row ── */
.hsj-form-footer {
  margin-top: 32px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}

/* ── Submit button — orange brand accent ── */
.hsj-form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f6931d 0%, #e07808 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  padding: 16px 44px; border-radius: 12px;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(246,147,29,.4), 0 1px 3px rgba(0,0,0,.15);
  transition: transform .15s, box-shadow .2s, opacity .2s;
  position: relative; overflow: hidden;
}
.hsj-form-submit::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 50%);
  opacity: 1; pointer-events: none;
}
.hsj-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(246,147,29,.55), 0 2px 8px rgba(0,0,0,.15);
}
.hsj-form-submit:active:not(:disabled) { transform: translateY(0); box-shadow: 0 4px 16px rgba(246,147,29,.35); }
.hsj-form-submit:disabled { cursor: not-allowed; opacity: .6; }

/* ── Spinner ── */
.hsj-form-spinner circle { animation: hsj-spin 1s linear infinite; transform-origin: center; }
@keyframes hsj-spin { to { stroke-dashoffset: -125; } }

/* ── Success / error banner ── */
.hsj-form-msg {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 14.5px; font-weight: 600; line-height: 1.55;
  display: none;
}
.hsj-form-msg:not(:empty) { display: block; }
.hsj-form-msg--ok  { background: #f0fdf4; color: #15803d; border: 1.5px solid #bbf7d0; }
.hsj-form-msg--err { background: #fff5f5; color: #b91c1c; border: 1.5px solid #fecaca; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hsj-form-wrap--card { padding: 40px 36px; }
  .hsj-form-grid { gap: 18px 20px; }
}
@media (max-width: 640px) {
  .hsj-form-grid { grid-template-columns: 1fr; gap: 18px; }
  .hsj-form-field--half { grid-column: 1 / -1; }
  .hsj-form-wrap--card { padding: 30px 22px; }
  .hsj-form-footer { flex-direction: column; align-items: stretch; }
  .hsj-form-submit { width: 100%; justify-content: center; padding: 16px 24px; }
}

/* =========================================================
   BLOG HOME PAGE  (home.php)
   ========================================================= */

/* ── Hero ── */
.blog-hero {
  background: linear-gradient(135deg, #071535 0%, #2660ab 60%, #071535 100%);
  padding: 80px 0 15px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(14,165,233,.15) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero__inner {
  position: relative;
  display: flex; flex-direction: column; gap: 32px;
  padding-bottom: 0;
}
.blog-hero__text { max-width: 680px; }
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: .5px;
  margin: 14px 0 16px;
}
.blog-hero__accent { color: var(--primary-light, #60a5fa); }
.blog-hero__sub {
  color: rgba(255,255,255,.65);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7; max-width: 560px; margin: 0;
}

/* Category filter tabs */
.blog-cat-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
}
.blog-cat-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 99px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.blog-cat-tab:hover {
  background: rgba(255,255,255,.15);
  color: #fff; border-color: rgba(255,255,255,.3);
}
.blog-cat-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.blog-cat-tab__count {
  background: rgba(255,255,255,.18);
  font-size: 11px; font-weight: 700;
  padding: 1px 7px; border-radius: 99px;
  line-height: 1.4;
}
.blog-cat-tab.active .blog-cat-tab__count { background: rgba(255,255,255,.25); }

/* ── Body ── */
.blog-body {
  background: #f8fafc;
  padding: 48px 0 80px;
}

/* ── Featured first post ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.07);
  margin-bottom: 36px;
}
.blog-featured__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 360px;
}
.blog-featured__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-featured:hover .blog-featured__thumb img { transform: scale(1.04); }
.blog-featured__thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,.18) 0%, transparent 60%);
}
.blog-featured__body {
  padding: 40px 44px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0;
}
.blog-featured__cat {
  display: inline-flex;
  background: var(--primary);
  color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  padding: 4px 12px; border-radius: 99px;
  text-decoration: none;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: .3px;
  margin: 0 0 14px;
}
.blog-featured__title a { color: inherit; text-decoration: none; }
.blog-featured__title a:hover { color: var(--primary); }
.blog-featured__exc {
  color: var(--gray-600, #475569);
  font-size: 15px; line-height: 1.7;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-featured__meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px 16px;
  color: var(--gray-400);
  font-size: 12px; margin-bottom: 20px;
}
.blog-featured__meta svg { vertical-align: middle; margin-right: 4px; }
.blog-featured__author { font-weight: 600; }
.blog-featured__cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary);
  color: #fff; font-size: 13px; font-weight: 700;
  padding: 11px 22px; border-radius: 9px;
  text-decoration: none; letter-spacing: .03em;
  width: fit-content;
  transition: background .2s, transform .2s;
}
.blog-featured__cta:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }

/* ── Post grid ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.05), 0 4px 16px rgba(0,0,0,.05);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.blog-card--no-img .blog-card__body { padding-top: 24px; }
.blog-card__thumb {
  display: block; overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}
.blog-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.06); }
.blog-card__cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  padding: 3px 10px; border-radius: 99px;
}
.blog-card__cat--inline {
  position: static;
  display: inline-flex;
  margin-bottom: 10px;
}
.blog-card__body {
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 0;
  flex: 1;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--dark);
  line-height: 1.25;
  letter-spacing: .2px;
  margin: 0 0 10px;
}
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__title a:hover { color: var(--primary); }
.blog-card__exc {
  color: var(--gray-500);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 12.5px; font-weight: 700;
  text-decoration: none; letter-spacing: .03em;
  margin-top: auto;
  transition: gap .15s;
}
.blog-card__link:hover { gap: 9px; color: var(--primary-dark); }

/* ── Pagination ── */
.blog-pagination { margin-top: 48px; display: flex; justify-content: center; }
.blog-pagination .page-numbers {
  display: flex; flex-wrap: wrap; gap: 6px;
  list-style: none; padding: 0; margin: 0;
}
.blog-pagination .page-numbers li { display: contents; }
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px;
  border-radius: 10px; font-size: 13px; font-weight: 600;
  text-decoration: none; border: 1.5px solid #e2e8f0;
  background: #fff; color: var(--gray-600);
  transition: background .15s, border-color .15s, color .15s;
}
.blog-pagination .page-numbers a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-pagination .page-numbers .current { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-pagination .page-numbers .dots { border-color: transparent; background: transparent; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__thumb { min-height: 260px; aspect-ratio: 16/7; }
  .blog-featured__body { padding: 28px 32px; }
}
@media (max-width: 640px) {
  .blog-hero { padding: 60px 0 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-cat-tabs { gap: 6px; }
  .blog-cat-tab { font-size: 12px; padding: 7px 14px; }
  .blog-featured__body { padding: 20px 20px 24px; }
  .blog-featured__title { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WIDGET — OUR TEAM
   ═══════════════════════════════════════════════════════════════════════════ */
.widget-team {
  padding: 96px 0 112px;
  background: linear-gradient(180deg, #081535 0%, #0b1a45 100%);
  position: relative;
  overflow: hidden;
}
.widget-team::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 45% at 50% 0%, rgba(38,96,171,.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 95% 85%, rgba(246,147,29,.08) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 5% 75%, rgba(38,96,171,.06) 0%, transparent 60%);
}
.widget-team__header { text-align: center; margin-bottom: 60px; position: relative; }
.widget-team .section-title { color: #fff; }
.widget-team .section-sub { color: rgba(255,255,255,.5); margin: 14px auto 0; max-width: 580px; }
.widget-team .tag--blue {
  background: rgba(38,96,171,.2);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(38,96,171,.35);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ── Grid ──────────────────────────────────────────────────────────────────── */
.widget-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Base card ─────────────────────────────────────────────────────────────── */
.team-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #122055, #0f1a2e);
  border: 1px solid rgba(255,255,255,.07);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  cursor: pointer;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 72px rgba(0,0,0,.55), 0 0 0 1px rgba(246,147,29,.2);
}

/* ── Supporting cards: photo fills card, text overlaid at bottom ─────────── */
.widget-team__grid .team-card:not(:first-child) { height: 340px; }

.widget-team__grid .team-card:not(:first-child) .team-card__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.widget-team__grid .team-card:not(:first-child) .team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  transition: transform .5s ease;
}
.widget-team__grid .team-card:not(:first-child):hover .team-card__photo img { transform: scale(1.07); }
.widget-team__grid .team-card:not(:first-child) .team-card__initials {
  font-size: 90px; font-weight: 800; color: rgba(255,255,255,.18);
}

/* dark gradient overlay */
.widget-team__grid .team-card:not(:first-child)::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(7,17,31,.95) 0%, rgba(7,17,31,.55) 40%, transparent 70%);
  transition: background .35s;
}
.widget-team__grid .team-card:not(:first-child):hover::after {
  background: linear-gradient(to top, rgba(7,17,31,.97) 0%, rgba(7,17,31,.72) 55%, rgba(7,17,31,.18) 85%, transparent 100%);
}

/* body: sits above overlay, pinned to bottom */
.widget-team__grid .team-card:not(:first-child) .team-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 22px 22px; z-index: 2;
  display: flex; flex-direction: column;
}
.widget-team__grid .team-card:not(:first-child) .team-card__name {
  font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 4px; line-height: 1.25;
}
.widget-team__grid .team-card:not(:first-child) .team-card__role {
  font-size: 10px; font-weight: 800; color: var(--secondary);
  text-transform: uppercase; letter-spacing: .1em; margin: 0;
}
/* bio slides up on hover */
.widget-team__grid .team-card:not(:first-child) .team-card__bio {
  display: block;
  overflow: hidden; max-height: 0; opacity: 0; margin: 0;
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.7);
  transition: max-height .35s ease, opacity .35s, margin-top .35s;
  -webkit-line-clamp: unset;
}
.widget-team__grid .team-card:not(:first-child):hover .team-card__bio {
  max-height: 110px; opacity: 1; margin-top: 10px;
}
.widget-team__grid .team-card:not(:first-child) .team-card__detail-btn { display: none; }

/* ── FEATURED first card: full-width horizontal hero ──────────────────────── */
.widget-team__grid .team-card:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  height: 380px;
  background: linear-gradient(135deg, #0d1f50 0%, #122055 100%);
  border: 1px solid rgba(255,255,255,.1);
}
.widget-team__grid .team-card:first-child:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 68px rgba(0,0,0,.55), 0 0 0 1px rgba(246,147,29,.3);
}
/* left photo side */
.widget-team__grid .team-card:first-child .team-card__photo {
  width: 40%; height: 100%;
  position: relative; flex-shrink: 0;
  background: linear-gradient(135deg, #0d2055, var(--primary));
}
.widget-team__grid .team-card:first-child .team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
  transition: transform .5s ease;
}
.widget-team__grid .team-card:first-child:hover .team-card__photo img { transform: scale(1.05); }
/* right-side fade gradient over photo */
.widget-team__grid .team-card:first-child .team-card__photo::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, transparent 45%, #0d1f50 100%);
}
.widget-team__grid .team-card:first-child .team-card__initials {
  font-size: 110px; font-weight: 800; color: rgba(255,255,255,.13);
}
/* vertical orange accent bar */
.widget-team__grid .team-card:first-child::before {
  content: '';
  position: absolute; left: 0; top: 12%; bottom: 12%;
  width: 4px;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 0 4px 4px 0;
  z-index: 2;
}
/* right text side */
.widget-team__grid .team-card:first-child .team-card__body {
  flex: 1; min-width: 0;
  padding: 44px 52px 44px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.widget-team__grid .team-card:first-child .team-card__name {
  font-size: 38px; font-weight: 800; color: #fff;
  letter-spacing: -.6px; line-height: 1.1; margin: 0 0 8px;
}
.widget-team__grid .team-card:first-child .team-card__role {
  font-size: 11px; font-weight: 800; color: var(--secondary);
  text-transform: uppercase; letter-spacing: .12em; margin-bottom: 22px;
}
.widget-team__grid .team-card:first-child .team-card__bio {
  font-size: 15px; line-height: 1.82; color: rgba(255,255,255,.58);
  margin: 0 0 30px; max-width: 560px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.widget-team__grid .team-card:first-child .team-card__detail-btn {
  background: rgba(246,147,29,.12);
  border: 1.5px solid rgba(246,147,29,.4);
  color: var(--secondary);
  border-radius: 12px; padding: 12px 30px;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
  width: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all .22s;
}
.widget-team__grid .team-card:first-child .team-card__detail-btn:hover {
  background: var(--secondary); border-color: var(--secondary);
  color: #fff; gap: 12px; box-shadow: 0 6px 24px rgba(246,147,29,.4);
}

/* ── Shared photo + initials base ─────────────────────────────────────────── */
.team-card__photo {
  width: 100%; overflow: hidden; flex-shrink: 0; position: relative;
  background: linear-gradient(135deg, #122055, var(--primary));
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card__initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Shared body base (for featured card only — supporting overridden above) ── */
.team-card__body { display: flex; flex-direction: column; min-width: 0; }
.team-card__name  { line-height: 1.3; }
.team-card__role  { display: block; }

/* Team Detail Modal */
.team-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.team-modal.open { opacity: 1; pointer-events: all; }
.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,12,24,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.team-modal__box {
  position: relative;
  background: linear-gradient(135deg, #0d2055, #0f1a40);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  transform: translateY(24px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.team-modal.open .team-modal__box { transform: translateY(0) scale(1); }
.team-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .18s;
}
.team-modal__close:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.35); }
.team-modal__head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.team-modal__photo {
  width: 72px; height: 72px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 26px;
  font-weight: 800;
  border: 2px solid rgba(246,147,29,.4);
}
.team-modal__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-modal__name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.team-modal__role {
  font-size: 11px;
  color: var(--secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.team-modal__body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.65);
}

@media (max-width: 1100px) {
  .widget-team__grid { grid-template-columns: repeat(2, 1fr); }
  /* featured card: switch to vertical column */
  .widget-team__grid .team-card:first-child {
    flex-direction: column; height: auto;
    border-left: none; border-top: 4px solid var(--secondary);
  }
  .widget-team__grid .team-card:first-child::before { display: none; }
  .widget-team__grid .team-card:first-child .team-card__photo {
    width: 100%; height: 260px;
    flex-shrink: 0;
  }
  .widget-team__grid .team-card:first-child .team-card__photo::after {
    background: linear-gradient(to bottom, transparent 50%, #0d1f50 100%);
  }
  .widget-team__grid .team-card:first-child .team-card__body { padding: 28px 30px 32px; }
  .widget-team__grid .team-card:first-child .team-card__name { font-size: 26px; }
  .widget-team__grid .team-card:first-child .team-card__bio { -webkit-line-clamp: 3; margin-bottom: 22px; }
  .widget-team__grid .team-card:first-child .team-card__detail-btn { align-self: stretch; width: 100%; }
}
@media (max-width: 768px) {
  .widget-team { padding: 64px 0 80px; }
  .widget-team__grid { grid-template-columns: 1fr; gap: 16px; max-width: 440px; }
  .widget-team__grid .team-card:not(:first-child) { height: 300px; }
}
@media (max-width: 480px) {
  .widget-team__grid { max-width: 100%; }
  .widget-team__grid .team-card:not(:first-child) { height: 280px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WIDGET — WHY PARTNER WITH US
   ═══════════════════════════════════════════════════════════════════════════ */
.widget-why-partner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, #071535 0%, #2660ab 100%);
}
.widget-why-partner__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.widget-why-partner__bg-circle { width: 600px; height: 600px; top: -200px; right: -150px; }
.widget-why-partner__bg-circle--2 { width: 400px; height: 400px; bottom: -180px; left: -100px; background: rgba(255,255,255,.03); }

.widget-why-partner__layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}
.widget-why-partner__header .tag--blue {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.2);
}
.widget-why-partner__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.0;
  color: #fff;
  margin: 14px 0 18px;
}
.widget-why-partner__sub {
  color: rgba(255,255,255,.68);
  font-size: 15.5px;
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 340px;
}
.widget-why-partner__cta {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.widget-why-partner__cta:hover {
  box-shadow: 0 8px 28px rgba(255,255,255,.2);
  background: #f0f7ff;
}
.widget-why-partner__feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wp-feat {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 26px 22px;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s, transform .2s;
}
.wp-feat:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.wp-feat__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}
.wp-feat__title {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.wp-feat__desc {
  font-size: 13px;
  color: rgba(255,255,255,.62);
  line-height: 1.62;
  margin: 0;
}

@media (max-width: 1100px) {
  .widget-why-partner__layout { grid-template-columns: 1fr; gap: 48px; }
  .widget-why-partner__sub { max-width: none; }
  .widget-why-partner__feat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .widget-why-partner { padding: 72px 0; }
  .widget-why-partner__feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .widget-why-partner__feat-grid { grid-template-columns: 1fr; }
  .wp-feat:hover { transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WIDGET — OUR STORY
   ═══════════════════════════════════════════════════════════════════════════ */
.widget-story {
  padding: 100px 0;
  background: var(--gray-50, #f8fafc);
}
.widget-story__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.widget-story__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin: 14px 0 20px;
}
.widget-story__desc {
  font-size: 15.5px;
  line-height: 1.78;
  color: var(--gray-600);
}

/* Timeline */
.widget-story__timeline {
  position: relative;
  padding-left: 0;
}
.widget-story__timeline::before {
  content: '';
  position: absolute;
  left: 48px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--gray-200);
  border-radius: 2px;
}
.story-milestone {
  display: grid;
  grid-template-columns: 48px 28px 1fr;
  gap: 0 0;
  align-items: center;
  padding: 14px 0;
}
.story-milestone__year {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary);
  text-align: right;
  padding-right: 10px;
  line-height: 1;
  letter-spacing: .5px;
}
.story-milestone__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
  position: relative;
  z-index: 1;
  margin: 0 8px;
  flex-shrink: 0;
}
.story-milestone__text {
  font-size: 14px;
  line-height: 1.62;
  color: var(--gray-600);
  margin: 0;
  padding-left: 8px;
}
.widget-story__image-strip {
  margin-top: 64px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 380px;
  box-shadow: 0 16px 48px rgba(10,22,40,.1);
}
.widget-story__image-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .widget-story { padding: 72px 0; }
  .widget-story__layout { grid-template-columns: 1fr; gap: 48px; }
  .widget-story__timeline::before { left: 44px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WIDGET — CAAN COMPLIANCE
   ═══════════════════════════════════════════════════════════════════════════ */
.widget-caan {
  padding: 100px 0;
  background: #fff;
}
.widget-caan__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center;
}
.caan-badge {
  text-align: center;
}
.caan-badge__ring {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fb 100%);
}
.caan-badge__caption {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0 0 20px;
}
.widget-caan__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.06;
  color: var(--dark);
  margin: 14px 0 18px;
}
.widget-caan__sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.caan-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.caan-spec {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--gray-50, #f8fafc);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: border-color .18s, box-shadow .18s;
}
.caan-spec:hover {
  border-color: rgba(38,96,171,.2);
  box-shadow: 0 4px 14px rgba(38,96,171,.07);
}
.caan-spec__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.caan-spec__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.caan-spec__value {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}

@media (max-width: 960px) {
  .widget-caan { padding: 72px 0; }
  .widget-caan__layout { grid-template-columns: 1fr; gap: 48px; }
  .caan-badge { display: flex; align-items: center; gap: 24px; text-align: left; }
  .caan-badge__ring { margin: 0; flex-shrink: 0; }
}
@media (max-width: 640px) {
  .caan-badge { flex-direction: column; align-items: center; text-align: center; }
  .caan-specs { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WIDGET — ALTITUDE AIR ALLIANCE
   ═══════════════════════════════════════════════════════════════════════════ */
.widget-alliance {
  padding: 100px 0;
  background: var(--gray-50, #f8fafc);
}
.widget-alliance__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 56px;
}
.widget-alliance__header-text { flex: 1; }
.widget-alliance__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  color: var(--dark);
  margin: 14px 0 18px;
}
.widget-alliance__sub {
  font-size: 15px;
  line-height: 1.72;
  color: var(--gray-600);
  max-width: 560px;
}
.widget-alliance__header-cta { flex-shrink: 0; }

.widget-alliance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.alliance-card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 18px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: box-shadow .22s, border-color .22s, transform .22s;
}
.alliance-card:hover {
  box-shadow: 0 10px 36px rgba(38,96,171,.1);
  border-color: rgba(38,96,171,.22);
  transform: translateY(-3px);
}
.alliance-card__logo {
  width: 68px; height: 68px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.alliance-card__logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.alliance-card__logo--initials {
  background: linear-gradient(135deg, var(--primary), var(--navy));
}
.alliance-card__logo--initials span {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.alliance-card__info { display: flex; flex-direction: column; gap: 4px; }
.alliance-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.alliance-card__meta {
  font-size: 12px;
  color: var(--gray-400);
}

@media (max-width: 1100px) { .widget-alliance__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .widget-alliance { padding: 72px 0; }
  .widget-alliance__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .widget-alliance__grid { grid-template-columns: repeat(2, 1fr); }
  .alliance-card:hover { transform: none; }
}
@media (max-width: 480px) { .widget-alliance__grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ════════════════════════════════════════════════════════════════════════
   DEPARTMENT TEAM WIDGETS (Medical / Flight Ops / Rescue & SAR / Case Mgmt)
   ════════════════════════════════════════════════════════════════════════ */
.dteam-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}
.dteam-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
  display: flex;
  align-items: stretch;
  min-height: 230px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.dteam-card:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 96, 171, .20);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .09);
}
.dteam-card__photo {
  position: relative;
  width: 190px;
  min-height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.dteam-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dteam-card__initials {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  opacity: .9;
}
.dteam-card__exp {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(10, 22, 40, .78);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 5px 8px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  text-align: center;
}
.dteam-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.dteam-card__name { font-size: 22px; font-weight: 800; color: var(--dark); margin: 0; }
.dteam-card__role { font-size: 13px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: .05em; }
.dteam-card__qual {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 2px;
}
.dteam-card__qual svg { flex-shrink: 0; color: var(--primary); }
.dteam-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.dteam-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(38, 96, 171, .08);
  padding: 4px 9px;
  border-radius: 8px;
}
.dteam-card__bio {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray-400);
  margin: 8px 0 0;
}
.dteam-card__btn {
  margin-top: 14px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(38,96,171,.07);
  border: 1px solid rgba(38,96,171,.16);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}
.dteam-card__btn svg { transition: transform .2s ease; }
.dteam-card__btn:hover svg { transform: translateX(3px); }

/* Modal */
.dteam-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.dteam-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dteam-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, .65);
  backdrop-filter: blur(2px);
}
.dteam-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  max-width: 520px;
  width: calc(100% - 40px);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 32px;
  transform: translateY(12px) scale(.97);
  transition: transform .2s ease;
}
.dteam-modal.open .dteam-modal__box { transform: translateY(0) scale(1); }
.dteam-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(15, 23, 42, .06);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  cursor: pointer;
}
.dteam-modal__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.dteam-modal__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.dteam-modal__photo img { width: 100%; height: 100%; object-fit: cover; }
.dteam-modal__photo span { color: #fff; font-size: 24px; font-weight: 800; }
.dteam-modal__name { font-size: 18px; font-weight: 800; color: var(--dark); margin: 0; }
.dteam-modal__role { font-size: 13px; font-weight: 600; color: var(--primary); }
.dteam-modal__body { font-size: 14px; line-height: 1.7; color: var(--gray-400); }

@media (max-width: 1100px) { .dteam-grid { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .dteam-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .dteam-grid { grid-template-columns: 1fr; gap: 16px; }
  .dteam-card { flex-direction: column; }
  .dteam-card__photo { width: 100%; min-height: 210px; aspect-ratio: 16 / 10; }
  .dteam-modal__box { padding: 24px; }
}
@media (max-width: 480px) {
  .dteam-card__photo { min-height: auto; aspect-ratio: 16 / 10; }
}

/* ════════════════════════════════════════════════════════════
   WIDGET — RESCUE MISSIONS COMMAND (wm- prefix)
   ════════════════════════════════════════════════════════════ */
.wm-shell {
  width:100%;max-width:1180px;margin:0 auto;
  background:#070e1c;border-radius:20px;
  border:1px solid rgba(58,159,213,.1);overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,.6),0 0 0 1px rgba(255,255,255,.03);
  position:relative;color:#bccfdf;
}
.wm-shell::after {
  content:'';position:absolute;inset:0;border-radius:20px;
  background:radial-gradient(ellipse 120% 80% at 70% 40%,transparent 60%,rgba(4,10,20,.55) 100%);
  pointer-events:none;z-index:5;
}

/* Header */
.wm-hdr {
  position:relative;z-index:10;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;
  padding:15px 28px;border-bottom:1px solid rgba(58,159,213,.08);
  background:linear-gradient(90deg,rgba(7,14,28,.95) 0%,rgba(11,22,40,.95) 100%);
  backdrop-filter:blur(8px);
}
.wm-hdr-id {
  display:flex;align-items:center;gap:9px;
  font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:10.5px;font-weight:700;
  letter-spacing:3px;text-transform:uppercase;color:#587898;
}
.wm-live-dot {
  width:7px;height:7px;border-radius:50%;background:#d4172f;flex-shrink:0;
  box-shadow:0 0 0 2px rgba(212,23,47,.25),0 0 8px #d4172f;
  animation:wm-ldot 2.2s ease-in-out infinite;
}
@keyframes wm-ldot {
  0%,100%{opacity:1;box-shadow:0 0 0 2px rgba(212,23,47,.25),0 0 8px #d4172f}
  50%{opacity:.4;box-shadow:0 0 0 2px rgba(212,23,47,.1),0 0 3px #d4172f}
}
.wm-hdr-stats{display:flex;align-items:center;}
.wm-hdr-st{display:flex;flex-direction:column;align-items:center;padding:0 16px;border-right:1px solid rgba(58,159,213,.1);}
.wm-hdr-st:last-child{border-right:none;padding-right:0;}
.wm-hdr-sn{font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:22px;font-weight:800;line-height:1;color:#3a9fd5;}
.wm-hdr-sl{font-size:8.5px;font-weight:700;letter-spacing:1.8px;text-transform:uppercase;color:#587898;margin-top:2px;}

/* Body grid */
.wm-body{display:grid;grid-template-columns:310px 1fr;position:relative;z-index:6;}

/* Left panel */
.wm-lp{border-right:1px solid rgba(58,159,213,.08);display:flex;flex-direction:column;background:linear-gradient(180deg,#0b1628 0%,#070e1c 100%);}
.wm-lp-hd{padding:26px 22px 20px;border-bottom:1px solid rgba(58,159,213,.06);}
.wm-eyebrow{
  display:flex;align-items:center;gap:7px;
  font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:9.5px;font-weight:700;
  letter-spacing:3.5px;text-transform:uppercase;color:#3a9fd5;margin-bottom:10px;
}
.wm-eyebrow::before{content:'';width:14px;height:1px;background:linear-gradient(90deg,#3a9fd5,transparent);}
.wm-lp-title{
  font-family:var(--font-display,'Barlow Condensed',sans-serif);font-weight:900;
  font-size:clamp(26px,3.2vw,38px);line-height:.93;text-transform:uppercase;
  color:#fff;margin-bottom:10px;letter-spacing:-.5px;
}
.wm-lp-title em{color:transparent;-webkit-text-stroke:1.5px #3a9fd5;font-style:normal;}
.wm-lp-desc{font-size:12px;color:#8aaccb;line-height:1.75;}

/* Mission list */
.wm-missions{flex:1;overflow-y:auto;scrollbar-width:thin;scrollbar-color:rgba(58,159,213,.2) transparent;}
.wm-missions::-webkit-scrollbar{width:3px;}
.wm-missions::-webkit-scrollbar-thumb{background:rgba(58,159,213,.2);border-radius:2px;}
.wm-mission{padding:15px 22px;border-bottom:1px solid rgba(58,159,213,.05);cursor:pointer;transition:background .18s;position:relative;}
.wm-mission::before{content:'';position:absolute;left:0;top:0;bottom:0;width:0;background:linear-gradient(to bottom,#3a9fd5,#d4172f);transition:width .2s;border-radius:0 2px 2px 0;}
.wm-mission:hover{background:rgba(58,159,213,.04);}
.wm-mission.on{background:rgba(58,159,213,.07);}
.wm-mission.on::before{width:2.5px;}
.wm-m-tag{display:inline-flex;align-items:center;gap:4px;font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:9px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;padding:2px 7px;border-radius:3px;margin-bottom:6px;}
.wm-t-mtn{background:rgba(58,159,213,.12);color:#61bbea;border:1px solid rgba(58,159,213,.18);}
.wm-t-hpe{background:rgba(212,23,47,.12);color:#ff5570;border:1px solid rgba(212,23,47,.18);}
.wm-t-trm{background:rgba(201,168,76,.1);color:#e8c97a;border:1px solid rgba(201,168,76,.16);}
.wm-t-med{background:rgba(212,23,47,.12);color:#ff5570;border:1px solid rgba(212,23,47,.18);}
.wm-m-title{font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:14.5px;font-weight:700;color:#e8f2fa;line-height:1.2;margin-bottom:4px;}
.wm-m-desc{font-size:11.5px;color:#8aaccb;line-height:1.6;margin-bottom:7px;}
.wm-m-meta{display:flex;gap:10px;flex-wrap:wrap;}
.wm-m-mi{display:flex;align-items:center;gap:3px;font-size:10px;color:#587898;font-family:var(--font-display,'Barlow Condensed',sans-serif);font-weight:600;letter-spacing:.3px;}
.wm-m-tog{margin-top:8px;background:none;border:none;padding:0;cursor:pointer;font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:9.5px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:#3a9fd5;display:flex;align-items:center;gap:4px;transition:gap .15s,color .15s;}
.wm-m-tog svg{transition:transform .25s;}
.wm-m-tog:hover{color:#61bbea;gap:7px;}
.wm-m-det{display:none;margin-top:9px;padding-top:9px;border-top:1px solid rgba(58,159,213,.08);font-size:11px;color:#8aaccb;line-height:1.72;}
.wm-m-det.open{display:block;}

/* Map */
.wm-map-wrap{position:relative;overflow:hidden;}
.wm-map-el{width:100%;height:560px;}
.wm-map-vig{position:absolute;inset:0;z-index:400;pointer-events:none;background:radial-gradient(ellipse 85% 85% at 55% 45%,transparent 45%,rgba(4,10,20,.65) 100%),linear-gradient(to bottom,rgba(7,14,28,.45) 0%,transparent 18%,transparent 80%,rgba(4,10,20,.5) 100%),linear-gradient(to right,rgba(7,14,28,.35) 0%,transparent 15%,transparent 88%,rgba(4,10,20,.25) 100%);}
.wm-map-grid{position:absolute;inset:0;z-index:401;pointer-events:none;background-image:linear-gradient(rgba(58,159,213,.032) 1px,transparent 1px),linear-gradient(90deg,rgba(58,159,213,.032) 1px,transparent 1px);background-size:52px 52px;}
.wm-map-scan{position:absolute;top:0;left:0;right:0;height:180px;z-index:402;pointer-events:none;background:linear-gradient(to bottom,rgba(58,159,213,.05),transparent);animation:wm-scanY 6s ease-in-out infinite;}
@keyframes wm-scanY{0%{top:-180px}45%,55%{top:100%}100%{top:-180px}}
.wm-map-line{position:absolute;top:0;left:0;right:0;height:1px;z-index:403;pointer-events:none;background:linear-gradient(90deg,transparent 0%,rgba(58,159,213,.35) 30%,rgba(58,159,213,.55) 50%,rgba(58,159,213,.35) 70%,transparent 100%);animation:wm-lineY 6s ease-in-out infinite;}
@keyframes wm-lineY{0%{top:-2px;opacity:0}5%{opacity:1}45%{top:100%;opacity:.4}50%{top:100%;opacity:0}51%,100%{top:-2px;opacity:0}}
.wm-zone-label{position:absolute;z-index:410;pointer-events:none;font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:9.5px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:rgba(58,159,213,.35);text-shadow:0 0 12px rgba(58,159,213,.2);}

/* Info card */
.wm-info-card{position:absolute;bottom:18px;left:18px;z-index:500;width:290px;background:rgba(7,14,28,.92);border:1px solid rgba(58,159,213,.2);border-radius:12px;padding:16px 18px;backdrop-filter:blur(20px);box-shadow:0 8px 32px rgba(0,0,0,.5),0 0 0 1px rgba(255,255,255,.03);}
.wm-ic-type{font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:9px;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:#3a9fd5;margin-bottom:5px;display:flex;align-items:center;gap:6px;}
.wm-ic-type::before{content:'';width:12px;height:1px;background:#3a9fd5;}
.wm-ic-title{font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:16px;font-weight:800;color:#f0f8ff;line-height:1.15;margin-bottom:4px;}
.wm-ic-body{font-size:11px;color:#8aaccb;line-height:1.7;margin-bottom:12px;}
.wm-ic-chips{display:flex;gap:6px;flex-wrap:wrap;}
.wm-ic-chip{display:flex;align-items:center;gap:4px;background:rgba(58,159,213,.08);border:1px solid rgba(58,159,213,.14);border-radius:4px;padding:3px 8px;font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:9.5px;font-weight:700;letter-spacing:.4px;color:#61bbea;white-space:nowrap;}

/* Coord HUD */
.wm-coord-hud{position:absolute;top:14px;right:14px;z-index:500;background:rgba(7,14,28,.85);border:1px solid rgba(58,159,213,.14);border-radius:7px;padding:8px 12px;backdrop-filter:blur(12px);font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:10px;font-weight:700;letter-spacing:1px;color:#587898;text-transform:uppercase;line-height:1.8;}
.wm-coord-hud span{color:#61bbea;}

/* Footer */
.wm-ftr{position:relative;z-index:10;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;padding:13px 28px;border-top:1px solid rgba(58,159,213,.08);background:linear-gradient(90deg,rgba(7,14,28,.97) 0%,rgba(11,22,40,.97) 100%);}
.wm-ftr-leg{display:flex;align-items:center;gap:18px;flex-wrap:wrap;}
.wm-leg{display:flex;align-items:center;gap:7px;font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:9.5px;font-weight:700;letter-spacing:1.3px;text-transform:uppercase;color:#587898;}
.wm-leg-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0;}
.wm-emg-btn{display:flex;align-items:center;gap:8px;background:linear-gradient(135deg,#a8102a,#d4172f);color:#fff;font-family:var(--font-display,'Barlow Condensed',sans-serif);font-size:11.5px;font-weight:700;letter-spacing:.8px;text-transform:uppercase;padding:9px 20px;border-radius:7px;border:none;cursor:pointer;text-decoration:none;box-shadow:0 4px 16px rgba(212,23,47,.35);transition:box-shadow .2s,transform .15s;}
.wm-emg-btn:hover{box-shadow:0 6px 24px rgba(212,23,47,.55);transform:translateY(-1px);color:#fff;}

/* Leaflet overrides scoped to widget */
.wm-map-wrap .leaflet-tile-pane{filter:brightness(.22) saturate(.5) contrast(1.1) hue-rotate(195deg) !important;}
.wm-map-wrap .leaflet-control-zoom{border:1px solid rgba(58,159,213,.18) !important;border-radius:8px !important;overflow:hidden;box-shadow:0 4px 16px rgba(0,0,0,.4) !important;}
.wm-map-wrap .leaflet-control-zoom a{background:rgba(7,14,28,.9) !important;color:#61bbea !important;border-bottom:1px solid rgba(58,159,213,.12) !important;width:30px !important;height:30px !important;line-height:30px !important;font-size:16px !important;transition:background .15s !important;}
.wm-map-wrap .leaflet-control-zoom a:hover{background:rgba(58,159,213,.12) !important;}
.wm-map-wrap .leaflet-control-attribution{background:rgba(4,10,20,.75) !important;color:#3a5470 !important;font-size:9px !important;border-radius:6px 0 0 0 !important;}
.wm-map-wrap .leaflet-control-attribution a{color:#587898 !important;}

/* Responsive */
@media (max-width:820px) {
  .wm-body{grid-template-columns:1fr;}
  .wm-lp{border-right:none;border-bottom:1px solid rgba(58,159,213,.08);max-height:320px;}
  .wm-map-el{height:360px;}
  .wm-hdr-stats{display:none;}
  .wm-info-card{width:calc(100% - 36px);}
}
@media (max-width:480px) {
  .wm-hdr,.wm-ftr{padding:12px 16px;}
  .wm-lp-hd,.wm-mission{padding-left:16px;padding-right:16px;}
  .wm-coord-hud{display:none;}
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: Get Involved / Contact CTA  (template-parts/home/contact-cta.php)
   ═══════════════════════════════════════════════════════════════════════════ */
.hsj-contact-cta {
  padding: 96px 0;
  background: var(--gray-50, #f8fafc);
}
.hsj-contact-cta__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.hsj-contact-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.hsj-contact-block {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hsj-contact-block--emergency {
  color: #fff;
}
.hsj-contact-block--general {
  background: #fff;
  border: 1.5px solid var(--gray-100, #f1f5f9);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.hsj-contact-block__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin: 12px 0 16px;
}
.hsj-contact-block__title--white { color: #fff; }
.hsj-contact-block__title--navy  { color: var(--dark); }
.hsj-contact-block__sub { font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
.hsj-contact-block__sub--muted { color: rgba(255,255,255,.65); }
.hsj-contact-block__sub--text  { color: var(--gray-500, #64748b); }
.hsj-contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.hsj-contact-item  { display: flex; align-items: center; gap: 14px; }
.hsj-contact-item__icon {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hsj-contact-item__icon--sky {
  background: rgba(38,96,171,.08);
  border: 1px solid rgba(38,96,171,.18);
}
.hsj-contact-item__label { font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 2px; }
.hsj-contact-item__label--muted { color: rgba(255,255,255,.55); }
.hsj-contact-item__label--text  { color: var(--gray-400, #94a3b8); }
.hsj-contact-item__value { font-size: 14px; font-weight: 600; }
.hsj-contact-item__value--white { color: #fff; }
.hsj-contact-item__value--navy  { color: var(--dark); }
.hsj-contact-block__cta { margin-top: auto; }

@media (max-width: 768px) {
  .hsj-contact-cta__grid { grid-template-columns: 1fr; }
  .hsj-contact-block { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: FAQ  (template-parts/home/faq.php)
   ═══════════════════════════════════════════════════════════════════════════ */
.hsj-faq {
  padding: 96px 0;
  background: #fff;
}
.hsj-faq__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 52px;
}
.hsj-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid var(--gray-100, #f1f5f9);
  border-radius: 18px;
  overflow: hidden;
}
.hsj-faq__item {
  border-bottom: 1.5px solid var(--gray-100, #f1f5f9);
  transition: background .15s;
}
.hsj-faq__item:last-child { border-bottom: none; }
.hsj-faq__item--open { background: var(--gray-50, #f8fafc); }
.hsj-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: color .15s;
}
.hsj-faq__question:hover { color: var(--primary); }
.hsj-faq__item--open .hsj-faq__question { color: var(--primary); }
.hsj-faq__chevron {
  flex-shrink: 0;
  color: var(--gray-400, #94a3b8);
  transition: transform .2s;
}
.hsj-faq__item--open .hsj-faq__chevron { transform: rotate(180deg); color: var(--primary); }
.hsj-faq__answer {
  padding: 0 28px 22px;
}
.hsj-faq__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600, #475569);
  margin: 0;
}
.hsj-faq__footer {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--gray-500, #64748b);
}
.hsj-faq__footer a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  margin-left: 6px;
}
.hsj-faq__footer a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .hsj-faq__question { padding: 16px 20px; font-size: 14px; }
  .hsj-faq__answer   { padding: 0 20px 18px; }
}

/* ════════════════════════════════════════════════════════════
   OUR PROGRAMS PAGE WIDGETS  (hcpp- prefix)
   ════════════════════════════════════════════════════════════ */

/* ── Shared section helpers ───────────────────────────────── */
.hcpp-section         { padding: 52px 0; }
.hcpp-section--alt    { background: var(--gray-50); }

.hcpp-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); background: rgba(38,96,171,.08);
  border: 1px solid rgba(38,96,171,.15);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.hcpp-label--orange {
  color: var(--secondary);
  background: rgba(246,147,29,.08);
  border-color: rgba(246,147,29,.2);
}

.hcpp-section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem);
  line-height: 1.05; letter-spacing: 1.5px;
  color: var(--dark); margin: 0 0 14px;
}
.hcpp-section-title em { font-style: normal; color: var(--primary); }

.hcpp-section-lead {
  font-size: 16px; line-height: 1.75;
  color: var(--gray-600); max-width: 620px; margin: 0;
}
.hcpp-section-head { margin-bottom: 52px; }
.hcpp-label-icon { display:inline-flex; align-items:center; }
.hcpp-label-icon svg, .hcpp-label-icon img { width:12px; height:12px; }

/* ── Scroll-reveal animation (progressive enhancement) ───────
   Elements are VISIBLE by default.
   The JS in page-programs.php adds .hcpp-js to <html> first,
   which activates the hidden→visible animation. Without JS,
   all content shows immediately. ─────────────────────────── */
.hcpp-fade { transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.3,1); }

.hcpp-js .hcpp-fade            { opacity: 0; transform: translateY(26px); }
.hcpp-js .hcpp-fade.hcpp-vis  { opacity: 1; transform: none; }
.hcpp-js .hcpp-fade[data-d="1"] { transition-delay: .08s; }
.hcpp-js .hcpp-fade[data-d="2"] { transition-delay: .16s; }
.hcpp-js .hcpp-fade[data-d="3"] { transition-delay: .24s; }
.hcpp-js .hcpp-fade[data-d="4"] { transition-delay: .32s; }
.hcpp-js .hcpp-fade[data-d="5"] { transition-delay: .40s; }
.hcpp-js .hcpp-fade[data-d="6"] { transition-delay: .48s; }
.hcpp-js .hcpp-fade[data-d="7"] { transition-delay: .56s; }
.hcpp-js .hcpp-fade[data-d="8"] { transition-delay: .64s; }

/* ── Hero ─────────────────────────────────────────────────── */
.hcpp-hero {
  position: relative; min-height: 440px;
  display: flex; align-items: flex-end; overflow: hidden;
  background: linear-gradient(135deg,var(--dark) 0%,var(--primary) 100%);
}
.hcpp-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hcpp-hero__bg img,
.hcpp-hero__bg video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hcpp-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,22,40,.9) 25%, rgba(10,22,40,.45) 100%);
}
.hcpp-hero__shapes {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hcpp-hero__shapes span {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.06);
}
.hcpp-hero__shapes span:nth-child(1) { width: 380px; height: 380px; top: -120px; right: 10%; }
.hcpp-hero__shapes span:nth-child(2) { width: 240px; height: 240px; bottom: -80px; left: 8%; }
.hcpp-hero__shapes span:nth-child(3) { width: 120px; height: 120px; top: 42%; right: 26%; }

.hcpp-hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 80px 0 56px; color: #fff;
}
.hcpp-hero__breadcrumb {
  font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 22px;
}
.hcpp-hero__breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s; }
.hcpp-hero__breadcrumb a:hover { color: #fff; }
.hcpp-hero__breadcrumb span { margin: 0 6px; }

.hcpp-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: none;
  color: var(--secondary);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0 0 6px; margin-bottom: 20px;
  border-bottom: 2px solid rgba(246,147,29,.45);
}
.hcpp-hero__title {
  font-family: var(--font-display); font-size: clamp(3rem,7vw,5.5rem);
  line-height: 1; letter-spacing: 2px; margin: 0 0 18px; color: #fff;
}
.hcpp-hero__title .accent { color: var(--secondary); }
.hcpp-hero__desc {
  max-width: 580px; font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.78); margin: 0 0 32px;
}
.hcpp-hero__actions         { display: flex; gap: 12px; flex-wrap: wrap; }
.hcpp-hero__actions .btn    { padding: 14px 28px; font-size: 14px; }

/* Stats strip */
/* Now sits inline inside the hero, right under the CTA buttons —
   no longer a separate full-width colored band below the hero. */
.hcpp-stats { margin-top: 36px; max-width: 560px; }
.hcpp-stats__inner {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 14px;
}
.hcpp-stat {
  padding: 18px 14px; text-align: center; color: #fff;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  transition: transform .25s, background .25s;
}
.hcpp-stat:hover { transform: translateY(-4px); background: rgba(255,255,255,.16); }
.hcpp-stat__num {
  font-family: var(--font-display); font-size: 2.1rem; line-height: 1;
  color: var(--secondary); letter-spacing: 1px;
}
.hcpp-stat__label {
  font-size: 10.5px; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 4px;
}

/* ── Program cards grid ───────────────────────────────────── */
.hcpp-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 26px;
}
.hcpp-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.hcpp-card:hover {
  transform: translateY(-7px); box-shadow: var(--shadow-lg);
}
.hcpp-card__img {
  position: relative; height: 220px; overflow: hidden;
  background: linear-gradient(135deg,var(--primary-dark),var(--primary));
}
.hcpp-card__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.hcpp-card:hover .hcpp-card__img img { transform: scale(1.06); }
.hcpp-card__placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .5px;
}
.hcpp-card__placeholder svg { color: rgba(255,255,255,.35); }
.hcpp-card__icon {
  position: absolute; top: 16px; left: 16px;
  width: 46px; height: 46px; border-radius: 13px;
  background: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(10,22,40,.25); color: var(--primary); z-index: 1;
  overflow: hidden;
}
.hcpp-card__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hcpp-card__body {
  padding: 24px 22px 26px; flex: 1; display: flex; flex-direction: column;
}
.hcpp-card__tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--primary); background: rgba(38,96,171,.08);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 11px; width: fit-content;
}
.hcpp-card__title {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px; line-height: 1.1;
  color: var(--dark); margin: 0 0 11px;
}
.hcpp-card__desc {
  font-size: 14px; line-height: 1.72; color: var(--gray-600); margin: 0 0 12px; flex: 1;
}
.hcpp-card__pills { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin: 0 0 14px; }
.hcpp-card__pill {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600; color: var(--primary);
  background: rgba(38,96,171,.08); padding: 5px 12px; border-radius: 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 100%;
}
.hcpp-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-decoration: none; transition: gap .2s ease;
}
.hcpp-card__link:hover         { gap: 10px; }
.hcpp-card__link svg           { transition: transform .2s ease; }
.hcpp-card__link:hover svg     { transform: translateX(3px); }

/* ── Community wide cards ─────────────────────────────────── */
.hcpp-wide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.hcpp-wide {
  background: #fff; border-radius: 20px; overflow: hidden; display: flex;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.hcpp-wide:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.hcpp-wide__img {
  width: 240px; flex-shrink: 0; position: relative; overflow: hidden;
  background: linear-gradient(155deg,var(--primary-dark),var(--primary));
  display: flex; align-items: center; justify-content: center;
}
.hcpp-wide__img img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease;
}
.hcpp-wide:hover .hcpp-wide__img img { transform: scale(1.06); }
.hcpp-wide__img-ph {
  position: relative; z-index: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; padding: 20px;
  color: rgba(255,255,255,.4); font-size: 11px; text-align: center;
}
.hcpp-wide__body { padding: 26px 22px; flex: 1; display: flex; flex-direction: column; }
.hcpp-wide__tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--secondary); background: rgba(246,147,29,.1);
  border: 1px solid rgba(246,147,29,.2);
  padding: 3px 10px; border-radius: 100px; margin-bottom: 9px; width: fit-content;
}
.hcpp-wide__title {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 1px;
  color: var(--dark); margin: 0 0 9px;
}
.hcpp-wide__desc {
  font-size: 14px; line-height: 1.7; color: var(--gray-600); flex: 1; margin: 0 0 14px;
}
.hcpp-wide__pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.hcpp-wide__pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 600; color: var(--gray-600);
  background: var(--gray-100); padding: 4px 10px; border-radius: 100px;
}
.hcpp-wide__pill svg { color: var(--primary); flex-shrink: 0; }
.hcpp-wide__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-decoration: none; transition: gap .2s ease;
}
.hcpp-wide__link:hover { gap: 10px; }

/* ── CTA section ──────────────────────────────────────────── */
.hcpp-cta {
  position: relative; text-align: center; padding: 56px 0; overflow: hidden;
  background: linear-gradient(135deg, #2660ab 0%, #3d7ec9 50%, #2660ab 100%) !important;
  background-size: 200% 200% !important;
  animation: hcp-gradientFlow 8s ease infinite;
}
.hcpp-cta__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 30% 60%, rgba(38,96,171,.3) 0%, transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(246,147,29,.1) 0%, transparent 50%);
}
.hcpp-cta__content { position: relative; z-index: 1; }
.hcpp-cta__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; color: var(--secondary);
}
.hcpp-cta h2 {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.5rem);
  letter-spacing: 1.5px; color: #fff; margin: 0 0 14px;
}
.hcpp-cta h2 em { font-style: normal; color: var(--secondary); }
.hcpp-cta p {
  font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.7);
  max-width: 540px; margin: 0 auto 34px;
}
.hcpp-cta__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hcpp-cta__btns .btn { padding: 14px 30px; font-size: 14.5px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hcpp-wide-grid                 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hcpp-grid.hcp-mobile-carousel { scroll-snap-type: x mandatory; }
  .hcpp-grid.hcp-mobile-carousel > .hcpp-card { flex: 0 0 calc(100vw - 40px) !important; width: auto; max-width: none; }
  .hcpp-wide-grid.hcp-mobile-carousel > .hcpp-wide { flex-direction: column; flex: 0 0 calc(100vw - 40px) !important; width: auto; max-width: none; }
  .hcpp-wide-grid.hcp-mobile-carousel > .hcpp-wide .hcpp-wide__img { width: 100%; height: 200px; }
}
@media (max-width: 640px) {
  .hcpp-section                   { padding: 36px 0; }
  .hcpp-hero__content             { padding: 60px 0 40px; }
  .hcpp-cta                       { padding: 60px 0; }
  .hcpp-stats                     { margin-top: 24px; max-width: 100%; }
  .hcpp-stats__inner              { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .hcpp-stat                      { padding: 12px 6px; }
  .hcpp-stat__num                 { font-size: 1.5rem; }
  .hcpp-stat__label               { font-size: 9px; }
}

.hsj-input-error { border-color: #ef4444 !important; }

/* ── hsj-custom-form styles (used by [hsj_form] shortcode) ── */
.hsj-form-notice {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: 10px; font-size: 14px; margin-top: 16px;
}
.hsj-form-notice--success {
  background: rgba(38,96,171,.08); border: 1px solid rgba(38,96,171,.2);
  color: var(--primary, #2660ab);
}
.hsj-form-notice--error {
  background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.2);
  color: #dc2626;
}

/* ════════════════════════════════════════════════════════════
   REDESIGNED CONTACT WIDGET  (.hcp-contact-widget)
   ════════════════════════════════════════════════════════════ */

.hcp-contact-widget {
  position: relative;
  background: transparent;
  padding: 90px 0;
  overflow: hidden;
}
.hcp-contact-widget__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 60%, rgba(38,96,171,.05) 0%, transparent 55%),
    radial-gradient(circle at 75% 25%, rgba(246,147,29,.04) 0%, transparent 50%);
}

/* Header */
.hcp-contact-widget__head {
  text-align: center; margin-bottom: 56px; position: relative; z-index: 1;
}
.hcp-contact-widget__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--secondary, #f6931d);
  background: rgba(246,147,29,.12); border: 1px solid rgba(246,147,29,.28);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
}
.hcp-contact-widget__title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem); letter-spacing: 1.5px; line-height: 1.05;
  color: var(--dark, #071535); margin: 0 0 14px;
}
.hcp-contact-widget__sub {
  font-size: 16px; line-height: 1.75; color: var(--gray-600, #475569);
  max-width: 580px; margin: 0 auto;
}

/* Two-column grid */
.hcp-contact-widget__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 40px; position: relative; z-index: 1;
}

/* Cards */
.hcp-cwcard {
  border-radius: 20px; padding: 36px 32px;
  min-width: 0; /* allow grid item to shrink below its content's natural width */
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.hcp-cwcard:hover { transform: translateY(-6px); }
.hcp-cwcard--dark {
  background: linear-gradient(135deg, var(--dark, #071535) 0%, var(--primary-dark, #1b4a80) 55%, var(--primary, #2660ab) 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-md, 0 4px 24px rgba(10,22,40,.14));
  position: relative; overflow: hidden;
}
.hcp-cwcard--dark:hover { box-shadow: 0 20px 48px rgba(10,14,20,.35); }
.hcp-cwcard--dark::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(246,147,29,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hcp-cwcard__inner { position: relative; z-index: 1; }

.hcp-cwcard--light {
  background: #fff;
  border: 1px solid var(--gray-100, #f1f5f9);
  box-shadow: var(--shadow-md, 0 4px 24px rgba(10,22,40,.14));
}
.hcp-cwcard--light:hover { box-shadow: var(--shadow-lg); border-color: rgba(38,96,171,.2); }

/* Tags */
.hcp-cwcard__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; width: fit-content;
}
.hcp-cwcard__tag--orange {
  color: var(--secondary, #f6931d);
  background: rgba(246,147,29,.15); border: 1px solid rgba(246,147,29,.3);
}
.hcp-cwcard__tag--green {
  color: var(--primary, #2660ab);
  background: rgba(38,96,171,.1); border: 1px solid rgba(38,96,171,.2);
}

/* Titles */
.hcp-cwcard__title {
  font-family: var(--font-display, 'Bebas Neue', sans-serif);
  font-size: 1.8rem; letter-spacing: 1px; line-height: 1.1;
  color: #fff; margin: 0 0 10px;
  overflow-wrap: break-word; word-break: break-word;
}
.hcp-cwcard__title--dark { color: var(--dark, #071535); }

/* Sub */
.hcp-cwcard__sub {
  font-size: 14px; line-height: 1.72;
  color: rgba(255,255,255,.62); margin: 0 0 24px;
  overflow-wrap: break-word; word-break: break-word;
}
.hcp-cwcard__sub--gray { color: var(--gray-600, #475569); }

/* Detail rows */
.hcp-cwcard__details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; min-width: 0; }
.hcp-cwcard__detail  { display: flex; align-items: center; gap: 12px; min-width: 0; }
.hcp-cwcard__detail > div { min-width: 0; }
.hcp-cwcard__detail-value { overflow-wrap: break-word; word-break: break-word; }
.hcp-cwcard__detail-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.hcp-cwcard__detail:hover .hcp-cwcard__detail-icon { transform: scale(1.1) rotate(-4deg); }
.hcp-cwcard__detail-icon--phone { background: rgba(246,147,29,.14); color: var(--secondary, #f6931d); border: 1px solid rgba(246,147,29,.25); }
.hcp-cwcard__detail-icon--wa    { background: rgba(37,211,102,.12); color: #25D366; border: 1px solid rgba(37,211,102,.25); }
.hcp-cwcard__detail-icon--green { background: rgba(38,96,171,.1); color: var(--primary, #2660ab); border: 1px solid rgba(38,96,171,.2); }

.hcp-cwcard__detail-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1px;
}
.hcp-cwcard__detail-label--gray { color: var(--gray-400, #94a3b8); }
.hcp-cwcard__detail-value { font-size: 14px; font-weight: 600; color: #fff; }
.hcp-cwcard__detail-value--dark { color: var(--dark, #071535); }

/* Action buttons */
.hcp-cwcard__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Social row */
.hcp-contact-widget__social {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200, #e2e8f0);
  position: relative; z-index: 1;
}
.hcp-contact-widget__social-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-400, #94a3b8); white-space: nowrap;
}
.hcp-contact-widget__social-icons { display: flex; flex-wrap: wrap; gap: 8px; }

.hcp-cw-social {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; border: 1px solid var(--gray-200, #e2e8f0);
  color: var(--gray-500, #64748b); text-decoration: none;
  transition: background .2s, transform .2s, color .2s, border-color .2s;
}
.hcp-cw-social:hover { background: rgba(38,96,171,.08); border-color: rgba(38,96,171,.25); transform: translateY(-2px); color: var(--primary, #2660ab); }
.hcp-cw-social--wa   { background: rgba(37,211,102,.08); border-color: rgba(37,211,102,.25); color: #25D366; }
.hcp-cw-social--wa:hover { background: rgba(37,211,102,.18); }

/* Anchor-link sections — prevents the sticky navbar (82px) from
   clipping the top of a section's heading when scrolled to via #id */
.hcp-contact-widget,
section[id] { scroll-margin-top: 98px; }

/* Responsive */
@media (max-width: 780px) {
  .hcp-contact-widget__grid { grid-template-columns: 1fr; gap: 20px; }
  .hcp-cwcard { padding: 26px 20px; }
  .hcp-contact-widget { padding: 56px 0 48px; }
  .hcp-contact-widget__head { margin-bottom: 36px; }
  .hcp-contact-widget__title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hcp-contact-widget__sub { font-size: 14.5px; }
  .hcp-cwcard__title { font-size: 1.5rem; }
  .hcp-cwcard__sub { font-size: 13.5px; }
  .hcp-cwcard__actions { flex-direction: column; }
  .hcp-cwcard__actions a,
  .hcp-cwcard__actions button { flex: 1 1 100% !important; }
}

@media (max-width: 420px) {
  .hcp-contact-widget__badge { font-size: 10px; padding: 5px 13px; }
  .hcp-cwcard__detail-value { font-size: 13px; }
}


/* ════════════════════════════════════════════════════════════
   HCP HOMEPAGE WIDGETS
   ════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────── */
.hcp-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 80px;
}

/* Per-slide background layers — cross-fade on slide change */
.hcp-hero__bgs { position: absolute; inset: 0; z-index: 0; }
.hcp-hero__bg-layer {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hcp-hero__bg-layer--active { opacity: 1; }

.hcp-hero__media-el {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hcp-hero__media-overlay {
  position: absolute; inset: 0;
}
.hcp-hero__decor {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hcp-hero__decor-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}
.hcp-hero__decor-ring--1 { width: 520px; height: 520px; top:-160px; right: 8%; }
.hcp-hero__decor-ring--2 { width: 320px; height: 320px; bottom:-80px; left: 5%; }
.hcp-hero__decor-ring--3 { width: 160px; height: 160px; top: 40%; right: 22%; }

.hcp-hero__content {
  position: relative; z-index: 2; max-width: 720px;
}
.hcp-hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: none; border: none;
  color: var(--secondary); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0 0 6px; margin-bottom: 28px;
  border-bottom: 2px solid rgba(246,147,29,.45);
}
.hcp-hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--secondary); animation: hcp-pulse 2s infinite;
}
@keyframes hcp-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.75); }
}
.hcp-hero__slides { min-height: 120px; margin-bottom: 20px; }
.hcp-hero__slide  { display: none; }
.hcp-hero__slide--active { display: block; animation: hcp-slide-in .6s ease; }
@keyframes hcp-slide-in {
  from { opacity:0; transform: translateY(14px); }
  to   { opacity:1; transform: none; }
}
.hcp-hero__title {
  font-family: var(--font-display); font-size: clamp(2.8rem,6vw,5rem);
  line-height: 1.05; letter-spacing: 1.5px; color: #fff; margin: 0 0 12px;
}
.hcp-hero__slide-sub {
  font-size: 16px; color: rgba(255,255,255,.65); margin: 0; font-weight: 500;
}
.hcp-hero__desc {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.72); margin: 0 0 36px; max-width: 560px;
}
.hcp-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hcp-hero__actions .btn { padding: 15px 30px; font-size: 15px; }
.hcp-hero__dots { display: flex; gap: 8px; }
.hcp-hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.hcp-hero__dot--active { background: var(--secondary); transform: scale(1.3); }

/* ── QUICK ACTION TILES ───────────────────────────────────── */
.hcp-quick {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 56px 0;
}
.hcp-quick__grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 16px;
}
.hcp-quick__tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 26px 14px;
  text-decoration: none; color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s, box-shadow .25s;
}
.hcp-quick__tile:hover {
  background: #fff; color: var(--primary-dark);
  transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,.2);
}
.hcp-quick__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-size: 1.5rem; line-height: 1;
  transition: background .25s, transform .25s;
}
.hcp-quick__tile:hover .hcp-quick__icon {
  background: rgba(246,147,29,.16); transform: scale(1.08);
}
.hcp-quick__label { font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; text-align: center; }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.hcp-trust { background: var(--gray-50); padding: 44px 0; }
.hcp-trust__inner {
  display: flex; align-items: stretch; justify-content: center;
  flex-wrap: wrap; gap: 16px;
}
.hcp-trust__item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 28px; flex: 1; min-width: 220px; max-width: 280px;
  background: #fff; border: 1px solid var(--gray-100); border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.hcp-trust__item:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(38,96,171,.2);
}
.hcp-trust__divider { display: none; }
.hcp-trust__icon {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(38,96,171,.1); font-size: 1.4rem;
}
.hcp-trust__label { font-size: 13px; font-weight: 700; color: var(--dark); }
.hcp-trust__value { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

/* ── GET INVOLVED ─────────────────────────────────────────── */
.hcp-involve {
  padding: 90px 0;
  background: var(--gray-50);
}
/* When stacked directly under the Trust strip (same light-gray background),
   the combined bottom+top padding reads as one oversized empty gap — tighten
   it. Adjust this value to taste if widget order changes. */
.hcp-trust + .hcp-involve { padding-top: 36px; }
.hcp-involve__head { text-align: center; margin-bottom: 56px; }
.hcp-involve__badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); background: rgba(38,96,171,.08);
  border: 1px solid rgba(38,96,171,.2);
  padding: 5px 16px; border-radius: 100px; margin-bottom: 16px;
}
.hcp-involve__heading {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem);
  letter-spacing: 1.5px; color: var(--dark); margin: 0 0 14px;
}
.hcp-involve__sub {
  font-size: 16px; line-height: 1.7; color: var(--gray-600);
  max-width: 540px; margin: 0 auto;
}
.hcp-involve__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.hcp-involve__card {
  background: #fff; border-radius: 20px; padding: 36px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.hcp-involve__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* Card image — shown at top when set, replaces icon */
.hcp-involve__card-img {
  height: 200px; overflow: hidden;
  margin: -36px -30px 24px;
  border-radius: 20px 20px 0 0;
}
.hcp-involve__card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.hcp-involve__card:hover .hcp-involve__card-img img { transform: scale(1.05); }
.hcp-involve__card-body-wrap { display: flex; flex-direction: column; flex: 1; }

/* Icon fallback (shown when no image) */
.hcp-involve__card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(38,96,171,.1); border: 1px solid rgba(38,96,171,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 20px;
}
.hcp-involve__card-title {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1px;
  color: var(--dark); margin: 0 0 14px;
}
.hcp-involve__card-body {
  font-size: 14.5px; line-height: 1.75; color: var(--gray-600);
  flex: 1; margin: 0 0 22px;
}
.hcp-involve__card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-decoration: none; transition: gap .2s;
}
.hcp-involve__card-link:hover { gap: 10px; }

/* ── HOW WE WORK ──────────────────────────────────────────── */
.hcp-how {
  padding: 48px 0 40px;
  background: #f8fafd;
  position: relative;
  overflow: hidden;
}
.hcp-how--has-bg {
  --how-tint-rgb: 248,250,253;
  --how-tint-opacity: 0.88;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hcp-how--has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--how-tint-rgb), var(--how-tint-opacity));
  z-index: 0;
}
.hcp-how--has-bg > .container { position: relative; z-index: 1; }
.hcp-how__head { text-align: center; margin-bottom: 28px; }
.hcp-how__heading {
  font-family: var(--font-display); font-size: clamp(1.8rem,3.5vw,2.8rem);
  letter-spacing: 1.5px; color: var(--dark); margin: 0 0 10px;
}
.hcp-how__sub { font-size: 15px; color: rgba(10,14,20,.55); margin: 0; }

/* ── Timeline ── */
.hcp-how__timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 260px;
  margin-bottom: 28px;
}
.hcp-how__svg-path {
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 80px;
  transform: translateY(-50%);
  color: var(--secondary);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}
.hcp-how__step {
  flex: 1;
  position: relative;
  padding: 0 14px;
}
.hcp-how__wm {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(5rem,8vw,9rem);
  font-weight: 900;
  color: var(--primary);
  opacity: 0.04;
  line-height: 1;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  left: 50%; transform: translateX(-50%);
  top: 0;
}
.hcp-how__node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #d4710f);
  box-shadow: 0 6px 18px rgba(246,147,29,.38);
  color: #fff;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; letter-spacing: .5px;
}
.hcp-how__card {
  position: absolute;
  left: 6px; right: 6px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 3px 16px rgba(10,14,20,.08), 0 1px 3px rgba(10,14,20,.04);
  border: 1px solid rgba(38,96,171,.08);
  z-index: 2;
}
.hcp-how__step--top .hcp-how__card { bottom: calc(50% + 34px); }
.hcp-how__step--bot .hcp-how__card { top: calc(50% + 34px); }
.hcp-how__step-title {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .5px;
  color: var(--primary); margin: 0 0 6px;
}
.hcp-how__step-desc {
  font-size: 12.5px; line-height: 1.6; color: rgba(10,14,20,.65); margin: 0;
}
.hcp-how__note {
  max-width: 600px; margin: 0 auto; text-align: center;
  font-size: 14px; line-height: 1.7; color: rgba(10,14,20,.6);
  border: none; padding: 18px 28px;
  background: rgba(38,96,171,.05); border-radius: 10px;
  display: flex; align-items: flex-start; gap: 12px; justify-content: center;
}
.hcp-how__note svg { flex-shrink: 0; margin-top: 2px; color: var(--secondary); }

/* ── FEATURE CALLOUT ──────────────────────────────────────── */
.hcp-feature { padding: 90px 0; background: #fff; }
.hcp-feature__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hcp-feature__inner--flip .hcp-feature__img-wrap { order: 2; }
.hcp-feature__inner--flip .hcp-feature__text { order: 1; }
.hcp-feature__img-wrap { position: relative; }
.hcp-feature__img {
  width: 100%; border-radius: 20px; display: block;
  box-shadow: var(--shadow-lg); object-fit: cover;
  aspect-ratio: 16/9; max-height: 440px;
}
.hcp-feature__img-ph {
  aspect-ratio: 16/9; border-radius: 20px;
  background: linear-gradient(135deg,var(--primary-dark),var(--primary));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(255,255,255,.5); font-size: 13px; text-align: center; padding: 20px;
}
.hcp-feature__img-badge { display: none; }
.hcp-feature__tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); background: rgba(38,96,171,.08); border: 1px solid rgba(38,96,171,.2);
  padding: 5px 14px; border-radius: 100px; display: inline-block; margin-bottom: 16px;
}
.hcp-feature__title {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem);
  letter-spacing: 1.5px; line-height: 1.05; color: var(--dark); margin: 0 0 18px;
}
.hcp-feature__body {
  font-size: 15px; line-height: 1.8; color: var(--gray-600); margin: 0 0 28px;
}

/* ── ONGOING PROJECTS GRID ────────────────────────────────── */
.hcp-projects { padding: 90px 0; background: var(--gray-50); }
.hcp-projects__head { text-align: center; margin-bottom: 52px; }
.hcp-projects__badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--secondary); background: rgba(246,147,29,.09); border: 1px solid rgba(246,147,29,.22);
  padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.hcp-projects__heading {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.2rem);
  letter-spacing: 1.5px; color: var(--dark); margin: 0 0 12px;
}
.hcp-projects__sub { font-size: 15px; color: var(--gray-600); max-width: 540px; margin: 0 auto; }
.hcp-projects__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 26px;
}
.hcp-projects__card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.hcp-projects__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hcp-projects__card-img {
  height: 190px; overflow: hidden;
  background: linear-gradient(135deg,var(--primary-dark),var(--primary));
}
.hcp-projects__card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.hcp-projects__card:hover .hcp-projects__card-img img { transform: scale(1.05); }
.hcp-projects__card-ph {
  height: 100%; display: flex; align-items: center; justify-content: center;
}
.hcp-projects__card-body { padding: 24px 22px 20px; flex: 1; display: flex; flex-direction: column; }
.hcp-projects__card-title {
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .8px;
  color: var(--dark); margin: 0 0 10px;
}
.hcp-projects__card-desc {
  font-size: 14px; line-height: 1.7; color: var(--gray-600); flex: 1; margin: 0 0 16px;
}
.hcp-projects__card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--primary);
  text-decoration: none; text-transform: uppercase; letter-spacing: .8px;
  transition: gap .2s;
}
.hcp-projects__card-link:hover { gap: 10px; }

/* ── MISSION / ABOUT ──────────────────────────────────────── */
.hcp-mission { padding: 90px 0; background: #fff; }
.hcp-mission__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start;
}
.hcp-mission__tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); background: rgba(38,96,171,.08); border: 1px solid rgba(38,96,171,.2);
  padding: 5px 14px; border-radius: 100px; display: inline-block; margin-bottom: 18px;
}
.hcp-mission__title {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem);
  letter-spacing: 1.5px; line-height: 1.05; color: var(--dark); margin: 0 0 18px;
}
.hcp-mission__body {
  font-size: 15px; line-height: 1.8; color: var(--gray-600); margin: 0 0 28px;
}
.hcp-mission__checks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.hcp-mission__check {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--gray-700); line-height: 1.5;
}
.hcp-mission__check svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.hcp-mission__img {
  width: 100%; border-radius: 20px; display: block;
  box-shadow: var(--shadow-lg); object-fit: cover;
  aspect-ratio: 4/3; max-height: 480px;
}

/* Pillars — full-width 3-column row below the text/image grid */
.hcp-mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}
.hcp-mission__pillar {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; border-radius: 14px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  transition: border-color .2s, background .2s;
}
.hcp-mission__pillar:hover { background: #fff; border-color: rgba(38,96,171,.2); }
.hcp-mission__pillar-icon {
  font-size: 1.6rem; line-height: 1; flex-shrink: 0; margin-top: 2px;
}
.hcp-mission__pillar-title {
  font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.hcp-mission__pillar-sub { font-size: 13px; line-height: 1.55; color: var(--gray-600); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hcp-how__timeline { min-height: 260px; }
  .hcp-feature__inner { grid-template-columns: 1fr; gap: 40px; }
  .hcp-feature__inner--flip .hcp-feature__img-wrap { order: 0; }
  .hcp-feature__inner--flip .hcp-feature__text { order: 0; }
  .hcp-mission__inner { grid-template-columns: 1fr; gap: 36px; }
  .hcp-mission__pillars { grid-template-columns: 1fr; margin-top: 32px; padding-top: 28px; }
  .hcp-projects__grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Shared mobile carousel helper ───────────────────────────
   Turns a card grid into a horizontal swipe row on small screens
   instead of one long stacked column. Used by Trust, Quick Actions,
   Get Involved, How We Work, Projects, Mission pillars, and Team. ── */
@media (max-width: 768px) {
  .hcp-mobile-carousel {
    display: flex !important; flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px; padding: 4px 20px 16px;
    scroll-padding-left: 20px;
  }
  .hcp-mobile-carousel::-webkit-scrollbar { display: none; }
  .hcp-mobile-carousel > * {
    scroll-snap-align: start; flex-shrink: 0;
    flex: 0 0 calc(100vw - 40px) !important;
    max-width: none !important; width: auto !important;
  }
}

/* ── Universal carousel dot indicators (all sliders, all breakpoints) ── */
@media (max-width: 960px) {
  .carousel-dots {
    display: flex; justify-content: center; align-items: center;
    gap: 7px; padding: 12px 0 4px;
  }
  .carousel-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(38,96,171,.2); border: none; padding: 0;
    cursor: pointer; flex-shrink: 0;
    transition: background .3s, width .3s, border-radius .3s;
  }
  .carousel-dot.active {
    background: var(--primary); width: 22px; border-radius: 5px;
  }
}

@media (max-width: 768px) {
  .hcp-hero { min-height: 80vh; padding: 100px 0 60px; }

  .hcp-involve__grid { grid-template-columns: 1fr; }
  .hcp-involve__grid.hcp-mobile-carousel > .hcp-involve__card { width: 82vw; max-width: 340px; }

  .hcp-quick { padding: 40px 0; }
  .hcp-quick__grid.hcp-mobile-carousel > .hcp-quick__tile { width: 110px; }
  .hcp-quick__tile { padding: 18px 10px; }

  .hcp-trust { padding: 32px 0; }
  .hcp-trust__inner.hcp-mobile-carousel > .hcp-trust__item {
    flex: 0 0 auto; width: 78vw; max-width: 280px; min-width: 0;
  }
  .hcp-trust__item { padding: 14px 16px; justify-content: flex-start; }
  .hcp-trust__icon { width: 38px; height: 38px; font-size: 1.2rem; flex-shrink: 0; }
  .hcp-trust__label { font-size: 12px; }
  .hcp-trust__value { font-size: 10.5px; }

  /* How We Work — mobile vertical timeline */
  .hcp-how__timeline {
    flex-direction: column;
    min-height: unset;
    gap: 0;
    padding-left: 24px;
  }
  .hcp-how__svg-path { display: none; }
  /* vertical connector between steps */
  .hcp-how__timeline::before {
    content: '';
    position: absolute;
    left: 26px; top: 28px; bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(246,147,29,.2) 100%);
    border-radius: 2px;
  }
  .hcp-how__step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 0 0 28px 0;
    min-height: unset;
  }
  .hcp-how__step--top .hcp-how__card,
  .hcp-how__step--bot .hcp-how__card {
    position: static;
    top: auto; bottom: auto;
    left: auto; right: auto;
    flex: 1;
  }
  .hcp-how__node {
    position: static;
    transform: none;
    flex-shrink: 0;
    width: 52px; height: 52px;
    font-size: 1.1rem;
    order: -1;
  }
  .hcp-how__wm { display: none; }

  .hcp-projects__grid.hcp-mobile-carousel > .hcp-projects__card { width: 82vw; max-width: 340px; }

  .hcp-mission__pillars.hcp-mobile-carousel > .hcp-mission__pillar { width: 78vw; max-width: 300px; }

  /* hcp-team now uses sidebar+featured layout — no carousel needed */
}
@media (max-width: 540px) {
  .hcp-hero__title { font-size: clamp(2.2rem,8vw,3rem); }
}


/* ════════════════════════════════════════════════════════════
   HCP DONATE SECTION WIDGET  (hcpd-)
   Follows theme: Bebas Neue headings, white/#gray-50 bg,
   primary blue accents. Dark cards ONLY at quote + CTA.
   ════════════════════════════════════════════════════════════ */

/* ── Page wrapper ─────────────────────────────────────────── */
.hcpd { background: #fff; }


/* -- HERO --------------------------------------------------------- */
.hcpd-hero { padding: 40px 0; background: var(--gray-50); }
.hcpd-hero__card {
  background: linear-gradient(135deg, #1a3a7a 0%, #2256b0 55%, #2e6fd4 100%);
  border-radius: 20px; padding: 52px 56px 48px;
  position: relative; overflow: hidden;
}
.hcpd-hero__card::before {
  content: ""; position: absolute; top: -80px; right: -60px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(38,96,171,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hcpd-hero__pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; position: relative; z-index: 1;
}
.hcpd-hero__pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.hcpd-hero__pill--accent { background: var(--primary); color: #fff; border-color: var(--primary); }
.hcpd-hero__pill i { width: 12px; height: 12px; flex-shrink: 0; }
.hcpd-hero__h {
  font-family: var(--font-body); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; color: #fff; margin: 0 0 28px;
  letter-spacing: -.5px; position: relative; z-index: 1;
}
.hcpd-hero__rule {
  border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 0 0 32px;
  position: relative; z-index: 1;
}
.hcpd-hero__cols {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px; position: relative; z-index: 1;
}
.hcpd-hero__col { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.72); margin: 0; }
.hcpd-hero__col--accent { color: #7eaee8; font-weight: 600; }

/* ── Intro / sub-heading strip ────────────────────────────── */
.hcpd-intro {
  background: var(--gray-50); padding: 64px 0; border-top: 1px solid var(--gray-200);
}
.hcpd-intro__inner {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: center;
}
.hcpd-intro__label {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3rem);
  letter-spacing: 2px; color: var(--dark); margin: 0; line-height: 1.05;
}
.hcpd-intro__label span { color: var(--primary); }
.hcpd-intro__body p {
  font-size: 15px; line-height: 1.85; color: var(--gray-600); margin: 0 0 16px;
}
.hcpd-intro__body p:last-child { margin: 0; }

/* ── Section header (shared) ──────────────────────────────── */
.hcpd-sh { text-align: center; margin-bottom: 52px; }
.hcpd-sh__tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  background: rgba(38,96,171,.08); border: 1px solid rgba(38,96,171,.2);
  padding: 5px 16px; border-radius: 100px; margin-bottom: 14px;
}
.hcpd-sh__title {
  font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.4rem);
  letter-spacing: 2px; color: var(--dark); margin: 0 0 10px;
}
.hcpd-sh__sub { font-size: 15px; color: var(--gray-500); max-width: 540px; margin: 0 auto; }

/* ── 01 WAYS TO GIVE ──────────────────────────────────────── */
.hcpd-ways-section { padding: 90px 0; background: #fff; }
.hcpd-ways { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.hcpd-way {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 20px; padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, border-color .3s;
}
.hcpd-way:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(38,96,171,.2);
}
.hcpd-way__num-wrap {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.hcpd-way__num {
  font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 1px;
  color: var(--gray-400);
}
.hcpd-way__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.hcpd-way__icon i { width: 22px; height: 22px; }
.hcpd-way__emoji { font-size: 22px; line-height: 1; }
.hcpd-way__title {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 1px;
  color: var(--dark); margin: 0 0 14px; line-height: 1.1;
}
.hcpd-way__desc { font-size: 14px; line-height: 1.75; color: var(--gray-600); margin: 0; flex: 1; }

/* ── 02 PAYMENT OPTIONS ───────────────────────────────────── */
.hcpd-pay-section { padding: 90px 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.hcpd-pay { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hcpd-pay__card {
  background: #fff; border-radius: 20px; padding: 36px;
  border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
}
.hcpd-pay__card-hd {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid var(--gray-100);
}
.hcpd-pay__card-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0; color: #fff;
  background: linear-gradient(135deg,var(--primary),var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
}
.hcpd-pay__card-icon i { width: 22px; height: 22px; }
.hcpd-pay__card-title {
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 1px;
  color: var(--dark); margin: 0;
}
.hcpd-bank { display: flex; flex-direction: column; gap: 0; margin: 0 0 20px; padding: 0; }
.hcpd-bank__row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--gray-100);
}
.hcpd-bank__row:last-child { border-bottom: none; }
.hcpd-bank__row dt {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gray-500); flex-shrink: 0;
}
.hcpd-bank__row dd { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; text-align: right; }
.hcpd-pay__card-desc { font-size: 14px; line-height: 1.7; color: var(--gray-600); margin: 0 0 22px; }
.hcpd-pay__note {
  font-size: 12.5px; color: var(--gray-500); margin: 20px 0 0;
  padding: 12px 16px; background: var(--gray-50); border-radius: 10px;
  border-left: 3px solid var(--primary); font-style: italic; line-height: 1.6;
}
.hcpd-wallets { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hcpd-wallet {
  border-radius: 14px; border: 1px solid var(--gray-200); padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.hcpd-wallet:hover { border-color: rgba(38,96,171,.3); box-shadow: var(--shadow-sm); }
.hcpd-wallet__badge {
  display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fff;
  padding: 4px 12px; border-radius: 8px; margin-bottom: 14px;
}
.hcpd-wallet--esewa  .hcpd-wallet__badge { background: #3aab44; }
.hcpd-wallet--khalti .hcpd-wallet__badge { background: #5c35a0; }
.hcpd-wallet__label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 6px;
}
.hcpd-wallet__id { font-size: 1.1rem; font-weight: 800; color: var(--primary); letter-spacing: .5px; }

/* ── 03 IMPACT ────────────────────────────────────────────── */
.hcpd-impact-section { padding: 90px 0; background: #fff; }
.hcpd-impact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.hcpd-impact__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.hcpd-impact__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 18px; border-radius: 14px;
  transition: background .2s;
}
.hcpd-impact__item:hover { background: var(--gray-50); }
.hcpd-impact__icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: rgba(38,96,171,.08); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.hcpd-impact__icon i { width: 18px; height: 18px; }
.hcpd-impact__emoji { font-size: 18px; line-height: 1; }
.hcpd-impact__text { font-size: 15px; line-height: 1.65; color: var(--gray-700); padding-top: 8px; }
.hcpd-impact__why {
  background: var(--gray-50); border-radius: 20px; padding: 36px 32px;
  border: 1px solid var(--gray-200);
}
.hcpd-impact__why-h {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 1.5px;
  color: var(--dark); margin: 0 0 28px;
}
.hcpd-impact__why-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.hcpd-impact__why-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; line-height: 1.65; color: var(--gray-700);
}
.hcpd-impact__why-list li::before {
  content: '';
  display: block; flex-shrink: 0; margin-top: 3px; width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232660ab' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── QUOTE ────────────────────────────────────────────────── */
.hcpd-quote-wrap {
  padding: 0 0 0; background: var(--gray-50); border-top: 1px solid var(--gray-200);
}
.hcpd-quote-wrap .container { padding-top: 64px; padding-bottom: 0; }
.hcpd-quote {
  background: linear-gradient(135deg,#0a1428 0%,#0d2660 50%,#1a3d8a 100%);
  border-radius: 24px; padding: 64px 72px; position: relative; overflow: hidden;
}
.hcpd-quote::before {
  content: '';
  position: absolute; inset: 0; border-radius: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='29' fill='none' stroke='rgba(255,255,255,.03)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hcpd-quote__mark {
  font-family: Georgia, serif; font-size: 10rem; line-height: .6; font-weight: 700;
  color: rgba(255,255,255,.1); position: absolute; top: 20px; left: 48px;
  pointer-events: none; user-select: none;
}
.hcpd-quote__text {
  font-size: 1.15rem; line-height: 1.9; color: rgba(255,255,255,.9);
  margin: 0 0 28px; position: relative; z-index: 1; max-width: 760px;
}
.hcpd-quote__attr {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: 3px;
  color: rgba(255,255,255,.45); font-style: normal; position: relative; z-index: 1; display: block;
}

/* ── CTA ──────────────────────────────────────────────────── */
.hcpd-cta-wrap {
  background: var(--gray-50); padding: 64px 0;
}
.hcpd-cta {
  background: linear-gradient(135deg,var(--primary-dark) 0%,var(--primary) 60%,#3a7bd5 100%);
  border-radius: 24px; padding: 60px 64px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.hcpd-cta__h {
  font-family: var(--font-display); font-size: clamp(2rem,3.5vw,3.2rem);
  letter-spacing: 2px; color: #fff; margin: 0 0 14px;
}
.hcpd-cta__desc { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.75); margin: 0; max-width: 560px; }
.hcpd-cta__right { display: flex; flex-direction: column; gap: 16px; min-width: 260px; }
.hcpd-cta__contact {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,.9); text-decoration: none;
  background: rgba(255,255,255,.12); border-radius: 12px; padding: 12px 18px;
  transition: background .2s;
}
.hcpd-cta__contact:hover { background: rgba(255,255,255,.2); }
.hcpd-cta__contact i { width: 16px; height: 16px; flex-shrink: 0; opacity: .8; }
span.hcpd-cta__contact { cursor: default; }

/* -- Responsive ---------------------------------------------------- */
@media (max-width: 900px) {
  .hcpd-hero { padding: 24px 0; }
  .hcpd-hero__card { padding: 36px 24px 32px; border-radius: 16px; }
  .hcpd-hero__cols { grid-template-columns: 1fr; gap: 16px; }
  .hcpd-intro__inner { grid-template-columns: 1fr; gap: 28px; }
  .hcpd-pay { grid-template-columns: 1fr; gap: 20px; }
  .hcpd-impact { grid-template-columns: 1fr; gap: 40px; }
  .hcpd-quote { padding: 48px 32px; }
  .hcpd-quote__mark { font-size: 6rem; top: 12px; left: 24px; }
  .hcpd-cta { grid-template-columns: 1fr; gap: 32px; padding: 44px 32px; }
  .hcpd-cta-wrap { padding: 48px 0; }
  .hcpd-quote-wrap .container { padding-top: 48px; }
}
@media (max-width: 768px) {
  .hcpd-ways-section { padding-left: 0; padding-right: 0; overflow: hidden; }
  .hcpd-ways-section .container { padding-left: 0; padding-right: 0; max-width: 100%; }
  .hcpd-ways-section .bi-section-heading,
  .hcpd-ways-section .hcpd-section-heading { padding: 0 20px; }
  .hcpd-ways {
    display: flex !important; flex-direction: row;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 20px; padding: 4px 20px 28px;
    scroll-padding-left: 20px;
    grid-template-columns: unset !important;
  }
  .hcpd-ways::-webkit-scrollbar { display: none; }
  .hcpd-way {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 0; max-width: none; scroll-snap-align: start;
  }
}
@media (max-width: 540px) {
  .hcpd-hero__h { font-size: 1.8rem; }
  .hcpd-hero__card { padding: 28px 20px 24px; }
  .hcpd-pay__card { padding: 24px 20px; }
  .hcpd-wallets { grid-template-columns: 1fr 1fr; }
  .hcpd-ways-section,.hcpd-pay-section,.hcpd-impact-section { padding: 64px 0; }
}

/*
Theme Name: Himalayan Community Project
Theme URI: https://himalayancommunityproject.org.np
Author: Himalayan Community Project
Description: Community-first NGO theme for Himalayan Community Project — empowering Himalayan communities through programs, health initiatives, and animal welfare.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: hcp
*/
/* ════════════════════════════════════════════════════════════
   OUR TEAM WIDGET
   ════════════════════════════════════════════════════════════ */

.hcp-team {
  padding: 80px 0;
  background: #f2f5f9;
  position: relative; overflow: hidden;
}
.hcp-team::before {
  content: '';
  position: absolute; top: -140px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(38,96,171,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hcp-team::after {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(246,147,29,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Section header ── */
.hcp-team__head {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding-bottom: 44px; margin-bottom: 52px;
  border-bottom: 1px solid rgba(38,96,171,.10);
}
.hcp-team__head::before { display: none; }
.hcp-team__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--secondary); background: rgba(246,147,29,.10);
  border: 1px solid rgba(246,147,29,.28);
  padding: 5px 18px; border-radius: 100px; margin-bottom: 16px;
}
.hcp-team__badge svg { color: var(--secondary); }
.hcp-team__heading {
  font-family: var(--font-display); font-size: clamp(1.9rem,3vw,2.8rem);
  letter-spacing: .3px; color: var(--dark); margin: 0 0 14px; line-height: 1.15;
}
.hcp-team__sub {
  font-size: 15px; line-height: 1.8; color: rgba(10,14,20,.55); margin: 0; max-width: 560px;
}

/* ── Featured member ── */
.hcp-team__featured {
  display: grid; grid-template-columns: 280px 1fr;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 32px rgba(10,14,20,.12);
  border: 1px solid rgba(38,96,171,.10);
  margin-bottom: 60px;
  background: #fff;
}
.hcp-team__featured-img {
  position: relative;
  height: 280px;
  background: linear-gradient(160deg, #0d2d5e 0%, #1a4a8f 50%, #2660ab 100%);
  display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.hcp-team__featured-badge {
  display: inline-block; width: fit-content;
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; background: var(--secondary);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(246,147,29,.35);
}
.hcp-team__featured-img img {
  height: 100%; width: auto;
  display: block; transition: transform .6s ease;
}
.hcp-team__featured:hover .hcp-team__featured-img img { transform: scale(1.02); }
.hcp-team__featured-img::after { display: none; }
.hcp-team__featured-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hcp-team__initials-lg {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 700;
  color: rgba(255,255,255,.35); letter-spacing: -3px; line-height: 1;
  text-shadow: 0 4px 24px rgba(0,0,0,.2);
}

/* Info panel */
.hcp-team__featured-info {
  background: #fff;
  padding: 28px 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  border-left: 4px solid var(--secondary);
}
.hcp-team__featured-info::before { display: none; }
.hcp-team__featured-info::after { display: none; }

.hcp-team__name--lg {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; letter-spacing: -.5px;
  color: var(--dark); margin: 0 0 10px; line-height: 1.1;
}
.hcp-team__bio--lg {
  font-size: 13.5px; line-height: 1.75; color: rgba(10,14,20,.60); margin-bottom: 18px;
  display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Social icons */
.hcp-team__socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.hcp-team__socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(38,96,171,.07); border: 1px solid rgba(38,96,171,.16);
  color: var(--primary); text-decoration: none;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.hcp-team__socials a:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; transform: translateY(-2px); }

/* ── Grid sub-heading ── */
.hcp-team__grid-header { margin-bottom: 24px; }
.hcp-team__grid-title {
  font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .4px;
  color: var(--dark); margin: 0; padding-bottom: 12px; position: relative; display: inline-block;
  text-transform: uppercase;
}
.hcp-team__grid-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px; background: var(--secondary); border-radius: 2px;
}

/* ── Grid cards ── */
.hcp-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
}
.hcp-team__card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 2px 18px rgba(10,14,20,.08); border: 1px solid rgba(38,96,171,.08);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
  position: relative; display: flex; flex-direction: column;
}
.hcp-team__card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0); transition: transform .3s ease; transform-origin: left;
}
.hcp-team__card:hover { transform: translateY(-7px); box-shadow: 0 18px 48px rgba(38,96,171,.16); }
.hcp-team__card:hover::after { transform: scaleX(1); }

/* Square photo */
.hcp-team__photo {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: linear-gradient(145deg, #0d2d5e 0%, #1a4a8f 55%, #2f72c8 100%);
}
.hcp-team__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
  transition: transform .5s ease;
}
.hcp-team__card:hover .hcp-team__photo img { transform: scale(1.06); }
.hcp-team__photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hcp-team__photo-ph span {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: rgba(255,255,255,.5); letter-spacing: -1px; line-height: 1;
}

.hcp-team__body {
  padding: 18px 18px 20px;
  text-align: center; display: flex; flex-direction: column; flex: 1;
}
.hcp-team__name {
  font-family: var(--font-display); font-size: 1rem; letter-spacing: .2px;
  color: var(--dark); margin: 0 0 8px;
}
.hcp-team__role {
  display: block;
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}
.hcp-team__bio {
  font-size: 12.5px; line-height: 1.65; color: rgba(10,14,20,.52);
  margin: 0 0 14px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.hcp-team__body .hcp-team__socials {
  justify-content: center; gap: 8px; margin-top: auto;
}
.hcp-team__body .hcp-team__socials a {
  width: 30px; height: 30px;
  background: rgba(38,96,171,.06); border: 1px solid rgba(38,96,171,.14);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 860px) {
  .hcp-team__featured { grid-template-columns: 1fr; }
  .hcp-team__featured-img { height: 300px; }
  .hcp-team__featured-info {
    padding: 24px 24px 28px;
    border-left: none; border-top: 4px solid var(--secondary);
  }
  .hcp-team__name--lg { font-size: 1.75rem; }
  .hcp-team__head { padding-bottom: 32px; margin-bottom: 36px; }
}
@media (max-width: 600px) {
  .hcp-team { padding: 52px 0; }
  .hcp-team__head { padding-bottom: 24px; margin-bottom: 28px; }
  .hcp-team__featured { margin-bottom: 32px; border-radius: 16px; }
  .hcp-team__featured-img { height: 240px; }
  .hcp-team__featured-info { padding: 20px 18px 24px; }
  .hcp-team__name--lg { font-size: 1.5rem; }
  .hcp-team__bio--lg { font-size: 13px; -webkit-line-clamp: 3; line-clamp: 3; }
  .hcp-team__featured-badge { font-size: 8.5px; padding: 4px 11px; }
  .hcp-team__grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT US PAGE — Hero, Story, Objectives, Invest, Help widgets
   ═══════════════════════════════════════════════════════════════════════════ */

/* — Hero — */
.hcp-abhero {
  position: relative; min-height: 62vh;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden; background: linear-gradient(135deg,#071535 0%,#1b4a80 60%,#2660ab 100%);
  padding: 140px 0 64px;
}
.hcp-abhero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hcp-abhero__grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(10,14,20,.25) 0%, rgba(10,14,20,.55) 60%, rgba(10,14,20,.9) 100%),
    linear-gradient(180deg, rgba(10,14,20,.4) 0%, rgba(10,14,20,.45) 50%, rgba(10,14,20,.85) 100%);
}
.hcp-abhero__content { position: relative; z-index: 1; max-width: 760px; margin: 0; text-align: left; }
.hcp-abhero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 11.5px;
  font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--secondary); background: none; border: none;
  padding: 0 0 6px; margin-bottom: 22px;
  border-bottom: 2px solid rgba(246,147,29,.45);
}
.hcp-abhero__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--secondary); flex-shrink: 0;
}
.hcp-abhero__title {
  font-family: var(--font-display); font-weight: 400; letter-spacing: 1px;
  font-size: clamp(2.3rem, 5.2vw, 3.8rem); line-height: 1.1; color: #fff; margin: 0 0 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hcp-abhero__sub { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.82); margin: 0; max-width: 620px; }

@media (max-width: 900px) {
  .hcp-abhero { padding: 110px 0 60px; min-height: 48vh; }
  .hcp-abhero__title { font-size: clamp(1.9rem, 5vw, 2.8rem); }
}
@media (max-width: 768px) {
  .hcp-abhero { padding: 100px 0 52px; min-height: auto; }
  .hcp-abhero__title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hcp-abhero__sub   { font-size: 15px; }
}
@media (max-width: 640px) {
  .hcp-abhero { padding: 88px 0 44px; min-height: auto; }
  .hcp-abhero__eyebrow { font-size: 10px; padding: 0 0 5px; margin-bottom: 14px; }
  .hcp-abhero__title   { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hcp-abhero__sub     { font-size: 14px; }
}

/* — Story — */
.hcp-story { padding: 100px 0; background: var(--gray-50); }
.hcp-story__grid {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 28px;
  box-shadow: var(--shadow-lg); overflow: visible;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
  padding: 56px;
}
.hcp-story__text { position: relative; }
.hcp-story__heading {
  position: relative; padding-top: 22px;
  font-family: var(--font-display); font-weight: 400; letter-spacing: .8px;
  font-size: clamp(1.9rem, 3.6vw, 2.5rem); color: var(--dark); margin: 0 0 22px;
}
.hcp-story__heading::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 46px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
}
.hcp-story__text p { font-size: 15.5px; line-height: 1.85; color: var(--gray-600); margin: 0 0 18px; }
.hcp-story__text p:last-child { margin-bottom: 0; }
.hcp-story__img { position: relative; }
.hcp-story__img::before {
  content: ''; position: absolute; width: 96px; height: 96px;
  border: 3px solid var(--secondary); opacity: .5; border-radius: 20px;
  bottom: -16px; right: -16px; z-index: 0;
}
.hcp-story__img img {
  position: relative; z-index: 1;
  width: 100%; height: auto; max-height: 420px; margin: 0 auto;
  border-radius: 18px; box-shadow: var(--shadow-md); display: block; object-fit: cover;
}

@media (max-width: 900px) {
  .hcp-story__grid { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .hcp-story__img { order: -1; }
  .hcp-story__img img { max-height: 320px; width: 100%; }
}
@media (max-width: 640px) {
  .hcp-story { padding: 64px 0; }
  .hcp-story__grid { padding: 26px 22px; border-radius: 20px; }
  .hcp-story__text p { font-size: 14.5px; }
  .hcp-story__img::before { width: 64px; height: 64px; bottom: -10px; right: -10px; }
  .hcp-story__img img { max-height: 230px; }
}

/* — Objectives — */
.hcp-objectives { position: relative; padding: 64px 0 72px; overflow: hidden; background: #2660ab; }
.hcp-objectives__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hcp-objectives__tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 30%,  rgba(255,255,255,.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 100% 80%, rgba(246,147,29,.18) 0%, transparent 60%),
    linear-gradient(160deg, rgba(14,42,90,.55) 0%, rgba(10,30,70,.35) 100%);
}
.hcp-objectives__inner { position: relative; z-index: 1; }
.hcp-objectives__heading {
  font-family: var(--font-display); font-weight: 400; letter-spacing: 1px;
  font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; text-align: center; margin: 0 0 8px;
}
.hcp-objectives__heading::after {
  content: ''; display: block; width: 60px; height: 3px; margin: 14px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #fff, var(--secondary));
}
.hcp-objectives__grid {
  counter-reset: hcp-obj;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 14px;
  margin-top: 40px;
}
.hcp-objectives__item {
  counter-increment: hcp-obj;
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 18px 20px 16px;
  font-size: 14px; line-height: 1.65; color: #fff;
  display: flex; flex-direction: row; align-items: flex-start; gap: 14px;
  transition: background .3s, transform .3s, border-color .3s, box-shadow .3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hcp-objectives__item::before {
  content: counter(hcp-obj, decimal-leading-zero);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: var(--secondary);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: .5px; line-height: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  position: relative; top: auto; right: auto; margin-bottom: 0;
}
.hcp-objectives__item:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(246,147,29,.6);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.hcp-objectives__item:hover::before {
  box-shadow: 0 6px 20px rgba(246,147,29,.5);
}

@media (max-width: 768px) {
  .hcp-objectives__grid.hcp-mobile-carousel > .hcp-objectives__item { width: 78vw; max-width: 320px; }
}
@media (max-width: 640px) {
  .hcp-objectives { padding: 48px 0 56px; }
  .hcp-objectives__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 10px;
    margin-top: 28px;
  }
  .hcp-objectives__item { font-size: 13.5px; padding: 14px 16px; }
  .hcp-objectives__item::before { width: 30px; height: 30px; font-size: 12px; }
}

/* — Invest in People — */
.hcp-invest { padding: 100px 0; background: #fff; }
.hcp-invest__grid {
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 28px;
  overflow: visible;
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center;
  padding: 56px;
}
.hcp-invest__text { position: relative; padding-top: 22px; }
.hcp-invest__heading {
  position: relative;
  font-family: var(--font-display); font-weight: 400; letter-spacing: .8px;
  font-size: clamp(1.9rem, 3.6vw, 2.5rem); color: var(--dark); margin: 0 0 18px;
}
.hcp-invest__text::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 46px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}
.hcp-invest__text p { font-size: 15.5px; line-height: 1.85; color: var(--gray-600); margin: 0; }
.hcp-invest__img { position: relative; }
.hcp-invest__img::before {
  content: ''; position: absolute; width: 96px; height: 96px;
  border: 3px solid var(--primary); opacity: .45; border-radius: 20px;
  top: -16px; left: -16px; z-index: 0;
}
.hcp-invest__img img {
  position: relative; z-index: 1;
  width: 100%; height: auto; max-height: 420px; margin: 0 auto;
  border-radius: 18px; box-shadow: var(--shadow-md); display: block; object-fit: cover;
}

@media (max-width: 900px) {
  .hcp-invest__grid { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .hcp-invest__img { order: -1; }
  .hcp-invest__img img { max-height: 320px; width: 100%; }
}
@media (max-width: 640px) {
  .hcp-invest { padding: 64px 0; }
  .hcp-invest__grid { padding: 26px 22px; border-radius: 20px; }
  .hcp-invest__text p { font-size: 14.5px; }
  .hcp-invest__img::before { width: 64px; height: 64px; top: -10px; left: -10px; }
  .hcp-invest__img img { max-height: 230px; }
}

/* — How You Can Help — */
.hcp-help { padding: 100px 0 110px; background: #fff; position: relative; overflow: hidden; }
.hcp-help::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 100% 0%, rgba(38,96,171,.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(246,147,29,.05) 0%, transparent 70%);
}
.hcp-help__heading {
  font-family: var(--font-display); font-weight: 400; letter-spacing: .8px;
  font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--dark); text-align: center; margin: 0;
}
.hcp-help__heading::after {
  content: ''; display: block; width: 60px; height: 3px; margin: 20px auto 64px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.hcp-help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}
.hcp-help__card {
  position: relative;
  background: linear-gradient(160deg, #f8fafc 0%, #fff 100%);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  padding: 38px 28px 32px;
  text-align: center;
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s, border-color .35s, background .35s;
}
.hcp-help__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.hcp-help__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(15,23,42,.13);
  border-color: rgba(38,96,171,.15);
  background: #fff;
}
.hcp-help__icon {
  display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; margin: 0 auto 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 30px rgba(38,96,171,.3);
  font-size: 30px; line-height: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s;
}
.hcp-help__card:nth-child(even) .hcp-help__icon {
  background: linear-gradient(135deg, var(--secondary), #d4710e);
  box-shadow: 0 12px 30px rgba(246,147,29,.35);
}
.hcp-help__card:hover .hcp-help__icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 18px 40px rgba(38,96,171,.4);
}
.hcp-help__card:nth-child(even):hover .hcp-help__icon {
  box-shadow: 0 18px 40px rgba(246,147,29,.45);
}
.hcp-help__card-title {
  display: block;
  font-size: 17px; font-weight: 700; color: var(--dark);
  margin-bottom: 10px; line-height: 1.3;
}
.hcp-help__card p { font-size: 14px; line-height: 1.72; color: var(--gray-500); margin: 0; }

@media (max-width: 900px) {
  .hcp-help { padding: 64px 0 80px; }
  .hcp-help__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 768px) {
  .hcp-help__grid.hcp-mobile-carousel > .hcp-help__card { width: 72vw; max-width: 280px; }
  .hcp-help { padding: 56px 0 68px; }
}
@media (max-width: 640px) {
  .hcp-help { padding: 48px 0 60px; }
  .hcp-help__heading::after { margin-bottom: 36px; }
  .hcp-help__grid:not(.hcp-mobile-carousel) { grid-template-columns: 1fr; gap: 16px; }
  .hcp-help__card { padding: 26px 20px 22px; }
  .hcp-help__icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 16px; }
  .hcp-help__card-title { font-size: 15.5px; }
  .hcp-help__card p { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEGAL PAGES — Privacy Policy
   ═══════════════════════════════════════════════════════════════════════════ */

.hcp-legal {
  padding: 72px 0 96px;
  background: #f8f9fc;
  min-height: 60vh;
}

/* Header */
.hcp-legal__header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(38,96,171,.12);
}
.hcp-legal__badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--secondary); background: rgba(246,147,29,.1);
  border: 1px solid rgba(246,147,29,.3);
  padding: 4px 14px; border-radius: 100px; margin-bottom: 16px;
}
.hcp-legal__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark); margin: 0 0 18px; line-height: 1.1; letter-spacing: 1px;
}
.hcp-legal__dates {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--gray-500);
}
.hcp-legal__dates strong { color: var(--dark); }

/* Table of contents */
.hcp-legal__toc {
  background: #fff;
  border: 1px solid rgba(38,96,171,.12);
  border-radius: 14px;
  padding: 24px 32px;
  margin-bottom: 48px;
  max-width: 680px;
}
.hcp-legal__toc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 14px;
}
.hcp-legal__toc-list {
  margin: 0; padding-left: 20px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 4px 24px;
}
.hcp-legal__toc-list li { font-size: 13.5px; line-height: 1.7; }
.hcp-legal__toc-list a {
  color: var(--primary); text-decoration: none;
  transition: color .15s;
}
.hcp-legal__toc-list a:hover { color: var(--secondary); text-decoration: underline; }

/* Body */
.hcp-legal__body { max-width: 780px; }

/* Section */
.hcp-legal__section {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(38,96,171,.08);
  padding: 32px 40px;
  margin-bottom: 20px;
  scroll-margin-top: 100px;
}
.hcp-legal__section-title {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700; letter-spacing: .3px;
  color: var(--dark); margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(38,96,171,.1);
}
.hcp-legal__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; font-size: 12px; font-weight: 700; font-family: var(--font-body);
}

/* Section body text */
.hcp-legal__section-body p {
  font-size: 14.5px; line-height: 1.85; color: rgba(10,14,20,.72);
  margin: 0 0 14px;
}
.hcp-legal__section-body p:last-child { margin-bottom: 0; }

/* Sub-headings */
.hcp-legal__sub {
  font-size: 14px; font-weight: 700; color: var(--primary);
  margin: 20px 0 10px; letter-spacing: .2px;
}

/* Bullet lists */
.hcp-legal__list {
  margin: 0 0 14px 0; padding-left: 0; list-style: none;
}
.hcp-legal__list li {
  font-size: 14.5px; line-height: 1.75; color: rgba(10,14,20,.72);
  padding: 5px 0 5px 22px; position: relative;
  border-bottom: 1px solid rgba(38,96,171,.06);
}
.hcp-legal__list li:last-child { border-bottom: none; }
.hcp-legal__list li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--secondary);
}

/* Responsive */
@media (max-width: 720px) {
  .hcp-legal { padding: 52px 0 72px; }
  .hcp-legal__section { padding: 24px 22px; }
  .hcp-legal__toc { padding: 18px 20px; }
  .hcp-legal__toc-list { grid-template-columns: 1fr; }
  .hcp-legal__section-body p,
  .hcp-legal__list li { font-size: 13.5px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BE INVOLVED PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Be Involved main page hero — light premium ── */
.hcpi-hero {
  position: relative;
  background: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 108px 0 100px;
  overflow: hidden;
  text-align: left;
}
.hcpi-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -15%, rgba(38,96,171,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 92% 80%,  rgba(246,147,29,.05) 0%, transparent 60%);
  pointer-events: none;
}
.hcpi-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent 0%, #2660ab 20%, #f6931d 50%, #2660ab 80%, transparent);
}
/* When admin uploads a bg image — overlay darkens it for legibility */
.hcpi-hero__overlay {
  display: none; /* shown via JS/class when bg image present — see below */
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(4,13,30,.65) 0%, rgba(10,22,50,.45) 100%);
  z-index: 1;
}
/* Auto-show overlay when inline background-image style is set */
.hcpi-hero[style*="background-image"] .hcpi-hero__overlay { display: block; }
.hcpi-hero[style*="background-image"] .hcpi-hero__heading { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hcpi-hero[style*="background-image"] .hcpi-hero__sub    { color: rgba(255,255,255,.72); }
.hcpi-hero[style*="background-image"] .hcpi-hero__tag    { background: rgba(246,147,29,.15); border-color: rgba(246,147,29,.5); color: #f6a73d; }
.hcpi-hero .container { position: relative; z-index: 2; }
.hcpi-hero__inner { max-width: 760px; }
.hcpi-hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(38,96,171,.06);
  border: 1px solid rgba(38,96,171,.25);
  color: var(--primary);
  font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 22px; border-radius: 100px; margin-bottom: 26px;
}
.hcpi-hero__tag::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #f6931d; box-shadow: 0 0 8px rgba(246,147,29,.6);
  animation: hcp-hero-pulse 2s ease-out infinite;
}
.hcpi-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem); color: var(--dark);
  margin: 0 0 22px; line-height: 1.0; letter-spacing: 1px;
}
.hcpi-hero__sub {
  font-size: 16px; line-height: 1.9; color: rgba(10,14,20,.62);
  margin: 0 0 40px; max-width: 560px;
}
.hcpi-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Intro */
.hcpi-intro { padding: 72px 0; background: #fff; }
.hcpi-intro__inner { max-width: 760px; }
.hcpi-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,3vw,2.4rem); color: var(--dark);
  margin: 0 0 24px; line-height: 1.2;
  position: relative; padding-bottom: 18px;
}
.hcpi-intro__heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 56px; height: 4px;
  background: linear-gradient(90deg,var(--secondary),var(--primary));
  border-radius: 2px;
}
.hcpi-intro__body {
  font-size: 15.5px; line-height: 1.85; color: rgba(10,14,20,.68);
  margin: 0 0 16px;
}

/* Stats */
.hcpi-stats {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid rgba(38,96,171,.08);
  border-bottom: 1px solid rgba(38,96,171,.08);
}
.hcpi-stats__inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.hcpi-stats__item {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 20px 14px; gap: 5px;
  background: #f4f7fc;
  border: 1px solid rgba(38,96,171,.10);
  border-bottom: 3px solid var(--secondary);
  border-radius: 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.hcpi-stats__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(38,96,171,.12);
}
.hcpi-stats__num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #f6931d 0%, #e07a0e 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hcpi-stats__lbl {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(10,14,20,.50); text-align: center;
}

/* Cards */
.hcpi-cards { padding: 80px 0; background: #f5f7fb; }
.hcpi-cards__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.hcpi-cards__grid .hcpi-card:nth-child(4),
.hcpi-cards__grid .hcpi-card:nth-child(5) {
  grid-column: span 1;
}
/* Center the last 2 cards when in a 3-col grid */
.hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) {
  grid-template-columns: repeat(6,1fr);
}
.hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) .hcpi-card:nth-child(1) { grid-column: 1 / 3; }
.hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) .hcpi-card:nth-child(2) { grid-column: 3 / 5; }
.hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) .hcpi-card:nth-child(3) { grid-column: 5 / 7; }
.hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) .hcpi-card:nth-child(4) { grid-column: 2 / 4; }
.hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) .hcpi-card:nth-child(5) { grid-column: 4 / 6; }

.hcpi-card {
  background: #fff; border-radius: 18px;
  padding: 32px 28px 28px;
  box-shadow: 0 2px 20px rgba(10,14,20,.07);
  border: 1px solid rgba(38,96,171,.08);
  display: flex; flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
  position: relative; overflow: hidden;
}
.hcpi-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--primary),var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.hcpi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(10,14,20,.13); }
.hcpi-card:hover::after { transform: scaleX(1); }
.hcpi-card__icon {
  font-size: 2.2rem; margin-bottom: 16px; line-height: 1;
  width: 56px; height: 56px;
  background: rgba(38,96,171,.07); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.hcpi-card__heading {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin: 0 0 12px; letter-spacing: .3px;
}
.hcpi-card__desc {
  font-size: 13.5px; line-height: 1.75; color: rgba(10,14,20,.65);
  margin: 0 0 16px;
  height: 95px; /* fixed: 4 lines × 13.5px × 1.75 ≈ 94.5px */
  overflow: hidden;
}
.hcpi-card__list {
  list-style: none; margin: 0 0 20px; padding: 0;
  border-top: 1px solid rgba(38,96,171,.1); padding-top: 14px;
  margin-top: auto;
}
.hcpi-card__list li {
  font-size: 13px; line-height: 1.6; color: rgba(10,14,20,.68);
  padding: 4px 0 4px 18px; position: relative;
}
.hcpi-card__list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--secondary);
}
.hcpi-card__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-decoration: none; letter-spacing: .3px;
  transition: gap .2s, color .2s;
  margin-top: auto;
}
.hcpi-card__btn:hover { gap: 10px; color: var(--secondary); }

/* Why */
.hcpi-why { padding: 80px 0; background: #fff; }
.hcpi-why__head { text-align: center; margin-bottom: 52px; }
.hcpi-why__heading {
  font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.4rem);
  color: var(--dark); margin: 0 0 14px;
}
.hcpi-why__sub { font-size: 15px; color: var(--gray-500); max-width: 580px; margin: 0 auto; }
.hcpi-why__grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}
.hcpi-why__item {
  display: flex; align-items: flex-start; gap: 18px;
  background: #f8f9fc; border-radius: 14px; padding: 24px 22px;
  border: 1px solid rgba(38,96,171,.08);
  transition: box-shadow .2s;
}
.hcpi-why__item:hover { box-shadow: 0 6px 24px rgba(10,14,20,.08); }
.hcpi-why__icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.hcpi-why__text { display: flex; flex-direction: column; gap: 4px; }
.hcpi-why__point { font-size: 14px; font-weight: 700; color: var(--dark); }
.hcpi-why__desc { font-size: 13.5px; line-height: 1.7; color: rgba(10,14,20,.65); }

/* Quote — light editorial (no dark backgrounds) */
.hcpi-quote {
  background: #f0f5ff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hcpi-quote::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(38,96,171,.06) 0%, transparent 65%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.hcpi-quote::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,147,29,.07) 0%, transparent 65%);
  bottom: -100px; left: -60px;
  pointer-events: none;
}
.hcpi-quote__block {
  margin: 0 auto; max-width: 820px; text-align: center;
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid rgba(38,96,171,.1);
  border-radius: 24px;
  padding: 52px 60px;
  box-shadow: 0 8px 40px rgba(38,96,171,.08);
  transition: box-shadow .35s, transform .35s;
}
.hcpi-quote__block:hover {
  box-shadow: 0 20px 60px rgba(38,96,171,.14);
  transform: translateY(-5px);
}
.hcpi-quote__mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem; line-height: 1;
  color: var(--secondary);
  display: block; margin-bottom: 14px;
}
.hcpi-quote__text {
  font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.9;
  color: rgba(10,14,20,.78);
  font-style: italic; margin: 0 0 28px;
  font-family: Georgia, 'Times New Roman', serif;
}
.hcpi-quote__author {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary); font-style: normal;
}
.hcpi-quote__author::before,
.hcpi-quote__author::after {
  content: ''; display: block; width: 36px; height: 2px;
  background: linear-gradient(90deg, #f6931d, #2660ab); border-radius: 1px;
}

/* CTA */
.hcpi-cta {
  background: linear-gradient(135deg,var(--primary) 0%,#1b4a80 100%);
  padding: 80px 0;
}
.hcpi-cta__inner { max-width: 680px; }
.hcpi-cta__heading {
  font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem);
  color: #fff; margin: 0 0 16px; line-height: 1.15;
}
.hcpi-cta__sub { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.75); margin: 0 0 28px; }
.hcpi-cta__contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hcpi-cta__contact-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.85); text-decoration: none;
  transition: color .15s;
}
.hcpi-cta__contact-item:hover { color: #fff; }
.hcpi-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hcpi-cta .btn-secondary {
  background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
}
.hcpi-cta .btn-secondary:hover { background: rgba(255,255,255,.25); }

/* Responsive */
@media (max-width: 900px) {
  .hcpi-cards__grid,
  .hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) { grid-template-columns: repeat(2,1fr); }
  .hcpi-cards__grid .hcpi-card,
  .hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) .hcpi-card { grid-column: span 1 !important; }
  .hcpi-why__grid { grid-template-columns: 1fr; }
  .hcpi-stats__inner { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .hcpi-hero { padding: 100px 0 80px; min-height: auto; }
}
@media (max-width: 768px) {
  .hcpi-hero { padding: 88px 0 64px; min-height: auto; }
  .hcpi-hero__heading { font-size: clamp(2rem, 6.5vw, 3rem); }
  .hcpi-hero__sub { font-size: 14.5px; margin-bottom: 28px; }
  .hcpi-hero__btns { gap: 10px; }
  .hcpi-hero__btns .btn { padding: 12px 24px; font-size: 14px; }
  .hcpi-stats__inner { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .hcpi-stats__num { font-size: 2rem; }
  .hcpi-cards { padding: 52px 0; padding-left: 0; padding-right: 0; overflow: hidden; }
  .hcpi-cards .container { padding-left: 0; padding-right: 0; max-width: 100%; }
  .hcpi-cards__grid,
  .hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) {
    display: flex !important; flex-direction: row;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 20px; padding: 4px 20px 28px;
    scroll-padding-left: 20px;
    grid-template-columns: unset !important;
  }
  .hcpi-cards__grid::-webkit-scrollbar { display: none; }
  .hcpi-cards__grid .hcpi-card,
  .hcpi-cards__grid:has(.hcpi-card:nth-child(5):last-child) .hcpi-card {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 0; max-width: none;
    grid-column: unset !important; scroll-snap-align: start;
  }
  .hcpi-card { padding: 24px 22px 22px; }
  .hcpi-card__desc { height: auto; }

  /* Why-grid → horizontal slider */
  .hcpi-why { padding: 52px 0 44px; overflow: hidden; }
  .hcpi-why .container { padding-left: 0; padding-right: 0; max-width: 100%; }
  .hcpi-why__grid {
    display: flex !important;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 20px;
    padding: 4px 20px 28px; scroll-padding-left: 20px;
    grid-template-columns: unset !important;
  }
  .hcpi-why__grid::-webkit-scrollbar { display: none; }
  .hcpi-why__item {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 0; scroll-snap-align: start;
  }
  .hcpi-quote { padding: 64px 0; }
  .hcpi-quote__block { padding: 40px 36px; }
  .hcpi-cta { padding: 56px 0; }
  .hcpi-cta__heading { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hcpi-cta__btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .hcpi-hero { padding: 80px 0 56px; min-height: auto; }
  .hcpi-hero__heading { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hcpi-hero__sub { font-size: 14.5px; }
  .hcpi-hero__tag { font-size: 9.5px; padding: 6px 16px; }
  .hcpi-hero__tag { font-size: 9.5px; padding: 5px 14px; }
  /* Dot navigation */
  .hcpi-cards__dots {
    display: flex; justify-content: center; align-items: center;
    gap: 8px; padding-bottom: 12px;
  }
  .hcpi-cards__dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(38,96,171,.2); border: none; padding: 0; cursor: pointer;
    transition: background .3s, width .3s, border-radius .3s;
  }
  .hcpi-cards__dot.active {
    background: var(--primary); width: 24px; border-radius: 4px;
  }
  .hcpi-stats__inner { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hcpi-stats__item { padding: 22px 12px 18px; }
  .hcpi-intro, .hcpi-cards, .hcpi-why, .hcpi-cta { padding: 44px 0; }
  .hcpi-quote { padding: 48px 0; }
  .hcpi-quote__block { padding: 28px 20px; border-radius: 16px; }
  .hcpi-quote__author::before, .hcpi-quote__author::after { width: 20px; }
  .hcpi-why__item { padding: 18px 16px; gap: 14px; }
  .hcpi-cta__btns { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hcpi-cta__btns .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM EMBED PAGE  (.hcp-form-page)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Form Page Hero — dark premium ── */
.hcp-form-hero {
  position: relative;
  background: linear-gradient(140deg, #051030 0%, #081a45 25%, #0d2549 55%, #132e58 80%, #182f55 100%);
  padding: 108px 0 160px;
  text-align: center;
  overflow: hidden;
}
/* Subtle grid/noise texture overlay */
.hcp-form-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(38,96,171,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,96,171,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
/* Bottom arch wave — reveals content section bg */
.hcp-form-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 100px;
  background: #ebf0f9;
  clip-path: ellipse(60% 100% at 50% 100%);
  z-index: 3;
}
/* Decorative glowing orbs */
.hcp-form-hero__orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hcp-form-hero__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(38,96,171,.22) 0%, transparent 65%);
  top: -200px; left: -180px;
}
.hcp-form-hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(246,147,29,.14) 0%, transparent 60%);
  top: -80px; right: -120px;
}
.hcp-form-hero__orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(38,96,171,.18) 0%, transparent 65%);
  bottom: -60px; left: 50%; transform: translateX(-50%);
}
.hcp-form-hero .container { position: relative; z-index: 2; }
/* Tag — orange glow badge on dark bg */
.hcp-form-hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(246,147,29,.12);
  border: 1px solid rgba(246,147,29,.38);
  color: #f6a73d;
  font-size: 10.5px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 22px; border-radius: 30px; margin-bottom: 26px;
}
.hcp-form-hero__tag::before {
  content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #f6931d;
  animation: hcp-hero-pulse 2s ease-out infinite;
}
@keyframes hcp-hero-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(246,147,29,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(246,147,29,0); }
  100% { box-shadow: 0 0 0 0 rgba(246,147,29,0); }
}
.hcp-form-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem); font-weight: 400;
  color: #fff; line-height: 1.0; margin: 0 0 22px; letter-spacing: 1.5px;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hcp-form-hero__sub {
  font-size: 1.05rem; color: rgba(255,255,255,.62); line-height: 1.9;
  max-width: 520px; margin: 0 auto;
}
/* Wave element added in PHP */
.hcp-form-hero__wave { display: none; }

/* Form embed area */
.hcp-form-embed {
  padding: 64px 0 80px;
  background: #fff;
  min-height: 40vh;
}
.hcp-form-embed__inner {
  max-width: 760px; margin: 0 auto;
}

/* Placeholder shown when no embed code is saved */
.hcp-form-placeholder {
  text-align: center;
  padding: 72px 24px;
  border: 2px dashed rgba(38,96,171,.18);
  border-radius: 20px;
  background: #f8fafd;
}
.hcp-form-placeholder__icon {
  font-size: 3rem; line-height: 1; margin-bottom: 18px; display: block;
}
.hcp-form-placeholder__msg {
  font-size: 1rem; color: rgba(10,14,20,.5); line-height: 1.7; max-width: 420px; margin: 0 auto;
}

/* Third-party embed containers */
.hcp-form-embed__inner iframe,
.hcp-form-embed__inner .typeform-widget,
.hcp-form-embed__inner .jotform-form { max-width: 100%; }

@media (max-width: 768px) {
  .hcp-form-hero { padding: 90px 0 140px; }
  .hcp-form-embed { padding: 44px 0 60px; }
}
@media (max-width: 640px) {
  .hcp-form-hero { padding: 80px 0 130px; }
  .hcp-form-hero::after { height: 80px; }
  .hcp-form-hero__heading { font-size: clamp(2rem, 8.5vw, 3rem); }
  .hcp-form-hero__orb--1 { width: 400px; height: 400px; top: -100px; left: -100px; }
  .hcp-form-hero__orb--2 { width: 280px; height: 280px; }
  .hcp-form-embed { padding: 32px 0 48px; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   FORM PAGE  (.hcp-fp-content — WordPress Visual Editor content area)
   Used by the "Form Page" template (page-form-page.php).
   Admins paste shortcodes, iframes, or HTML directly in the WP editor.
   ═══════════════════════════════════════════════════════════════════════════ */

.hcp-fp-content {
  padding: 56px 0 100px;
  background-color: #ebf0f9;
  background-image: radial-gradient(circle, rgba(38,96,171,.13) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hcp-fp-content__inner {
  max-width: 880px;
  margin: 0 auto;
}
.hcp-fp-content__inner h2,
.hcp-fp-content__inner h3,
.hcp-fp-content__inner h4 {
  font-family: var(--font-display);
  color: var(--dark);
  margin: 1.5em 0 .55em;
  line-height: 1.25;
}
.hcp-fp-content__inner p {
  color: rgba(10,14,20,.7);
  line-height: 1.85;
  margin: 0 0 1.25em;
}
.hcp-fp-content__inner ul,
.hcp-fp-content__inner ol {
  padding-left: 1.5em;
  margin: 0 0 1.25em;
  color: rgba(10,14,20,.7);
  line-height: 1.8;
}
.hcp-fp-content__inner a {
  color: var(--primary);
  text-decoration: underline;
}
.hcp-fp-content__inner img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.hcp-fp-content__inner iframe {
  max-width: 100%;
  border: none;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .hcp-fp-content { padding: 44px 0 72px; }
}
@media (max-width: 640px) {
  .hcp-fp-content { padding: 32px 0 60px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMING SOON PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.hcp-cs-page { margin: 0; padding: 0; background: #071535; }

.hcp-cs {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #071535 0%, #0d2055 50%, #2660ab 100%);
  background-image: var(--cs-bg, none);
  background-size: cover; background-position: center;
  padding: 60px 24px;
}
.hcp-cs__overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(10,14,20,.92) 0%, rgba(13,32,56,.85) 50%, rgba(10,14,20,.88) 100%);
}

/* Decorative circles */
.hcp-cs::before,
.hcp-cs::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hcp-cs::before {
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(38,96,171,.18) 0%, transparent 70%);
}
.hcp-cs::after {
  width: 400px; height: 400px;
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(246,147,29,.12) 0%, transparent 70%);
}

.hcp-cs__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 680px; width: 100%;
  gap: 0;
}

/* Logo */
.hcp-cs__logo {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.95);
  border-radius: 12px; padding: 8px 20px;
  margin-bottom: 40px; text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hcp-cs__logo img { height: 44px; width: auto; display: block; }

/* Badge */
.hcp-cs__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--secondary); background: rgba(246,147,29,.12);
  border: 1px solid rgba(246,147,29,.35);
  padding: 6px 18px; border-radius: 100px; margin-bottom: 24px;
}
.hcp-cs__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--secondary);
  animation: csPulse 1.6s ease-in-out infinite;
}
@keyframes csPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

/* Heading */
.hcp-cs__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff; margin: 0 0 20px; line-height: 1.1;
  letter-spacing: 1px;
}

/* Description */
.hcp-cs__desc {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.65);
  margin: 0 0 44px; max-width: 520px;
}

/* Countdown */
.hcp-cs__countdown {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 48px;
}
.hcp-cs__unit {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 18px 22px;
  min-width: 80px;
  backdrop-filter: blur(8px);
}
.hcp-cs__num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; color: #fff;
  line-height: 1; letter-spacing: 2px;
}
.hcp-cs__lbl {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hcp-cs__sep {
  font-size: 2rem; font-weight: 700; color: rgba(255,255,255,.25);
  margin-top: 18px; line-height: 1;
}

/* Notify form */
.hcp-cs__form { width: 100%; max-width: 480px; margin-bottom: 40px; }
.hcp-cs__form-label {
  display: block; font-size: 13px; color: rgba(255,255,255,.6);
  margin-bottom: 12px; letter-spacing: .3px;
}
.hcp-cs__form-row { display: flex; gap: 0; border-radius: 100px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.hcp-cs__input {
  flex: 1; border: none; outline: none;
  background: rgba(255,255,255,.96); color: #071535;
  font-size: 14px; padding: 14px 22px; min-width: 0;
}
.hcp-cs__input::placeholder { color: rgba(10,14,20,.45); }
.hcp-cs__btn {
  border: none; cursor: pointer; white-space: nowrap;
  background: linear-gradient(135deg, var(--secondary), #e07d10);
  color: #fff; font-size: 13.5px; font-weight: 700;
  padding: 14px 26px; transition: opacity .2s;
}
.hcp-cs__btn:hover { opacity: .9; }
.hcp-cs__form-thanks {
  margin: 14px 0 0; font-size: 14px; color: #4ade80; font-weight: 600;
}

/* Socials */
.hcp-cs__socials {
  display: flex; gap: 12px; margin-bottom: 28px;
}
.hcp-cs__social {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8); text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.hcp-cs__social:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; transform: translateY(-3px); }

/* Contact */
.hcp-cs__contact {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 32px;
}
.hcp-cs__contact-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s;
}
.hcp-cs__contact-link:hover { color: rgba(255,255,255,.9); }

/* Back link */
.hcp-cs__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .5px;
  color: rgba(255,255,255,.35); text-decoration: none;
  transition: color .2s;
}
.hcp-cs__back:hover { color: rgba(255,255,255,.7); }

/* Responsive */
@media (max-width: 560px) {
  .hcp-cs__unit { min-width: 60px; padding: 14px 12px; }
  .hcp-cs__num { font-size: 1.8rem; }
  .hcp-cs__form-row { flex-direction: column; border-radius: 14px; overflow: visible; box-shadow: none; }
  .hcp-cs__input { border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,.2); }
  .hcp-cs__btn { border-radius: 10px; margin-top: 8px; padding: 13px; box-shadow: 0 4px 18px rgba(246,147,29,.35); }
  .hcp-cs__heading { font-size: 2rem; }
}





/* ==========================================================================
   BE INVOLVED – INDIVIDUAL SECTION WIDGETS  (.bi-*)
   Card-hero redesign — centered floating card, fully light theme
   ========================================================================== */

.bi-page { overflow-x: hidden; }

/* ════════════════════════════════════════════════════════
   HERO — centered floating card on light background
   ════════════════════════════════════════════════════════ */
.bi-hero {
  background: var(--gray-50);
  padding: 40px 0 56px;
  border-top: 4px solid var(--primary);
}
.bi-hero .container { max-width: 820px; }

/* the white card */
.bi-hero__card {
  background: #fff;
  border-radius: 24px;
  padding: 56px 64px;
  box-shadow: 0 8px 48px rgba(10,14,20,.09), 0 2px 8px rgba(38,96,171,.05);
  text-align: center;
}

/* pill row */
.bi-hero__pills {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
}
.bi-hero__pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(38,96,171,.06); border: 1px solid rgba(38,96,171,.15);
  color: var(--primary);
  font-size: 9.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
}
.bi-hero__pill-dot {
  display: block; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
}
.bi-hero__pill-text { display: block; }
/* keep legacy .bi-tag usable too */
.bi-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(38,96,171,.06); border: 1px solid rgba(38,96,171,.15);
  color: var(--primary);
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 22px;
}

/* mountain icon box */
.bi-hero__icon-box {
  width: 72px; height: 72px; border-radius: 18px;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 24px;
}

/* heading */
.bi-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400; color: #071535 !important; line-height: 1.05;
  margin: 0 0 16px; letter-spacing: .5px;
  -webkit-text-fill-color: #071535 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

/* sub — highlighted in brand orange */
.bi-hero__sub {
  font-size: 1.05rem; color: var(--secondary); line-height: 1.7;
  font-weight: 600; max-width: 560px; margin: 0 auto;
}

/* ════════════════════════════════════════════════════════
   INTRO — centered heading + paragraphs
   ════════════════════════════════════════════════════════ */
.bi-intro { padding: 72px 0; background: var(--gray-50); }
.bi-intro .container { padding-left: 24px; padding-right: 24px; }
.bi-intro__inner {
  max-width: 860px; margin: 0 auto; text-align: center;
  background: none; box-shadow: none; border: none; padding: 0;
}
.bi-intro__inner p { font-size: 1rem; line-height: 1.9; color: var(--gray-600); margin: 0 0 18px; }
.bi-intro__inner p:last-child { margin-bottom: 0; }
/* first paragraph as a large display heading */
.bi-intro__inner p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--dark); letter-spacing: .5px;
  text-transform: uppercase; line-height: 1.1;
  margin-bottom: 0; padding-bottom: 0; border: none;
  position: relative;
}
/* orange accent bar after the heading */
.bi-intro__inner p:first-child::after {
  content: '';
  display: block; width: 40px; height: 3px; border-radius: 2px;
  background: var(--secondary); margin: 16px auto 28px;
}

/* ════════════════════════════════════════════════════════
   SECTION HEADING
   ════════════════════════════════════════════════════════ */
.bi-section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: var(--dark);
  margin: 0 0 32px; letter-spacing: .5px;
  display: flex; align-items: center; gap: 14px;
}
.bi-section-heading::before {
  content: '';
  display: inline-block; flex-shrink: 0;
  width: 30px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

/* ════════════════════════════════════════════════════════
   ACTIVITY / OPPORTUNITY CARDS
   ════════════════════════════════════════════════════════ */
.bi-activities { padding: 80px 0; background: #fff; }
.bi-activities--light { background: var(--gray-50); }

.bi-activities__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bi-activities__grid--2 { grid-template-columns: repeat(2, 1fr); }

.bi-activity {
  background: #fff; border-radius: 18px;
  padding: 32px 26px 28px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: transform .28s ease, box-shadow .28s ease, border-color .22s;
}
.bi-activities--light .bi-activity { background: #fff; }

.bi-activity::after {
  content: '';
  position: absolute; bottom: 0; left: 26px; right: 26px; height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  border-radius: 0 0 3px 3px; opacity: 0; transition: opacity .28s;
}
.bi-activity:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 48px rgba(38,96,171,.12);
  border-color: rgba(38,96,171,.22);
}
.bi-activity:hover::after { opacity: 1; }
.bi-activity--accent { border-left: 4px solid var(--primary); }

.bi-activity__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; font-size: 13px; font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(38,96,171,.3);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.bi-activity:hover .bi-activity__num {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 8px 22px rgba(38,96,171,.46);
}
.bi-activity__emoji {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(38,96,171,.08); border: 1.5px solid rgba(38,96,171,.14);
  font-size: 26px; line-height: 1; margin-bottom: 16px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.bi-activity:hover .bi-activity__emoji { transform: scale(1.18) rotate(-6deg); }
.bi-activity__title { font-size: .975rem; font-weight: 800; color: var(--dark); margin: 0 0 10px; line-height: 1.35; }
.bi-activity__desc  { font-size: .85rem; line-height: 1.85; color: var(--gray-500); margin: 0; }

/* ════════════════════════════════════════════════════════
   LIST SECTIONS
   ════════════════════════════════════════════════════════ */
.bi-list-section      { padding: 80px 0; background: var(--gray-50); }
.bi-list-section--alt { background: #fff; }
.bi-list-section__inner { max-width: 740px; margin: 0 auto; }
.bi-list-section + .bi-contact { padding-top: 32px; }

.bi-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bi-list li {
  position: relative; padding: 15px 18px 15px 58px;
  font-size: .925rem; line-height: 1.65; color: var(--gray-700);
  background: #fff; border-radius: 13px; border: 1.5px solid var(--gray-200);
  transition: transform .2s ease, box-shadow .2s ease, border-color .18s;
}
.bi-list li:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(38,96,171,.09);
  border-color: rgba(38,96,171,.22);
}
.bi-list li::before {
  content: '';
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), #d4760a);
  box-shadow: 0 3px 9px rgba(246,147,29,.28);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
}
.bi-list li:hover::before { transform: translateY(-50%) scale(1.15); }
.bi-list li::after {
  content: '';
  position: absolute; left: 21px; top: 50%; transform: translateY(-50%);
  width: 11px; height: 11px; border-radius: 50%; background: #fff;
}
.bi-list--check li::before {
  background: linear-gradient(135deg, var(--primary), #1a4a8a);
  box-shadow: 0 3px 9px rgba(38,96,171,.25);
}
.bi-list--check li::after {
  content: '\2713'; background: none; border-radius: 0;
  color: #fff; font-size: 11px; font-weight: 900;
  left: 21px; width: auto; height: auto; line-height: 1;
  top: 50%; transform: translateY(-52%);
}

/* ════════════════════════════════════════════════════════
   STEPS
   ════════════════════════════════════════════════════════ */
.bi-steps {
  list-style: none; margin: 0; padding: 0; counter-reset: bi-step;
  display: flex; flex-direction: column; gap: 10px; position: relative;
}
.bi-steps::before {
  content: '';
  position: absolute; left: 23px; top: 46px; bottom: 46px; width: 2px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  opacity: .15; z-index: 0;
}
.bi-steps li {
  position: relative; padding: 17px 22px 17px 76px;
  font-size: .925rem; line-height: 1.7; color: var(--gray-700);
  counter-increment: bi-step; border-radius: 13px;
  border: 1.5px solid var(--gray-200); background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.bi-steps li:hover {
  border-color: rgba(38,96,171,.2);
  box-shadow: 0 5px 20px rgba(38,96,171,.09);
  transform: translateX(4px);
}
.bi-steps li::before {
  content: counter(bi-step);
  position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1a4a8a);
  color: #fff; font-size: 14px; font-weight: 900;
  text-align: center; line-height: 44px;
  box-shadow: 0 4px 14px rgba(38,96,171,.28); z-index: 1;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.bi-steps li:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 7px 22px rgba(38,96,171,.42);
}

/* ════════════════════════════════════════════════════════
   WHO / STEPS SIDE-BY-SIDE CARDS  (Volunteer widget)
   ════════════════════════════════════════════════════════ */
.bi-cards-row { padding: 80px 0; background: var(--gray-50); }
.bi-cards-row__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
.bi-cards-row__card {
  background: #fff; border-radius: 20px; padding: 36px 40px 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.bi-cards-row__heading {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400; color: var(--dark);
  letter-spacing: .5px; margin: 0 0 26px;
}

/* Icon list — who can volunteer */
.bi-icon-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.bi-icon-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .925rem; color: var(--gray-700); line-height: 1.55; padding: 0;
}
.bi-icon-list li::before {
  content: '';
  flex-shrink: 0; margin-top: 2px; width: 22px; height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f6931d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain; background-position: center;
}

/* Clean numbered steps — how to get started */
.bi-steps-clean {
  list-style: none; margin: 0; padding: 0; counter-reset: bi-step-c;
  display: flex; flex-direction: column; gap: 20px;
}
.bi-steps-clean li {
  display: flex; align-items: flex-start; gap: 16px;
  counter-increment: bi-step-c;
  font-size: .925rem; color: var(--gray-700); line-height: 1.6;
}
.bi-steps-clean li::before {
  content: counter(bi-step-c);
  flex-shrink: 0; margin-top: 1px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(38,96,171,.1);
  color: var(--primary);
  font-size: 13px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}

@media (max-width: 768px) {
  .bi-cards-row { padding: 56px 0; }
  .bi-cards-row__card { padding: 28px 28px 32px; }
  .bi-cards-row__heading { font-size: 1.3rem; margin-bottom: 20px; }
}
@media (max-width: 640px) {
  .bi-cards-row { padding: 40px 0; }
  .bi-cards-row__grid { grid-template-columns: 1fr; gap: 16px; }
  .bi-cards-row__card { padding: 22px 20px 26px; border-radius: 16px; }
  .bi-icon-list li, .bi-steps-clean li { font-size: .875rem; }
  .bi-steps-clean li::before { width: 28px; height: 28px; font-size: 12px; }
}

/* ════════════════════════════════════════════════════════
   TWO-COLUMN
   ════════════════════════════════════════════════════════ */
.bi-two-col { padding: 80px 0; background: var(--gray-50); }
.bi-two-col__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.bi-two-col__col {
  background: #fff; border-radius: 18px; padding: 34px 30px;
  border: 1.5px solid var(--gray-200); position: relative; overflow: hidden;
  transition: box-shadow .28s, transform .28s;
}
.bi-two-col__col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}
.bi-two-col__col:hover { box-shadow: 0 14px 44px rgba(38,96,171,.11); transform: translateY(-4px); }
.bi-two-col__col .bi-section-heading { font-size: 1.35rem; margin-bottom: 20px; }
.bi-two-col__col .bi-list li { padding: 9px 12px 9px 50px; font-size: .875rem; }
.bi-two-col__col .bi-list li::before { width: 22px; height: 22px; left: 13px; }
.bi-two-col__col .bi-list li::after  { width: 9px; height: 9px; left: 19px; }
.bi-two-col__col .bi-list--check li::after { left: 18px; }

/* ════════════════════════════════════════════════════════
   PRICING CARDS
   ════════════════════════════════════════════════════════ */
.bi-pricing { padding: 80px 0; background: #fff; }
.bi-pricing__inner { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }

.bi-price-card {
  background: #fff; border-radius: 22px; padding: 44px 60px; text-align: center;
  min-width: 220px; border: 1.5px solid var(--gray-200);
  box-shadow: 0 4px 18px rgba(10,14,20,.04); position: relative; overflow: hidden;
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), box-shadow .28s, border-color .22s;
}
.bi-price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}
.bi-price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 60px rgba(38,96,171,.16);
  border-color: rgba(38,96,171,.2);
}
.bi-price-card__label {
  font-size: 10px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 14px;
}
.bi-price-card__amount {
  font-family: var(--font-display); font-size: 2.3rem; font-weight: 400; letter-spacing: 1px;
  color: var(--primary); line-height: 1.1;
}

/* ════════════════════════════════════════════════════════
   TABLE
   ════════════════════════════════════════════════════════ */
.bi-table-wrap      { padding: 80px 0; background: var(--gray-50); }
.bi-table-wrap--alt { background: #fff; }
.bi-table-scroll    { overflow-x: auto; border-radius: 16px; box-shadow: 0 4px 20px rgba(38,96,171,.07); }

.bi-table {
  width: 100%; border-collapse: collapse; min-width: 440px;
  background: #fff; border-radius: 16px; overflow: hidden;
}
.bi-table thead { background: var(--primary); }
.bi-table thead th {
  text-align: left; padding: 15px 26px;
  font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.bi-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background .15s; }
.bi-table tbody tr:nth-child(even) { background: var(--gray-50); }
.bi-table tbody tr:last-child { border-bottom: none; }
.bi-table tbody tr:hover { background: #edf3fb; }
.bi-table tbody td { padding: 14px 26px; font-size: .875rem; color: var(--gray-700); }
.bi-table__amt {
  font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--secondary), #d4760a);
  padding: 4px 13px; border-radius: 100px;
  font-size: .8rem; white-space: nowrap;
  box-shadow: 0 3px 9px rgba(246,147,29,.26); display: inline-block;
}

/* ════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════ */
.bi-contact { padding: 80px 0; background: var(--gray-50); }
.bi-contact__inner { max-width: 740px; margin: 0 auto; }
.bi-contact__details { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }

.bi-contact__item {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .925rem; color: var(--dark); font-weight: 600;
  padding: 15px 26px; background: #fff; border-radius: 13px;
  border: 1.5px solid var(--gray-200);
  box-shadow: 0 2px 9px rgba(10,14,20,.04);
  transition: all .28s cubic-bezier(.34,1.56,.64,1);
}
.bi-contact__item svg { color: var(--primary); flex-shrink: 0; transition: transform .28s; }
.bi-contact__item:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 10px 32px rgba(38,96,171,.32); transform: translateY(-4px);
}
.bi-contact__item:hover svg { color: #fff; transform: scale(1.18); }

/* ════════════════════════════════════════════════════════
   PULL QUOTE — light editorial, orange left border
   ════════════════════════════════════════════════════════ */
.bi-quote {
  padding: 80px 0;
  background: var(--primary);
  position: relative; overflow: hidden;
}
/* large faint quotation mark */
.bi-quote::before {
  content: '\201C';
  position: absolute; left: 50%; top: -30px; transform: translateX(-50%);
  font-size: 22rem; line-height: 1; font-family: Georgia, serif;
  color: rgba(255,255,255,.04); pointer-events: none; z-index: 0;
}
/* dot-grid pattern overlay */
.bi-quote::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none; z-index: 0;
}
/* decorative orange arc top-right */
.bi-quote .container { position: relative; z-index: 1; }
.bi-quote .container::before {
  content: '';
  position: absolute; top: -60px; right: -80px;
  width: 220px; height: 220px; border-radius: 50%;
  border: 40px solid rgba(246,147,29,.12);
  pointer-events: none;
}
/* decorative blue circle bottom-left */
.bi-quote .container::after {
  content: '';
  position: absolute; bottom: -70px; left: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  border: 30px solid rgba(255,255,255,.06);
  pointer-events: none;
}
.bi-quote__block {
  max-width: 760px; margin: 0 auto;
  position: relative; z-index: 1; padding: 52px 60px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-top: 4px solid var(--secondary);
  box-shadow: 0 24px 64px rgba(0,0,0,.25), 0 2px 8px rgba(0,0,0,.15);
}
.bi-quote__mark { display: none; }
.bi-quote__block p {
  font-size: 1.18rem; line-height: 1.9; color: rgba(255,255,255,.88);
  font-style: italic; margin: 0; font-family: Georgia, 'Times New Roman', serif;
}
.bi-quote__block::after {
  content: '';
  display: block; width: 44px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--secondary), rgba(246,147,29,.4));
  margin: 24px 0 0;
}

/* ════════════════════════════════════════════════════════
   INLINE CTA — light, centered button
   ════════════════════════════════════════════════════════ */
.bi-cta-wrap {
  padding: 64px 0;
  background: linear-gradient(135deg, #2660ab 0%, #3d7ec9 50%, #2660ab 100%);
  background-size: 200% 200%;
  animation: hcp-gradientFlow 8s ease infinite;
  text-align: center;
}
.bi-cta-wrap .container,
.bi-cta-wrap__btns { position: relative; }
.bi-cta-wrap__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.bi-cta-btn {
  padding: 16px 44px; font-size: 1rem; font-weight: 700; border-radius: 12px;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s;
}
.bi-cta-wrap .bi-cta-btn {
  background: linear-gradient(135deg, var(--secondary), #e07c0e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(246,147,29,.35);
}
.bi-cta-wrap .bi-cta-btn:hover { box-shadow: 0 8px 32px rgba(246,147,29,.5); }
.bi-cta-btn:hover { transform: translateY(-3px); }

/* ════════════════════════════════════════════════════════
   BOTTOM CTA STRIP — light warm, no dark
   ════════════════════════════════════════════════════════ */
.bi-bottom-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdf0e0 0%, #fae5c8 100%);
  text-align: center; position: relative; overflow: hidden;
  border-top: 4px solid var(--secondary);
}
.bi-bottom-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 10% 50%, rgba(246,147,29,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 70% at 90% 40%, rgba(38,96,171,.06)  0%, transparent 55%);
  pointer-events: none;
}
.bi-bottom-cta__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.bi-bottom-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 400; color: var(--dark);
  margin: 0 0 14px; letter-spacing: .5px;
}
.bi-bottom-cta__sub { font-size: 1rem; color: var(--gray-600); line-height: 1.85; margin: 0 0 32px; }
.bi-bottom-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════
   FORM EMBED
   ════════════════════════════════════════════════════════ */
.bi-cta-form { padding: 48px 0 56px; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.bi-cta-form .container { max-width: 680px; margin: 0 auto; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .bi-hero__card { padding: 48px 40px; }
  .bi-activities__grid { grid-template-columns: repeat(2, 1fr); }
  .bi-two-col__inner { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 768px) {
  .bi-hero { padding: 32px 0 44px; }
  .bi-hero__card { padding: 40px 32px; border-radius: 18px; }
  .bi-hero__heading { font-size: clamp(1.9rem, 7vw, 3rem); }
  .bi-intro { padding: 52px 0; }
  .bi-intro__inner p:first-child { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .bi-list-section { padding: 56px 0; }
  .bi-activities { padding: 56px 0 0; padding-left: 0; padding-right: 0; overflow: hidden; }
  .bi-activities .container { padding-left: 0; padding-right: 0; max-width: 100%; }
  .bi-activities .bi-section-heading { padding: 0 20px; }
  .bi-activities__grid,
  .bi-activities__grid--2 {
    display: flex !important; flex-direction: row;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 20px; padding: 4px 20px 28px;
    scroll-padding-left: 20px;
    grid-template-columns: unset !important;
  }
  .bi-activities__grid::-webkit-scrollbar,
  .bi-activities__grid--2::-webkit-scrollbar { display: none; }
  .bi-activities__grid .bi-activity,
  .bi-activities__grid--2 .bi-activity {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 0; max-width: none; scroll-snap-align: start;
  }
  .bi-two-col { padding: 48px 0; }
  .bi-pricing { padding: 56px 0; }
  .bi-table-wrap { padding: 56px 0; }
  .bi-contact { padding: 56px 0; }
  .bi-bottom-cta { padding: 60px 0; }
  .bi-section-heading { font-size: 1.5rem; margin-bottom: 24px; }
  .bi-activity { padding: 26px 20px 22px; }
  .bi-list li { padding: 12px 14px 12px 56px; }
  .bi-cta-wrap { padding: 52px 0; }
  .bi-quote { padding: 56px 0; }
  .bi-quote__block { padding: 34px 30px; }
  .bi-price-card { padding: 34px 40px; }
}
@media (max-width: 640px) {
  .bi-hero { padding: 36px 0 44px; }
  .bi-hero__card { padding: 32px 20px; border-radius: 16px; }
  .bi-hero__heading { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .bi-hero__sub { font-size: .95rem; }
  .bi-tag { font-size: 9.5px; padding: 5px 14px; }

  /* Padding override — beats SiteOrigin panel wrappers */
  .bi-intro .container,
  .bi-list-section .container,
  .bi-table-wrap .container,
  .bi-contact .container,
  .bi-quote .container,
  .bi-cta-wrap .container { padding-left: 20px !important; padding-right: 20px !important; }

  .bi-intro { padding: 32px 0; }
  .bi-intro__inner p:first-child { font-size: clamp(1.4rem, 7vw, 1.9rem); }

  .bi-section-heading { font-size: 1.25rem; gap: 10px; }
  .bi-section-heading::before { width: 20px; height: 3px; }
  .bi-steps::before { display: none; }

  .bi-list li { padding: 11px 12px 11px 50px; font-size: .875rem; }
  .bi-list li::before { width: 24px; height: 24px; left: 13px; }
  .bi-list li::after  { width: 10px; height: 10px; left: 19px; }
  .bi-list--check li::after { left: 18px; }

  .bi-activity { padding: 22px 16px 18px; border-radius: 15px; }
  .bi-activity__title { font-size: .875rem; }
  .bi-activity__num { width: 38px; height: 38px; border-radius: 11px; font-size: 12px; margin-bottom: 12px; }

  .bi-quote { padding: 36px 0; }
  .bi-quote__block { padding: 26px 20px; border-radius: 15px; }

  .bi-bottom-cta__heading { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .bi-bottom-cta__btns,
  .bi-cta-wrap__btns { flex-direction: column; align-items: center; }
  .bi-bottom-cta__btns .btn,
  .bi-cta-wrap__btns .btn { width: 100%; max-width: 300px; justify-content: center; }
  .bi-cta-btn {
    padding: 10px 22px; font-size: .85rem; border-radius: 10px;
    white-space: normal; text-align: center;
    max-width: 220px; line-height: 1.4;
    margin: 0 auto; display: block;
  }

  .bi-list-section { padding: 38px 0; }
  .bi-list-section__inner { padding: 0; }
  .bi-list-section + .bi-contact { padding-top: 16px; }

  /* ── Mobile sliders ──────────────────────────────────────────────────────── */
  .bi-slider-wrap { position: relative; overflow: hidden; }

  .bi-pricing { padding-left: 0; padding-right: 0; }
  .bi-pricing .container { padding-left: 0; padding-right: 0; max-width: 100%; }
  .bi-pricing .bi-section-heading { padding: 0 20px; }
  .bi-pricing__inner {
    display: flex !important; flex-direction: row;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 20px; padding: 4px 20px 28px;
    scroll-padding-left: 20px;
    flex-wrap: nowrap; justify-content: flex-start;
  }
  .bi-pricing__inner::-webkit-scrollbar { display: none; }
  .bi-price-card {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 0; max-width: none; padding: 30px 26px; scroll-snap-align: start;
  }

  .bi-two-col { padding-left: 0; padding-right: 0; }
  .bi-two-col .container { padding-left: 0; padding-right: 0; max-width: 100%; }
  .bi-two-col__inner {
    display: flex !important; flex-direction: row;
    overflow-x: scroll; scroll-snap-type: x mandatory;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; gap: 20px; padding: 4px 20px 28px;
    scroll-padding-left: 20px;
    grid-template-columns: unset !important;
  }
  .bi-two-col__inner::-webkit-scrollbar { display: none; }
  .bi-two-col__col {
    flex: 0 0 calc(100vw - 40px) !important;
    min-width: 0; max-width: none; scroll-snap-align: start;
  }

  /* Slider dot indicator */
  .bi-dots { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 12px 0 4px; }
  .bi-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(38,96,171,.2); border: none; padding: 0; cursor: pointer;
    transition: background .3s, width .3s, border-radius .3s; flex-shrink: 0;
  }
  .bi-dot.active { background: var(--primary); width: 20px; border-radius: 4px; }

  /* Contact: stack on mobile */
  .bi-contact__details { flex-direction: column; }
  .bi-contact__item {
    width: 100%; box-sizing: border-box;
    padding: 13px 18px; font-size: .85rem;
    overflow: hidden;
  }
  .bi-contact__item span,
  .bi-contact__item { word-break: break-all; }
}

/* PROGRAM OVERVIEW CARDS (.hcpp-overview, .hcpp-cat, .hcpp-pcard) */
/* ========================================================================== */

.hcpp-overview { overflow-x: hidden; }

/* ── Category section ─────────────────────────────────────────────────────── */
.hcpp-cat { --cat-accent: #2660ab; --cat-light: #edf3fb; }

/* Category dark header */
.hcpp-cat__head {
  padding: 64px 0 56px;
  background: #07090e;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hcpp-cat__head::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(var(--cat-accent-rgb, 38,96,171),.35) 0%, transparent 70%);
}
/* per-category tinted glow via accent colour */
.hcpp-cat--1 .hcpp-cat__head::before { background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(38,96,171,.35) 0%, transparent 70%); }
.hcpp-cat--2 .hcpp-cat__head::before { background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(13,122,95,.35) 0%, transparent 70%); }
.hcpp-cat--3 .hcpp-cat__head::before { background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(176,91,0,.3) 0%, transparent 70%); }
.hcpp-cat--4 .hcpp-cat__head::before { background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(92,58,138,.35) 0%, transparent 70%); }

.hcpp-cat__head::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--cat-accent);
  opacity: .7;
}
.hcpp-cat__head .container { position: relative; z-index: 1; }

.hcpp-cat__emoji {
  font-size: 3rem; line-height: 1;
  display: inline-block; margin-bottom: 16px;
  filter: drop-shadow(0 4px 16px rgba(255,255,255,.15));
}
.hcpp-cat__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; color: #fff; line-height: 1.2;
  margin: 0 0 16px; letter-spacing: -.4px;
}
.hcpp-cat__sub {
  font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.8;
  max-width: 680px; margin: 0 auto;
}

/* ── Cards area ───────────────────────────────────────────────────────────── */
.hcpp-cat__body {
  padding: 52px 0 60px;
  background: var(--cat-light);
}

/* ── Card grid ────────────────────────────────────────────────────────────── */
.hcpp-pcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* 2-card category → 2 col */
.hcpp-pcard-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
/* 1-card category → centred single col */
.hcpp-pcard-grid[data-count="1"] { grid-template-columns: minmax(0, 520px); justify-content: center; }

/* ── Program card ─────────────────────────────────────────────────────────── */
.hcpp-pcard {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(10,14,20,.07);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.hcpp-pcard:hover {
  box-shadow: 0 12px 40px rgba(10,14,20,.13);
  transform: translateY(-4px);
}

/* top accent bar that expands from var(--cat-accent) on hover */
.hcpp-pcard__accent {
  height: 4px;
  background: var(--cat-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.hcpp-pcard:hover .hcpp-pcard__accent { transform: scaleX(1); }

.hcpp-pcard__inner {
  padding: 28px 26px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.hcpp-pcard__title {
  font-size: 1.05rem; font-weight: 800; color: #0d2055; line-height: 1.35;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.hcpp-pcard__desc {
  font-size: .9rem; line-height: 1.85; color: rgba(10,14,20,.65);
  margin: 0 0 20px; flex: 1;
}
.hcpp-pcard__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; font-weight: 700;
  color: var(--cat-accent);
  text-decoration: none;
  padding: 8px 16px 8px 0;
  border-top: 1px solid rgba(0,0,0,.07);
  width: 100%;
  transition: gap .2s, opacity .2s;
  margin-top: auto;
}
.hcpp-pcard__link:hover { gap: 10px; opacity: .8; }
.hcpp-pcard__link svg { flex-shrink: 0; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hcpp-pcard-grid                   { grid-template-columns: repeat(2, 1fr); }
  .hcpp-pcard-grid[data-count="1"]   { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .hcpp-cat__head                    { padding: 48px 0 40px; }
  .hcpp-cat__body                    { padding: 36px 0 44px; }
  .hcpp-pcard-grid,
  .hcpp-pcard-grid[data-count="2"]   { grid-template-columns: 1fr; max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════════
   HCPP COMPLETE PROGRAMS WIDGET — image card extras
   (used by HCP_Widget_Prog_Complete; extends base .hcpp-pcard rules above)
   ══════════════════════════════════════════════════════════════════════════ */

/* image / placeholder area */
.hcpp-pcard__img {
  height: 210px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.hcpp-pcard__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.hcpp-pcard:hover .hcpp-pcard__img img { transform: scale(1.06); }

/* placeholder SVG centred on gradient when no photo uploaded */
.hcpp-pcard__ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hcpp-pcard__ph svg {
  color: rgba(255,255,255,.6);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}

/* category badge over the image */
.hcpp-pcard__tag {
  position: absolute; top: 14px; left: 14px;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.22);
  line-height: 1.5;
}

/* card body (complete widget uses __body; old overview used __inner) */
.hcpp-pcard__body {
  padding: 22px 22px 18px;
  display: flex; flex-direction: column;
  flex: 1;
}
.hcpp-pcard__body .hcpp-pcard__title {
  font-size: 1rem; font-weight: 800; color: #0d2055; line-height: 1.35;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.hcpp-pcard__body .hcpp-pcard__desc {
  font-size: .875rem; line-height: 1.8; color: rgba(10,14,20,.62);
  margin: 0 0 12px; flex: 1;
}

/* detail pills row */
.hcpp-pcard__pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 0 0 14px;
}
.hcpp-pcard__pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 700; letter-spacing: .01em;
  color: var(--cat-accent, #2660ab);
  background: var(--cat-light, #edf3fb);
  padding: 4px 11px;
  border-radius: 20px;
  line-height: 1.4;
}
.hcpp-pcard__pill svg { flex-shrink: 0; }

/* button element reset when using form popup */
button.hcpp-pcard__link {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding-left: 0;
}

/* ── Responsive for image cards ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hcpp-pcard__img { height: 180px; }
}
@media (max-width: 580px) {
  .hcpp-pcard__img { height: 210px; }
  .hcpp-pcard__body { padding: 18px 18px 14px; }
}


/* ════════════════════════════════════════════════════════════════════════════
   PREMIUM BLUE THEME — Animations · Hover FX · Section Overrides
   ════════════════════════════════════════════════════════════════════════════ */

/* ── New keyframes ─────────────────────────────────────────────────────────── */
@keyframes hcp-slideUp   { from{opacity:0;transform:translateY(36px)} to{opacity:1;transform:none} }
@keyframes hcp-slideLeft { from{opacity:0;transform:translateX(36px)} to{opacity:1;transform:none} }
@keyframes hcp-scaleIn   { from{opacity:0;transform:scale(.9)} to{opacity:1;transform:scale(1)} }
@keyframes hcp-glimmer   {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes hcp-gradientFlow {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes hcp-glow {
  0%,100% { box-shadow: 0 0 24px rgba(38,96,171,.25); }
  50%     { box-shadow: 0 0 48px rgba(38,96,171,.55); }
}
@keyframes hcp-borderPulse {
  0%,100% { opacity: .4; }
  50%     { opacity: 1; }
}
@keyframes hcp-shine {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(250%) skewX(-15deg); }
}

/* ── Scroll-enter animation stagger on cards ─────────────────────────────── */
.scroll-section { transition-delay: 0s; }
.scroll-section:nth-child(2) { transition-delay: .1s; }
.scroll-section:nth-child(3) { transition-delay: .2s; }
.scroll-section:nth-child(4) { transition-delay: .3s; }
.scroll-section:nth-child(5) { transition-delay: .4s; }
.scroll-section:nth-child(6) { transition-delay: .5s; }

/* ── Hero sections — animated blue gradient ─────────────────────────────── */
.hero-section,
.td-hero,
.hsj-archive__hero,
.hsj-single__hero,
.hsj-page__hero,
.hcp-form-hero,
.hcp-abhero,
.bi-hero,
.hcpi-hero,
.hcpd-hero,
.hcpp-hero__content {
  background-size: 200% 200% !important;
  animation: hcp-gradientFlow 10s ease infinite;
}

/* ── Section backgrounds — replace dark with vivid blue ─────────────────── */
.hsj-archive__hero,
.hsj-single__hero,
.hsj-page__hero,
.sidebar-cta,
.hcp-form-hero {
  background-image: linear-gradient(135deg, #1245a8 0%, #2660ab 50%, #0d3a8c 100%) !important;
  background-size: 200% 200% !important;
  animation: hcp-gradientFlow 10s ease infinite;
}

.hcp-abhero,
.hcp-form-hero {
  background-image: linear-gradient(135deg, #0d2a65 0%, #1a4daa 50%, #2660ab 100%) !important;
  background-size: 200% 200% !important;
}

/* ── Footer — white ────────────────────────────────────────────────────── */
.widget-footer {
  background: #fff !important;
  color: var(--dark) !important;
  border-top: 1px solid var(--gray-200) !important;
}

/* ── Navbar — glass effect ─────────────────────────────────────────────── */
.widget-navbar {
  background: rgba(255,255,255,.92) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(38,96,171,.10) !important;
}
.widget-navbar.scrolled {
  background: rgba(255,255,255,.98) !important;
  box-shadow: 0 4px 32px rgba(38,96,171,.14) !important;
}

/* ── Topbar — vibrant blue ─────────────────────────────────────────────── */
.widget-topbar {
  background: linear-gradient(90deg, #1245a8 0%, #2660ab 50%, #1a4daa 100%) !important;
  background-size: 200% 100% !important;
  animation: hcp-gradientFlow 8s ease infinite;
}

/* ── Buttons — shimmer effect ──────────────────────────────────────────── */
.btn-primary,
.btn,
[class*="btn-primary"],
.widget-navbar__book {
  position: relative; overflow: hidden;
}
.btn-primary::after,
.widget-navbar__book::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-100%) skewX(-15deg);
  animation: hcp-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}
.btn-primary:hover,
.widget-navbar__book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(38,96,171,.45) !important;
}

/* ── Cards — premium hover lift + blue glow ────────────────────────────── */
.hcpi-card,
.bi-activity,
.hcpd-way,
.bi-price-card,
.hcpp-card,
.hcpp-pcard,
.hcp-help__card,
.bi-cards-row__card,
.td-card,
.blog-card {
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .35s ease !important;
  border: 1.5px solid var(--gray-200);
}
.hcpi-card:hover,
.bi-activity:hover,
.hcpd-way:hover,
.bi-price-card:hover,
.hcpp-card:hover,
.hcpp-pcard:hover,
.hcp-help__card:hover,
.bi-cards-row__card:hover,
.td-card:hover,
.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 56px rgba(38,96,171,.22) !important;
  border-color: rgba(38,96,171,.25) !important;
}

/* ── Stat numbers — animate in ─────────────────────────────────────────── */
.hcpi-stats__item,
.bi-stat,
.hero-stat {
  animation: hcp-scaleIn .7s cubic-bezier(.34,1.56,.64,1) both;
}
.hcpi-stats__item:nth-child(2) { animation-delay: .12s; }
.hcpi-stats__item:nth-child(3) { animation-delay: .24s; }
.hcpi-stats__item:nth-child(4) { animation-delay: .36s; }

/* ── Section headings — decorative animated underline ──────────────────── */
.bi-section-heading,
.hcpi-section-heading,
.section-title {
  position: relative;
}
.bi-section-heading::after,
.section-title::after {
  content: '';
  display: block;
  width: 56px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin-top: 10px;
  animation: hcp-borderPulse 2.5s ease-in-out infinite;
}

/* ── CTA / Quote sections — vibrant blue ──────────────────────────────── */
.hcpd-quote,
.hcpd-quote-wrap,
.bi-bottom-cta,
.bi-cta-wrap,
.hcpi-cta,
.hcp-cta,
.hcp-objectives__cta {
  background: linear-gradient(135deg, #1245a8 0%, #2660ab 60%, #3870c8 100%) !important;
  background-size: 200% 200% !important;
  animation: hcp-gradientFlow 8s ease infinite;
}

/* ── Impact / stat sections ────────────────────────────────────────────── */
.hcpi-stats {
  background: linear-gradient(135deg, #2660ab 0%, #3d7ec9 50%, #2660ab 100%) !important;
  background-size: 200% 200% !important;
  animation: hcp-gradientFlow 8s ease infinite;
}
.hcpi-stats__item { background: rgba(255,255,255,.12) !important; border-color: rgba(255,255,255,.18) !important; }
.hcpi-stats__num  { color: #fff !important; }
.hcpi-stats__lbl  { color: rgba(255,255,255,.8) !important; }
.hcpd-impact-section { background: #fff !important; }

/* ── Blog/archive hero ─────────────────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, #1245a8 0%, #2660ab 50%, #3870c8 100%) !important;
  background-size: 200% 200% !important;
  animation: hcp-gradientFlow 10s ease infinite;
}

/* ── ins-card (dark info cards) ────────────────────────────────────────── */
.ins-card {
  background: linear-gradient(135deg, #0d2055 0%, #1245a8 100%) !important;
}

/* ── Contact block emergency ───────────────────────────────────────────── */
.contact-block--emergency {
  background: linear-gradient(135deg, #1245a8 0%, #2660ab 100%) !important;
}

/* ── Mission / hero card overlays — blue tint not dark ─────────────────── */
.td-hero__overlay {
  background: linear-gradient(
    to bottom,
    rgba(7,21,53,.15) 0%,
    rgba(18,69,168,.35) 40%,
    rgba(7,21,53,.85) 80%,
    rgba(7,21,53,.97) 100%
  ) !important;
}

/* ── Tour cards — blue palette ─────────────────────────────────────────── */
.tour-bg--ebc        { background: linear-gradient(160deg,#0d2055,#1a5c8a) !important; }
.tour-bg--annapurna  { background: linear-gradient(160deg,#0a1050,#2660ab) !important; }
.tour-bg--muktinath  { background: linear-gradient(160deg,#0d2a1a,#1a6040) !important; }
.tour-bg--gosaikunda { background: linear-gradient(160deg,#0d2055,#1a5c8a) !important; }
.tour-bg--lukla      { background: linear-gradient(160deg,#1b2e0a,#4a6e00) !important; }
.tour-bg--private    { background: linear-gradient(160deg,#0d2055,#1a3fa8) !important; }

/* ── Gray backgrounds → soft blue-tint ────────────────────────────────── */
.hcpi-cards,
.bi-activities,
.hcpd-ways-section,
.hcpp-section:nth-child(even) {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
}

/* ── Premium orb / glow backgrounds for hero sections ─────────────────── */
.hcpi-hero::before,
.bi-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(38,96,171,.18) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hcpi-hero::before { top: -200px; right: -150px; }
.bi-hero::after    { bottom: -200px; left: -150px; }

/* ── Animated glow on primary action cards ─────────────────────────────── */
.hcpi-hero__btns .btn-primary,
.bi-hero .btn-primary,
.hcpd-hero .btn-primary {
  animation: hcp-glow 3s ease-in-out infinite;
}

/* ── Section dividers — gradient line ─────────────────────────────────── */
.hcpi-stats { position: relative; }
.hcpi-stats::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

/* ── Global section padding to prevent content touching edges ──────────── */
body > section,
.widget-section { padding-top: 80px; padding-bottom: 80px; }

/* ── Page background — subtle blue tint ───────────────────────────────── */
body {
  background: #fafcff !important;
}

/* ── Smooth hover transition on all interactive elements ──────────────── */
a, button, [class*="btn"], .card, [class*="card"] {
  transition-property: transform, box-shadow, background, color, border-color, opacity;
  transition-duration: .25s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* ── Image hover zoom effect ───────────────────────────────────────────── */
.blog-card__thumb img,
.hcpp-pcard__img img,
.td-card__img img,
.hcp-team__featured-img {
  transition: transform .5s cubic-bezier(.4,0,.2,1) !important;
  overflow: hidden;
}
.blog-card:hover .blog-card__thumb img,
.hcpp-pcard:hover .hcpp-pcard__img img,
.td-card:hover .td-card__img img {
  transform: scale(1.06);
}

/* ── Gradient text: only when hcpi-hero has a dark background image ───── */
/* Without a bg image the hcpi-hero is WHITE — heading must stay dark     */
.hcpi-hero[style*="background-image"] .hcpi-hero__heading,
.hcpd-hero__h {
  background: linear-gradient(135deg, #fff 60%, rgba(255,255,255,.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* hcpi-hero with NO background image — force dark heading */
.hcpi-hero:not([style*="background-image"]) .hcpi-hero__heading {
  color: #071535 !important;
  -webkit-text-fill-color: #071535 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}
/* bi-hero heading sits on a WHITE card — must stay dark */
.bi-hero .bi-hero__card .bi-hero__heading,
.bi-hero__heading {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #071535 !important;
  color: #071535 !important;
}

/* ── Nav links — hover underline animation ─────────────────────────────── */
.widget-navbar__link {
  position: relative;
}
.widget-navbar__link::after {
  content: '';
  position: absolute; bottom: -2px; left: 50%; right: 50%;
  height: 2px; border-radius: 1px;
  background: var(--primary);
  transition: left .25s ease, right .25s ease;
}
.widget-navbar__link:hover::after,
.widget-navbar__link.active::after {
  left: 0; right: 0;
}

/* ── Scroll progress indicator ─────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% 100%;
  animation: hcp-glimmer 2s linear infinite;
  width: var(--scroll-progress, 0%);
  pointer-events: none;
}

/* ── Mobile — reduce animation intensity ───────────────────────────────── */
@media (max-width: 768px) {
  .hcpi-hero::before,
  .bi-hero::after { display: none; }
  .hcp-gradientFlow { animation-duration: 15s; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
