/* ===== BHAUU NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-tag {
  font-size: 0.6rem;
  color: #333333;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: #444444;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent, #8b5cf6);
  background: rgba(139,92,246,0.08);
}

.nav-links .nav-cta,
.nav-links .nav-cta.active {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  color: #fff !important;
  padding: 9px 22px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(139,92,246,0.3);
}

.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.45);
  background: linear-gradient(135deg, #7c3aed, #db2777);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 9997;
}
.nav-overlay.active { display: block; }

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 9998;
    right: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 14px;
    display: block;
    text-align: center;
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 14px;
    text-align: center;
    display: block;
  }
}

