/* ===================================================
   KAIBEX ELEVATORS - HEADER SECTION
   Colors picked from logo: black / charcoal / silver + US-flag red accent
   =================================================== */
:root {
  --kbx-black: #101012;
  --kbx-charcoal: #1e1e21;
  --kbx-card: #19191c;
  --kbx-silver: #8a8d93;
  --kbx-silver-light: #e4e5e8;
  --kbx-white: #ffffff;
  --kbx-red: #7e1724;
  --kbx-red-dark: #7e1724;
  --kbx-lime: #7e1724;
  --kbx-gold: #e3a53a;

  --crimson:   #8b1a2e;
  --crimson-d: #6b1223;
  --navy:      #162740;
  --gold:      #c9a84c;
  --gold-l:    #e8cc7a;
  --kbx-font-heading: "Oswald", sans-serif;
  --kbx-font-body: "Inter", sans-serif;
}

body {
  margin: 0;
  font-family: var(--kbx-font-body);
}

/* ---------- Header shell ---------- */
.kbx-header {
  background: #ffffff2f;
  /* border-bottom:1px solid #ececec; */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

.kbx-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ---------- Logo ---------- */
.kbx-logo {
  display: inline-flex;
  align-items: center;
}

.kbx-logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* ---------- Nav ---------- */
.kbx-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.kbx-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.kbx-menu__item {
  position: relative;
}

.kbx-menu__item > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-family: var(--kbx-font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.kbx-menu__item > a i {
  font-size: 10px;
  color: #fff;
  transition: transform 0.2s ease;
}

.kbx-menu__item:hover > a,
.kbx-menu__item.kbx-open > a {
  color: var(--kbx-red);
  border-bottom-color: var(--kbx-red);
}

.kbx-menu__item:hover > a i {
  color: var(--kbx-red);
}

/* ---------- Level 1 dropdown ---------- */
.kbx-dropdown {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--kbx-white);
  border-top: 2px solid var(--kbx-red);
  box-shadow: 0 12px 28px rgba(16, 16, 18, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.kbx-menu__item.kbx-has-dropdown:hover > .kbx-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.kbx-dropdown__item {
  position: relative;
}

.kbx-dropdown__item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--kbx-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--kbx-charcoal);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.kbx-dropdown__item > a i {
  font-size: 11px;
  color: var(--kbx-silver);
}

.kbx-dropdown__item:hover > a {
  background: #f7f7f8;
  color: var(--kbx-red);
}

/* ---------- Level 2 (multilevel flyout) ---------- */
.kbx-submenu {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 230px;
  background: var(--kbx-white);
  border-top: 2px solid var(--kbx-red);
  box-shadow: 0 12px 28px rgba(16, 16, 18, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.kbx-dropdown__item.kbx-has-submenu:hover > .kbx-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.kbx-submenu li a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  color: var(--kbx-charcoal);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.kbx-submenu li a:hover {
  background: #f7f7f8;
  color: var(--kbx-red);
}

/* ---------- Right actions ---------- */
/* two copies exist: one lives permanently inside the mobile slide panel,
   one sits in the desktop bar. Only one is shown at a time. */
.kbx-nav > .kbx-actions {
  display: none;
}

.kbx-actions--desktop {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.kbx-actions__call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.kbx-actions__call i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--kbx-silver-light);
  color: var(--kbx-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.kbx-actions__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--kbx-black);
  color: var(--kbx-white);
  font-family: var(--kbx-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.kbx-actions__cta:hover {
  background: var(--kbx-red);
  color: var(--kbx-white);
}

.kbx-actions__cta i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.kbx-actions__cta:hover i {
  transform: translateX(3px);
}

/* ---------- Mobile toggle button ---------- */
.kbx-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e2e4;
  border-radius: 8px;
  background: var(--kbx-white);
  color: var(--kbx-black);
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Overlay for mobile nav ---------- */
.kbx-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 16, 18, 0.45);
  z-index: 1000;
}

.kbx-overlay.kbx-overlay--show {
  display: block;
}

/* ===========================
   RESPONSIVE (below 992px)
   Rule: only logo + hamburger visible in bar,
   everything else moves into the slide-in panel
   =========================== */
@media (max-width: 991.98px) {
  .kbx-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    max-width: 82%;
    background: var(--kbx-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 0 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
  }

  .kbx-nav.kbx-nav--open {
    right: 0;
  }

  .kbx-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .kbx-menu__item > a {
    padding: 14px 24px;
    border-bottom: 1px solid #f0f0f0;
  }

  .kbx-menu__item > a i {
    margin-left: auto;
  }

  /* dropdowns become accordions on mobile */
  .kbx-dropdown,
  .kbx-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--kbx-red);
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.25s ease;
  }

  .kbx-menu__item.kbx-open > .kbx-dropdown,
  .kbx-dropdown__item.kbx-open > .kbx-submenu {
    max-height: 600px;
    padding: 6px 0;
  }

  .kbx-dropdown__item > a {
    padding: 10px 24px 10px 32px;
  }

  .kbx-submenu li a {
    padding: 9px 24px 9px 44px;
  }

  /* mobile-only actions block placed inside the slide panel */
  .kbx-nav > .kbx-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 24px 0;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
  }

  .kbx-actions--desktop {
    display: none;
  }

  .kbx-actions__cta {
    width: 100%;
    justify-content: center;
  }

  .kbx-toggle {
    display: flex;
  }

  .kbx-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f2f2f3;
    color: var(--kbx-black);
    font-size: 14px;
    cursor: pointer;
  }
}

@media (min-width: 992px) {
  .kbx-close {
    display: none;
  }
}

.kbx-noscroll {
  overflow: hidden;
}

/* ===================================================
   HERO SLIDER SECTION (copy from here)
   Height is never hardcoded - it is measured from each
   slide's own image and animated when the slide changes.
   =================================================== */
.kbx-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--kbx-black);
  transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.kbx-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.kbx-hero__slide.kbx-hero__slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* the image drives the natural height of the whole component */
.kbx-hero__img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.06);
  transition: transform 6s ease;
}

.kbx-hero__slide--active .kbx-hero__img {
  transform: scale(1);
}

.kbx-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 16, 18, 0.82) 0%,
    rgba(16, 16, 18, 0.55) 45%,
    rgba(16, 16, 18, 0.15) 100%
  );
}

.kbx-hero__content {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: 40px 5%;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease 0.25s,
    transform 0.6s ease 0.25s;
}

.kbx-hero__slide--active .kbx-hero__content {
  opacity: 1;
  transform: translateY(0);
}

.kbx-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  background: var(--kbx-red);
  color: var(--kbx-white);
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  margin: 0 0 18px;
}

.kbx-hero__title {
  font-family: var(--kbx-font-heading);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--kbx-white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 16px;
}

