/* nav-dropdown.css — Industries dropdown styles (shared across all pages)
 * Owns: .nav-dropdown, .dropdown-menu, .dd-section, .dd-all-industries
 * Does NOT own: header layout, .nav-links, .mobile-nav, .hamburger
 */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #0f2035;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 200;
}
/* Bridge pseudo-element fills the gap so cursor moving into menu doesn't close it */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  color: #94a3b8 !important;
  padding: 9px 14px;
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: rgba(249,115,22,0.1); color: #fff !important; }
.dd-section {
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px 2px;
}
.dd-all-industries {
  display: flex !important;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 14px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  color: #f97316 !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
}
.dd-all-industries:hover { background: rgba(249,115,22,0.15) !important; color: #fb923c !important; }
