/* Nav styles */
.nav-link {
  color: #d1d5db;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 600px;
  background-color: #1f2937;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(-0.5rem);
}

.group:hover .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Active states for menu items */
.mobile-menu.active {
  max-height: 500px !important;
}

.dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  color: #d1d5db;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #374151;
  transform: translateX(0.5rem);
}

.dropdown-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: #eab308;
}

/* Mobile Menu Animation */
.mobile-menu {
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(17, 24, 39, 0.95) !important; /* Darker background */
}

/* Mobile Services Dropdown */
#mobile-services-menu {
  background-color: rgba(17, 24, 39, 0.98);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  overflow: hidden;
}

#mobile-services-menu a {
  background-color: rgba(17, 24, 39, 0.98);
  padding: 0.75rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

#mobile-services-menu a:hover {
  background-color: rgba(31, 41, 55, 0.95);
}

/* Backdrop Blur Effect */
nav {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Accordion Transitions */
.accordion div {
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Dropdown Footer */
.dropdown-menu > div:last-child {
  border-top: 1px solid #374151;
  background-color: #1f2937;
  padding: 1rem;
}

.dropdown-menu > div:last-child h3 {
  color: #eab308;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Golden text utility class */
.golden-text {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
