.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800 !important;
  color: var(--black);
  cursor: pointer;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
}

.mobile-nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background: var(--white);
  position: absolute;
  top: 100%;
  left: 0;
  padding: 1rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.mobile-nav-links li {
  list-style: none;
  text-align: center;
  margin: 0.5rem 0;
}

.mobile-nav-links a {
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--black);
  font-weight: 500;
}

.mobile-nav-links a.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  display: inline-block;
}

.mobile-nav-links a.nav-cta:hover {
  background: var(--orange-dark);
}

.mobile-nav-links.active {
  display: flex;
}

.mobile-menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }
}
