/* ==========================================================================
   BDL IT - bdlit.co.nz
   Mirrors the "BDL 2021" theme used on bdlcopiers.co.nz (Titillium Web,
   55/37/30px light headings, square buttons, black utility bar, #221f1f
   footer) so the BDL sites read as one brand, then tightens the details:
   sticky header, gradient hero, card hover states, reveal-on-scroll,
   consistent spacing. Accent is BDL blue #0377b9 (Copiers uses green for
   nav hover, BDL 3D uses its own palette - same family, different division).
   Loads on top of Bootstrap 4.6 (grid + utilities only).
   ========================================================================== */

:root {
  --bdl-blue:    #0377b9;   /* primary / links / IT accent */
  --bdl-blue-d:  #02628f;
  --bdl-blue-l:  #38a7e6;
  --bdl-blue-t:  #eaf4fb;   /* tint for panels */
  --bdl-red:     #eb1c23;   /* the dot in the BDL mark */
  --bdl-red-2:   #e9212d;
  --bdl-green:   #75b54c;
  --bdl-ink:     #221f1f;   /* footer + dark panels */
  --bdl-body:    #4f4f4f;
  --bdl-mid:     #6d6f70;
  --bdl-grey:    #f2f2f2;
  --bdl-line:    #e5e5e5;
  --font: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 10px 30px rgba(20,40,60,.12);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* --- Base ---------------------------------------------------------------- */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
html, body { font-family: var(--font); }
body {
  color: var(--bdl-body); font-size: 16px; line-height: 1.6; overflow-x: hidden; background: #fff;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font); font-weight: 200; color: #1b1b1b; letter-spacing: -.005em; text-wrap: balance; }
h1 { font-size: 55px; line-height: 1.08; }
h2 { font-size: 37px; line-height: 1.15; margin-bottom: 18px; }
h3 { font-size: 30px; line-height: 1.2; }
h4 { font-family: var(--font); font-weight: 300; font-size: 30px; color: var(--bdl-mid); line-height: 1.2; text-wrap: balance; }
h5 { font-family: var(--font); font-weight: 600; font-size: 19px; color: var(--bdl-ink); }
p  { color: var(--bdl-body); line-height: 1.65; text-wrap: pretty; }
/* Keep body copy at a readable measure on wide screens */
.col-lg-8 > p, .col-lg-7 > p, .col-lg-6 > p, #introduction .body p, .prose p { max-width: 68ch; }

/* Wider column on large monitors so the page uses the screen (Bootstrap 4 stops at 1140px) */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
  #content-image .fake-container { max-width: 640px; }
  .section.banner .banner-inner { max-width: 860px; }
}

a { color: var(--bdl-blue); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--bdl-blue-d); text-decoration: underline; }

ol, ul { padding-left: 18px; }
ol li, ul li { color: var(--bdl-body); padding-bottom: 5px; line-height: 1.6; }

img { max-width: 100%; height: auto; }
strong { font-weight: 600; }

