/* ─────────────────────────────────────────────────────────────────
   /why-book-with-us  —  Why Book With Us page styles
   Fonts: Cormorant Garamond (serif headings) + Outfit (body)
   ───────────────────────────────────────────────────────────────── */

:root {
  --wb-navy:  #1A4B89;
  --wb-dk:    #0C1E38;
  --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: 80px 0 96px;
  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,.92) 0%, rgba(12,30,56,.84) 60%, rgba(12,30,56,.74) 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;
  font-family: var(--wb-sans);
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.wb-crumbs a { transition: color .15s; }
.wb-crumbs a:hover { color: rgba(255,255,255,.8); }
.wb-crumbs .sep { color: rgba(255,255,255,.15); }

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

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

/* ── PAGE WRAPPER ──────────────────────────────────────────────── */
.wb-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 36px 88px;
}

/* ── HIGHLIGHT CARDS (top 3) ───────────────────────────────────── */
.wb-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}
.wb-hl {
  border: 1px solid var(--wb-border);
  border-radius: 14px;
  padding: 32px 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 18px;
}
.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-family: var(--wb-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--wb-text);
  margin-bottom: 8px;
}
.wb-hl-desc {
  font-family: var(--wb-sans);
  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: 40px;
}
.wb-reasons-eyebrow {
  display: block;
  font-family: var(--wb-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--wb-amber);
  margin-bottom: 8px;
}
.wb-reasons-title {
  font-family: var(--wb-serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--wb-text);
}
.wb-reasons-title em {
  font-style: italic;
  color: var(--wb-amber);
}

/* Reasons grid */
.wb-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-title {
  font-family: var(--wb-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--wb-text);
  margin-bottom: 5px;
  line-height: 1.3;
}
.wb-r-desc {
  font-family: var(--wb-sans);
  font-size: 13px;
  color: var(--wb-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* Featured reason — full-width 2-col 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);
  transition: border-color .18s;
}
.wb-reason-feat:hover { border-color: rgba(251,165,4,.3); }
.wb-rf-img {
  background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=700&q=80');
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.wb-rf-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wb-rf-num {
  font-family: var(--wb-serif);
  font-size: 68px;
  font-weight: 600;
  color: var(--wb-amber);
  line-height: 1;
  margin-bottom: 4px;
}
.wb-rf-label {
  font-family: var(--wb-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.wb-rf-title {
  font-family: var(--wb-serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.wb-rf-desc {
  font-family: var(--wb-sans);
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CTA BAND ──────────────────────────────────────────────────── */
.wb-cta {
  background: var(--wb-dk);
  padding: 64px 0;
  margin-top: 64px;
}
.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: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.wb-cta-text h3 em {
  font-style: italic;
  color: #FCD34D;
}
.wb-cta-text p {
  font-family: var(--wb-sans);
  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-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9px;
  font-family: var(--wb-sans);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s;
  cursor: pointer;
  border: none;
}
.wb-btn-primary {
  background: var(--wb-amber);
  color: #fff;
}
.wb-btn-primary:hover { background: #e29400; }
.wb-btn-ghost {
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8);
  background: transparent;
}
.wb-btn-ghost:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

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

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .wb-highlights { grid-template-columns: 1fr 1fr; }
  .wb-grid { grid-template-columns: 1fr; }
  .wb-reason-feat {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .wb-rf-img { min-height: 220px; }
  .wb-stats { gap: 28px; }
}
@media (max-width: 640px) {
  .wb-highlights { grid-template-columns: 1fr; }
  .wb-hero-title { font-size: 40px; }
  .wb-stats { flex-direction: column; gap: 20px; }
  .wb-cta-in { flex-direction: column; text-align: center; }
  .wb-cta-btns { justify-content: center; }
  .wb-page { padding: 40px 20px 64px; }
  .wb-hero-in { padding: 0 20px; }
}
