:root {
  --fb-red: #d40000;
  --fb-blue: #2f5cef;
  --fb-accent: #d40000;
  --fb-accent-grad: linear-gradient(
    90deg,
    var(--fb-red) 0%,
    var(--fb-blue) 150%
  );
  --fb-dark: #1c1e22;
  --fb-dark-2: #141518;
  --fb-gray: #8a8f98;
  --fb-white: #ffffff;
  --fb-transition: 0.25s ease;
  --fb-light: #f6f7fb;
  --fb-safety: #f2b705;
  --fb-line: rgba(20, 21, 24, 0.14);
  --fb-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===================== TOP BAR ===================== */
.fb-topbar {
  background: var(--fb-white);
  padding: 20px 0 50px;
}

.fb-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* Logo */
.fb-brand {
  display: flex;
  align-items: center;
  gap: 2px;
}

.fb-brand .fb-brand-icon {
  width: 38px;
  height: 38px;
  color: var(--fb-red);
  font-size: 34px;
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.fb-brand .fb-brand-tag {
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px 4px 8px;
  position: relative;
  top: -13px;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.fb-brand .fb-brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--fb-dark-2);
  line-height: 1;
}

.fb-brand .fb-brand-name span {
  color: var(--fb-red);
}

/* Contact info cluster */
.fb-topbar-contacts {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.fb-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fb-contact-item .fb-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 0, 0, 0.08);
  color: var(--fb-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.fb-contact-item .fb-contact-text {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--fb-gray);
}

.fb-contact-item .fb-contact-text b {
  color: var(--fb-dark-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Social icons */
.fb-topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fb-topbar-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e7e8eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb-dark-2);
  font-size: 13px;
  transition: var(--fb-transition);
}

.fb-topbar-social a:hover {
  background: var(--fb-red);
  border-color: var(--fb-red);
  color: var(--fb-white);
}

/* ===================== NAV BAR ===================== */
/* Boxed navbar, floated 50% onto the topbar above it */
.fb-navbar-wrap {
  position: relative;
  z-index: 1000;
  position: absolute;
  width: 100%;
  top: 85px;
}

.fb-navbar {
  background: var(--fb-dark);
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.fb-navbar-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 74px;
  /* keep in sync with the -37px overlap above (half of this value) */
}

.fb-quote-btn {
  border-radius: 0 10px 10px 0;
}

.fb-nav {
  display: flex;
  align-items: stretch;
}

.fb-nav > li {
  position: relative;
}

.fb-nav > li > a {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 100%;
  padding: 19px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--fb-white);
  text-transform: uppercase;
  transition: var(--fb-transition);
}

.fb-nav > li > a i.fb-caret {
  font-size: 10px;
  opacity: 0.7;
}

.fb-nav > li > a.active,
.fb-nav > li:hover > a {
  color: var(--fb-red);
}

/* Level 1 dropdown */
.fb-dd {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: var(--fb-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--fb-transition);
}

.fb-nav > li:hover > .fb-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fb-dd > li {
  position: relative;
}

.fb-dd > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--fb-dark-2);
  text-transform: none;
  border-left: 3px solid transparent;
  transition: var(--fb-transition);
}

.fb-dd-label {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and text */
}

.fb-dd-label i {
  font-size: 13px;
  color: var(--fb-red); /* or whatever accent you want for category icons */
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.fb-dd > li > a i.fb-sub-caret {
  font-size: 11px;
  color: var(--fb-gray);
}

.fb-dd > li:hover > a {
  background: #f7f7f9;
  color: var(--fb-red);
  border-left-color: var(--fb-red);
  padding-left: 22px;
}

/* Level 2 flyout (multilevel) */
.fb-dd-l2 {
  position: absolute;
  top: 0;
  left: 100%;
  width: 275px;
  background: var(--fb-white);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: var(--fb-transition);
}

.fb-dd > li:hover > .fb-dd-l2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.fb-dd-l2 > li > a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fb-dark-2);
  border-left: 3px solid transparent;
  transition: var(--fb-transition);
}

.fb-dd-l2 > li > a i {
  font-size: 6px;
  color: var(--fb-blue);
}

.fb-dd-l2 > li:hover > a {
  background: #f7f7f9;
  color: var(--fb-blue);
  border-left-color: var(--fb-blue);
  padding-left: 22px;
}

/* Right side of navbar: search + quote */
.fb-navbar-actions {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.fb-search-btn {
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb-white);
  font-size: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--fb-transition);
}

.fb-search-btn:hover {
  color: var(--fb-red);
}

.fb-quote-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 26px;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--fb-transition);
}

.fb-quote-btn:hover {
  filter: brightness(1.08);
  color: var(--fb-white);
}

