/*
Theme Name: BoilerPoints Child
Template: astra
Version: 1.0
Description: BoilerPoints custom child theme
*/

/* ============================================================
   RESET & ROOT VARIABLES
   ============================================================ */
:root {
  --bp-navy:       #1a2e5a;
  --bp-navy-dark:  #0f1e3d;
  --bp-navy-light: #e8edf7;
  --bp-orange:     #e8420a;
  --bp-orange-lt:  #fff3ee;
  --bp-white:      #ffffff;
  --bp-gray-50:    #f8f9fb;
  --bp-gray-100:   #f1f3f7;
  --bp-gray-200:   #e2e6ee;
  --bp-gray-400:   #9aa3b5;
  --bp-gray-600:   #4b5568;
  --bp-gray-900:   #111827;
  --bp-radius:     10px;
  --bp-shadow:     0 2px 12px rgba(26,46,90,.10);
}

/* hide default Astra header/footer on front page */
body.home .site-header,
body.home .ast-hfb-header,
body.home #masthead,
body.home .site-footer,
body.home #colophon {
  display: none !important;
}
body.home {
  margin: 0;
  padding: 0;
  background: #fff;
}
body.home .ast-container,
body.home #primary,
body.home #content,
body.home .entry-content,
body.home .ast-article-single {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.bp-ticker {
  overflow: hidden;
  padding: 9px 0;
  white-space: nowrap;
}
.bp-ticker--navy { background: var(--bp-navy); }
.bp-ticker--orange { background: var(--bp-orange); }
.bp-ticker__inner {
  display: inline-flex;
  animation: bpTicker 28s linear infinite;
}
.bp-ticker__inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.bp-ticker__inner span::before {
  content: "âœ“";
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
@keyframes bpTicker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER
   ============================================================ */
.bp-header {
  background: #fff;
  border-bottom: 1px solid var(--bp-gray-200);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.bp-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.bp-header__logo img { height: 52px; width: auto; }
.bp-header__nav {
  display: flex;
  gap: 28px;
  list-style: none;
}
.bp-header__nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--bp-gray-600);
  transition: color .2s;
}
.bp-header__nav a:hover { color: var(--bp-navy); }
.bp-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bp-header__phone {
  font-size: 13px;
  color: var(--bp-gray-600);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}
.bp-header__phone strong {
  color: var(--bp-navy);
  font-size: 15px;
  font-weight: 700;
}
.bp-btn-orange {
  background: var(--bp-orange);
  color: #fff !important;
  border: none;
  padding: 10px 22px;
  border-radius: var(--bp-radius);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s, transform .15s;
  display: inline-block;
  white-space: nowrap;
}
.bp-btn-orange:hover { background: #c93508; transform: translateY(-1px); }

/* mobile burger */
.bp-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.bp-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bp-navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.bp-hero {
  background: linear-gradient(135deg, var(--bp-navy-dark) 0%, var(--bp-navy) 55%, #1e3d7a 100%);
  padding: 64px 24px 56px;
}
.bp-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 18px;
}
.bp-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -.3px;
}
.bp-hero h1 span { color: var(--bp-orange); }
.bp-hero__bullets {
  list-style: none;
  margin-bottom: 28px;
}
.bp-hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  padding: 5px 0;
  line-height: 1.4;
}
.bp-hero__bullets li::before {
  content: "\2713";
  background: var(--bp-orange);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.bp-hero__cta-btn {
  background: var(--bp-orange);
  color: #fff;
  border: none;
  padding: 15px 36px;
  border-radius: var(--bp-radius);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  transition: background .2s, transform .15s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bp-hero__cta-btn:hover { background: #c93508; transform: translateY(-2px); }
.bp-hero__note {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  margin-bottom: 28px;
}
.bp-hero__brands {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bp-hero__brand-pill {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.bp-hero__image-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bp-hero__img-box {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  background: transparent;
  padding: 0;
}
.bp-hero__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.bp-hero__review-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bp-hero__stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.bp-hero__review-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bp-gray-900);
}
.bp-hero__review-text span {
  font-size: 12px;
  color: var(--bp-gray-400);
}

/* ============================================================
   LOCATIONS TICKER
   ============================================================ */
.bp-locs {
  background: var(--bp-gray-50);
  border-top: 1px solid var(--bp-gray-200);
  border-bottom: 1px solid var(--bp-gray-200);
  overflow: hidden;
  padding: 11px 0;
}
.bp-locs__inner {
  display: inline-flex;
  animation: bpTicker 35s linear infinite;
  white-space: nowrap;
}
.bp-locs__inner span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 22px;
  font-size: 13px;
  color: var(--bp-gray-600);
  font-weight: 500;
}
.bp-locs__inner span::before { content: "ðŸ“"; font-size: 11px; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.bp-section { padding: 64px 24px; }
.bp-section--gray { background: var(--bp-gray-50); }
#faq { background: #fff !important; }
.bp-section--white { background: #fff; }
.bp-section--navy { background: var(--bp-navy-dark); }
.bp-container { max-width: 1100px; margin: 0 auto; }
.bp-section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--bp-orange);
  margin-bottom: 8px;
}
.bp-section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--bp-gray-900);
  margin-bottom: 8px;
  line-height: 1.2;
}
.bp-section-title--white { color: #fff; }
.bp-section-sub {
  font-size: 15px;
  color: var(--bp-gray-600);
  margin-bottom: 40px;
  line-height: 1.6;
}
.bp-section-sub--white { color: rgba(255,255,255,.7); }
.bp-text-center { text-align: center; }

/* ============================================================
   QUOTE FORM
   ============================================================ */
.bp-quote-section {
  background: var(--bp-gray-50);
  padding: 64px 24px;
}
.bp-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--bp-gray-200);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--bp-shadow);
}

