/* .customHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.customHeader.header-hidden {
  transform: translateY(-100%);
} */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --teal: #114c5f;
  --tl: #1e88a8;
  --tp: #eaf4f7;
  --tx: #0f2027;
  --mu: #5a6b72;
  --bd: rgba(17, 76, 95, 0.09);
}

/* ══ HEADER (logo left / contact + nav stacked right) ══ */
.wb-header {
  background: #fff;
  border-bottom: 2px solid var(--teal);
  position: relative;
  z-index: 9000;
  font-family: "Poppins", sans-serif;
}
.wb-header.wb-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 4px 25px rgba(17, 76, 95, 0.12);
  animation: wbHeaderDown 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes wbHeaderDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.wb-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wb-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.wb-logo img {
  height: 46px;
  width: auto;
  display: block;
}
.wb-logo-fallback {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.5px;
  display: none;
}
.wb-logo-fallback span {
  color: var(--tl);
}

.wb-header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.wb-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.wb-top-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tx);
  text-decoration: none;
  font-weight: 600;
  font-size: 12.5px;
  transition: color 0.2s;
  white-space: nowrap;
}
.wb-top-item:hover {
  color: var(--tl);
}
.wb-top-item-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tp);
  border: 1.5px solid rgba(17, 76, 95, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.wb-top-item:hover .wb-top-item-ic {
  background: var(--teal);
  border-color: var(--teal);
}
.wb-top-item-ic svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
.wb-top-item:hover .wb-top-item-ic svg {
  stroke: #fff;
}
.wb-top-divider {
  width: 1px;
  height: 18px;
  background: var(--bd);
}

/* ══ NAV ROW ══ */
.wbn {
  font-family: "Poppins", sans-serif;
}
.wbn-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 8px;
  border-top: 1px solid var(--bd);
  height: auto;
  position: static !important;
}
.wbn-mob-close-bar {
  display: none;
}
@media (max-width: 768px) {
  .wbn-mob-close-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: #fff;
    border-bottom: 2px solid var(--teal);
    z-index: 10;
    flex-shrink: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(17, 76, 95, 0.08);
  }
  .wbn-mob-close-bar span {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
  }
  .wbn-mob-close-btn {
    background: none;
    border: 1px solid var(--bd);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--teal);
  }
  .wbn-mob-close-btn svg {
    width: 16px;
    height: 16px;
    stroke: var(--teal);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}
