/* Navbar styles for CSA HR Agency */
.csa-navbar {
  background: #ffffff;
  border-bottom: 1px solid #e6e9ee;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  position: sticky;
  top: 0;
  z-index: 50;
}
.csa-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.csa-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.csa-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.csa-brand-text {
  color: #0f1724;
  font-weight: 700;
  font-size: 18px;
}
.csa-toggle {
  margin-left: auto;
  background: transparent;
  border: none;
  display: none;
  cursor: pointer;
}
.csa-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #102a43;
  margin: 4px 0;
  border-radius: 2px;
}
.csa-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.csa-nav-list {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.csa-nav-item a {
  color: #102a43;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
}
.csa-nav-item a:hover {
  background: #f1f5f9;
}
.csa-cta .csa-apply {
  background: linear-gradient(90deg,#007cba,#005a87);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 880px) {
  .csa-toggle { display: block; }
  .csa-nav { position: absolute; right: 20px; top: 70px; background: white; box-shadow: 0 6px 18px rgba(16,42,67,0.08); border-radius: 8px; padding: 12px; display: none; flex-direction: column; min-width: 220px; }
  .csa-nav-list { flex-direction: column; gap: 8px; }
  .csa-cta { margin-top: 8px; }
  .csa-container { align-items: center; }
  .csa-brand-text { display: none; }
}

/* Show when open */
.csa-nav.open { display: flex !important; }