.kbx-hero__text {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--kbx-silver-light);
  margin: 0 0 28px;
  max-width: 460px;
}

.kbx-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: var(--kbx-white);
  color: var(--kbx-black);
  font-family: var(--kbx-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 30px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.kbx-hero__cta:hover {
  background: var(--kbx-red);
  color: var(--kbx-white);
  transform: translateX(2px);
}

/* ---------- arrows ---------- */
.kbx-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(16, 16, 18, 0.35);
  color: var(--kbx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.kbx-hero__arrow:hover {
  background: var(--kbx-red);
  border-color: var(--kbx-red);
}

.kbx-hero__arrow--prev {
  left: 24px;
}

.kbx-hero__arrow--next {
  right: 24px;
}

/* ---------- dots ---------- */
.kbx-hero__dots {
  position: absolute;
  left: 5%;
  bottom: 26px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.kbx-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.kbx-hero__dot.kbx-hero__dot--active {
  background: var(--kbx-red);
  transform: scale(1.25);
}

/* ---------- progress bar (shows autoplay timing) ---------- */
.kbx-hero__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0%;
  background: var(--kbx-red);
  z-index: 5;
  transition: width linear;
}

@media (max-width: 767.98px) {
  .kbx-hero__content {
    max-width: 100%;
    padding: 30px 6%;
  }

  .kbx-hero__arrow {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .kbx-hero__arrow--prev {
    left: 12px;
  }

  .kbx-hero__arrow--next {
    right: 12px;
  }
}

@media (max-width: 767.98px) {
  /* floor height so short landscape images don't crush the overlaid text */
  .kbx-hero {
    min-height: 520px;
  }

  /* let the image fill that floor instead of leaving blank space below it */
  .kbx-hero__slide.kbx-hero__slide--active {
    height: 100%;
  }
  .kbx-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .kbx-hero__content {
    justify-content: flex-start;
    max-width: 100%;
    padding: 70px 7% 90px;
  }
  .kbx-hero__eyebrow {
    font-size: 11.5px;
    padding: 6px 12px;
    margin-bottom: 14px;
  }
  .kbx-hero__title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 12px;
  }
  .kbx-hero__text {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .kbx-hero__cta {
    padding: 12px 22px;
    font-size: 13px;
  }

  .kbx-hero__arrow {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .kbx-hero__arrow--prev {
    left: 12px;
  }
  .kbx-hero__arrow--next {
    right: 12px;
  }

  .kbx-hero__dots {
    left: 7%;
    bottom: 18px;
  }
}

@media (max-width: 575.98px) {
  /* narrower width wraps the title onto more lines, needs extra room */
  .kbx-hero {
    min-height: 500px;
  }
  .kbx-hero__content {
    padding-top: 64px;
    top: 20%;
  }
  .kbx-hero__title {
    font-size: clamp(22px, 8vw, 28px);
  }
}

/* HERO SLIDER SECTION (copy till here) */

/* ===================================================
   ABOUT US SECTION (copy from here)
   =================================================== */
.kbx-about {
  background: var(--kbx-black);
  padding: 100px 0;
}

/* ---------- subtitle pill ---------- */
.kbx-about__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kbx-charcoal);
  color: var(--kbx-silver-light);
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 20px;
}

.kbx-about__subtitle i {
  color: var(--kbx-lime);
  font-size: 11px;
}

/* ---------- title ---------- */
.kbx-about__title {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  color: var(--kbx-white);
  letter-spacing: 0.2px;
  margin: 0 0 34px;
}

/* ---------- image + review badge ---------- */
.kbx-about__imgwrap {
  position: relative;
}

.kbx-about__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.kbx-about__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 16, 18, 0.72);
  backdrop-filter: blur(6px);
  border-radius: 40px;
  padding: 10px 18px 10px 10px;
  max-width: calc(100% - 44px);
}

.kbx-about__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.kbx-about__avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--kbx-charcoal);
  border: 2px solid var(--kbx-black);
  color: var(--kbx-silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: -10px;
}

.kbx-about__avatars span:first-child {
  margin-left: 0;
}

.kbx-about__avatars-plus {
  background: var(--kbx-lime) !important;
  color: var(--kbx-black) !important;
}

.kbx-about__badge-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--kbx-white);
}

/* ---------- right column ---------- */
.kbx-about__desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--kbx-silver-light);
  margin: 0 0 30px;
}

.kbx-about__list-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

.kbx-about__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kbx-about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--kbx-white);
  margin-bottom: 16px;
}

.kbx-about__list li:last-child {
  margin-bottom: 0;
}

.kbx-about__list li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--kbx-lime);
  color: var(--kbx-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ---------- rotating circle text button ---------- */
.kbx-circle {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.kbx-circle__text {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--kbx-lime);
  animation: kbxSpin 14s linear infinite;
}

.kbx-circle__text img {
  position: absolute;
  top: 3%;
  left: 2%;
  font-family: var(--kbx-font-heading);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--kbx-black);
  transform-origin: 0 0;
}

.kbx-circle__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--kbx-black);
  color: var(--kbx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.kbx-circle__icon:hover {
  background: var(--kbx-white);
  color: var(--kbx-black);
}

@keyframes kbxSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ---------- stat cards ---------- */
.kbx-about__stats-row {
  --bs-gutter-x: 30px;
}

.kbx-stat {
  background: var(--kbx-card);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
}

.kbx-stat__number {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--kbx-font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--kbx-white);
  line-height: 1;
  margin-bottom: 40px;
}

.kbx-stat__number .kbx-stat__plus {
  font-size: 24px;
  font-weight: 600;
  color: var(--kbx-lime);
  margin-bottom: 6px;
}

.kbx-stat__title {
  font-family: var(--kbx-font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--kbx-white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 10px;
}

.kbx-stat__desc {
  display: block;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--kbx-silver);
}

@media (max-width: 991.98px) {
  .kbx-about {
    padding: 70px 0;
  }

  .kbx-about__title {
    margin-bottom: 26px;
  }

  .kbx-about__imgwrap {
    margin-bottom: 40px;
  }
}

@media (max-width: 575.98px) {
  .kbx-about__list-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .kbx-circle {
    align-self: center;
    margin-top: 10px;
  }
}

/* ABOUT US SECTION (copy till here) */

/* ===================================================
   PRODUCT LISTING SECTION (copy from here)
   =================================================== */
.kbx-products {
  background: #f7f7f8;
  padding: 100px 0;
  overflow: hidden;
}

/* ---------- section heading ---------- */
.kbx-products__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
}
.kbx-products__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kbx-white);
  border: 1px solid #e7e7ea;
  color: var(--kbx-red);
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}
.kbx-products__title {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.2;
  color: var(--kbx-black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 14px;
}
.kbx-products__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6a6c72;
  margin: 0;
}