.wbn-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  width: 100%;
}
.wbn-ul > li {
  position: static;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wbn-ul > li > a,
.wbn-ul > li > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 10px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--tx);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  /* position: relative; */
  transition: color 0.2s;
}
.wbn-ul > li > a::after,
.wbn-ul > li > button::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--tl);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.wbn-ul > li > a:hover,
.wbn-ul > li > button:hover {
  color: var(--tl);
}
.wbn-ul > li > a:hover::after,
.wbn-ul > li > button:hover::after {
  transform: scaleX(1);
}
.wbn-chev {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.wbn-ul > li.wbn-open .wbn-chev,
.wbn-has-dropdown:hover .wbn-chev {
  transform: rotate(180deg);
}

/* ══ STANDARD DROPDOWN MENU (Resources) ══ */
#wbn-res,
.wbn-ul > li.wbn-has-dropdown {
  position: relative !important;
}

.wbn-dp-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#wbn-res .wbn-dropdown,
.wbn-dropdown {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  right: auto !important;
  min-width: 210px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  margin-top: 10px !important;
  border-top: 3px solid var(--teal) !important;
  border-left: 1px solid rgba(17, 76, 95, 0.1) !important;
  border-right: 1px solid rgba(17, 76, 95, 0.1) !important;
  border-bottom: 1px solid rgba(17, 76, 95, 0.1) !important;
  box-shadow: 0 18px 45px rgba(17, 76, 95, 0.16) !important;
  list-style: none !important;
  z-index: 9999 !important;
}

/* Invisible hover bridge */
.wbn-dropdown::before {
  content: "" !important;
  position: absolute !important;
  top: -14px !important;
  left: 0 !important;
  right: 0 !important;
  height: 14px !important;
}

@media (min-width: 769px) {
  #wbn-res:hover > .wbn-dropdown,
  .wbn-has-dropdown:hover > .wbn-dropdown,
  .wbn-has-dropdown.wbn-open > .wbn-dropdown {
    display: block !important;
    animation: wbn-dp-in 0.18s ease forwards !important;
  }
}

@keyframes wbn-dp-in {
  from {
    opacity: 0;
    transform: translate(-50%, 6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.wbn-dropdown li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wbn-dropdown li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 16px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #0f2027 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.wbn-dp-ic {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: var(--tp) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: background 0.2s !important;
}

.wbn-dp-ic svg {
  width: 14px !important;
  height: 14px !important;
  stroke: var(--teal) !important;
  stroke-width: 1.8 !important;
  fill: none !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  transition: stroke 0.2s !important;
}

.wbn-dp-txt {
  flex: 1 !important;
  color: inherit !important;
}

.wbn-dropdown li a .ai {
  width: 14px !important;
  height: 14px !important;
  stroke: var(--tl) !important;
  stroke-width: 2 !important;
  fill: none !important;
  opacity: 0 !important;
  transform: translateX(-4px) !important;
  transition: all 0.2s ease !important;
}

.wbn-dropdown li a:hover {
  background: var(--tp) !important;
  color: var(--teal) !important;
}

.wbn-dropdown li a:hover .wbn-dp-ic {
  background: var(--teal) !important;
}

.wbn-dropdown li a:hover .wbn-dp-ic svg {
  stroke: #ffffff !important;
}

.wbn-dropdown li a:hover .ai {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

@media (max-width: 768px) {
  .wbn-dropdown {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(17, 76, 95, 0.04) !important;
    padding: 4px 0 !important;
    margin: 4px 0 8px 12px !important;
    border-left: 2px solid #1e88a8 !important;
    animation: none !important;
  }
  .wbn-has-dropdown.mob-open > .wbn-dropdown,
  .wbn-has-dropdown.wbn-open > .wbn-dropdown {
    display: block !important;
  }
  .wbn-dropdown li a {
    font-size: 13px;
    padding: 8px 14px;
  }
}

/* ══ MEGA MENU ══ */
.wbn-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--bd);
  box-shadow: 0 20px 60px rgba(17, 76, 95, 0.15);
  z-index: 9998;
  animation: wbn-in 0.18s ease;
}
@media (min-width: 769px) {
  .wbn-ul > li:hover .wbn-mega,
  .wbn-ul > li.wbn-open .wbn-mega {
    display: block;
  }
}
@keyframes wbn-in {
  from {
    opacity: 0;
    margin-top: -5px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}
.wbn-mi-4col {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 960px) {
  .wbn-mi-4col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .wbn-mi-4col {
    grid-template-columns: 1fr !important;
  }
}

.wbn-mi {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
}
.wbn-col {
  border-right: 1px solid var(--bd);
  min-width: 0;
}
.wbn-col:last-child {
  border-right: none;
}
.wbn-col-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  border-bottom: 1px solid var(--bd);
  min-height: 50px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.wbn-col-hd-ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--tl));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wbn-col-hd-ic svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wbn-col-hd-lbl {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
.wbn-col-hd-lbl:hover {
  color: var(--tl);
}
.wbn-col-scroll {
  max-height: 55vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 0 12px;
}
.wbn-col-scroll::-webkit-scrollbar {
  width: 3px;
}
.wbn-col-scroll::-webkit-scrollbar-thumb {
  background: rgba(17, 76, 95, 0.2);
  border-radius: 3px;
}
.wbn-col-sep {
  border-top: 2px solid var(--bd);
}
.wbn-col-sep .wbn-col-hd {
  position: relative;
  top: auto;
}

.wbn-l3-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  cursor: default;
  transition: background 0.15s;
}
.wbn-l3-row.active {
  background: var(--tp);
}
.wbn-l3-lbl {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  flex: 1;
  line-height: 1.3;
  transition: color 0.15s;
}
.wbn-l3-lbl:hover {
  color: var(--tl);
}
.wbn-l3-ic {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: rgba(17, 76, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.wbn-l3-ic svg {
  width: 8px;
  height: 8px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wbn-l3-row.active .wbn-l3-ic {
  background: var(--teal);
}
.wbn-l3-row.active .wbn-l3-ic svg {
  stroke: #fff;
}

.wbn-flyouts-pool {
  display: contents;
}
.wbn-flyout {
  display: none;
  position: fixed;
  background: #fff;
  border: 1px solid var(--bd);
  border-top: 3px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(17, 76, 95, 0.15);
  padding: 6px 0;
  z-index: 9999;
  min-width: 220px;
  max-width: 260px;
  animation: wbn-in 0.15s ease;
}
.wbn-flyout.show {
  display: block;
}

.wbn-lk {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tx);
  text-decoration: none;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.15s;
}
.wbn-lk:hover {
  background: var(--tp);
  color: var(--teal);
  padding-left: 20px;
}
.wbn-lk .ai {
  width: 10px;
  height: 10px;
  stroke: var(--tl);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
  margin-left: auto;
}
.wbn-lk:hover .ai {
  opacity: 1;
}

.wbn-pl {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tx);
  text-decoration: none;
  line-height: 1.3;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.15s;
}
.wbn-pl:hover {
  background: var(--tp);
  color: var(--teal);
  padding-left: 20px;
}
.wbn-pl .ai {
  width: 10px;
  height: 10px;
  stroke: var(--tl);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
  margin-left: auto;
}
.wbn-pl:hover .ai {
  opacity: 1;
}

.wbn-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.wbn-ham span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1200px) {
  .wbn-ul > li > a,
  .wbn-ul > li > button {
    padding: 9px 5px;
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  .wbn-col-hd {
    padding: 9px 6px;
    gap: 6px;
  }
  .wbn-col-hd-lbl {
    font-size: 8px;
    letter-spacing: 0.5px;
  }
}
@media (max-width: 960px) {
  .wb-top-divider {
    display: none;
  }
  .wb-top-right {
    gap: 16px;
  }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .wb-header-inner {
    padding: 10px 16px;
  }
  .wb-top-right {
    display: none;
  }
  .wb-logo img {
    height: 36px;
  }
  .wbn-inner {
    padding: 0 16px;
    padding-top: 0;
    border-top: none;
  }
  .wbn-ham {
    display: flex;
    margin-left: auto;
  }
  .wbn-ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .wbn.mob-open .wbn-ul {
    display: flex;
  }
  .wbn-mob-close-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 2px solid var(--teal);
    z-index: 10001;
    flex-shrink: 0;
    list-style: none;
  }
  .wbn-mob-close-bar span {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal);
  }
  .wbn-mob-close-btn {
    background: none;
    border: 1.5px solid var(--bd);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
  }
  .wbn-mob-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .wbn-ul > li {
    height: auto;
    width: 100%;
    position: static;
    display: block;
  }
  .wbn-ul > li > a,
  .wbn-ul > li > button {
    width: 100%;
    padding: 15px 20px;
    height: auto;
    font-size: 13px;
    letter-spacing: 0.5px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(17, 76, 95, 0.08);
    display: flex;
  }
  .wbn-ul > li > a::after,
  .wbn-ul > li > button::after {
    display: none;
  }
  .wbn-mega {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    box-shadow: none;
    animation: none;
    border: none;
    background: #f5f9fb;
    width: 100% !important;
    max-width: 100% !important;
  }
  .wbn-mi {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
  }
  .wbn-col {
    border-right: none;
    border-bottom: 2px solid rgba(17, 76, 95, 0.1);
    width: 100%;
  }
  .wbn-col-hd {
    position: static;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid rgba(17, 76, 95, 0.1);
  }
  .wbn-col-sep .wbn-col-hd {
    position: static;
    top: auto;
  }
  .wbn-col-hd-ic {
    width: 26px;
    height: 26px;
  }
  .wbn-col-hd-lbl {
    font-size: 10px;
    letter-spacing: 1px;
  }
  .wbn-col-scroll {
    max-height: none;
    overflow: visible;
    padding: 4px 0 10px;
  }
  .wbn-col-sep {
    border-top: 2px solid rgba(17, 76, 95, 0.12);
  }
  .wbn-col-sep .wbn-col-hd {
    background: #eaf4f7;
  }
  .wbn-l3-row {
    padding: 11px 20px;
    border-bottom: 1px solid rgba(17, 76, 95, 0.05);
  }
  .wbn-l3-lbl {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  .wbn-l3-ic {
    display: none;
  }
  .wbn-pl,
  .wbn-lk {
    padding: 10px 20px;
    font-size: 13px;
    border-bottom: 1px solid rgba(17, 76, 95, 0.04);
  }
  .wbn-pl:hover,
  .wbn-lk:hover {
    padding-left: 28px;
  }
  .wbn-nested-row {
    padding: 10px 20px !important;
    border-bottom: 1px solid rgba(17, 76, 95, 0.04) !important;
  }
  .wbn-nested-row > span {
    display: none !important;
  }
  .wbn-nested-row > a {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    color: var(--teal) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
  }
  .wbn-l3-inline {
    display: block;
    background: rgba(17, 76, 95, 0.03);
    padding: 2px 0;
  }
  .wbn-l3-inline .wbn-lk,
  .wbn-l3-inline .wbn-pl {
    padding: 9px 20px 9px 32px !important;
    font-size: 12px !important;
    border-bottom: 1px solid rgba(17, 76, 95, 0.04);
  }
  .wbn-l3-inline .wbn-lk:hover,
  .wbn-l3-inline .wbn-pl:hover {
    padding-left: 40px !important;
  }
  .wbn-l3-inline .wbn-nested-row {
    padding: 9px 20px 9px 32px !important;
  }
  .wbn-l3-inline .wbn-nested-row > span {
    display: none !important;
  }
  .wbn-l3-inline .wbn-nested-row > a {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: var(--teal) !important;
    display: block !important;
  }
  .wbn-l3-row.mob-open .wbn-l3-ic {
    background: var(--teal) !important;
  }
  .wbn-l3-row.mob-open .wbn-l3-ic svg {
    stroke: #fff !important;
    transform: rotate(90deg);
  }
  .wbn-flyout {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .wbn-mob-close-bar {
    display: none !important;
  }
}

/* ══ HEADER SEARCH ══ */
.wbn-search-trigger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-left: 10px;
  flex-shrink: 0;
}
.wbn-search-trigger:hover {
  background: var(--tp);
  color: var(--tl);
  transform: scale(1.08);
}
.wbn-search-trigger svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wbn-search-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(60px, 12vh, 120px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.25s;
}
.wbn-search-modal.active {
  opacity: 1;
  visibility: visible;
}

.wbn-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 20, 0.75);
  backdrop-filter: blur(8px);
}

