.cygnus-navbar {
  width: 100%;
  height: 80px;
  background: var(--cygnus-navbar-bg, #0b2a45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 9999;
  transition: background 0.4s ease;
}

.cygnus-navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: row-reverse;
}

.nav-logo {
  height: 55px;
  transition: opacity 0.3s ease;
}

.menu-toggle {
  line-height: 0 !important;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.28s ease;
}

.menu-toggle:hover {
  transform: scale(1.08);
}

.menu-toggle img {
  line-height: 0;
  height: 45px;
  transition: opacity 0.3s ease;
}

.nav-right .whatsapp-btn img {
  height: 28px;
}

.nav-divider {
  margin-left: 10px;
  display: block;
  width: 1px;
  height: 28px;
  background-color: rgb(255, 255, 255);
  transition: background-color 0.4s ease;
}

.cygnus-navbar.scrolled .nav-divider {
  background-color: rgb(0, 0, 0);
}

.cygnus-navbar p {
  display: none;
}

.cygnus-navbar .nav-left p {
  display: block;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 36px;
  }

  .menu-toggle img {
    height: 36px;
  }
}