/* ---------- filter tabs ---------- */
.kbx-tabs {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  background: var(--kbx-white);
  border: 1px solid #e7e7ea;
  border-radius: 40px;
  padding: 6px;
  margin: 36px auto 50px;
}
.kbx-tabs__pill {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background: var(--kbx-black);
  border-radius: 30px;
  transition:
    left 0.35s cubic-bezier(0.65, 0, 0.35, 1),
    width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 1;
}
.kbx-tab {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  font-family: var(--kbx-font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--kbx-black);
  padding: 11px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.kbx-tab.kbx-tab--active {
  color: var(--kbx-white);
}

@media (max-width: 575.98px) {
  .kbx-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    max-width: 100%;
    margin: 28px auto 40px;
    padding: 5px;
  }

  .kbx-tabs::-webkit-scrollbar {
    display: none;
  }

  .kbx-tab {
    font-size: 12px;
    padding: 9px 16px;
    flex-shrink: 0;
  }
}

/* ---------- grid ---------- */
.kbx-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ---------- card ---------- */
.kbx-card {
  position: relative;
  background: var(--kbx-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(16, 16, 18, 0.06);
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.35s ease;
  will-change: transform;
}
.kbx-card.kbx-card--inview {
  opacity: 1;
  transform: translateY(0);
}
.kbx-card.kbx-card--hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}
.kbx-card:hover {
  box-shadow: 0 22px 40px rgba(16, 16, 18, 0.14);
}

.kbx-card__imgwrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3.1;
}
.kbx-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.kbx-card:hover .kbx-card__img {
  transform: scale(1.1) rotate(0.3deg);
}

.kbx-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 16, 18, 0) 40%,
    rgba(16, 16, 18, 0.75) 100%
  );
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.kbx-card:hover .kbx-card__overlay {
  opacity: 0.9;
}

.kbx-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(16, 16, 18, 0.55);
  backdrop-filter: blur(4px);
  color: var(--kbx-white);
  font-family: var(--kbx-font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}

.kbx-card__quick {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kbx-white);
  color: var(--kbx-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: translateY(-8px) scale(0.8);
  transition:
    opacity 0.3s ease 0.05s,
    transform 0.3s ease 0.05s;
  text-decoration: none;
}
.kbx-card:hover .kbx-card__quick {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.kbx-card__quick:hover {
  background: var(--kbx-red);
  color: var(--kbx-white);
}

.kbx-card__body {
  position: relative;
  padding: 22px 22px 24px;
}
.kbx-card__index {
  position: absolute;
  top: -46px;
  right: 16px;
  font-family: var(--kbx-font-heading);
  font-size: 64px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px #e6e6e8;
  line-height: 1;
  z-index: 1;
  transition:
    transform 0.4s ease,
    -webkit-text-stroke-color 0.4s ease;
}
.kbx-card:hover .kbx-card__index {
  -webkit-text-stroke-color: var(--kbx-red);
  transform: translateY(-4px);
}

.kbx-card__title {
  position: relative;
  z-index: 2;
  font-family: var(--kbx-font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--kbx-black);
  margin: 0 0 8px;
}
.kbx-card__desc {
  position: relative;
  z-index: 2;
  font-size: 13.8px;
  line-height: 1.6;
  color: #75767b;
  margin: 0 0 18px;
}
.kbx-card__link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--kbx-font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--kbx-black);
  text-decoration: none;
}
.kbx-card__link i {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.kbx-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--kbx-red);
  transition: width 0.3s ease;
}
.kbx-card:hover .kbx-card__link {
  color: var(--kbx-red);
}
.kbx-card:hover .kbx-card__link::after {
  width: 100%;
}
.kbx-card:hover .kbx-card__link i {
  transform: translateX(4px);
}

/* ---------- responsive grid ---------- */
@media (max-width: 991.98px) {
  .kbx-products {
    padding: 70px 0;
  }
  .kbx-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}
@media (max-width: 575.98px) {
  .kbx-products__grid {
    grid-template-columns: 1fr;
  }
  .kbx-tabs {
    padding: 5px;
    gap: 2px;
  }
  .kbx-tab {
    padding: 9px 14px;
    font-size: 11.5px;
  }
}
/* PRODUCT LISTING SECTION (copy till here) */

/* ===================================================
   WHY CHOOSE US SECTION (copy from here)
   =================================================== */
.kbx-why {
  background: var(--kbx-black);
  padding: 100px 0;
}

.kbx-why__head {
  /* max-width: 600px; */
  margin: 0 0 50px;
}
.kbx-why__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #979797;
  color: #000;
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}
.kbx-why__subtitle i {
  color: var(--kbx-red);
  font-size: 11px;
}
.kbx-why__title {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  color: var(--kbx-white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 14px;
}
.kbx-why__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--kbx-silver);
  max-width: 400px;
  text-align: right;
  margin: 0;
}

/* ---------- bento grid ---------- */
.kbx-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, minmax(170px, auto));
  grid-template-areas:
    "stmt stmt r1"
    "stmt stmt r2"
    "r3   r4   r5";
  gap: 22px;
}

.kbx-why__cell {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.kbx-why__cell.kbx-why__cell--inview {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- statement tile ---------- */
.kbx-why__stmt {
  grid-area: stmt;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #000 0%,
    var(--kbx-red-dark) 100%
  );
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kbx-why__stmt-icon {
  position: absolute;
  right: -30px;
  bottom: -30px;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.08);
  transform: rotate(-12deg);
  pointer-events: none;
}
.kbx-why__stmt-title {
  position: relative;
  z-index: 2;
  font-family: var(--kbx-font-heading);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--kbx-white);
  text-transform: uppercase;
  margin: 0 0 16px;
  max-width: 420px;
}
.kbx-why__stmt-text {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 380px;
  margin: 0 0 28px;
}
.kbx-why__stmt-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  background: var(--kbx-white);
  color: var(--kbx-black);
  font-family: var(--kbx-font-heading);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 30px;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.kbx-why__stmt-cta:hover {
  background: var(--kbx-black);
  color: var(--kbx-white);
  transform: translateX(3px);
}

/* ---------- flip reason cards ---------- */
.kbx-why__flip {
  perspective: 1200px;
}
.kbx-why__flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 170px;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.kbx-why__flip:hover .kbx-why__flip-inner,
.kbx-why__flip.kbx-why__flip--active .kbx-why__flip-inner {
  transform: rotateY(180deg);
}

.kbx-why__face {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 26px;
  display: flex;
  flex-direction: column;
}
.kbx-why__face--front {
  background: var(--kbx-card);
  border: 1px solid #29292c;
  justify-content: space-between;
}
.kbx-why__face--back {
  background: var(--kbx-white);
  transform: rotateY(180deg);
  justify-content: center;
}

