/* Global Navbar Styles */
.global-header {
  background: #ffffff;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid #e2e8f0;
}

.global-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

.global-nav-link {
  position: relative;
  transition: color 0.25s ease;
}

.global-nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #FF7A00;
  transition: width 0.25s ease;
}

.global-nav-link:hover {
  color: #2563EB;
}

.global-nav-link:hover::after {
  width: 100%;
}

/* Active State */
.global-nav-link.active {
  color: #2563EB;
  font-weight: 600;
}

.global-nav-link.active::after {
  width: 100%;
  background: #FF7A00;
}

/* Mobile Active State */
.global-mobile-link.active {
  color: #2563EB;
  border-left-width: 4px;
  border-left-color: #FF7A00;
  padding-left: 0.75rem;
}