/* progress */
.bp-progress-bar {
  height: 6px;
  background: var(--bp-gray-200);
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
}
.bp-progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bp-navy), var(--bp-orange));
  border-radius: 4px;
  transition: width .45s ease;
}
.bp-step-counter {
  font-size: 12px;
  color: var(--bp-gray-400);
  margin-bottom: 24px;
  font-weight: 500;
}
.bp-form-step { display: none; }
.bp-form-step.active { display: block; }
.bp-form-q {
  font-size: 18px;
  font-weight: 700;
  color: var(--bp-gray-900);
  margin-bottom: 6px;
}
.bp-form-hint {
  font-size: 13px;
  color: var(--bp-gray-400);
  margin-bottom: 20px;
}

/* choice grid */
.bp-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.bp-choice-grid--2 { grid-template-columns: repeat(2, 1fr); }
.bp-choice-grid--4 { grid-template-columns: repeat(4, 1fr); }
.bp-choice-btn {
  border: 1.5px solid var(--bp-gray-200);
  background: #fff;
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-gray-600);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.bp-choice-btn:hover {
  border-color: var(--bp-navy);
  color: var(--bp-navy);
  background: var(--bp-navy-light);
  transform: translateY(-2px);
}
.bp-choice-btn.selected {
  border-color: var(--bp-orange);
  background: var(--bp-orange-lt);
  color: var(--bp-orange);
}
.bp-choice-btn .bp-icon { font-size: 30px; line-height: 1; pointer-events: none; }
.bp-choice-btn * { pointer-events: none; }

/* form inputs */
.bp-input-group { margin-bottom: 18px; }
.bp-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-gray-600);
  margin-bottom: 6px;
}
.bp-input-group input,
.bp-input-group select {
  width: 100%;
  border: 1.5px solid var(--bp-gray-200);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--bp-gray-900);
  background: #fff;
  transition: border-color .2s;
  font-family: inherit;
}
.bp-input-group input:focus,
.bp-input-group select:focus {
  outline: none;
  border-color: var(--bp-navy);
}

