/* ===== Citizen Corner floating link button (site-wide, links to /citizen-corner) ===== */
.citizen-corner-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1040;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron-600, #e07a1f), var(--saffron-700, #c9640f));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(224, 122, 31, .35);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.citizen-corner-fab:hover,
.citizen-corner-fab:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(224, 122, 31, .45);
  color: #fff;
}

.citizen-corner-fab i {
  font-size: 18px;
}

@media (max-width: 576px) {
  .citizen-corner-fab-label { display: none; }
  .citizen-corner-fab { padding: 14px; }
}

/* ===== Citizen Corner page: benefit list ===== */
.cc-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cc-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cc-benefit .icon-tile {
  flex-shrink: 0;
}

/* ===== Citizen Corner page: tabs (styled to match .filter-pill / .eyebrow language, not raw Bootstrap) ===== */
.cc-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--grey-200, #e9ecef);
  margin-bottom: 28px;
}

.cc-tab {
  appearance: none;
  border: none;
  background: none;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--grey-500, #6b7280);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}

.cc-tab:hover {
  color: var(--navy, #0f2c52);
}

.cc-tab.active {
  color: var(--navy, #0f2c52);
  border-bottom-color: var(--saffron-600, #e07a1f);
}

.cc-tab-pane {
  display: none;
}

.cc-tab-pane.active {
  display: block;
  animation: cc-fade-in .25s ease;
}

@keyframes cc-fade-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Honeypot field — invisible to real visitors */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}
