.navbar {
  background: #1a1a1abb;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar.navbar-transparent {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

.logo-navbar {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Responsive (opsional) */
@media (max-width: 576px) {
  .logo-navbar {
    height: 38px;
  }
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand i {
  color: var(--secondary);
}

.nav-link {
  color: white !important;
  margin: 0 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--secondary) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-wa-nav {
  background: #0fa145;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-wa-nav:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}