.align-right { text-align: right; }
.align-left  { text-align: left; }
.padded-top    { margin-top: 50px; }
.padded-bottom { margin-bottom: 50px; }
.spacer { margin-bottom: 70px; }
.hr { border-bottom: 1px solid var(--bdl-line); }
.lead-in { font-size: 20px; font-weight: 300; color: var(--bdl-mid); line-height: 1.5; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--bdl-blue); margin-bottom: 14px;
}
.section.banner .eyebrow { color: #fff; opacity: .85; }
.section.banner .eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 2px; background: var(--bdl-red);
  vertical-align: middle; margin-right: 10px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: #fff; color: var(--bdl-ink); padding: 12px 20px;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--bdl-blue); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* --- Buttons (matched to parent theme) ----------------------------------- */
.btn {
  display: inline-block;
  padding: 11px 22px;
  margin-right: 20px;
  margin-bottom: 10px;
  border-radius: 0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s var(--ease), box-shadow .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:last-child { margin-right: 0; }
.btn.btn-primary { background-color: var(--bdl-blue); color: #fff; border: 1px solid var(--bdl-blue); }
.btn.btn-primary:hover { background-color: var(--bdl-blue-d); border-color: var(--bdl-blue-d); color: #fff; box-shadow: 0 6px 16px rgba(3,119,185,.25); }
.btn.btn-outline-primary { color: var(--bdl-blue); border: 1px solid var(--bdl-blue); background: transparent; }
.btn.btn-outline-primary:hover { background: var(--bdl-blue); color: #fff; }
.btn.btn-outline-secondary { color: var(--bdl-red-2); border: 1px solid var(--bdl-red-2); background: transparent; }
.btn.btn-outline-secondary:hover { background: var(--bdl-red-2); color: #fff; }
.btn.btn-white { color: var(--bdl-blue); background: #fff; border: 1px solid #fff; }
.btn.btn-white:hover { background: transparent; color: #fff; }
.btn.btn-outline-white { color: #fff; border: 1px solid #fff; background: transparent; }
.btn.btn-outline-white:hover { background: #fff; color: var(--bdl-ink); }
.btn .fa-icon { width: 18px; height: 18px; margin-right: 8px; vertical-align: -3px; fill: currentColor; }
.btn-holder { margin-top: 30px; }

/* --- Top bar ------------------------------------------------------------- */
.section.top-bar { background: #000; color: #fff; padding: 0 30px; font-size: 13.5px; height: 36px; display: flex; align-items: center; }
.section.top-bar .container { width: 100%; }
.section.top-bar .row { align-items: center; }
.section.top-bar ul, .section.top-bar li { display: inline-block; }
.section.top-bar ul { padding-left: 0; margin: 0; line-height: 18px; }
.section.top-bar li { border-right: 1px solid rgba(255,255,255,.35); line-height: 14px; padding: 0; vertical-align: middle; }
.section.top-bar li:last-child { border: none; }
.section.top-bar li a { padding: 0 11px; display: inline-block; line-height: 14px; }
.section.top-bar li:first-child a { padding-left: 0; }
.section.top-bar a { color: #fff; text-decoration: none; }
.section.top-bar a:hover { text-decoration: underline; color: #fff; }
.section.top-bar .align-right { display: flex; align-items: center; justify-content: flex-end; gap: 14px; line-height: 18px; }
.section.top-bar .social { display: inline-flex; opacity: .9; }
.section.top-bar .social:hover { opacity: 1; }
.section.top-bar .social svg { width: 14px; height: 14px; fill: #fff; display: block; }
.section.top-bar .phone { padding-left: 8px; font-weight: 700; display: inline-flex; align-items: center; letter-spacing: .01em; }
.section.top-bar .phone .ico { width: 13px; height: 13px; fill: #fff; margin-right: 7px; display: block; }

/* --- Main navigation ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 500; background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header { border-bottom-color: var(--bdl-line); }
.site-header.is-stuck { box-shadow: 0 4px 18px rgba(0,0,0,.08); }
.navbar { padding: 0 30px; background: #fff; }
/* Fixed 80px header: same on every page, no resize on scroll, so nothing jumps */
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar-brand { display: flex; align-items: center; margin-right: 20px; padding: 0; color: #1b1b1b; }
.navbar-brand:hover { text-decoration: none; color: #1b1b1b; }
.bdl-logo { display: block; height: 50px; width: auto; }
.bdl-logo .unit { fill: var(--bdl-blue); }
.navbar-brand img { height: 50px; width: auto; }
.brand-divider { display: inline-block; width: 1px; height: 42px; background: #cfcfcf; margin: 0 14px; }
.brand-unit {
  font-family: var(--font); font-weight: 700; font-size: 30px; line-height: 1;
  letter-spacing: .02em; color: var(--bdl-blue);
}
.brand-unit small {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bdl-mid); margin-top: 3px;
}

#menu-header { display: flex; align-items: stretch; margin: 0; padding: 0; list-style: none; height: 80px; }
#menu-header > li { display: flex; align-items: center; padding: 0 15px; margin-bottom: -1px; border-bottom: 2px solid transparent; position: relative; transition: border-color .15s ease; }
#menu-header > li:last-child { padding-right: 0; }
#menu-header > li > a.nav-link { color: #000; font-size: 16px; line-height: 24px; padding: 0; text-decoration: none; white-space: nowrap; }
#menu-header > li:hover { border-bottom-color: var(--bdl-blue); }
#menu-header > li.current-menu-item { border-bottom-color: var(--bdl-blue); }
#menu-header > li.dropdown > a.dropdown-toggle::after {
  content: ""; display: inline-block; margin-left: 8px; vertical-align: 2px;
  border-top: .3em solid #000; border-right: .3em solid transparent; border-left: .3em solid transparent;
}
#menu-header .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; z-index: 200;
  padding: 0; margin-top: 1px; min-width: 270px; background: #fff;
  border: 1px solid #000; border-radius: 0; box-shadow: var(--shadow-md);
}
#menu-header li.open > .dropdown-menu { display: block; animation: menu-in .16s var(--ease); }
@keyframes menu-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
#menu-header .dropdown-menu a {
  display: block; padding: 10px 15px; color: #000;
  text-decoration: none; border-bottom: 1px solid #000; font-size: 15px;
}
#menu-header .dropdown-menu a:last-child { border-bottom: none; }
#menu-header .dropdown-menu a:hover, #menu-header .dropdown-menu a:focus { color: #fff; background-color: var(--bdl-blue); }

/* Highlighted nav CTA - same treatment as the parent theme's .blue-outline item */
#menu-header > li.nav-cta { padding-left: 10px; }
#menu-header > li.nav-cta:hover, #menu-header > li.nav-cta.current-menu-item { border-bottom-color: transparent; }
#menu-header > li.nav-cta > a.nav-link {
  border: 1px solid var(--bdl-blue); color: var(--bdl-blue); border-radius: 5px; padding: 8px 16px; line-height: 22px;
  transition: background-color .15s ease, color .15s ease;
}
#menu-header > li.nav-cta > a.nav-link:hover { background: var(--bdl-blue); color: #fff; }

/* Mobile nav */
.nav-toggle { background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #000; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.mobile-nav {
  position: fixed; top: 0; right: 0; width: 320px; max-width: 88vw; height: 100%;
  background: var(--bdl-ink); color: #fff; z-index: 1100; overflow-y: auto;
  transform: translateX(100%); transition: transform .28s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-nav[hidden] { display: flex; }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; border-bottom: 1px solid #3a3636; }
.mobile-nav-title { font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; color: #cfcfcf; }
.mobile-nav-close { background: none; border: 0; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }
.mobile-nav ul { list-style: none; margin: 0; padding: 10px 0; flex: 1 1 auto; }
.mobile-nav li { padding: 0; }
.mobile-nav li a { display: block; padding: 11px 20px; color: #fff; text-decoration: none; }
.mobile-nav li a:hover { background: #332f2f; text-decoration: none; color: #fff; }
.mobile-nav li.group {
  padding: 18px 20px 6px; color: #8b8b8b; font-size: 12px;
  text-transform: uppercase; letter-spacing: .1em;
}
.mobile-nav-foot { padding: 20px; border-top: 1px solid #3a3636; }
.mobile-nav-foot .btn { display: block; text-align: center; margin: 0; }
.mobile-nav-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,.55); z-index: 1050; }
.mobile-nav-backdrop[hidden] { display: none; }
body.nav-open { overflow: hidden; }

/* --- Banner / hero ------------------------------------------------------- */
.section.banner {
  padding: 120px 0 150px; min-height: clamp(480px, 58vh, 720px); position: relative; overflow: hidden;
  display: flex; align-items: center;
  background-image: url("../img/hero-network.svg");
  background-size: cover; background-position: center center;
  background-color: var(--bdl-ink);
}
.section.banner > .container { position: relative; z-index: 2; }
.section.banner .overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; display: block;
  background: linear-gradient(100deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
}
/* Blue wash along the bottom edge, as on the bdlcopiers hero */
.section.banner::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px; pointer-events: none;
  background: linear-gradient(to top, rgba(3,119,185,.65), rgba(3,119,185,0));
}
.section.banner .banner-inner { position: relative; z-index: 99; max-width: 800px; }
.section.banner h1 { color: #fff; font-size: clamp(40px, 3.4vw, 60px); margin-bottom: 0; max-width: 17ch; }
.section.banner .sub-text {
  font-weight: 200; color: #fff; font-size: 24px; line-height: 1.4; max-width: 60ch;
  border-left: 5px solid var(--bdl-red); padding-left: 20px; margin-top: 24px;
}
.section.banner .buttons { margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 12px 16px; }
.section.banner .buttons .btn { margin: 0; }
.section.banner.compact { padding: 80px 0 96px; min-height: 0; }
.section.banner.compact h1 { font-size: clamp(34px, 2.6vw, 46px); }
.section.banner.compact .sub-text { font-size: 21px; }
.section.banner.compact::after { height: 90px; }

.breadcrumb-bar { background: var(--bdl-grey); padding: 12px 0; font-size: 14px; }
.breadcrumb-bar a { color: var(--bdl-mid); }
.breadcrumb-bar .sep { color: #9a9a9a; padding: 0 6px; }

/* Trust strip directly under the home hero */
.trust-strip { background: #fff; border-bottom: 1px solid var(--bdl-line); }
.trust-strip ul { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0 16px; list-style: none; margin: 0; padding: 14px 0; }
.trust-strip li { padding: 6px 0; font-size: 14px; color: var(--bdl-mid); display: flex; align-items: center; white-space: nowrap; }
@media (max-width: 1199px) { .trust-strip ul { justify-content: flex-start; gap: 0 28px; } .trust-strip li { white-space: normal; } }
.trust-strip li svg { width: 18px; height: 18px; fill: var(--bdl-green); margin-right: 9px; flex: 0 0 18px; }

/* --- Centered section heading (parent theme .section.heading) ------------ */
.section.heading { text-align: center; }
.section.heading h2 { margin-bottom: 8px; }
.section.heading .lead-in { max-width: 640px; margin: 0 auto; }
.section.buckets .title { text-align: center; margin-bottom: 10px; }
.section.buckets .title .lead-in { max-width: 640px; margin: 0 auto; }

/* --- Intro / value icons -------------------------------------------------- */
#introduction .heading h2, #introduction .heading h3 { margin: 0 0 30px; }
#introduction .icons .icon { padding: 15px 0 20px; position: relative; }
#introduction .icons .icon svg { position: absolute; top: 12px; left: 0; width: 46px; height: 46px; }
#introduction .icons .icon p { padding-left: 68px; line-height: 1.25; margin: 0; font-size: 18px; font-weight: 300; }
#introduction .icons .icon:nth-child(1) svg { fill: #2274a5; }
#introduction .icons .icon:nth-child(1) p  { color: #2274a5; }
#introduction .icons .icon:nth-child(2) svg { fill: #e72837; }
#introduction .icons .icon:nth-child(2) p  { color: #e72837; }
#introduction .icons .icon:nth-child(3) svg { fill: #75b54c; }
#introduction .icons .icon:nth-child(3) p  { color: #75b54c; }
#introduction .icons .icon:nth-child(4) svg { fill: #2274a5; }
#introduction .icons .icon:nth-child(4) p  { color: #2274a5; }
@media (min-width: 992px) {
  #introduction .introduction-col-left .introduction-col-inner { padding-right: 30px; border-right: 1px solid var(--bdl-line); }
  #introduction .introduction-col-right .introduction-col-inner { padding-left: 30px; }
}

/* --- Split content band --------------------------------------------------- */
#content-image .content-col-image {
  margin: 0; padding: 0; min-height: 460px;
  background-image: url("../img/panel-abstract.svg");
  background-size: cover !important; background-position: center center !important;
  background-color: #0f3550;
}
#content-image .content-col-data { background-color: var(--bdl-grey); }
#content-image .fake-container { margin: 0 auto; max-width: 560px; padding: 90px 50px; }
#content-image .icons { margin: 35px 0 0; }
#content-image .icons .icon { padding-top: 15px; position: relative; }
#content-image .icons .icon svg { position: absolute; top: 14px; left: 0; width: 28px; height: 28px; fill: var(--bdl-blue); }
#content-image .icons .icon p { padding-left: 46px; line-height: 1.2; margin: 0; }
#content-image .body { margin-top: 24px; }

/* --- Buckets / cards ------------------------------------------------------ */
.section.buckets .bucket-col { margin-bottom: 30px; }
.section.buckets .bucket {
  border-radius: 5px; overflow: hidden; height: 100%;
  background: #fff; border: 1px solid var(--bdl-line);
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.section.buckets .bucket:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.section.buckets .bucket .image {
  height: 170px; position: relative; background-size: cover; background-position: center;
  background-color: var(--bdl-grey);
  display: flex; align-items: center; justify-content: center;
}
.section.buckets .bucket .image::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,.22), transparent 45%),
    linear-gradient(160deg, rgba(255,255,255,.10), rgba(0,0,0,.10));
}
.section.buckets .bucket .image svg {
  position: relative; width: 58px; height: 58px; fill: #fff;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.18));
  transition: transform .25s var(--ease);
}
.section.buckets .bucket:hover .image svg { transform: scale(1.08); }
.section.buckets .bucket .bucket-text { padding: 22px 24px 24px; flex: 1 1 auto; display: flex; flex-direction: column; }
.section.buckets .bucket .bucket-text h3 { line-height: 1.3; margin: 6px 0 10px; font-size: 23px; font-weight: 300; }
.section.buckets .bucket .bucket-text h3 a { color: #000; text-decoration: none; }
.section.buckets .bucket .bucket-text h3 a:hover { color: var(--bdl-blue); }
.section.buckets .bucket .bucket-text p { flex: 1 1 auto; font-size: 15.5px; }
.section.buckets .bucket .btn { align-self: flex-start; margin: 8px 0 0; }
.section.buckets .bucket .image.tile-blue  { background-color: #0377b9; }
.section.buckets .bucket .image.tile-ink   { background-color: #2b2727; }
.section.buckets .bucket .image.tile-red   { background-color: #e9212d; }
.section.buckets .bucket .image.tile-green { background-color: #75b54c; }
.section.buckets .bucket .image.tile-slate { background-color: #2274a5; }
.section.buckets .bucket .image.tile-grey  { background-color: #6d6f70; }

/* --- Logo strip ----------------------------------------------------------- */
.section.logo-block { padding: 50px 0; text-align: center; }
.section.logo-block .title h4 { color: var(--bdl-mid); }
.section.logo-block .logos { margin: 30px 0 0; }
.section.logo-block .partner {
  display: inline-block; margin: 0 28px 25px; font-size: 24px; font-weight: 600;
  color: #9b9b9b; letter-spacing: .02em;
}

/* --- Stats ---------------------------------------------------------------- */
.section.stats { background: var(--bdl-blue-t); padding: 55px 0; text-align: center; }
.section.stats .stat .num { font-size: 50px; font-weight: 200; color: var(--bdl-blue); line-height: 1; letter-spacing: -.01em; font-variant-numeric: tabular-nums; }
.section.stats .stat .num.num-sm { font-size: 36px; padding-top: 8px; }
.section.stats .stat .label { color: var(--bdl-mid); margin-top: 10px; font-size: 15px; }
@media (min-width: 768px) {
  .section.stats .stat + .stat { border-left: 1px solid rgba(3,119,185,.18); }
}

/* --- Call to action ------------------------------------------------------- */
.section.call-to-action {
  padding: 90px 0; color: #fff; position: relative;
  background-image: url("../img/hero-network.svg");
  background-size: cover; background-position: center center; background-color: #35505f;
}
.section.call-to-action::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(3,119,185,.15), rgba(0,0,0,.35));
}
.section.call-to-action .container { position: relative; }
.section.call-to-action .call-to-action-data-inner { padding: 60px 50px; background-color: var(--bdl-ink); border-top: 4px solid var(--bdl-red); }
.section.call-to-action .heading h3, .section.call-to-action .heading h4 { color: #fff; }
.section.call-to-action .body { margin-top: 20px; }
.section.call-to-action .body p { color: #d9d9d9; }
.section.call-to-action a { color: #fff; }

/* --- Steps / process ------------------------------------------------------ */
.steps { counter-reset: step; }
.steps .step { position: relative; padding: 0 0 0 64px; margin-bottom: 30px; }
.steps .step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 44px; height: 44px;
  border: 1px solid var(--bdl-blue); color: var(--bdl-blue); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 300;
}
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; left: 22px; top: 46px; bottom: -28px; width: 1px; background: var(--bdl-line);
}
.steps .step h5 { margin: 8px 0 6px; }
.steps .step p { margin-bottom: 0; }

/* --- Tick lists ----------------------------------------------------------- */
ul.ticks { list-style: none; padding-left: 0; }
ul.ticks li { position: relative; padding-left: 30px; padding-bottom: 10px; }
ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 9px;
  border-left: 3px solid var(--bdl-green); border-bottom: 3px solid var(--bdl-green);
  transform: rotate(-45deg);
}

/* --- Locations ------------------------------------------------------------ */
.section.locations a { color: #000; }
.section.locations h4 { margin-top: 0; font-size: 24px; }
.location-col { margin-bottom: 30px; }
.location-col-inner { height: 100%; border: 1px solid var(--bdl-line); border-radius: 5px; overflow: hidden; }
.location-col-inner .map { height: 200px; background: var(--bdl-grey); }
.location-col-inner .map iframe { display: block; width: 100%; height: 200px; border: 0; }
.location-col-inner .map.map-large, .location-col-inner .map.map-large iframe { height: 420px; }
@media (max-width: 992px) {
  .location-col-inner .map.map-large, .location-col-inner .map.map-large iframe { height: 260px; }
}
.location-col-inner .data { padding: 24px; }
.location-col-inner .address { display: flex; }
.location-col-inner .address svg { width: 18px; height: 18px; fill: var(--bdl-red); flex: 0 0 18px; margin: 4px 10px 0 0; }
.location-col-inner .address p { margin: 0; }

/* --- FAQ accordion -------------------------------------------------------- */
.faq { border-top: 1px solid var(--bdl-line); }
.faq details { border-bottom: 1px solid var(--bdl-line); }
.faq summary {
  cursor: pointer; padding: 18px 40px 18px 0; position: relative;
  font-size: 20px; font-weight: 300; color: var(--bdl-ink); list-style: none;
  transition: color .15s ease;
}
.faq summary:hover { color: var(--bdl-blue); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 5px; top: 14px;
  font-size: 26px; font-weight: 200; color: var(--bdl-blue);
}
.faq details[open] summary::after { content: "\2013"; }
.faq .answer { padding: 0 0 18px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* --- Forms ---------------------------------------------------------------- */
.form-panel { background: var(--bdl-grey); padding: 40px; border-radius: 5px; }
.form-panel h4 { font-size: 24px; color: var(--bdl-ink); margin-bottom: 12px; }
.form-panel .padded-top { margin-top: 30px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 14px; color: var(--bdl-mid); margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid #d5d5d5; border-radius: 3px;
  font-family: var(--font); font-size: 16px; color: var(--bdl-body); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--bdl-blue); box-shadow: 0 0 0 3px rgba(3,119,185,.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--bdl-mid); margin-top: 14px; }
.form-status { margin-top: 14px; font-size: 15px; }
.form-status:empty { display: none; }
.form-status.ok { color: #2f7d32; }
.form-status.err { color: var(--bdl-red-2); }

/* --- Prose (policy pages) ------------------------------------------------- */
.prose h2 { font-size: 30px; margin: 40px 0 15px; }
.prose h3 { font-size: 23px; margin: 30px 0 12px; }
.prose p, .prose li { font-size: 16px; }

/* --- Footer --------------------------------------------------------------- */
.section.footer { padding: 60px 0 50px; background: var(--bdl-ink); color: #fff; }
.section.footer a { color: #fff; }
.section.footer h4 { color: #b7b7b7; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin: 4px 0 18px; font-weight: 600; line-height: 20px; }
.section.footer #menu-footer li, .section.footer #menu-footer-group li { line-height: 1.5; }
.footer-brand { display: flex; align-items: center; margin-bottom: 20px; color: #fff; }
.footer-brand:hover { text-decoration: none; color: #fff; }
.footer-brand img { width: 170px; height: auto; }
.footer-brand .bdl-logo { height: 56px; width: auto; }
.footer-brand .bdl-logo .unit { fill: var(--bdl-blue-l); }
.footer-brand .brand-unit { color: #fff; font-size: 26px; margin-left: 12px; padding-left: 12px; border-left: 1px solid #55504f; }
.footer-blurb { color: #b7b7b7; font-size: 15px; }
.footer-social { margin-top: 18px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid #4a4646; border-radius: 50%; margin-right: 8px; transition: border-color .15s ease, background .15s ease; }
.footer-social a:hover { border-color: var(--bdl-blue); background: var(--bdl-blue); }
.footer-social svg { width: 15px; height: 15px; fill: #fff; }
.section.footer .contact .data { margin-bottom: 14px; position: relative; color: #e6e6e6; }
.section.footer .contact .data .indent { padding-left: 26px; }
.section.footer .contact .data a { text-decoration: none; }
.section.footer .contact .data a:hover { text-decoration: underline; }
.section.footer #menu-footer, .section.footer #menu-footer-group { display: block; padding-left: 0; }
.section.footer #menu-footer li, .section.footer #menu-footer-group li { display: block; padding: 0 0 7px; color: #e6e6e6; }
.section.footer #menu-footer a, .section.footer #menu-footer-group a { color: #e6e6e6; }
.section.footer #menu-footer a:hover, .section.footer #menu-footer-group a:hover { text-decoration: underline; color: #fff; }
.section .fa-icon { width: 16px; height: 16px; fill: var(--bdl-red); margin-right: 10px; vertical-align: -2px; }
.section.footer .btn-holder { margin-top: 25px; }
.section.footer .col-lg-3 { margin-bottom: 20px; }

.section.bottom-bar { color: #999898; background: var(--bdl-ink); padding: 5px 0 12px; font-size: 14px; }
.section.bottom-bar .container { border-top: 1px solid #4a4646; padding-top: 12px; }
.section.bottom-bar a { color: #fff; text-decoration: none; }
.section.bottom-bar a:hover { text-decoration: underline; }
.section.bottom-bar .text { display: inline-block; margin-top: 5px; }
.section.bottom-bar .text span { padding: 0 2px; }
.section.bottom-bar .text.align-right { float: right; }

/* --- Reveal on scroll (progressive: only when JS is present) --------------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal:nth-child(2) { transition-delay: .07s; }
.js .reveal:nth-child(3) { transition-delay: .14s; }
.js .reveal:nth-child(4) { transition-delay: .21s; }
.js .reveal:nth-child(5) { transition-delay: .28s; }
.js .reveal:nth-child(6) { transition-delay: .35s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .section.buckets .bucket, .section.buckets .bucket .image svg { transition: none; }
}

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1200px) {
  .section.top-bar { padding: 7px 5px; }
  .navbar { padding: 0 10px; }
  #menu-header > li { padding: 28px 10px; }
  #menu-header > li.nav-cta { padding-left: 6px; }
}
@media (max-width: 992px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }
  .section.banner { padding: 80px 0 100px; min-height: 0; }
  .section.banner h1 { font-size: 40px; }
  .section.banner .sub-text { font-size: 20px; }
  .section.banner.compact { padding: 60px 0 70px; }
  .section.banner.compact h1 { font-size: 34px; }
  #content-image .fake-container { padding: 50px 25px; }
  #content-image .content-col-image { min-height: 260px; }
  .section.call-to-action { padding: 50px 0; }
  .section.call-to-action .call-to-action-data-inner { padding: 40px 25px; }
  .section.bottom-bar { text-align: center; }
  .section.bottom-bar .text.align-right { float: none; display: block; }
  .spacer { margin-bottom: 45px; }
  .col-lg-4 .form-panel, .col-lg-5 .form-panel { margin-top: 30px; }
}
@media (max-width: 768px) {
  .section.top-bar { text-align: center; }
  .section.top-bar .align-right { text-align: center; }
  .section.footer { text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-social { text-align: center; }
  .section.footer .contact .data { display: inline-block; text-align: left; }
  .form-panel { padding: 25px; }
  .section.stats .stat { margin-bottom: 25px; }
  .trust-strip ul { gap: 0 24px; }
  .btn { display: block; text-align: center; margin-right: 0; }
  .section.banner .buttons .btn { margin-bottom: 10px; }
  .section.buckets .bucket .btn { display: inline-block; }
  .navbar-brand img { width: 120px; }
  .brand-unit { font-size: 24px; }
  .bdl-logo { height: 40px; }
  .navbar .container, #menu-header { height: 64px; }
}
@media print {
  .section.top-bar, .site-header, .mobile-nav, .mobile-nav-backdrop, .section.call-to-action { display: none; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   WordPress-only additions (appended to bdlit.css by wp/build-wp.sh)
   ========================================================================== */

/* In the PHP templates the inline SVG icons sit inside a <span> carrying the
   .ico / .fa-icon class, so size the SVG itself, not just the wrapper. */
.section.top-bar .phone .ico { display: inline-block; line-height: 0; margin-right: 6px; vertical-align: -1px; }
.section.top-bar .phone .ico svg { width: 13px; height: 13px; fill: #fff; display: block; }
.section .fa-icon { display: inline-block; line-height: 0; vertical-align: -2px; }
.section .fa-icon svg { width: 16px; height: 16px; fill: var(--bdl-red); display: block; }
.btn .fa-icon { vertical-align: -3px; }
.btn .fa-icon svg { width: 18px; height: 18px; fill: currentColor; }
.section.footer .contact .data .fa-icon { position: absolute; left: 0; top: 4px; margin: 0; }
.section.footer .contact .data { padding-left: 26px; }
.section.footer .contact .data .indent { padding-left: 0; }

/* Sticky header sits under the WP admin bar when logged in */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Custom logo uploaded via Customize > Site Identity replaces the lockup */
.navbar-brand img.custom-logo { width: auto; max-height: 64px; }
.site-header.is-stuck .navbar-brand img.custom-logo { max-height: 54px; }

/* Mobile menu rendered by wp_nav_menu (nested ul.sub-menu) */
.mobile-nav ul.mobile-menu, .mobile-nav ul.mobile-extra { list-style: none; margin: 0; padding: 10px 0; }
.mobile-nav ul.mobile-extra { padding-top: 0; flex: 1 1 auto; }
.mobile-nav ul.mobile-menu { flex: 0 0 auto; }
.mobile-nav ul.sub-menu { list-style: none; margin: 0; padding: 0 0 6px; }
.mobile-nav li.menu-item-has-children > a {
  color: #8b8b8b; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; padding: 18px 20px 6px;
}
.mobile-nav ul.sub-menu li a { padding-left: 20px; }
.mobile-nav li.nav-cta > a { color: #8fd0f5; }

/* Top bar / footer menus from wp_nav_menu carry WP's own classes */
.section.top-bar #menu-top-bar li.current-menu-item a { text-decoration: underline; }

/* Standard WordPress content helpers, in case pages gain images or embeds */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--bdl-mid); margin-top: 6px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.prose img { height: auto; }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; margin: 30px 0; }
.pagination .page-numbers { display: inline-block; padding: 6px 12px; border: 1px solid var(--bdl-line); color: var(--bdl-body); }
.pagination .page-numbers.current { background: var(--bdl-blue); color: #fff; border-color: var(--bdl-blue); }
