/* ===========================
   Bizita Navbar Styles
   =========================== */

.biz-navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

.biz-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.biz-logo img {
  display: block;
}

/* Desktop Nav */
.biz-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.biz-nav-item {
  position: relative;
}

.biz-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.biz-nav-link:hover,
.biz-nav-link.active {
  color: #0ea5e9;
}

.biz-nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.biz-nav-link.open svg {
  transform: rotate(180deg);
}

/* Dropdown */
.biz-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 10000;
}

.biz-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.biz-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.biz-dropdown li a:hover {
  background: #f0f9ff;
  color: #0ea5e9;
}

/* CTA Button */
.biz-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f2457;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.biz-cta-btn:hover {
  background: #1a3a8f;
  color: #fff;
}

.biz-cta-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Hamburger */
.biz-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.biz-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.biz-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
  padding: 12px 20px 20px;
}

.biz-mobile-menu.open {
  display: block;
}

.biz-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.biz-mobile-nav li {
  border-bottom: 1px solid #f0f0f0;
}

.biz-mobile-nav li:last-child {
  border-bottom: none;
}

.biz-mobile-nav a,
.biz-mobile-nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
}

.biz-mobile-nav a:hover,
.biz-mobile-nav button:hover {
  color: #0ea5e9;
}

.biz-mobile-dropdown {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 16px;
}

.biz-mobile-dropdown li a {
  padding: 8px 0;
  font-size: 14px;
  color: #666;
  display: block;
  border-bottom: none;
}

.biz-mobile-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f2457;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 991px) {
  .biz-nav,
  .biz-cta-btn {
    display: none;
  }

  .biz-hamburger {
    display: flex;
  }
}

@media (min-width: 992px) {
  .biz-mobile-menu {
    display: none !important;
  }
}
