/* =========================================================
   HEADER
   ========================================================= */
.cb-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  transition: box-shadow .3s ease;
}

.cb-header.cb-scrolled {
  box-shadow: 0 10px 30px -18px rgba(11, 31, 58, 0.3);
}

.cb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.cb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cb-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
}

.cb-logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.cb-logo-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.cb-logo img{
  width: 192px;
}

.cb-nav {
  align-items: center;
  gap: 30px;
}

.cb-nav>a,
.cb-dropdown-toggle {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.cb-nav>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .25s ease;
}

.cb-nav>a:hover::after {
  width: 100%;
}

.cb-dropdown-toggle i {
  font-size: 0.7rem;
  transition: transform .25s ease;
}

.cb-dropdown {
  position: relative;
}

.cb-dropdown:hover .cb-dropdown-toggle i {
  transform: rotate(180deg);
}

/*.cb-mega{
  position:absolute; top: calc(100% + 22px); left: 50%;
  transform: translate(-50%, 10px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 26px;
  display:flex; gap: 34px;
  min-width: 420px;
  opacity:0; visibility:hidden;
  transition: opacity .25s ease, transform .25s ease;
}*/
.cb-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  margin-top: 0;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 26px;
  display: flex;
  gap: 34px;
  min-width: 420px;
}

.cb-mega-sm {
  min-width: 300px;
}

.cb-dropdown:hover .cb-mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 10px);
}

.cb-mega>div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 140px;
}

.cb-mega-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.cb-mega a {
  font-size: 0.9rem;
  color: var(--text);
  transition: color .2s ease, padding .2s ease;
}

.cb-mega a:hover {
  color: var(--navy);
  padding-left: 4px;
}

.cb-header-cta {
  gap: 12px;
}

.cb-header-cta .btn {
  padding: 11px 20px;
  font-size: 0.85rem;
}

.cb-burger {
  background: none;
  border: none;
  width: 34px;
  height: 22px;
  position: relative;
}

.cb-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--navy);
  transition: all .3s ease;
}

.cb-burger span:nth-child(1) {
  top: 0;
}

.cb-burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.cb-burger span:nth-child(3) {
  bottom: 0;
}

.cb-burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.cb-burger.active span:nth-child(2) {
  opacity: 0;
}

.cb-burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.cb-mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #fff;
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}

.cb-mobile-nav.open {
  max-height: 400px;
  padding: 18px 24px;
}

.cb-mobile-nav a {
  padding: 10px 0;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}


@media (max-width: 1235px) {

  .cb-nav>a,
  .cb-dropdown-toggle {
    font-size: 0.72rem;
  }

  .cb-header-cta .btn {
    padding: 5px 8px;
    font-size: 0.75rem;
  }

}

.cb-mega {
    min-width: 380px;
}

@media (max-width: 991.98px) {
    .cb-mega {
        min-width: 260px;
    }
}

/*@media (max-width: 991.98px){
  .cb-mobile-nav {
    overflow: hidden;
    transition: all 0.5s;
    background: #fff;
    border-top: 1px solid rgba(11, 31, 58, 0.06);
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    width: 0;
    right: -66px;
    opacity: 0;
}
.cb-mobile-nav.open {
    padding: 18px 24px;
    position: absolute;
    width: 300px;
    right: 0;
    opacity: 1;
}
}*/