/* form nav */
.bp-form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.bp-btn-back {
  background: none;
  border: 1.5px solid var(--bp-gray-200);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--bp-gray-600);
  font-weight: 500;
  transition: border-color .2s;
}
.bp-btn-back:hover { border-color: var(--bp-navy); color: var(--bp-navy); }
.bp-btn-next {
  background: var(--bp-navy);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s, transform .15s;
}
.bp-btn-next:hover { background: var(--bp-orange); transform: translateY(-1px); }
.bp-btn-submit {
  background: var(--bp-orange);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}
.bp-btn-submit:hover { background: #c93508; }

/* form success */
.bp-form-success {
  text-align: center;
  padding: 40px 20px;
}
.bp-form-success__icon { font-size: 56px; margin-bottom: 16px; }
.bp-form-success h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--bp-navy);
  margin-bottom: 10px;
}
.bp-form-success p {
  font-size: 15px;
  color: var(--bp-gray-600);
  line-height: 1.6;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.bp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.bp-feature-card {
  background: #fff;
  border: 1px solid var(--bp-gray-200);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.bp-feature-card:hover {
  box-shadow: 0 6px 20px rgba(26,46,90,.1);
  transform: translateY(-3px);
}
.bp-feature-card__icon { font-size: 36px; margin-bottom: 12px; }
.bp-feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--bp-navy);
  margin-bottom: 6px;
}
.bp-feature-card p {
  font-size: 13px;
  color: var(--bp-gray-600);
  line-height: 1.5;
}
.bp-section-cta {
  text-align: center;
  margin-top: 36px;
}
.bp-section-cta p {
  font-size: 12px;
  color: var(--bp-gray-400);
  margin-top: 8px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.bp-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 860px;
  margin: 0 auto 36px;
  position: relative;
}
.bp-process-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: var(--bp-gray-200);
  z-index: 0;
}
.bp-process-step {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.bp-process-step__num {
  width: 56px;
  height: 56px;
  background: var(--bp-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 14px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--bp-navy);
}
.bp-process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bp-gray-900);
  margin-bottom: 8px;
}
.bp-process-step p {
  font-size: 13px;
  color: var(--bp-gray-600);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.bp-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bp-testi-card {
  background: #fff;
  border: 1px solid var(--bp-gray-200);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bp-testi-card__stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.bp-testi-card__text {
  font-size: 14px;
  color: var(--bp-gray-600);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.bp-testi-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--bp-gray-200);
  padding-top: 12px;
}
.bp-testi-card__avatar {
  width: 36px;
  height: 36px;
  background: var(--bp-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.bp-testi-card__name { font-size: 13px; font-weight: 700; color: var(--bp-gray-900); }
.bp-testi-card__source { font-size: 11px; color: var(--bp-gray-400); }

/* ============================================================
   ABOUT (NAVY SECTION)
   ============================================================ */
.bp-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.bp-about__img {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  text-align: center;
  padding: 20px;
  line-height: 1.7;
}
.bp-about__text p {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.bp-about__certs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.bp-cert-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* ============================================================
   CTA REPEAT
   ============================================================ */
.bp-cta-repeat {
  background: var(--bp-orange);
  padding: 64px 24px;
  text-align: center;
}
.bp-cta-repeat h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.bp-cta-repeat p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  margin-bottom: 24px;
}
.bp-cta-repeat__bullets {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.bp-cta-repeat__bullets li {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.bp-cta-repeat__bullets li::before { content: "âœ“"; font-weight: 800; }
.bp-btn-white {
  background: #fff;
  color: var(--bp-orange) !important;
  border: none;
  padding: 15px 40px;
  border-radius: var(--bp-radius);
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  transition: transform .15s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bp-btn-white:hover { transform: translateY(-2px); }

/* ============================================================
   FAQ
   ============================================================ */
.bp-faq-list { max-width: 760px; margin: 0 auto; }
.bp-faq-item {
  background: #fff;
  border: 1px solid var(--bp-gray-200);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.bp-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bp-gray-900);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: color .2s;
  font-family: inherit;
}
.bp-faq-q:hover { color: var(--bp-navy); }
.bp-faq-q__arrow {
  color: var(--bp-gray-400);
  font-size: 18px;
  transition: transform .3s;
  flex-shrink: 0;
}
.bp-faq-q.open { color: var(--bp-navy); }
.bp-faq-q.open .bp-faq-q__arrow { transform: rotate(180deg); color: var(--bp-orange); }
.bp-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--bp-gray-600);
  line-height: 1.7;
}
.bp-faq-a.open { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.bp-footer {
  background: var(--bp-gray-900);
  padding: 48px 24px 24px;
  color: #fff;
}
.bp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bp-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.bp-footer__logo img { height: 44px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.bp-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: 16px;
}
.bp-footer__social {
  display: flex;
  gap: 10px;
}
.bp-footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: background .2s;
}
.bp-footer__social a:hover { background: var(--bp-orange); }
.bp-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.bp-footer__col ul { list-style: none; }
.bp-footer__col ul li { margin-bottom: 10px; }
.bp-footer__col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.bp-footer__col ul li a:hover { color: var(--bp-orange); }
.bp-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-bottom: 10px;
}
.bp-footer__contact li span { font-size: 16px; flex-shrink: 0; }
.bp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.bp-footer__bottom a { color: rgba(255,255,255,.35); }
.bp-footer__bottom a:hover { color: var(--bp-orange); }

/* ============================================================
   GALLERY
   ============================================================ */
.bp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bp-gallery-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bp-gray-100);
  border: 1px solid var(--bp-gray-200);
}
.bp-gallery-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #c8d4e8, #8fa3c4);
}
.bp-gallery-card__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8d4e8, #8fa3c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.bp-gallery-card__info { padding: 14px; }
.bp-gallery-card__info h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--bp-gray-900);
  margin-bottom: 4px;
}
.bp-gallery-card__meta { font-size: 11px; color: var(--bp-gray-400); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .bp-hero__inner { grid-template-columns: 1fr; }
  .bp-hero__image-col { display: none; }
  .bp-about__inner { grid-template-columns: 1fr; }
  .bp-about__img { display: none; }
  .bp-testi-grid { grid-template-columns: 1fr; }
  .bp-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .bp-footer__top { grid-template-columns: 1fr 1fr; }
  .bp-choice-grid--4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 680px) {
  .bp-header__nav { display: none; }
  .bp-header__phone { display: none; }
  .bp-header__burger { display: flex; }
  .bp-header__inner { height: 60px; }
  .bp-hero { padding: 40px 16px 36px; }
  .bp-hero h1 { font-size: 26px; }
  .bp-section { padding: 48px 16px; }
  .bp-choice-grid { grid-template-columns: repeat(2,1fr); }
  .bp-choice-grid--4 { grid-template-columns: repeat(2,1fr); }
  .bp-process-grid { grid-template-columns: 1fr; }
  .bp-process-grid::before { display: none; }
  .bp-gallery-grid { grid-template-columns: 1fr; }
  .bp-footer__top { grid-template-columns: 1fr; }
  .bp-cta-repeat__bullets { flex-direction: column; align-items: center; gap: 10px; }
  .bp-form-wrap { padding: 22px 16px; }
  .bp-section-title { font-size: 24px; }
  .bp-cta-repeat h2 { font-size: 22px; }
  .bp-features-grid { grid-template-columns: repeat(2,1fr); }
}