/* Mobile toggle */
.fb-toggle-btn {
  display: none;
  width: 64px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fb-white);
  font-size: 18px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  /* ---- Topbar ---- */
  .fb-topbar {
    padding: 14px 0;
  }

  .fb-topbar-contacts {
    display: none;
  }

  .fb-topbar-inner {
    justify-content: space-between;
    gap: 10px;
  }

  .fb-brand .fb-brand-icon {
    font-size: 28px;
  }

  .fb-brand .fb-brand-name {
    font-size: 19px;
  }

  .fb-brand .fb-brand-tag {
    font-size: 9.5px;
    padding: 3px 8px 3px 6px;
    top: -11px;
  }

  .fb-topbar-social {
    gap: 6px;
  }

  .fb-topbar-social a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .fb-topbar-social {
    display: none;
  }

  /* ---- Navbar: drop the floating/overlap effect, collapse the dark bar entirely ---- */
  /* Only the slide-in panel (fb-nav) and its backdrop are still needed here — both are
       position:fixed, so they keep working even though the bar around them is collapsed. */
  .fb-navbar-wrap {
    margin-top: 0;
  }

  .fb-navbar {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .fb-navbar-inner {
    min-height: 0;
    padding: 0;
    position: relative;
  }

  .fb-navbar-wrap .container {
    padding: 0;
  }

  .fb-navbar-actions {
    display: none;
  }

  /* search + quote hidden on mobile, per request */

  /* ---- Topbar hamburger (replaces the old in-navbar toggle on mobile) ---- */
  .fb-toggle-btn-top {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fb-dark);
    color: var(--fb-white);
    font-size: 16px;
    border: none;
  }

  /* ---- Slide-in mobile menu ---- */
  .fb-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--fb-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1500;
  }

  .fb-nav.fb-nav-open {
    display: flex;
  }

  .fb-nav > li {
    width: 100%;
  }

  .fb-nav > li > a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: space-between;
    height: auto;
  }

  /* Nested dropdowns become static accordion panels */
  .fb-dd,
  .fb-dd-l2 {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
    display: none;
    padding: 2px 0;
  }

  .fb-nav > li.fb-mobile-active > .fb-dd {
    display: block;
  }

  .fb-dd > li.fb-mobile-active > .fb-dd-l2 {
    display: block;
  }

  .fb-dd > li > a,
  .fb-dd-l2 > li > a {
    color: var(--fb-white);
    padding-left: 32px;
    border-left: none;
  }

  .fb-dd-l2 > li > a {
    padding-left: 46px;
    font-size: 12.5px;
  }

  .fb-dd > li > a:hover,
  .fb-dd-l2 > li > a:hover {
    background: rgba(255, 255, 255, 0.06);
    padding-left: 36px;
  }

  .fb-dd-l2 > li > a:hover {
    padding-left: 50px;
  }

  .fb-nav-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--fb-white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fb-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1400;
  }

  .fb-nav-backdrop.fb-open {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .fb-brand .fb-brand-name {
    font-size: 17px;
  }

  .fb-brand .fb-brand-icon {
    font-size: 24px;
    margin-right: 4px;
  }

  .fb-brand .fb-brand-tag {
    display: none;
  }

  .fb-contact-item {
    gap: 8px;
  }

  .fb-toggle-btn-top {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* ===================== SECTION WRAPPER ===================== */
.fb-about {
  padding: 90px 0 0;
}

/* Clearfix — required so the section's height doesn't collapse to 0
     when the only content inside it is a floated element */
.fb-about-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ===================== FLOATED MEDIA BLOCK ===================== */
/* This entire block (image + badge + bar + info grid) floats left.
     Everything that follows it in the markup — the eyebrow, heading,
     checklist and paragraphs — is normal in-flow content, so it wraps
     around this float exactly like text wrapping around an image. */
.fb-about-media {
  float: left;
  width: 44%;
  margin: 0 40px 30px 0;
}

.fb-media-frame {
  position: relative;
  border: 1px solid var(--fb-line);
  border-radius: 3px;
}
.fb-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  filter: saturate(0.96);
}

/* Technical-drawing registration marks at each corner of the photo —
     a nod to the blueprint sheets in the photo itself. Red on top,
     blue on bottom, echoing the brand gradient without using it as a wash. */
.fb-crop {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}
.fb-crop::before,
.fb-crop::after {
  content: "";
  position: absolute;
}
.fb-crop::before {
  width: 100%;
  height: 2px;
}
.fb-crop::after {
  width: 2px;
  height: 100%;
}
.fb-crop--tl {
  top: -9px;
  left: -9px;
}
.fb-crop--tl::before,
.fb-crop--tl::after {
  top: 0;
  left: 0;
  background: var(--fb-red);
}
.fb-crop--tr {
  top: -9px;
  right: -9px;
}
.fb-crop--tr::before,
.fb-crop--tr::after {
  top: 0;
  right: 0;
  background: var(--fb-red);
}
.fb-crop--bl {
  bottom: -9px;
  left: -9px;
}
.fb-crop--bl::before,
.fb-crop--bl::after {
  bottom: 0;
  left: 0;
  background: var(--fb-blue);
}
.fb-crop--br {
  bottom: -9px;
  right: -9px;
}
.fb-crop--br::before,
.fb-crop--br::after {
  bottom: 0;
  right: 0;
  background: var(--fb-blue);
}

/* Nameplate badge — styled like a bolted machine ID plate rather than
     a floating gradient pill. Caution-stripe top edge + corner rivets. */
.fb-nameplate {
  position: absolute;
  left: 22px;
  bottom: -30px;
  min-width: 108px;
  background: var(--fb-dark);
  color: var(--fb-white);
  padding: 17px 20px 14px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.fb-nameplate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    135deg,
    var(--fb-safety) 0 6px,
    var(--fb-dark) 6px 12px
  );
}
.fb-nameplate-rivet {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.6);
}
.fb-nameplate-rivet--tl {
  top: 9px;
  left: 7px;
}
.fb-nameplate-rivet--tr {
  top: 9px;
  right: 7px;
}
.fb-nameplate-rivet--bl {
  bottom: 7px;
  left: 7px;
}
.fb-nameplate-rivet--br {
  bottom: 7px;
  right: 7px;
}
.fb-nameplate-num {
  font-family: var(--fb-mono);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}
.fb-nameplate-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 7px;
}

/* Spec sheet — replaces the four colour-block cards with a single
     datasheet-style panel using dot-leader rows, like a machine spec tag. */
.fb-specsheet {
  margin-top: 50px;
  border: 1px solid var(--fb-line);
  border-radius: 3px;
  background: var(--fb-light);
  padding: 20px 22px 18px;
}
.fb-specsheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--fb-line);
}
.fb-specsheet-tag {
  font-family: var(--fb-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--fb-red);
}
.fb-specsheet-id {
  font-family: var(--fb-mono);
  font-size: 10px;
  color: var(--fb-gray);
  letter-spacing: 0.4px;
}
.fb-spec-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.fb-spec-row:last-child {
  margin-bottom: 0;
}
.fb-spec-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--fb-dark);
  white-space: nowrap;
}
.fb-spec-label i {
  width: 13px;
  font-size: 10px;
  color: var(--fb-blue);
}
.fb-spec-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(20, 21, 24, 0.32);
  margin-bottom: 3px;
  min-width: 12px;
}
.fb-spec-value {
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--fb-gray);
  white-space: nowrap;
}

/* ===================== TEXT CONTENT (wraps around the float) ===================== */
.fb-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fb-blue);
  margin-bottom: 14px;
}
.fb-eyebrow .fb-eyebrow-dash {
  width: 34px;
  height: 3px;
  background: var(--fb-accent-grad);
  border-radius: 2px;
  flex-shrink: 0;
}

.fb-about-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.28;
  color: var(--fb-dark);
  margin-bottom: 22px;
}
.fb-about-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-about-clearfix ul {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}
.fb-about-clearfix ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fb-dark);
}
.fb-about-clearfix ul li i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-about-text p {
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--fb-gray);
  margin-bottom: 18px;
}
.fb-about-text p b {
  color: var(--fb-dark);
  font-weight: 700;
}

/* ===================== FULL-WIDTH SECTION BELOW THE FLOAT ===================== */
/* Sits below once the float is cleared — proves the wrap behaves like the reference. */
.fb-about-followup {
  clear: both;
  padding-top: 56px;
  margin-top: 56px;
  border-top: 1px solid #eceef2;
}
.fb-followup-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--fb-dark);
  margin-bottom: 12px;
}
.fb-followup-text {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--fb-gray);
  max-width: 820px;
  margin-bottom: 22px;
}
.fb-benefits-label {
  font-size: 18px;
  font-weight: 800;
  color: var(--fb-dark);
  margin-bottom: 12px;
}
.fb-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fb-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fb-gray);
  margin-bottom: 10px;
}
.fb-benefits-list li i {
  color: var(--fb-red);
  font-size: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-about {
    padding: 70px 0;
  }
  .fb-about-title {
    font-size: 28px;
  }
  .fb-about-clearfix ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  /* Stack: image on top, full width; text flows below instead of wrapping */
  .fb-about-media {
    float: none;
    width: 100%;
    margin: 0 0 34px 0;
  }
  .fb-nameplate {
    left: 16px;
    bottom: -24px;
    padding: 14px 16px 12px;
  }
  .fb-nameplate-num {
    font-size: 21px;
  }
  .fb-specsheet {
    margin-top: 40px;
  }
  .fb-about-title {
    font-size: 24px;
  }
  .fb-about-followup {
    padding-top: 44px;
    margin-top: 44px;
  }
}