.wbn-search-box {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 720px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(7, 15, 20, 0.35);
  border: 1px solid rgba(17, 76, 95, 0.15);
  transform: translateY(-20px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.wbn-search-modal.active .wbn-search-box {
  transform: translateY(0) scale(1);
}

.wbn-sf-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f4f8fa;
  border: 2px solid rgba(17, 76, 95, 0.12);
  border-radius: 12px;
  padding: 6px 6px 6px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wbn-sf-wrap:focus-within {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(17, 76, 95, 0.1);
  background: #ffffff;
}

.wbn-sf-ic {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
}

.wbn-search-field {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--tx);
  padding: 8px 0;
}
.wbn-search-field::placeholder {
  color: #8b9ea7;
}

.wbn-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--tl));
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.wbn-search-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.wbn-search-btn svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  stroke-width: 2.2;
  fill: none;
}

.wbn-search-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(17, 76, 95, 0.15);
  color: var(--tx);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.wbn-search-close:hover {
  background: var(--teal);
  color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 580px) {
  .wbn-search-box {
    padding: 18px 14px;
  }
  .wbn-sf-wrap {
    padding: 4px 4px 4px 12px;
    gap: 8px;
  }
  .wbn-search-field {
    font-size: 13.5px;
  }
  .wbn-search-btn {
    padding: 10px 14px;
    font-size: 12px;
  }
  .wbn-search-btn span {
    display: none;
  }
}

