/* ==============================
   NAVBAR
   ============================== */

.navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--primary);
}

/* CTA Button */
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

/* Mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 60px;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    width: 220px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}