@media (max-width: 575.98px) {
  .fb-spec-row {
    flex-wrap: wrap;
  }
  .fb-spec-leader {
    display: none;
  }
  .fb-spec-label {
    width: 100%;
  }
  .fb-about-title {
    font-size: 21px;
  }
}

/* ===================== SECTION WRAPPER ===================== */
.fb-stats {
  position: relative;
  padding: 90px 0 90px;
  background: var(--fb-white);
  overflow: hidden;
}
/* Faint blueprint grid — ties the number panel back to the drawing-sheet
     motif used in the About section (crop marks / nameplate), just inked
     in graphite instead of white-on-dark. */
.fb-stats-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 21, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 21, 24, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 65% at 50% 40%,
    #000 40%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 80% 65% at 50% 40%,
    #000 40%,
    transparent 100%
  );
  pointer-events: none;
}

.fb-stats-head {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}
.fb-stats-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fb-blue);
  margin-bottom: 16px;
}
.fb-stats-eyebrow .fb-stats-dash {
  width: 28px;
  height: 3px;
  background: var(--fb-accent-grad);
  border-radius: 2px;
  flex-shrink: 0;
}
.fb-stats-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--fb-dark);
  margin-bottom: 14px;
}
.fb-stats-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fb-stats-sub {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--fb-gray);
}

/* ===================== STAT GRID ===================== */
/* Built as a single bordered plate divided into cells — reads like an
     instrument panel rather than four separate floating cards. */
.fb-stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--fb-line);
  border: 1px solid var(--fb-line);
  border-radius: 4px;
  overflow: hidden;
}
.fb-stat {
  position: relative;
  background: #ffdada;
  padding: 38px 26px 30px;
  text-align: left;
  transition: background var(--fb-transition);
}
.fb-stat:hover {
  background: var(--fb-light);
}
.fb-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fb-accent-grad);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity var(--fb-transition),
    transform var(--fb-transition);
}
.fb-stat:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.fb-stat-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--fb-light);
  border: 1px solid var(--fb-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--fb-red);
  margin-bottom: 22px;
}
.fb-stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.fb-stat-num {
  font-family: var(--fb-mono);
  font-size: 38px;
  font-weight: 700;
  color: var(--fb-dark);
  line-height: 1;
}
.fb-stat-plus {
  font-family: var(--fb-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--fb-dark);
}
.fb-stat-unit {
  display: block;
  font-family: var(--fb-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fb-red);
  margin-top: 10px;
}
.fb-stat-divider {
  height: 1px;
  margin: 16px 0 14px;
  border-bottom: 1px dashed var(--fb-line);
}
.fb-stat-label {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fb-gray);
}

/* ===================== GOAL PLATE ===================== */
/* The "1" isn't a metric like the others — it's a statement — so instead
     of a fifth pale tile, it's the section's one dark, bolted-plate accent:
     same caution stripe + rivets as the About section's nameplate. */
.fb-goal {
  position: relative;
  margin-top: 1px;
  background: var(--fb-dark-2);
  border: 1px solid var(--fb-line);
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}
.fb-goal::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: repeating-linear-gradient(
    -45deg,
    var(--fb-safety) 0 7px,
    var(--fb-dark-2) 7px 14px
  );
}
.fb-goal-rivet {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.fb-goal-rivet--tr {
  top: 10px;
  right: 12px;
}
.fb-goal-rivet--br {
  bottom: 10px;
  right: 12px;
}
.fb-goal-num {
  font-family: var(--fb-mono);
  font-size: 52px;
  font-weight: 700;
  color: var(--fb-white);
  line-height: 1;
  flex-shrink: 0;
  padding-left: 12px;
}
.fb-goal-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}
.fb-goal-body {
  min-width: 0;
}
.fb-goal-tag {
  display: block;
  font-family: var(--fb-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #7ea0ff;
  margin-bottom: 6px;
}
.fb-goal-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--fb-white);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-stats {
    padding: 80px 0 70px;
  }
  .fb-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fb-stats-title {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .fb-stats-grid {
    grid-template-columns: 1fr;
  }
  .fb-stats-title {
    font-size: 22px;
  }
  .fb-stat {
    padding: 30px 22px 26px;
  }
  .fb-goal {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 24px 26px 30px;
  }
  .fb-goal-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .fb-goal-num {
    font-size: 42px;
    padding-left: 0;
  }
}

/* ===================== SECTION WRAPPER ===================== */
.fb-products {
  padding: 75px 0 40px;
  background: linear-gradient(90deg, #d400001a 0%, #2f5cef40 150%);
}
.fb-products-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.fb-products-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fb-blue);
  margin-bottom: 14px;
}
.fb-products-eyebrow .fb-products-dash {
  width: 28px;
  height: 3px;
  background: var(--fb-accent-grad);
  border-radius: 2px;
  flex-shrink: 0;
}
.fb-products-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--fb-dark);
  max-width: 520px;
}
.fb-products-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fb-products-sub {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fb-gray);
  max-width: 340px;
}

/* ===================== PRODUCT CARD ===================== */
.fb-product-col {
  margin-bottom: 38px;
}

.fb-product-frame {
  position: relative;
  /* aspect-ratio: 4/3.1; */
  height: 300px;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid var(--fb-line);
  background: var(--fb-dark-2);
}
.fb-product-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s ease;
}
.fb-product-frame:hover img {
  transform: scale(1.06);
}

/* Drawing-sheet corner ticks, echoing the About section's registration
     marks — kept to two corners here so a whole grid of them stays quiet. */
.fb-product-crop {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--fb-transition);
}
.fb-product-frame:hover .fb-product-crop {
  opacity: 1;
}
.fb-product-crop::before,
.fb-product-crop::after {
  content: "";
  position: absolute;
}
.fb-product-crop::before {
  width: 100%;
  height: 2px;
}
.fb-product-crop::after {
  width: 2px;
  height: 100%;
}
.fb-product-crop--tl {
  top: 10px;
  left: 10px;
}
.fb-product-crop--tl::before,
.fb-product-crop--tl::after {
  top: 0;
  left: 0;
  background: var(--fb-safety);
}
.fb-product-crop--br {
  bottom: 10px;
  right: 10px;
}
.fb-product-crop--br::before,
.fb-product-crop--br::after {
  bottom: 0;
  right: 0;
  background: var(--fb-safety);
}

/* ---- Mirror shine sweep: a light band that glides all the way across
     the photo on hover, edge to edge, like light passing over glass —
     it never settles or covers the image, only passes through it. ---- */
.fb-product-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.fb-product-shine::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 0;
  width: 26%;
  height: 220%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 65%,
    transparent 100%
  );
  transform: translateX(-220%) rotate(10deg);
  mix-blend-mode: overlay;
}
.fb-product-frame:hover .fb-product-shine::before {
  animation: fbShinePass 2.4s ease-in-out infinite;
}
@keyframes fbShinePass {
  0% {
    transform: translateX(-220%) rotate(10deg);
  }
  55% {
    transform: translateX(420%) rotate(10deg);
  }
  100% {
    transform: translateX(420%) rotate(10deg);
  }
}

