/* VisitorCenterHub styles extracted from the SFC to keep component modules below 600 lines. */
.humanitarian-hub {
  background: rgba(11, 25, 44, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  color: #fff;
}

.hub-header {
  margin-bottom: 2rem;
}

.eyebrow-gold {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 0.5rem;
}

.hub-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

.hub-header p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

/* Action Tabs */
.action-tabs {
  display: flex;
  background: rgba(5, 9, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.3rem;
  margin-bottom: 1.5rem;
}

.tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.8rem 0;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

.tab-btn:hover {
  color: #fff;
}

.tab-btn.active {
  background: #d4af37;
  color: #0b192c;
  font-weight: 900;
}

/* Info Block */
.info-block {
  background: rgba(5, 9, 18, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.8rem;
}

.info-tag-urgent {
  display: inline-block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #ef4444;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.info-tag-green {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #10b981;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.info-block h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: #fff;
}

.desc-text {
  color: #cbd5e1;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 1.2rem;
}

.detail-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.5rem;
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.6rem 0 0;
  margin-top: 0.6rem;
}

.detail-row .lbl {
  color: #d4af37;
  font-weight: 800;
}

.detail-row .val {
  color: #f1f5f9;
}

/* Form Styling */
.hub-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-input {
  width: 100%;
  background: rgba(5, 9, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  outline: none;
  font-size: 0.95rem;
}

.form-input:focus {
  border-color: rgba(212, 175, 55, 0.4);
}

.input-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Dynamic sub forms */
.dynamic-inputs {
  background: rgba(5, 9, 18, 0.2);
  border-radius: 8px;
}

.form-row-three {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 640px) {
  .form-row-three {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.flex-center {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.custom-check {
  width: 18px;
  height: 18px;
  accent-color: #d4af37;
  cursor: pointer;
}

.check-label {
  font-size: 0.82rem;
  color: #cbd5e1;
  cursor: pointer;
}

.support-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.choice-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  cursor: pointer;
}

.choice-item input {
  accent-color: #d4af37;
  width: 16px;
  height: 16px;
}

.form-textarea {
  width: 100%;
  background: rgba(5, 9, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  outline: none;
  font-size: 0.95rem;
  resize: vertical;
}

.form-textarea:focus {
  border-color: rgba(212, 175, 55, 0.4);
}

/* Submit Button */
.submit-btn {
  margin-top: 1rem;
  background: #d4af37;
  color: #0b192c;
  border: none;
  padding: 1.2rem;
  border-radius: 10px;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  background: #fff;
}

.submit-btn:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(11, 25, 44, 0.2);
  border-top-color: #0b192c;
  border-radius: 50%;
  animation: spin-effect 0.8s linear infinite;
}

@keyframes spin-effect {
  to { transform: rotate(360deg); }
}

/* Success Card */
.hub-success {
  padding: 2rem 0;
}

.success-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 2px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.success-title {
  font-size: 2rem;
  font-weight: 900;
  margin: 0;
  color: #fff;
}

.success-lead {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin: 0.8rem 0 2rem;
  line-height: 1.6;
}

.fintech-receipt {
  background: rgba(5, 9, 18, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.05em;
}

.receipt-row span {
  color: #94a3b8;
  font-weight: 700;
}

.receipt-row strong {
  color: #fff;
}

.receipt-row.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.9rem;
}

.text-gold {
  color: #d4af37 !important;
  font-weight: 800;
}

.instructions-text {
  color: #94a3b8;
  font-size: 0.88rem;
  max-width: 32rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.return-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}

.return-btn:hover {
  background: #d4af37;
  color: #0b192c;
  border-color: #d4af37;
}
