/* ========== LEXISNEXIS-INSPIRED NAVIGATION ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(192, 192, 192, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo Section */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  height: 40px;
  width: auto;
  filter: invert(1);
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #c0c0c0;
  font-weight: 700;
}

/* Main Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}

/* Active/Current Page Indicator */
.nav-link.active {
  color: #fff;
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 3px;
  background: #c0c0c0;
}

/* CTA Button */
.nav-cta {
  padding: 0.65rem 1.5rem;
  background: #c0c0c0;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #c0c0c0;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(192, 192, 192, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-item {
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(192, 192, 192, 0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1rem;
    display: block;
    text-align: center;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
    height: 64px;
  }

  .nav-logo img {
    height: 35px;
  }

  .nav-logo-text {
    font-size: 1.2rem;
  }

  .nav-menu {
    top: 64px;
  }
}