/* ===================== BUTTONS ===================== */
.fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 10px 18px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--fb-transition),
    color var(--fb-transition),
    border-color var(--fb-transition),
    transform var(--fb-transition);
  white-space: nowrap;
}
.fb-btn:active {
  transform: translateY(1px);
}

.fb-btn-quote {
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  flex: 1;
}
.fb-btn-quote:hover {
  filter: brightness(1.08);
  color: var(--fb-white);
}

.fb-btn-outline {
  background: transparent;
  color: var(--fb-dark);
  border-color: var(--fb-line);
  flex: 1;
}
.fb-btn-outline:hover {
  background: var(--fb-dark);
  border-color: var(--fb-dark);
  color: var(--fb-white);
}

/* ===================== INFO STRIP ===================== */
.fb-product-info {
  padding-top: 18px;
}
.fb-product-code {
  display: block;
  font-family: var(--fb-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fb-red);
  margin-bottom: 7px;
}
.fb-product-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--fb-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}
.fb-product-divider {
  border-bottom: 1px dashed var(--fb-line);
  margin-bottom: 14px;
}
.fb-product-actions {
  display: flex;
  gap: 10px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-products {
    padding: 80px 0;
  }
  .fb-products-title {
    font-size: 25px;
  }
}
@media (max-width: 767.98px) {
  .fb-products-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fb-why {
  padding: 75px 0 40px;
  background: var(--fb-light);
}

/* ===================== CARD BASE ===================== */
.fb-why-col {
  margin-bottom: 24px;
}
.fb-why-card {
  height: 100%;
  background: var(--fb-white);
  border-radius: 20px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(20, 21, 24, 0.04);
  transition:
    box-shadow var(--fb-transition),
    transform var(--fb-transition);
}
.fb-why-card:hover {
  box-shadow: 0 18px 40px rgba(20, 21, 24, 0.08);
  transform: translateY(-3px);
}
.fb-why-icon {
  font-size: 38px;
  line-height: 1;
  margin-bottom: 28px;
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}
.fb-why-icon.fb-why-icon--alt {
  background: linear-gradient(90deg, var(--fb-blue) 0%, var(--fb-red) 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fb-why-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--fb-dark);
  margin-bottom: 14px;
}
.fb-why-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--fb-gray);
}

/* ===================== CENTER CTA CELL ===================== */
.fb-why-cta {
  height: 100%;
  background: transparent;
  border-radius: 20px;
  padding: 44px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fb-why-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--fb-red);
  border: 1px dashed var(--fb-line);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.fb-why-tag i {
  font-size: 11px;
}
.fb-why-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--fb-dark);
  margin-bottom: 26px;
}
.fb-why-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--fb-dark);
  color: var(--fb-white);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 6px 6px 24px;
  border-radius: 999px;
  transition: background var(--fb-transition);
}
.fb-why-btn:hover {
  background: var(--fb-dark-2);
  color: var(--fb-white);
}
.fb-why-btn-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===================== MEDIA CARD ===================== */
.fb-why-media {
  position: relative;
  height: 100%;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(20, 21, 24, 0.15) 0%,
      rgba(20, 21, 24, 0.82) 100%
    ),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?w=900&q=80")
      center/cover no-repeat;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fb-why-media-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.fb-why-media-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}
.fb-why-media-stat {
  font-family: var(--fb-mono);
  font-size: 46px;
  font-weight: 700;
  color: var(--fb-white);
  line-height: 1;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-why {
    padding: 80px 0;
  }
  .fb-why-heading {
    font-size: 27px;
  }
}
@media (max-width: 767.98px) {
  .fb-why-media {
    min-height: 240px;
  }
}

/* ============ SECTION ============ */
.fb-expo {
  position: relative;
  background-color: var(--fb-dark);
  overflow: hidden;
  padding: 110px 0 90px;
  isolation: isolate;
}

.fb-expo__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://fabon.in/wp-content/uploads/2025/01/Delhi-768x576.jpeg");
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(35%) contrast(1.05);
  z-index: 0;
}

.fb-expo__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(20, 21, 24, 0.97) 0%,
      rgba(20, 21, 24, 0.9) 18%,
      rgba(20, 21, 24, 0.6) 48%,
      rgba(20, 21, 24, 0.88) 100%
    ),
    linear-gradient(
      100deg,
      rgba(20, 21, 24, 0.96) 0%,
      rgba(20, 21, 24, 0.75) 32%,
      rgba(20, 21, 24, 0.2) 62%,
      rgba(20, 21, 24, 0.55) 100%
    );
}

/* faint routed-line texture, evokes a floor plan / travel route */
.fb-expo__routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

.fb-expo__container {
  position: relative;
  z-index: 2;
}

/* ============ EYEBROW ============ */
.fb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb-mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fb-safety);
  margin-bottom: 22px;
}
.fb-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--fb-safety);
  display: inline-block;
}

/* ============ DISPLAY TITLE ============ */
.fb-expo__title {
  font-family: var(--fb-disp);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: var(--fb-white);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
}
.fb-expo__title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fb-expo__body {
  color: #c7cad1;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 34px;
  font-weight: 400;
}

