/* ═══════════════════════════════════════════
   WHY BOOK WITH US — page-specific styles
   Prefix: wb-  (avoids collisions)
   ═══════════════════════════════════════════ */

:root {
  --wb-navy: #1A4B89;
  --wb-dk: #1A4B89;
  --wb-amber: #FBA504;
  --wb-amber-bg: #FEF3C7;
  --wb-amber-deep: #92400E;
  --wb-text: #1C1C1C;
  --wb-muted: #6b7280;
  --wb-border: #e5e7eb;
  --wb-soft: #f9fafb;
  --wb-serif: 'Cormorant Garamond', Georgia, serif;
  --wb-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── HERO ── */
.wb-hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.wb-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 45%;
}
.wb-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,30,56,.9) 0%, rgba(12,30,56,.82) 60%, rgba(12,30,56,.72) 100%);
}
.wb-hero-in {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  text-align: center;
}

/* Breadcrumbs */
.wb-crumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.wb-crumbs a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .15s;
}
.wb-crumbs a:hover {
  color: rgba(255,255,255,.8);
}
.wb-sep { color: rgba(255,255,255,.15); }
.wb-crumb-active { color: rgba(255,255,255,.6); }

/* Hero title */
.wb-hero-title {
  font-family: var(--wb-serif);
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 12px;
}
.wb-hero-title em {
  font-style: italic;
  color: #FBA504;
}
.wb-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* Hero stats */
.wb-hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.wb-hs { text-align: center; }
.wb-hs-num {
  font-family: var(--wb-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--wb-amber);
  line-height: 1;
}
.wb-star { font-size: 36px; }
.wb-hs-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.42);
  margin-top: 4px;
}

/* ── PAGE CONTAINER ── */
.wb-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 36px 80px;
}

/* ── HIGHLIGHT CARDS ── */
.wb-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.wb-hl {
  border: 1px solid var(--wb-border);
  border-radius: 14px;
  padding: 28px 24px;
  background: #fff;
  text-align: center;
  transition: border-color .18s, box-shadow .18s, transform .2s;
}
.wb-hl:hover {
  border-color: var(--wb-amber);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.wb-hl-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--wb-amber-bg);
  border: 1px solid #fde68a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.wb-hl-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--wb-amber);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wb-hl-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--wb-text);
  margin-bottom: 6px;
}
.wb-hl-desc {
  font-size: 13.5px;
  color: var(--wb-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── REASONS SECTION ── */
.wb-reasons-hd {
  text-align: center;
  margin-bottom: 36px;
}
.wb-reasons-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wb-amber);
  margin-bottom: 6px;
  display: block;
}
.wb-reasons-title {
  font-family: var(--wb-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
}
.wb-reasons-title em {
  font-style: italic;
  color: var(--wb-amber);
}

/* Reasons grid */
.wb-reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wb-reason {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--wb-border);
  border-radius: 12px;
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
}
.wb-reason:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.wb-r-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--wb-soft);
  border: 1px solid var(--wb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--wb-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--wb-amber);
}
.wb-r-content { flex: 1; min-width: 0; }
.wb-r-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--wb-text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.wb-r-desc {
  font-size: 13px;
  color: var(--wb-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Featured reason (full-width dark card) */
.wb-reason-feat {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--wb-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--wb-dk);
}
.wb-reason-feat:hover {
  border-color: rgba(251,165,4,.3);
}
.wb-rf-img {
  background-image: url('/uploads/0000/1/2020/02/24/volunteering-22.jpg');
  background-size: cover;
  background-position: center;
  min-height: 240px;
}
.wb-rf-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wb-rf-num {
  font-family: var(--wb-serif);
  font-size: 64px;
  font-weight: 600;
  color: var(--wb-amber);
  line-height: 1;
  margin-bottom: 4px;
}
.wb-rf-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 12px;
}
.wb-rf-title {
  font-family: var(--wb-serif);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.wb-rf-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CTA BAND ── */
.wb-cta-band {
  background: var(--wb-dk);
  padding: 56px 0;
  margin-top: 56px;
}
.wb-cta-in {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.wb-cta-text h3 {
  font-family: var(--wb-serif);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.wb-cta-text h3 em {
  font-style: italic;
  color: #FBA504;
}
.wb-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,.42);
  font-weight: 300;
}
.wb-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.wb-cb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: all .15s;
  text-decoration: none;
}
.wb-primary {
  background: var(--wb-amber);
  color: #fff;
}
.wb-primary:hover {
  background: #e29400;
  color: #fff;
}
.wb-ghost {
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
}
.wb-ghost:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* ── PARTNERS ── */
.wb-partners {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 36px;
}
.wb-pn-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--wb-muted);
  text-align: center;
  margin-bottom: 16px;
}
.wb-pn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: .45;
  filter: grayscale(1);
  transition: filter .3s, opacity .3s;
}
.wb-pn-row:hover {
  opacity: .7;
  filter: grayscale(.4);
}
.wb-pn-row span {
  font-size: 13px;
  font-weight: 700;
  color: var(--wb-muted);
  white-space: nowrap;
}
.wb-pn-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .wb-highlights { grid-template-columns: 1fr 1fr; }
  .wb-reasons-grid { grid-template-columns: 1fr; }
  .wb-reason-feat { grid-column: span 1; grid-template-columns: 1fr; }
  .wb-rf-img { min-height: 200px; }
  .wb-hero-stats { gap: 24px; }
}
@media (max-width: 600px) {
  .wb-highlights { grid-template-columns: 1fr; }
  .wb-hero-title { font-size: 38px; }
  .wb-hero-stats { flex-direction: column; gap: 16px; }
  .wb-cta-in { flex-direction: column; text-align: center; }
  .wb-cta-btns { justify-content: center; }
  .wb-hero { padding: 48px 0 56px; }
  .wb-page { padding: 36px 20px 56px; }
  .wb-hs-num { font-size: 36px; }
  .wb-rf-num { font-size: 48px; }
  .wb-rf-body { padding: 24px; }
}