/* mobile nav drawer */
.bp-mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--bp-gray-200);
  z-index: 199;
  padding: 16px 24px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.bp-mobile-nav.open { display: flex; }
.bp-mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--bp-gray-100);
  font-size: 15px;
  font-weight: 600;
  color: var(--bp-gray-900);
}
.bp-mobile-nav a:last-child { border-bottom: none; }
.bp-mobile-nav__phone {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--bp-navy);
}

/* ============================================================
   HERO BADGE â€” Google rating
   ============================================================ */
.bp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

/* ============================================================
   FORM HINT BAR
   ============================================================ */
.bp-form-hint-bar {
  text-align: center;
  margin-bottom: 20px;
}
.bp-form-hint-bar__inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--bp-gray-200);
  color: var(--bp-navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(26,46,90,.08);
}

/* ============================================================
   SCROLLING REVIEWS WALL
   ============================================================ */
.bp-reviews-wall {
  background: var(--bp-navy-dark);
  padding: 56px 0;
  overflow: hidden;
}
.bp-reviews-wall__header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 24px;
}
.bp-reviews-wall__header .bp-section-label { color: var(--bp-orange); }
.bp-reviews-wall__header .bp-section-title { color: #fff; }
.bp-reviews-wall__row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  width: max-content;
}
.bp-reviews-wall__row--ltr {
  animation: reviewsLTR 35s linear infinite;
}
.bp-reviews-wall__row--rtl {
  animation: reviewsRTL 38s linear infinite;
}
.bp-reviews-wall__row:last-child { margin-bottom: 0; }