.kbx-why__num {
  font-family: var(--kbx-font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--kbx-silver);
  letter-spacing: 0.5px;
}
.kbx-why__icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--kbx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 14px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.kbx-why__flip:hover .kbx-why__icon-badge {
  background: var(--kbx-red);
  color: var(--kbx-white);
}

.kbx-why__face-title {
  font-family: var(--kbx-font-heading);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--kbx-white);
  line-height: 1.3;
  margin: 0;
}
.kbx-why__face--back .kbx-why__face-title {
  color: var(--kbx-black);
  font-size: 15px;
  margin: 0 0 10px;
}
.kbx-why__face-desc {
  font-size: 13.3px;
  line-height: 1.6;
  color: #5c5d61;
  margin: 0;
}
.kbx-why__flip-hint {
  align-self: flex-end;
  font-size: 11px;
  color: var(--kbx-silver);
  display: flex;
  align-items: center;
  gap: 6px;
}
.kbx-why__flip-hint i {
  font-size: 9px;
}

.kbx-why__r1 {
  grid-area: r1;
}
.kbx-why__r2 {
  grid-area: r2;
}
.kbx-why__r3 {
  grid-area: r3;
}
.kbx-why__r4 {
  grid-area: r4;
}
.kbx-why__r5 {
  grid-area: r5;
}

@media (max-width: 991.98px) {
  .kbx-why {
    padding: 70px 0;
  }
  .kbx-why__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "stmt"
      "r1"
      "r2"
      "r3"
      "r4"
      "r5";
  }
  .kbx-why__stmt {
    padding: 34px;
  }
  .kbx-why__stmt-icon {
    font-size: 160px;
  }
}

/* ===================================================
   FAQ SECTION (copy from here)
   =================================================== */
.kbx-faq {
  background: var(--kbx-black);
  padding: 100px 0;
  overflow: hidden;
}

.kbx-faq__head {
  /* max-width: 600px; */
  margin: 0 0 56px;
}
.kbx-faq__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #979797;
  color:#000;
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}
.kbx-faq__subtitle i {
  color: var(--kbx-red);
  font-size: 11px;
}
.kbx-faq__title {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  color: var(--kbx-white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 14px;
}
.kbx-faq__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--kbx-silver);
  max-width: 400px;
  text-align: right;
  margin: 0;
}

.kbx-faq__row {
  display: flex;
  align-items: stretch;
  gap: 60px;
}
.kbx-faq__list {
  flex: 0 0 46%;
  max-width: 46%;
}
.kbx-faq__visual-col {
  flex: 1;
  position: relative;
  min-width: 0;
}

/* ---------- accordion items ---------- */
.kbx-faq__item {
  border-top: 1px solid #29292c;
  padding: 22px 0;
  cursor: pointer;
}
.kbx-faq__item:last-child {
  border-bottom: 1px solid #29292c;
}

.kbx-faq__item-head {
  display: flex;
  align-items: center;
  gap: 18px;
}
.kbx-faq__num {
  font-family: var(--kbx-font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--kbx-silver);
  min-width: 28px;
  transition: color 0.3s ease;
}
.kbx-faq__item-title {
  flex: 1;
  font-family: var(--kbx-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--kbx-silver-light);
  letter-spacing: 0.2px;
  margin: 0;
  transition: color 0.3s ease;
}
.kbx-faq__item-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #35353a;
  color: var(--kbx-silver);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.4s ease;
}

.kbx-faq__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.kbx-faq__item-body-inner {
  padding: 16px 0 4px 46px;
}
.kbx-faq__item-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--kbx-silver);
  margin: 0 0 16px;
  max-width: 420px;
}

.kbx-faq__progress {
  height: 3px;
  width: 100%;
  background: #29292c;
  border-radius: 4px;
  overflow: hidden;
  max-width: 220px;
}
.kbx-faq__progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--kbx-red);
  border-radius: 4px;
}

/* ---------- active state ---------- */
.kbx-faq__item--active .kbx-faq__num,
.kbx-faq__item--active .kbx-faq__item-title {
  color: var(--kbx-white);
}
.kbx-faq__item--active .kbx-faq__item-icon {
  background: var(--kbx-red);
  border-color: var(--kbx-red);
  color: var(--kbx-white);
  transform: rotate(180deg);
}
.kbx-faq__item--active .kbx-faq__item-body {
  max-height: 160px;
}

/* ---------- visual panel ---------- */
.kbx-faq__visual {
  position: relative;
  height: 100%;
  min-height: 460px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--kbx-card);
}
.kbx-faq__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  clip-path: inset(0 0 100% 0);
  transition:
    opacity 0.7s ease,
    transform 1.2s ease,
    clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.kbx-faq__slide--active {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0% 0);
}
.kbx-faq__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kbx-faq__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(16, 16, 18, 0) 30%,
    rgba(16, 16, 18, 0.85) 100%
  );
}

/* rotating dashed ring, purely decorative */
.kbx-faq__ring {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
  animation: kbxRingSpin 18s linear infinite;
  z-index: 2;
}