/* ============ MILE MARKERS (stats) ============ */
.fb-milemarkers {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  max-width: 480px;
}
.fb-milemarkers .mm {
  flex: 1;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.fb-milemarkers .mm:last-child {
  border-right: none;
  /* padding-right: 0; */
}
.mm__num {
  font-family: var(--fb-disp);
  font-style: italic;
  font-weight: 700;
  color: var(--fb-white);
  font-size: 2rem;
  line-height: 1;
}
.mm__label {
  font-family: var(--fb-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fb-gray);
  margin-top: 6px;
  display: block;
}

/* ============ BADGE FIELD (signature element) ============ */
.fb-badgefield {
  position: relative;
  min-height: 560px;
}

.fb-badge {
  position: absolute;
  width: 190px;
  background: rgba(28, 30, 34, 0.78);
  backdrop-filter: blur(6px);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 14px 14px 12px;
  color: var(--fb-white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  transition:
    transform var(--fb-transition),
    border-color var(--fb-transition),
    background var(--fb-transition);
}

.fb-badge:hover {
  transform: translateY(-6px) rotate(0deg) !important;
  border-color: var(--fb-safety);
  background: rgba(28, 30, 34, 0.92);
  z-index: 30;
}

/* clip strip like a lanyard tag */
.fb-badge::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 16px;
  width: 26px;
  height: 14px;
  background: var(--fb-accent-grad);
  border-radius: 2px;
}

.fb-badge__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.fb-badge__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--fb-safety);
  font-size: 14px;
  flex: none;
}
.fb-badge__code {
  font-family: var(--fb-mono);
  font-size: 10px;
  color: var(--fb-gray);
  letter-spacing: 0.04em;
}
.fb-badge__name {
  font-family: var(--fb-disp);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.fb-badge__tag {
  margin-top: 8px;
  font-family: var(--fb-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fb-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fb-badge__tag i {
  font-size: 8px;
  color: var(--fb-red);
}

/* scattered placement — desktop */
.fb-badge:nth-child(1) {
  top: 0%;
  left: 4%;
  transform: rotate(-4deg);
}
.fb-badge:nth-child(2) {
  top: 4%;
  left: 40%;
  transform: rotate(3deg);
}
.fb-badge:nth-child(3) {
  top: 2%;
  left: 74%;
  transform: rotate(-2deg);
}
.fb-badge:nth-child(4) {
  top: 26%;
  left: 18%;
  transform: rotate(2deg);
}
.fb-badge:nth-child(5) {
  top: 30%;
  left: 56%;
  transform: rotate(-3deg);
}
.fb-badge:nth-child(6) {
  top: 52%;
  left: 2%;
  transform: rotate(3deg);
}
.fb-badge:nth-child(7) {
  top: 56%;
  left: 38%;
  transform: rotate(-2deg);
}
.fb-badge:nth-child(8) {
  top: 54%;
  left: 74%;
  transform: rotate(4deg);
}
.fb-badge:nth-child(9) {
  top: 80%;
  left: 20%;
  transform: rotate(-3deg);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .fb-badgefield {
    min-height: unset;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
  }
  .fb-badge {
    position: static !important;
    transform: none !important;
    width: calc(50% - 7px);
  }
}

@media (max-width: 575.98px) {
  .fb-expo {
    padding: 80px 0 60px;
  }
  .fb-badge {
    width: 100%;
  }
  .fb-milemarkers {
    flex-wrap: wrap;
    gap: 16px 0;
  }
  .fb-milemarkers .mm {
    flex: 0 0 50%;
    border-right: none;
    padding-right: 0;
  }
}

/* ===================== SECTION ===================== */
.fb-testi {
  position: relative;
  background: var(--fb-light);
  padding: 100px 0;
  overflow: hidden;
}

/* faint diagonal grid backdrop */
.fb-testi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(20, 21, 24, 0.035) 0 1px,
      transparent 1px 64px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(20, 21, 24, 0.035) 0 1px,
      transparent 1px 64px
    );
  pointer-events: none;
}
/* watermark quote mark */
.fb-testi-watermark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 280px;
  line-height: 1;
  color: rgba(20, 21, 24, 0.045);
  pointer-events: none;
  z-index: 0;
}

.fb-testi .container {
  position: relative;
  z-index: 1;
}

/* Prevent Owl Carousel from ever rendering wider than its column
     (root cause of the overlap bug — belt-and-braces alongside the JS fix) */
.fb-testi-main,
.fb-testi-thumbs {
  width: 100%;
  max-width: 100%;
}
.fb-testi-main .owl-stage-outer,
.fb-testi-thumbs .owl-stage-outer {
  width: 100% !important;
}

/* ===================== LEFT INTRO COLUMN ===================== */
.fb-testi-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fb-red);
  margin-bottom: 18px;
}
.fb-testi-eyebrow .fb-dash {
  width: 30px;
  height: 2px;
  background: var(--fb-accent-grad);
}

.fb-testi-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--fb-dark-2);
  margin-bottom: 22px;
}
.fb-testi-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-testi-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--fb-gray);
  margin-bottom: 34px;
  max-width: 380px;
}

/* Aggregate rating card */
.fb-rating-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--fb-white);
  border: 1px solid var(--fb-line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 36px;
  box-shadow: 0 10px 26px rgba(20, 21, 24, 0.06);
}
.fb-rating-score {
  font-size: 38px;
  font-weight: 800;
  color: var(--fb-dark-2);
  line-height: 1;
  flex-shrink: 0;
}
.fb-rating-score span {
  font-size: 16px;
  font-weight: 600;
  color: var(--fb-gray);
}
.fb-rating-stars {
  color: var(--fb-safety);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.fb-rating-note {
  font-family: var(--fb-mono);
  font-size: 11.5px;
  color: var(--fb-gray);
  letter-spacing: 0.3px;
}

/* Custom nav buttons */
.fb-testi-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fb-testi-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--fb-line);
  background: var(--fb-white);
  color: var(--fb-dark-2);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--fb-transition);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(20, 21, 24, 0.05);
}
.fb-testi-nav button:hover {
  background: var(--fb-accent-grad);
  border-color: transparent;
  color: var(--fb-white);
}

/* ===================== MAIN SLIDER ===================== */
/* NOTE: owl-stage-outer must stay overflow:hidden (Owl's default) —
     that's what clips the carousel to show only the active slide. */

.fb-testi-card {
  background: var(--fb-white);
  border: 1px solid var(--fb-line);
  border-radius: 18px;
  padding: 44px 40px;
  min-height: 290px;
  box-shadow: 0 20px 45px rgba(20, 21, 24, 0.07);
}
.fb-testi-quote-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}
.fb-testi-quote {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--fb-dark-2);
  margin-bottom: 30px;
}
.fb-testi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--fb-line);
}
.fb-testi-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fb-testi-person img {
  width: 52px !important;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fb-blue);
}
.fb-testi-person .fb-tp-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fb-dark-2);
}
.fb-testi-person .fb-tp-role {
  font-family: var(--fb-mono);
  font-size: 11.5px;
  color: var(--fb-gray);
  margin-top: 3px;
}
.fb-testi-star-row {
  color: var(--fb-safety);
  font-size: 13px;
  letter-spacing: 2px;
}

/* ===================== THUMBNAIL SYNC STRIP ===================== */

.fb-testi-thumbs {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.fb-thumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 8px;
  border-radius: 40px;
  border: 1px solid var(--fb-line);
  background: var(--fb-white);
  cursor: pointer;
  transition: var(--fb-transition);
  box-shadow: 0 6px 16px rgba(20, 21, 24, 0.05);
}
.fb-thumb-item img {
  width: 38px !important;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--fb-transition);
}
.fb-thumb-item .fb-thumb-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fb-gray);
  white-space: nowrap;
  transition: var(--fb-transition);
}
.fb-thumb-item.fb-thumb-active {
  border-color: transparent;
  background: var(--fb-accent-grad);
  box-shadow: 0 10px 22px rgba(212, 0, 0, 0.18);
}
.fb-thumb-item.fb-thumb-active img {
  filter: grayscale(0%);
  opacity: 1;
  border: 2px solid var(--fb-white);
}
.fb-thumb-item.fb-thumb-active .fb-thumb-name {
  color: var(--fb-white);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-testi {
    padding: 70px 0;
  }
  .fb-testi-title {
    font-size: 26px;
  }
  .fb-testi-desc {
    max-width: 100%;
  }
  .fb-rating-card {
    margin-bottom: 26px;
  }
  .fb-testi-main {
    margin-top: 40px;
  }
  .fb-testi-card {
    padding: 34px 26px;
  }
  .fb-testi-quote {
    font-size: 17px;
  }
}

@media (max-width: 575.98px) {
  .fb-testi-card {
    padding: 28px 20px;
    min-height: auto;
  }
  .fb-testi-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .fb-rating-card {
    flex-wrap: wrap;
  }
  .fb-testi-watermark {
    font-size: 180px;
    top: -20px;
  }
}

