.comet-navbar {
  height: 80px;
  background: linear-gradient(to right, #0f172a, #1e293b);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #334155;
}

.logo-container img {
  height: 50px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.3));
}

.logo-container:hover img {
  transform: scale(1.05);
}

.nav-menu {
  margin-left: 30px;
}

.nav-link {
  position: relative;
  padding: 8px 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fbbf24;
  text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.pilot-panel-link {
  transition: transform 0.3s ease;
}

.pilot-panel-link:hover {
  transform: translateY(-3px);
}

.pilot-panel-link img {
  height: 24px;
  transition: all 0.3s ease;
}

.pilot-panel-link:hover img {
  filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.7));
}

.nav-apply {
  background: linear-gradient(to right, #f59e0b, #fbbf24);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.5);
  background: linear-gradient(to right, #fbbf24, #f59e0b);
}

.flag-icon {
  height: 24px;
  transition: transform 0.3s ease;
  border-radius: 50%;
  border: 1px solid #475569;
}

.flag-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.dropdown {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(10px);
  padding: 30px 40px;
  z-index: 40;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-top: 1px solid #475569;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.dropdown.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-section {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  text-align: left;
}

.dropdown-column h3 {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #475569;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.dropdown a:hover {
  background: rgba(55, 65, 81, 0.4);
  color: #fbbf24;
  transform: translateX(5px);
}

.dropdown a i {
  font-size: 18px;
  width: 28px;
  text-align: center;
}

.coming-soon-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(45deg, #f59e0b, #fbbf24);
  color: #1e293b;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

@media (max-width: 1024px) {
  .dropdown-section {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .dropdown-section {
    flex-direction: column;
    gap: 30px;
  }
  
  .dropdown-column {
    width: 100%;
  }
}