/* floating stat badge, text swaps with active item */
.kbx-faq__stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  background: rgba(16, 16, 18, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 20px;
  min-width: 170px;
}
.kbx-faq__stat-number {
  display: block;
  font-family: var(--kbx-font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--kbx-white);
  line-height: 1;
  margin-bottom: 6px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.kbx-faq__stat-label {
  display: block;
  font-size: 12px;
  color: var(--kbx-silver-light);
  letter-spacing: 0.2px;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

@keyframes kbxRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991.98px) {
  .kbx-faq {
    padding: 70px 0;
  }
  .kbx-faq__row {
    flex-direction: column;
    gap: 36px;
  }
  .kbx-faq__list,
  .kbx-faq__visual-col {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .kbx-faq__visual {
    min-height: 320px;
  }
}
@media (max-width: 575.98px) {
  .kbx-faq__item-title {
    font-size: 16px;
  }
  .kbx-faq__item-body-inner {
    padding-left: 0;
  }
}
/* FAQ SECTION (copy till here) */

/* ===================================================
   TESTIMONIALS SECTION (copy from here)
   =================================================== */
.kbx-testi {
  background: var(--kbx-white);
  padding: 90px 0 100px;
  overflow: hidden;
}

/* ---------- marquee heading (pure CSS, no JS) ---------- */
.kbx-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  padding: 22px 0;
  /* margin-bottom: 70px; */
}
.kbx-marquee__track {
  display: inline-flex;
  align-items: center;
  animation: kbxMarquee 24s linear infinite;
}
/* two IDENTICAL groups back to back - translateX(-50%) always lands
   exactly on the start of the second group, so the loop has no seam */
.kbx-marquee__group {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}
.kbx-marquee__word {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--kbx-black);
}
.kbx-marquee__word--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--kbx-red);
}
.kbx-marquee__star {
  color: var(--kbx-red);
  font-size: 26px;
  animation: kbxStarSpin 6s linear infinite;
}
@keyframes kbxMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes kbxStarSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- section head ---------- */
.kbx-testi__head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.kbx-testi__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kbx-silver-light);
  color: var(--kbx-red);
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}
.kbx-testi__title {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  color: var(--kbx-black);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ---------- testimonial slides ---------- */
.kbx-testi__wrap {
  position: relative;
}
.kbx-testi__bg-icon {
  position: absolute;
  right: 6%;
  bottom: -10px;
  font-size: 180px;
  color: #f1f1f2;
  z-index: 0;
  pointer-events: none;
}
.kbx-testi__slides {
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.kbx-testi__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}
.kbx-testi__slide.kbx-testi__slide--active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* avatar block */
.kbx-testi__avatar-wrap {
  position: relative;
  flex: 0 0 300px;
}
.kbx-testi__avatar {
  width: 100%;
  aspect-ratio: 3/3.55;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kbx-testi__avatar-initials {
  font-family: var(--kbx-font-heading);
  font-size: 72px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 1px;
}
.kbx-testi__quote-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--kbx-red);
  color: var(--kbx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(179, 33, 51, 0.35);
}

/* content block */
.kbx-testi__content {
  flex: 1;
  min-width: 0;
}
.kbx-testi__doodle {
  color: var(--kbx-red);
  font-size: 26px;
  margin-bottom: 14px;
  display: inline-block;
}
.kbx-testi__quote {
  font-family: var(--kbx-font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: var(--kbx-black);
  margin: 0 0 30px;
}

.kbx-testi__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 34px;
}
.kbx-testi__name {
  font-family: var(--kbx-font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--kbx-red);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 4px;
}
.kbx-testi__role {
  font-size: 13.5px;
  color: var(--kbx-silver);
}
.kbx-testi__stars {
  display: flex;
  gap: 4px;
  color: #e2e2e4;
  font-size: 17px;
}
.kbx-testi__stars i.kbx-star--filled {
  color: var(--kbx-gold);
}

.kbx-testi__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.kbx-testi__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e2e2e4;
  background: var(--kbx-white);
  color: var(--kbx-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.kbx-testi__arrow:hover {
  background: var(--kbx-black);
  color: var(--kbx-white);
  border-color: var(--kbx-black);
}
.kbx-testi__counter {
  font-family: var(--kbx-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--kbx-black);
}
.kbx-testi__counter span {
  font-size: 14px;
  font-weight: 500;
  color: var(--kbx-silver);
}

@media (max-width: 767.98px) {
  .kbx-testi {
    padding: 60px 0 70px;
  }
  .kbx-testi__slides {
    min-height: 640px;
  }
  .kbx-testi__slide {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }
  .kbx-testi__avatar-wrap {
    flex: 0 0 auto;
    width: 220px;
  }
  .kbx-testi__bg-icon {
    display: none;
  }
}
/* TESTIMONIALS SECTION (copy till here) */

/* ===================================================
   CTA / CONTACT SECTION (copy from here)
   =================================================== */
.kbx-cta {
  position: relative;
  background: var(--kbx-black);
  padding: 110px 0;
  overflow: hidden;
  isolation: isolate;
}

/* ---------- decorative floating blobs ---------- */
.kbx-cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.kbx-cta__blob--1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: -120px;
  background: var(--kbx-red);
  animation: kbxCtaFloat1 16s ease-in-out infinite;
}
.kbx-cta__blob--2 {
  width: 340px;
  height: 340px;
  bottom: -160px;
  right: -100px;
  background: var(--kbx-lime);
  animation: kbxCtaFloat2 20s ease-in-out infinite;
}
.kbx-cta__blob--3 {
  width: 220px;
  height: 220px;
  top: 40%;
  right: 8%;
  background: var(--kbx-gold);
  opacity: 0.1;
  animation: kbxCtaFloat1 13s ease-in-out infinite reverse;
}
@keyframes kbxCtaFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 30px) scale(1.08);
  }
}
@keyframes kbxCtaFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -40px) scale(1.1);
  }
}

/* ---------- dashed rotating ring, purely decorative ---------- */
.kbx-cta__ring {
  position: absolute;
  top: 60px;
  right: 6%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1.5px dashed rgba(228, 229, 232, 0.18);
  animation: kbxCtaSpin 22s linear infinite;
  z-index: 0;
}
.kbx-cta__ring::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed rgba(206, 232, 60, 0.25);
}
@keyframes kbxCtaSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- head ---------- */
.kbx-cta__head {
  position: relative;
  z-index: 1;
  margin: 0 0 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.kbx-cta__head-text {
  max-width: 640px;
}
.kbx-cta__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kbx-charcoal);
  color: var(--kbx-silver-light);
  font-family: var(--kbx-font-heading);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 30px;
  margin: 0 0 18px;
}
.kbx-cta__subtitle i {
  color: var(--kbx-lime);
  font-size: 11px;
}
.kbx-cta__title {
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.2;
  color: var(--kbx-white);
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}
.kbx-cta__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--kbx-silver-light);
  margin: 0;
  max-width: 540px;
}

/* ---------- quick contact strip (fills header right side) ---------- */
.kbx-cta__quick {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.kbx-cta__quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--kbx-charcoal);
  border: 1px solid #29292c;
  border-radius: 30px;
  padding: 11px 20px 11px 11px;
  text-decoration: none;
  min-width: 230px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}
.kbx-cta__quick-item:hover {
  border-color: var(--kbx-lime);
  transform: translateX(-4px);
}
.kbx-cta__quick-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  color: var(--kbx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  flex-shrink: 0;
}
.kbx-cta__quick-item:nth-child(2) .kbx-cta__quick-icon {
  background: #25d366;
}
.kbx-cta__quick-item:nth-child(3) .kbx-cta__quick-icon {
  background: var(--kbx-gold);
  color: var(--kbx-black);
}
.kbx-cta__quick-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.kbx-cta__quick-label {
  font-size: 10.5px;
  color: var(--kbx-silver);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.kbx-cta__quick-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--kbx-white);
}

/* ---------- row ---------- */
.kbx-cta__row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.kbx-cta__info-col {
  flex: 0 0 38%;
  max-width: 38%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.kbx-cta__form-col {
  flex: 1;
  min-width: 0;
}

/* ---------- reveal-on-scroll ---------- */
.kbx-cta__reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.kbx-cta__reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- info card ---------- */
.kbx-cta__info-card {
  position: relative;
  background: var(--kbx-card);
  border: 1px solid #29292c;
  border-radius: 20px;
  padding: 24px 30px;
  overflow: hidden;
}
.kbx-cta__info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--kbx-red), var(--kbx-lime));
  transition: height 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.kbx-cta__reveal--in .kbx-cta__info-card::before {
  height: 100%;
}