/* ===================== SECTION + BACKGROUND IMAGE ===================== */
.fb-faq {
  position: relative;
  padding: 110px 0;
  background-image: url("https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?w=1900&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* disabled on mobile below — see responsive block */
}
.fb-faq-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20, 21, 24, 0.94) 20%,
    rgba(20, 21, 24, 0.78) 60%,
    rgba(20, 21, 24, 0.6) 100%
  );
}
.fb-faq .container {
  position: relative;
  z-index: 1;
}

/* ===================== LEFT INTRO COLUMN ===================== */
.fb-faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fb-safety);
  margin-bottom: 18px;
}
.fb-faq-eyebrow .fb-dash {
  width: 30px;
  height: 2px;
  background: var(--fb-accent-grad);
}

.fb-faq-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.28;
  color: var(--fb-white);
  margin-bottom: 20px;
}
.fb-faq-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-faq-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 34px;
  max-width: 420px;
}

/* Support / contact card */
.fb-faq-support {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  max-width: 420px;
  margin-bottom: 26px;
}
.fb-faq-support-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.fb-faq-support .fb-fs-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.fb-faq-support .fb-fs-value {
  font-family: var(--fb-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--fb-white);
  margin-top: 3px;
}

.fb-faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fb-white);
  color: var(--fb-dark-2);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 30px;
  transition: var(--fb-transition);
}
.fb-faq-cta:hover {
  background: var(--fb-accent-grad);
  color: var(--fb-white);
}

/* ===================== ACCORDION (RIGHT COLUMN) ===================== */
.fb-faq-item {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: var(--fb-transition);
}
.fb-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.fb-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  cursor: pointer;
}
.fb-faq-num {
  font-family: var(--fb-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--fb-safety);
  flex-shrink: 0;
  width: 26px;
}
.fb-faq-question {
  flex-grow: 1;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--fb-white);
}
.fb-faq-toggle .fb-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--fb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: var(--fb-transition);
}
.fb-faq-toggle[aria-expanded="true"] .fb-faq-icon {
  background: var(--fb-accent-grad);
  border-color: transparent;
  transform: rotate(45deg);
}
.fb-faq-toggle[aria-expanded="true"] .fb-faq-question {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-faq-body {
  padding: 0 22px 22px 66px;
}
.fb-faq-body p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-faq {
    padding: 80px 0;
    background-attachment: scroll;
  }
  .fb-faq-title {
    font-size: 27px;
  }
  .fb-faq-desc {
    max-width: 100%;
  }
  .fb-faq-support,
  .fb-faq-cta {
    max-width: 100%;
  }
  .fb-faq-item {
    margin-top: 0;
  }
}

@media (max-width: 575.98px) {
  .fb-faq {
    padding: 60px 0;
    background-attachment: scroll;
  }
  .fb-faq-title {
    font-size: 22px;
  }
  .fb-faq-support {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .fb-faq-body {
    padding-left: 22px;
  }
  .fb-faq-question {
    font-size: 14px;
  }
}

/* ===================== SECTION ===================== */
.fb-cta {
  background: linear-gradient(90deg, #2f5cef40 0%, #d400001a 150%);
  padding: 50px 0;
}

/* Shell holding the map + floating card, clipped to rounded corners */
.fb-cta-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(20, 21, 24, 0.12);
  min-height: 640px;
}

.fb-cta-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(28%) contrast(1.05);
}

/* Soft light wash so the floating card stays readable against the map */
.fb-cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(246, 247, 251, 0.98) 0%,
    rgba(246, 247, 251, 0.94) 42%,
    rgba(246, 247, 251, 0.2) 62%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 1;
}

/* ===================== FLOATING INFO CARD ===================== */
.fb-cta-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 50px 46px;
}

.fb-cta-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fb-red);
  margin-bottom: 16px;
}
.fb-cta-eyebrow .fb-dash {
  width: 30px;
  height: 2px;
  background: var(--fb-accent-grad);
}

.fb-cta-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--fb-dark-2);
  margin-bottom: 16px;
}
.fb-cta-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-cta-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--fb-gray);
  margin-bottom: 28px;
}
.fb-cta-address i {
  color: var(--fb-red);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}
.fb-cta-directions-link {
  color: var(--fb-blue);
  font-weight: 700;
  white-space: nowrap;
}
.fb-cta-directions-link:hover {
  color: var(--fb-red);
}

.fb-cta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--fb-line);
}
.fb-cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fb-cta-info-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--fb-white);
  border: 1px solid var(--fb-line);
  color: var(--fb-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.fb-cta-info-text .fb-ci-value {
  font-family: var(--fb-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fb-dark-2);
}

/* ===================== FORM ===================== */
.fb-cta-form-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fb-gray);
  margin-bottom: 7px;
}
.fb-cta-form .form-control,
.fb-cta-form .form-select {
  width: 100%;
  background: var(--fb-white);
  border: 1px solid var(--fb-line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: "Poppins", sans-serif;
  color: var(--fb-dark-2);
  transition: var(--fb-transition);
}
.fb-cta-form .form-control::placeholder {
  color: #b7bcc4;
}
.fb-cta-form .form-control:focus,
.fb-cta-form .form-select:focus {
  outline: none;
  border-color: var(--fb-red);
  box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.08);
}
.fb-cta-form textarea.form-control {
  resize: vertical;
  min-height: 90px;
}
.fb-cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.fb-cta-form-group {
  margin-bottom: 16px;
}

.fb-cta-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--fb-transition);
  box-shadow: 0 14px 30px rgba(212, 0, 0, 0.2);
}
.fb-cta-submit:hover {
  filter: brightness(1.08);
}

/* ===================== PULSING LOCATION MARKER ON THE MAP ===================== */
.fb-cta-marker {
  position: absolute;
  top: 46%;
  left: 68%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 26px;
  height: 26px;
}
.fb-cta-marker-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--fb-accent-grad);
  border: 3px solid var(--fb-white);
  box-shadow: 0 6px 16px rgba(20, 21, 24, 0.25);
}
.fb-cta-marker-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--fb-red);
  opacity: 0.55;
  animation: fbPulse 2.2s ease-out infinite;
}
@keyframes fbPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(3.4);
    opacity: 0;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-cta {
    padding: 70px 0;
  }
  .fb-cta-shell {
    min-height: auto;
    border-radius: 18px;
  }
  .fb-cta-shell::before {
    background: linear-gradient(
      180deg,
      rgba(246, 247, 251, 0.98) 0%,
      rgba(246, 247, 251, 0.98) 62%,
      transparent 100%
    );
  }
  .fb-cta-card {
    max-width: 100%;
    padding: 40px 26px 34px;
  }
  .fb-cta-map {
    position: relative;
    height: 320px;
  }
  .fb-cta-shell {
    display: flex;
    flex-direction: column;
  }
  .fb-cta-marker {
    display: none;
  }
  .fb-cta-title {
    font-size: 25px;
  }
}

@media (max-width: 575.98px) {
  .fb-cta-card {
    padding: 30px 20px 26px;
  }
  .fb-cta-title {
    font-size: 21px;
  }
  .fb-cta-form-row {
    grid-template-columns: 1fr;
  }
}

