/* Navbar */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
}
.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 3px 0;
  transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  height: 48px;
  align-items: center;
  background-color: var(--primary);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo span {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}
.nav-links a {
  text-decoration: none;
  color: var(--background);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.nav-links a i {
  margin-right: 8px;
}
.nav-links a:hover {
  color: var(--yellow);
}
.btn-contact {
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-contact:hover {
        transform: scale(1.05);
      }

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px 0;
    gap: 16px;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .btn-contact {
    display: block;
  }
}