.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid #d9e6e3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 20px rgba(12, 69, 72, 0.06);
  position: sticky;
  top: 10px;
  z-index: 50;
  backdrop-filter: blur(6px);
}

.top-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  direction: rtl;
}

.top-nav-links a {
  text-decoration: none;
  color: #2b4f5a;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
}

.top-nav-links a:hover {
  background: #eff7f5;
  border-color: #d4e6e2;
}

.top-nav-links a.active {
  color: #0d5f59;
  background: #e5f3f0;
  border-color: #b8dad4;
}

.nav-brand {
  text-decoration: none;
  color: #124655;
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav-links {
    width: 100%;
  }
}