/* ===================== SECTION ===================== */
.fb-blog {
  background: var(--fb-light);
  padding: 100px 0;
}

.fb-blog-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fb-red);
  margin-bottom: 16px;
}
.fb-blog-eyebrow .fb-dash {
  width: 30px;
  height: 2px;
  background: var(--fb-accent-grad);
}

.fb-blog-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--fb-dark-2);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 14px;
}
.fb-blog-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-blog-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--fb-gray);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

/* ===================== CARD ===================== */
.fb-blog-card {
  background: var(--fb-white);
  border: 1px solid var(--fb-line);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--fb-transition);
}
.fb-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(20, 21, 24, 0.1);
  border-color: transparent;
}

.fb-blog-media {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.fb-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--fb-transition);
}
.fb-blog-card:hover .fb-blog-media img {
  transform: scale(1.08);
}

.fb-blog-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
}

.fb-blog-date {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--fb-white);
  border-radius: 10px;
  width: 52px;
  height: 52px;
  box-shadow: 0 10px 22px rgba(20, 21, 24, 0.15);
}
.fb-blog-date .fb-bd-day {
  font-size: 17px;
  font-weight: 800;
  color: var(--fb-dark-2);
  line-height: 1;
}
.fb-blog-date .fb-bd-mon {
  font-family: var(--fb-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--fb-red);
  margin-top: 3px;
}

.fb-blog-body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fb-blog-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  color: var(--fb-gray);
  margin-bottom: 14px;
}
.fb-blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fb-blog-meta i {
  color: var(--fb-blue);
  font-size: 11px;
}

.fb-blog-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--fb-dark-2);
  margin-bottom: 14px;
  transition: var(--fb-transition);
}
.fb-blog-card:hover .fb-blog-heading {
  color: var(--fb-red);
}

.fb-blog-excerpt {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--fb-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.fb-blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fb-dark-2);
  padding-top: 16px;
  border-top: 1px solid var(--fb-line);
}
.fb-blog-readmore i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--fb-light);
  color: var(--fb-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: var(--fb-transition);
}
.fb-blog-card:hover .fb-blog-readmore i {
  background: var(--fb-accent-grad);
  color: var(--fb-white);
  transform: translateX(4px);
}

/* ===================== VIEW MORE BUTTON ===================== */
.fb-blog-more-wrap {
  text-align: center;
  margin-top: 50px;
}
.fb-blog-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--fb-white);
  border: 1px solid var(--fb-line);
  color: var(--fb-dark-2);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 30px;
  transition: var(--fb-transition);
}
.fb-blog-more-btn:hover {
  background: var(--fb-accent-grad);
  border-color: transparent;
  color: var(--fb-white);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-blog {
    padding: 70px 0;
  }
  .fb-blog-title {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  .fb-blog-title {
    font-size: 22px;
  }
  .fb-blog-media {
    height: 200px;
  }
  .fb-blog-meta {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* ===================== SECTION ===================== */
.fb-gallery {
  background: var(--fb-light);
  padding: 100px 0;
}

.fb-gallery-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fb-red);
  margin-bottom: 16px;
}
.fb-gallery-eyebrow .fb-dash {
  width: 30px;
  height: 2px;
  background: var(--fb-accent-grad);
}

.fb-gallery-title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--fb-dark-2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 14px;
}
.fb-gallery-title span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fb-gallery-desc {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--fb-gray);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 50px;
}

/* ===================== CAROUSEL ===================== */
.fb-gallery-track .owl-stage-outer {
  overflow: hidden;
  padding: 6px 0; /* room for the hover lift shadow without clipping it */
}

.fb-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 21, 24, 0.06);
  transition: var(--fb-transition);
}
.fb-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(20, 21, 24, 0.14);
}
.fb-gallery-item img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: var(--fb-transition);
}
.fb-gallery-item:hover img {
  transform: scale(1.08);
}

.fb-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(20, 21, 24, 0.75) 0%,
    rgba(20, 21, 24, 0) 55%
  );
  opacity: 0;
  transition: var(--fb-transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.fb-gallery-item:hover .fb-gallery-overlay {
  opacity: 1;
}

.fb-gallery-caption {
  color: var(--fb-white);
  font-size: 13px;
  font-weight: 600;
}
.fb-gallery-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fb-white);
  color: var(--fb-dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--fb-transition);
}
.fb-gallery-item:hover .fb-gallery-zoom {
  opacity: 1;
  transform: scale(1);
  background: var(--fb-accent-grad);
  color: var(--fb-white);
}

/* ===================== CUSTOM NAV ===================== */
.fb-gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}
.fb-gallery-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--fb-line);
  background: var(--fb-white);
  color: var(--fb-dark-2);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--fb-transition);
}
.fb-gallery-nav button:hover {
  background: var(--fb-accent-grad);
  border-color: transparent;
  color: var(--fb-white);
}

/* ===================== LIGHTBOX ===================== */
.fb-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.96);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.fb-lightbox.fb-lightbox-open {
  display: flex;
}

.fb-lightbox-stage {
  position: relative;
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
.fb-lightbox-stage img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.fb-lightbox-caption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  margin-top: 18px;
}
.fb-lightbox-counter {
  font-family: var(--fb-mono);
  color: var(--fb-safety);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.5px;
}

.fb-lightbox-close {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--fb-white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--fb-transition);
}
.fb-lightbox-close:hover {
  background: var(--fb-accent-grad);
  border-color: transparent;
}

.fb-lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--fb-white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--fb-transition);
}
.fb-lightbox-arrow:hover {
  background: var(--fb-accent-grad);
  border-color: transparent;
}
.fb-lightbox-prev {
  left: 26px;
}
.fb-lightbox-next {
  right: 26px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991.98px) {
  .fb-gallery {
    padding: 70px 0;
  }
  .fb-gallery-title {
    font-size: 26px;
  }
  .fb-gallery-item img {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .fb-gallery-title {
    font-size: 22px;
  }
  .fb-lightbox {
    padding: 16px;
  }
  .fb-lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }
  .fb-lightbox-prev {
    left: 10px;
  }
  .fb-lightbox-next {
    right: 10px;
  }
  .fb-lightbox-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}

/* ===================== FOOTER WRAPPER ===================== */
.fb-footer {
  position: relative;
  background: var(--fb-dark-2);
  overflow: hidden;
}
/* Caution-stripe rail along the very top edge — the same closing
     device used on the nameplate, goal plate and shutter bar, here
     marking the boundary between the page and its base plate. */
.fb-footer-rail {
  height: 5px;
  background: repeating-linear-gradient(
    135deg,
    var(--fb-safety) 0 10px,
    var(--fb-dark-2) 10px 20px
  );
}
/* Faint blueprint grid, consistent with the stats section */
.fb-footer-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(
    ellipse 75% 60% at 15% 20%,
    #000 30%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 75% 60% at 15% 20%,
    #000 30%,
    transparent 100%
  );
  pointer-events: none;
}