.kbx-cta__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kbx-red), var(--kbx-red-dark));
  color: var(--kbx-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--kbx-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
  flex-shrink: 0;
}
.kbx-cta__person-name {
  font-family: var(--kbx-font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--kbx-white);
  letter-spacing: 0.2px;
  margin: 0 0 2px;
}
.kbx-cta__person-role {
  font-size: 12.5px;
  color: var(--kbx-lime);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 22px;
  display: block;
}

.kbx-cta__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kbx-cta__info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #26262a;
}
.kbx-cta__info-list li:first-child {
  border-top: none;
  padding-top: 0;
}
.kbx-cta__info-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--kbx-charcoal);
  color: var(--kbx-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.kbx-cta__info-list li:hover .kbx-cta__info-icon {
  background: var(--kbx-lime);
  color: var(--kbx-black);
  transform: rotate(-8deg) scale(1.06);
}
.kbx-cta__info-text {
  min-width: 0;
}
.kbx-cta__info-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--kbx-silver);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 3px;
}
.kbx-cta__info-value {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--kbx-silver-light);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}
a.kbx-cta__info-value:hover {
  color: var(--kbx-lime);
}

/* ---------- map card ---------- */
.kbx-cta__map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #29292c;
  min-height: 220px;
  flex: 1;
}
.kbx-cta__map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
  filter: grayscale(0.35) invert(0.92) contrast(0.9);
}
.kbx-cta__map-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 16, 18, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--kbx-white);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.kbx-cta__map-tag i {
  color: var(--kbx-lime);
  font-size: 12px;
}
.kbx-cta__map-tag:hover {
  background: var(--kbx-lime);
  color: var(--kbx-black);
}
.kbx-cta__map-tag:hover i {
  color: var(--kbx-black);
}

/* ---------- form card ---------- */
.kbx-cta__form-card {
  position: relative;
  background: var(--kbx-card);
  border: 1px solid #29292c;
  border-radius: 20px;
  padding: 40px 36px;
}
.kbx-cta__form-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--kbx-font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--kbx-lime);
  margin: 0 0 8px;
}
.kbx-cta__form-title {
  font-family: var(--kbx-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--kbx-white);
  margin: 0 0 28px;
}

.kbx-cta__field {
  position: relative;
  margin-bottom: 26px;
}
.kbx-cta__field--select {
  margin-bottom: 26px;
}

.kbx-cta__input,
.kbx-cta__textarea,
.kbx-cta__select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #34343a;
  color: var(--kbx-white);
  font-family: var(--kbx-font-body);
  font-size: 14.5px;
  padding: 14px 2px 10px;
  outline: none;
  transition: border-color 0.3s ease;
}
.kbx-cta__textarea {
  resize: none;
  min-height: 64px;
}
.kbx-cta__select {
  cursor: pointer;
}
.kbx-cta__select option {
  background: var(--kbx-charcoal);
  color: var(--kbx-white);
}

.kbx-cta__label {
  position: absolute;
  left: 2px;
  top: 14px;
  font-size: 14.5px;
  color: var(--kbx-silver);
  pointer-events: none;
  transition:
    top 0.25s ease,
    font-size 0.25s ease,
    color 0.25s ease;
}
.kbx-cta__input:focus ~ .kbx-cta__label,
.kbx-cta__input:not(:placeholder-shown) ~ .kbx-cta__label,
.kbx-cta__textarea:focus ~ .kbx-cta__label,
.kbx-cta__textarea:not(:placeholder-shown) ~ .kbx-cta__label {
  top: -14px;
  font-size: 11.5px;
  color: var(--kbx-lime);
  letter-spacing: 0.3px;
}
.kbx-cta__field--select .kbx-cta__label {
  top: -14px;
  font-size: 11.5px;
  color: var(--kbx-lime);
  letter-spacing: 0.3px;
}

.kbx-cta__field-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--kbx-red), var(--kbx-lime));
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.kbx-cta__input:focus ~ .kbx-cta__field-line,
.kbx-cta__textarea:focus ~ .kbx-cta__field-line,
.kbx-cta__select:focus ~ .kbx-cta__field-line {
  width: 100%;
}

.kbx-cta__row-2 {
  display: flex;
  gap: 24px;
}
.kbx-cta__row-2 .kbx-cta__field {
  flex: 1;
}

.kbx-cta__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--kbx-white);
  color: var(--kbx-black);
  font-family: var(--kbx-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s ease;
  margin-top: 6px;
}
.kbx-cta__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--kbx-red), var(--kbx-red-dark));
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.kbx-cta__submit:hover {
  color: var(--kbx-white);
}
.kbx-cta__submit:hover::before {
  transform: translateX(0);
}
.kbx-cta__submit i {
  font-size: 12px;
  transition: transform 0.3s ease;
}
.kbx-cta__submit:hover i {
  transform: translateX(4px);
}

.kbx-cta__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--kbx-silver);
  margin-top: 16px;
}
.kbx-cta__note i {
  color: var(--kbx-lime);
  font-size: 11px;
}