@keyframes reviewsLTR {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes reviewsRTL {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.bp-review-card {
  background: #1e3460;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 20px 22px;
  width: 320px;
  flex-shrink: 0;
}
.bp-review-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.bp-review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bp-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.bp-review-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.bp-review-card__source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.bp-review-card__stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.bp-review-card__text {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ============================================================
   SECTION COLOUR SCHEME
   Ticker (orange) â†’ Reviews (white) â†’ Why Us (navy) â†’
   Process (light blue tint) â†’ About (navy dark) â†’
   CTA (orange) â†’ FAQ (white) â†’ Footer (dark)
   ============================================================ */

/* REVIEWS â€” white with top breathing room */
.bp-reviews-trustindex {
  background: #fff;
  padding: 80px 24px 64px;
  border-top: 5px solid var(--bp-orange);
}
.bp-reviews-trustindex .bp-section-label { color: var(--bp-orange); }
.bp-reviews-trustindex .bp-section-title { color: var(--bp-gray-900); }
.bp-reviews-trustindex .bp-section-sub  { color: var(--bp-gray-600); }
.bp-reviews-trustindex .ti-widget { margin: 0 auto; }

/* WHY CHOOSE US â€” navy blue */
section#why-us,
#why-us { background: var(--bp-navy) !important; }
#why-us .bp-section-label { color: rgba(255,255,255,.6) !important; }
#why-us .bp-section-title { color: #fff !important; }
#why-us .bp-section-sub  { color: rgba(255,255,255,.7) !important; }
#why-us .bp-feature-card {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.15) !important;
}
#why-us .bp-feature-card h3 { color: #fff !important; }
#why-us .bp-feature-card p  { color: rgba(255,255,255,.72) !important; }
#why-us .bp-section-cta p   { color: rgba(255,255,255,.6) !important; }

/* PROCESS â€” warm orange tint */
section#how-it-works,
#how-it-works { background: #fff8f5 !important; }
#how-it-works .bp-section-label { color: var(--bp-orange) !important; }
#how-it-works .bp-section-title { color: var(--bp-gray-900) !important; }
#how-it-works .bp-section-sub   { color: var(--bp-gray-600) !important; }
#how-it-works .bp-process-step__num {
  background: var(--bp-orange) !important;
  box-shadow: 0 0 0 2px var(--bp-orange) !important;
}
#how-it-works .bp-process-grid::before { background: #fbd5c3 !important; }
#how-it-works h4 { color: var(--bp-gray-900) !important; }
#how-it-works p  { color: var(--bp-gray-600) !important; }