.elementor-48 .elementor-element.elementor-element-4a30790{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-bbd502e */.kp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.kp-header.scrolled {
  border-bottom-color: #E2EAF0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.kp-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* ── Logo ── */
.kp-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px 0;
}

.kp-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.kp-logo__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #0A1628;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.kp-logo__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0099CC;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Nav ── */
.kp-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.kp-nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.kp-nav__link:hover {
  color: #0099CC;
  background: #EFF9FF;
}

/* ── Dropdowns ── */
.kp-nav__dropdown {
  position: relative;
}

.kp-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #ffffff;
  border: 1.5px solid #E2EAF0;
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  z-index: 100;
}

.kp-nav__dropdown.open .kp-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.kp-nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: all 0.18s ease;
}

.kp-nav__dropdown-item svg {
  stroke: #0099CC;
  flex-shrink: 0;
}

.kp-nav__dropdown-item:hover {
  background: #EFF9FF;
  color: #0099CC;
}

/* ── Header actions ── */
.kp-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.kp-header__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0A1628;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.kp-header__phone svg { stroke: #0099CC; }
.kp-header__phone:hover { color: #0099CC; }

.kp-header__cta {
  font-size: 14px;
  padding: 10px 20px;
  white-space: nowrap;
}

/* ── Hamburger ── */
.kp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.kp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0A1628;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.kp-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.kp-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.kp-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .kp-header__inner {
    padding: 0 20px;
    justify-content: space-between;
    gap: 16px;
  }

  .kp-logo__name {
    font-size: 20px;
  }

  .kp-header__cta {
    display: none;
  }

  .kp-header__phone {
    display: none;
  }

  .kp-hamburger {
    display: flex;
  }

  .kp-header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #E2EAF0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }

  .kp-header__nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .kp-nav__link {
    padding: 12px 16px;
    font-size: 15px;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .kp-nav__dropdown {
    width: 100%;
  }

  .kp-nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: #F8FAFC;
    border-radius: 10px;
    padding: 4px 8px;
    margin: 4px 0 8px;
    display: none;
  }

  .kp-nav__dropdown.open .kp-nav__dropdown-menu {
    display: block;
    transform: none;
  }
}

@media (max-width: 400px) {
  .kp-header__inner {
    padding: 0 16px;
  }
}/* End custom CSS */