/* ---------- success toast ---------- */
.kbx-cta__toast {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: -70px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--kbx-lime);
  color: var(--kbx-black);
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 18px;
  border-radius: 14px;
  opacity: 0;
  transition:
    bottom 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.4s ease;
  pointer-events: none;
}
.kbx-cta__toast--show {
  bottom: 28px;
  opacity: 1;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991.98px) {
  .kbx-cta {
    padding: 70px 0;
  }
  .kbx-cta__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .kbx-cta__quick {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .kbx-cta__quick-item {
    min-width: 0;
    flex: 1 1 auto;
  }
  .kbx-cta__row {
    flex-direction: column;
    gap: 30px;
  }
  .kbx-cta__info-col {
    flex: 1 1 100%;
    max-width: 100%;
    flex-direction: row;
  }
  .kbx-cta__info-card {
    flex: 1;
  }
  .kbx-cta__map {
    flex: 1;
    min-height: 260px;
  }
  .kbx-cta__form-card {
    padding: 32px 26px;
  }
}
@media (max-width: 767.98px) {
  .kbx-cta__info-col {
    flex-direction: column;
  }
  .kbx-cta__row-2 {
    flex-direction: column;
    gap: 0;
  }
  .kbx-cta__blob--1,
  .kbx-cta__blob--2,
  .kbx-cta__blob--3 {
    opacity: 0.1;
  }
  .kbx-cta__quick {
    flex-direction: column;
  }
  .kbx-cta__quick-item {
    min-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .kbx-cta__form-card {
    padding: 26px 18px;
  }
  .kbx-cta__info-card {
    padding: 26px 20px;
  }
  .kbx-cta__form-title {
    font-size: 19px;
  }
  .kbx-cta__ring {
    width: 90px;
    height: 90px;
    top: 30px;
    right: 5%;
  }
}
/* CTA / CONTACT SECTION (copy till here) */

/* ===================================================
   FOOTER SECTION (copy from here)
   =================================================== */
.kbx-footer {
  position: relative;
  background: var(--kbx-black);
  overflow: hidden;
  isolation: isolate;
}

/* ---------- marquee strip ---------- */
.kbx-footer__marquee {
  position: relative;
  background: var(--kbx-red);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.kbx-footer__marquee-track {
  display: inline-flex;
  align-items: center;
  will-change: transform;
}
.kbx-footer__marquee-group {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
  padding-right: 36px;
}
.kbx-footer__marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  font-family: var(--kbx-font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--kbx-white);
}
.kbx-footer__marquee-item i {
  color: #fff;
  font-size: 8px;
}

/* ---------- decorative background ---------- */
.kbx-footer__watermark {
  position: absolute;
  left: 50%;
  bottom: -6%;
  transform: translateX(-50%);
  font-family: var(--kbx-font-heading);
  font-weight: 700;
  font-size: min(18vw, 220px);
  letter-spacing: 4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 229, 232, 0.06);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.kbx-footer__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}
.kbx-footer__blob--1 {
  width: 380px;
  height: 380px;
  top: -160px;
  left: -100px;
  background: var(--kbx-red);
  animation: kbxFooterFloat 17s ease-in-out infinite;
}
.kbx-footer__blob--2 {
  width: 320px;
  height: 320px;
  bottom: -120px;
  right: -80px;
  background: var(--kbx-lime);
  opacity: 0.1;
  animation: kbxFooterFloat 21s ease-in-out infinite reverse;
}
@keyframes kbxFooterFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 25px) scale(1.08);
  }
}
.kbx-footer__ring {
  position: absolute;
  top: 50px;
  right: 9%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1.5px dashed rgba(228, 229, 232, 0.15);
  animation: kbxFooterSpin 24s linear infinite;
  z-index: 0;
}
.kbx-footer__ring::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(206, 232, 60, 0.22);
}
@keyframes kbxFooterSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------- reveal on scroll ---------- */
.kbx-footer__reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.kbx-footer__reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- main ---------- */
.kbx-footer__main {
  position: relative;
  z-index: 1;
  padding: 80px 0 40px;
}

/* ---------- brand column ---------- */
.kbx-footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--kbx-font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--kbx-white);
  letter-spacing: 0.5px;
  text-decoration: none;
  margin: 0 0 20px;
}
.kbx-footer__brand-logo span {
  color: var(--kbx-lime);
}
.kbx-footer__brand-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--kbx-silver);
  margin: 0 0 26px;
  max-width: 320px;
}
.kbx-footer__badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
}
.kbx-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--kbx-charcoal);
  border: 1px solid #29292c;
  border-radius: 30px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--kbx-silver-light);
}
.kbx-footer__badge i {
  color: var(--kbx-lime);
  font-size: 10px;
}

.kbx-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kbx-footer__social a {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kbx-charcoal);
  border: 1px solid #29292c;
  color: var(--kbx-silver-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.kbx-footer__social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--kbx-lime);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.kbx-footer__social a:hover {
  color: var(--kbx-black);
  border-color: var(--kbx-lime);
  transform: translateY(-4px);
}
.kbx-footer__social a:hover::before {
  transform: scale(1);
}

/* ---------- link columns ---------- */
.kbx-footer__col-title {
  font-family: var(--kbx-font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--kbx-white);
  margin: 0 0 26px;
  position: relative;
  padding-bottom: 12px;
}
.kbx-footer__col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--kbx-red), var(--kbx-lime));
}
.kbx-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kbx-footer__links li {
  margin-bottom: 14px;
}
.kbx-footer__links li:last-child {
  margin-bottom: 0;
}
.kbx-footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 14px;
  color: var(--kbx-silver);
  text-decoration: none;
  transition:
    color 0.25s ease,
    gap 0.25s ease,
    padding-left 0.25s ease;
}
.kbx-footer__links a i {
  font-size: 9px;
  color: var(--kbx-lime);
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-width 0.25s ease,
    opacity 0.25s ease,
    margin-right 0.25s ease;
}
.kbx-footer__links a:hover {
  color: var(--kbx-white);
  padding-left: 2px;
}
.kbx-footer__links a:hover i {
  max-width: 14px;
  opacity: 1;
  margin-right: 8px;
}

/* ---------- contact column ---------- */
.kbx-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kbx-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}
.kbx-footer__contact li:last-child {
  margin-bottom: 0;
}
.kbx-footer__contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--kbx-charcoal);
  border: 1px solid #29292c;
  color: var(--kbx-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.kbx-footer__contact li:hover .kbx-footer__contact-icon {
  background: var(--kbx-lime);
  color: var(--kbx-black);
}
.kbx-footer__contact a,
.kbx-footer__contact span.kbx-footer__contact-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--kbx-silver-light);
  text-decoration: none;
  transition: color 0.2s ease;
}
.kbx-footer__contact a:hover {
  color: var(--kbx-lime);
}