.fb-footer-main {
  position: relative;
  z-index: 2;
  padding: 80px 0 50px;
}

/* ===================== BRAND COLUMN ===================== */
.fb-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--fb-white);
  margin-bottom: 18px;
}
.fb-footer-logo span {
  background: var(--fb-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fb-footer-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--fb-accent-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb-white);
  font-size: 14px;
  flex-shrink: 0;
}
.fb-footer-about {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--fb-gray);
  max-width: 300px;
  margin-bottom: 26px;
}
.fb-footer-social {
  display: flex;
  gap: 10px;
}
.fb-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb-white);
  font-size: 13px;
  transition:
    background var(--fb-transition),
    border-color var(--fb-transition),
    transform var(--fb-transition);
}
.fb-footer-social a:hover {
  background: var(--fb-accent-grad);
  border-color: transparent;
  transform: translateY(-2px);
}

/* ===================== LINK COLUMNS ===================== */
.fb-footer-label {
  display: block;
  font-family: var(--fb-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fb-safety);
  margin-bottom: 22px;
}
.fb-footer-links li {
  margin-bottom: 13px;
}
.fb-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  transition:
    color var(--fb-transition),
    gap var(--fb-transition);
}
.fb-footer-links a i {
  font-size: 9px;
  color: var(--fb-red);
  transition: transform var(--fb-transition);
}
.fb-footer-links a:hover {
  color: var(--fb-white);
  gap: 13px;
}
.fb-footer-links a:hover i {
  transform: translateX(2px);
}

/* ===================== CONTACT SPEC (reused pattern) ===================== */
.fb-footer-spec-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.fb-footer-spec-row:last-child {
  margin-bottom: 0;
}
.fb-footer-spec-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.fb-footer-spec-label i {
  width: 12px;
  font-size: 11px;
  color: var(--fb-blue);
}
.fb-footer-spec-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.16);
  margin-bottom: 3px;
  min-width: 8px;
}
.fb-footer-spec-value {
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color var(--fb-transition);
}
a.fb-footer-spec-value:hover {
  color: var(--fb-safety);
}

/* ===================== BOTTOM BAR ===================== */
.fb-footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}
.fb-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 0;
}
.fb-footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}
.fb-footer-copy a {
  color: var(--fb-white);
  font-weight: 600;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}
.fb-footer-copy a:hover {
  color: var(--fb-safety);
  border-color: var(--fb-safety);
}

.fb-footer-totop {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px dashed var(--fb-safety);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fb-safety);
  font-size: 13px;
  flex-shrink: 0;
  transition:
    background var(--fb-transition),
    color var(--fb-transition);
}
.fb-footer-totop:hover {
  background: var(--fb-safety);
  color: var(--fb-dark-2);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 767.98px) {
  .fb-footer-main {
    padding: 60px 0 40px;
  }
  .fb-footer-main .row > div {
    margin-bottom: 38px;
  }
  .fb-footer-main .row > div:last-child {
    margin-bottom: 0;
  }
  .fb-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================================================================
     GLOBAL FLOATING UTILITY BUTTONS 
     =================================================================== */

.fb-float-wa,
.fb-float-totop {
  position: fixed;
  bottom: 26px;
  z-index: 999;
}
.fb-float-wa {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fb-float-totop {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.fb-float-totop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------------- WHATSAPP : LEFT ---------------- */
/* A hanging inspection/service tag instead of a plain chat bubble —
     punched hole + strap at the top, mono ID code, dashed edge like a
     tear-off tag, and a decorative barcode strip along the bottom.
     The whole thing sways gently like it's clipped to something,
     and settles the moment you hover so it's easy to click. */
.fb-float-wa {
  left: 26px;
  transform-origin: 50% -8px;
  animation: fbTagSway 4.6s ease-in-out infinite;
}
.fb-float-wa:hover {
  animation-play-state: paused;
}

@keyframes fbTagSway {
  0%,
  100% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
}

.fb-wa-tag {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 216px;
  background: var(--fb-white);
  border: 1.5px dashed var(--fb-line);
  border-radius: 10px;
  padding: 16px 16px 22px 14px;
  box-shadow: 0 16px 32px rgba(20, 21, 24, 0.18);
  text-decoration: none;
  transition:
    box-shadow var(--fb-transition),
    border-color var(--fb-transition),
    transform var(--fb-transition);
}
.fb-wa-tag:hover {
  border-color: var(--fb-whatsapp);
  box-shadow: 0 20px 40px rgba(20, 21, 24, 0.24);
  transform: translateY(-2px);
}

.fb-wa-tag-strap {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 11px;
  border: 2px solid var(--fb-line);
  border-bottom: none;
  border-radius: 9px 9px 0 0;
}
.fb-wa-tag-hole {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fb-light);
  border: 1.5px solid var(--fb-gray);
  z-index: 2;
}
.fb-wa-tag-id {
  position: absolute;
  top: 9px;
  right: 12px;
  font-family: var(--fb-mono);
  font-size: 8.5px;
  letter-spacing: 0.5px;
  color: var(--fb-red);
  opacity: 0.85;
}
.fb-wa-tag-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(37, 211, 101, 0.555);
  color: var(--fb-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  flex-shrink: 0;
}
.fb-wa-tag-text {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--fb-dark);
  line-height: 1.4;
}
.fb-wa-tag-text small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--fb-gray);
  margin-top: 2px;
}
.fb-wa-tag-barcode {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 8px;
  opacity: 0.4;
  background: repeating-linear-gradient(
    90deg,
    var(--fb-dark) 0 1px,
    transparent 1px 3px,
    var(--fb-dark) 3px 4px,
    transparent 4px 6px,
    var(--fb-dark) 6px 7px,
    transparent 7px 8px,
    var(--fb-dark) 8px 10px,
    transparent 10px 13px
  );
}

/* ---------------- GO TO TOP : RIGHT ---------------- */
.fb-float-totop {
  right: 26px;
}
.fb-totop {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fb-totop-svg {
  position: absolute;
  inset: 0;
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
}
.fb-totop-track {
  fill: var(--fb-dark-2);
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.5;
  stroke-dasharray: 1.5 5.2;
}
.fb-totop-fill {
  fill: none;
  stroke: url(#fbTotopGrad);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  transition: stroke-dashoffset 0.1s linear;
}
.fb-totop-core {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--fb-white);
  line-height: 1;
}
.fb-totop-core i {
  font-size: 14px;
  margin-bottom: 3px;
  transition: transform var(--fb-transition);
}
.fb-totop:hover .fb-totop-core i {
  transform: translateY(-2px);
}
.fb-totop-pct {
  font-family: var(--fb-mono);
  font-size: 8.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
}

@media (max-width: 575.98px) {
  .fb-float-wa {
    left: 16px;
    bottom: 16px;
  }
  .fb-float-totop {
    right: 16px;
    bottom: 16px;
  }
  .fb-wa-tag {
    width: auto;
    padding: 12px 14px 12px 12px;
  }
  .fb-wa-tag-text small {
    display: none;
  }
  .fb-wa-tag-barcode {
    display: none;
  }
  .fb-wa-tag-id {
    display: none;
  }
}
