/* ============================================================
   HEADER — Single white bar: logo | nav | CTA button
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.header-inner {
  padding: 0;
}
.header-row {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

/* Logo */
.site-logo a { display: flex; align-items: center; }
.site-logo__img { height: 48px; width: auto; display: block; }

/* Nav */
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav__menu { display: flex; align-items: center; gap: 0.5rem; list-style: none; margin: 0; padding: 0; }
.nav__item { position: relative; }
.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1A2A3A;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav__link:hover,
.nav__link--active { color: #ED8A19; }

/* CTA button */
.header-cta { flex-shrink: 0; }
.header-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1.375rem;
  background: #0C3157;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.header-cta__btn:hover { background: #ED8A19; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; border: none; cursor: pointer; margin-left: auto; }
.nav-toggle__bar { display: block; width: 24px; height: 2px; background: #1A2A3A; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #051B31; border-top: 4px solid #ED8A19; }
.footer-main { padding: 60px 0; }
.footer-main__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-brand__logo-img { height: 46px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-brand__desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.8; max-width: 340px; margin-bottom: 1.5rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: #ED8A19; }
.footer-contact-item a:hover { color: #ED8A19; }
.footer-links__title { font-size: 0.8rem; font-weight: 600; color: #FFFFFF; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links__list { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; padding: 0; margin: 0; }
.footer-links__list a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; text-decoration: none; }
.footer-links__list a:hover { color: #ED8A19; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom__copy, .footer-bottom__credit { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom__credit a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-bottom__credit a:hover { color: #ED8A19; }

/* Footer CTA Band */
.footer-cta-band { position: relative; overflow: hidden; height: 465px; }
.footer-cta-band__bg { position: absolute; inset: 0; }
.footer-cta-band__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-cta-band__overlay { position: absolute; top: 0; right: 0; width: 48.4%; height: 100%; background: rgba(12,49,87,0.9); }
.footer-cta-band__content {
  position: absolute; top: 0; right: 0;
  width: 48.4%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 1; padding: 40px;
}
.footer-cta-band__title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(28px,3vw,48px); line-height: 1.3; color: #FFFFFF; text-align: center; }
.footer-cta-band__title-amber { color: #ED8A19; }
.footer-cta-band__btn {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  background: transparent; border: 1px solid #ED8A19; color: #ED8A19;
  font-family: 'Poppins', sans-serif; font-size: 15px; text-transform: uppercase;
  padding: 12px 24px; border-radius: 4px; text-decoration: none; transition: all 0.25s;
}
.footer-cta-band__btn:hover { background: #ED8A19; color: #FFFFFF; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── FOOTER LINKS COLUMNS (matching footer.php class names) ── */
.footer-links-col__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-links-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-links-col__list li a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-col__list li a:hover { color: #ED8A19; }