/* ---------- newsletter strip ---------- */
.kbx-footer__newsletter {
  position: relative;
  z-index: 1;
  border-top: 1px solid #232326;
  border-bottom: 1px solid #232326;
  padding: 34px 0;
}
.kbx-footer__nl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.kbx-footer__nl-text {
  display: flex;
  align-items: center;
  gap: 14px;
}
.kbx-footer__nl-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--kbx-charcoal);
  color: var(--kbx-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.kbx-footer__nl-title {
  font-family: var(--kbx-font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--kbx-white);
  margin: 0 0 2px;
}
.kbx-footer__nl-sub {
  font-size: 13px;
  color: var(--kbx-silver);
  margin: 0;
}
.kbx-footer__nl-form {
  display: flex;
  gap: 0;
  flex: 0 0 auto;
}
.kbx-footer__nl-input {
  width: 260px;
  max-width: 100%;
  background: var(--kbx-charcoal);
  border: 1px solid #2c2c30;
  border-right: none;
  color: var(--kbx-white);
  font-size: 13.5px;
  padding: 13px 18px;
  border-radius: 30px 0 0 30px;
  outline: none;
}
.kbx-footer__nl-input::placeholder {
  color: var(--kbx-silver);
}
.kbx-footer__nl-btn {
  background: var(--kbx-lime);
  color: var(--kbx-black);
  border: none;
  padding: 0 22px;
  border-radius: 0 30px 30px 0;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}
.kbx-footer__nl-btn:hover {
  background: var(--kbx-white);
}
.kbx-footer__nl-msg {
  font-size: 12px;
  color: var(--kbx-lime);
  margin: 8px 0 0;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.kbx-footer__nl-msg--show {
  opacity: 1;
  height: auto;
}

/* ---------- bottom bar ---------- */
.kbx-footer__bottom {
  position: relative;
  z-index: 1;
  padding: 22px 0;
}
.kbx-footer__bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.kbx-footer__copy {
  font-size: 13px;
  color: var(--kbx-silver);
  margin: 0;
}
.kbx-footer__credit a {
  color: var(--kbx-silver-light);
  text-decoration: none;
  border-bottom: 1px dotted var(--kbx-silver);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.kbx-footer__credit a:hover {
  color: var(--kbx-lime);
  border-color: var(--kbx-lime);
}
.kbx-footer__legal {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kbx-footer__legal a {
  font-size: 13px;
  color: var(--kbx-silver);
  text-decoration: none;
  transition: color 0.2s ease;
}
.kbx-footer__legal a:hover {
  color: var(--kbx-white);
}
 

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991.98px) {
  .kbx-footer__main {
    padding: 64px 0 30px;
  }
  .kbx-footer__brand-desc {
    max-width: 100%;
  }
  [class*="kbx-footer__col-"] {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .kbx-footer__nl-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .kbx-footer__nl-form {
    width: 100%;
  }
  .kbx-footer__nl-input {
    width: 100%;
  }
  .kbx-footer__bottom-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .kbx-footer__watermark {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .kbx-footer__marquee-item {
    font-size: 12px;
  }
 
}
/* FOOTER SECTION (copy till here) */

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      left: 24px;
      bottom: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }

    /* Tooltip bubble above the button */
    .wa-tooltip {
      background: #fff;
      border-radius: 14px 14px 14px 4px;
      box-shadow: 0 8px 32px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.08);
      padding: 10px 14px;
      margin-bottom: 10px;
      max-width: 210px;
      position: relative;
      transform: translateY(6px) scale(.94);
      opacity: 0;
      pointer-events: none;
      transition: opacity .28s cubic-bezier(.22,1,.36,1),
                  transform .28s cubic-bezier(.22,1,.36,1);
      transform-origin: bottom left;
    }
    .wa-float:hover .wa-tooltip {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .wa-tip-name {
      font-size: .72rem;
      font-weight: 700;
      color: #111;
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 3px;
    }
    .wa-tip-name::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      flex-shrink: 0;
      animation: pulse-dot 1.8s ease infinite;
    }
    @keyframes pulse-dot {
      0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
      50%      { box-shadow: 0 0 0 5px rgba(37,211,102,0); }
    }
    .wa-tip-msg {
      font-size: .68rem;
      color: #555;
      line-height: 1.5;
    }
    /* Tiny tail on tooltip */
    .wa-tooltip::after {
      content: '';
      position: absolute;
      bottom: -8px; left: 18px;
      border: 5px solid transparent;
      border-top-color: #fff;
      filter: drop-shadow(0 2px 2px rgba(0,0,0,.06));
    }

    /* Main WA button */
    .wa-btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
      text-decoration: none;
    }

    /* Outer animated ring */
    .wa-ring {
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,.35);
      animation: wa-spin-ring 6s linear infinite;
      pointer-events: none;
    }
    .wa-ring::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 0 6px #25d366;
    }
    @keyframes wa-spin-ring {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Second pulse ring */
    .wa-pulse-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(37,211,102,.15);
      animation: wa-pulse 2.4s ease-out infinite;
      pointer-events: none;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .8; }
      100% { transform: scale(1.9); opacity: 0;  }
    }

    /* Circle core */
    .wa-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.5),
                  0 2px 8px rgba(0,0,0,.15);
      transition: transform .28s cubic-bezier(.22,1,.36,1),
                  box-shadow .28s;
      position: relative;
      z-index: 2;
    }
    .wa-btn:hover .wa-circle {
      transform: scale(1.1) rotate(-8deg);
      box-shadow: 0 10px 36px rgba(37,211,102,.65),
                  0 4px 12px rgba(0,0,0,.2);
    }
    .wa-circle i {
      font-size: 1.55rem;
      color: #fff;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,.2));
    }

    /* "Chat" label pill that slides out on hover */
    .wa-label-pill {
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 0 0 0 0;
      border-radius: 0 50px 50px 0;
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      opacity: 0;
      margin-left: -10px;
      height: 40px;
      display: flex;
      align-items: center;
      transition: max-width .35s cubic-bezier(.22,1,.36,1),
                  opacity .28s,
                  padding .28s,
                  margin .28s;
      box-shadow: 0 4px 18px rgba(37,211,102,.35);
    }
    .wa-btn:hover .wa-label-pill {
      max-width: 130px;
      opacity: 1;
      padding: 0 16px 0 14px;
      margin-left: -8px;
    }

    /* Notification badge */
    .wa-badge {
      position: absolute;
      top: -3px; right: -3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--crimson);
      color: #fff;
      font-size: .55rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      z-index: 3;
      animation: badge-bounce .6s .5s ease both;
    }
    @keyframes badge-bounce {
      0%,100% { transform: scale(1);    }
      50%      { transform: scale(1.25); }
    }


    /* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
    .gtt-float {
      position: fixed;
      right: 24px;
      bottom: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
      transition: opacity .35s, transform .35s cubic-bezier(.22,1,.36,1);
    }
    .gtt-float.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    /* Circular progress track */
    .gtt-btn {
      position: relative;
      width: 54px;
      height: 54px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* SVG progress ring */
    .gtt-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
    }
    .gtt-track {
      fill: none;
      stroke: rgba(22,39,64,.1);
      stroke-width: 2.5;
    }
    .gtt-progress {
      fill: none;
      stroke: var(--crimson);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-dasharray: 150.8;
      stroke-dashoffset: 150.8;
      transition: stroke-dashoffset .1s linear;
    }

    /* Inner circle */
    .gtt-inner {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: .82rem;
      position: relative;
      z-index: 2;
      box-shadow: 0 4px 18px rgba(22,39,64,.35);
      transition: background .25s, transform .28s cubic-bezier(.22,1,.36,1);
    }
    .gtt-btn:hover .gtt-inner {
      background: var(--crimson);
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(139,26,46,.45);
    }
    .gtt-btn:hover .gtt-inner i {
      animation: arrow-up .4s ease both;
    }
    @keyframes arrow-up {
      0%   { transform: translateY(0); opacity: 1; }
      45%  { transform: translateY(-6px); opacity: 0; }
      46%  { transform: translateY(6px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    /* Tiny % label below */
    .gtt-pct {
      font-size: .58rem;
      font-weight: 700;
      color: var(--muted, #6b7a8d);
      letter-spacing: .06em;
      text-align: center;
      line-height: 1;
    }

    /* ── Responsive tweak ── */
    @media (max-width: 480px) {
      .wa-float  { left: 16px; bottom: 20px; }
      .gtt-float { right: 16px; bottom: 20px; }
      .wa-circle { width: 52px; height: 52px; }
      .wa-circle i { font-size: 1.35rem; }
    }