/* ============================================================
   VOLUNTEER PAGE
   Consistent with partner.css aesthetic — dark, red accent,
   clean typography. No GSAP or animation dependencies.
   ============================================================ */

/* ── Layout ──────────────────────────────────────────────── */

.vol-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

.vol-section {
  padding: 5rem 0;
}

.vol-section--alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vol-section-header {
  margin-bottom: 3rem;
}

.vol-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.25px;
  margin-bottom: 0.625rem;
  line-height: 1.25;
}

.vol-section-desc {
  font-size: 0.95rem;
  color: #777;
  line-height: 1.7;
  max-width: 560px;
}

/* ── Hero ─────────────────────────────────────────────────── */

.vol-hero {
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vol-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}

.vol-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b41616;
  margin-bottom: 1rem;
}

.vol-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.vol-hero-desc {
  font-size: 1rem;
  color: #888;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 540px;
}

.vol-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.vol-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.vol-learn-more:hover { color: #aaa; }
.vol-learn-more svg { transition: transform 0.2s; }
.vol-learn-more:hover svg { transform: translateY(2px); }

.vol-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.75rem;
  border-left: 1px solid rgba(255,255,255,0.07);
  padding-left: 2.5rem;
}

.vol-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.vol-stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.vol-stat-label {
  font-size: 0.72rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ── Benefits grid ───────────────────────────────────────── */

.vol-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
}

.vol-benefit {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}

.vol-benefit:nth-child(odd) {
  border-right: 1px solid rgba(255,255,255,0.05);
}

.vol-benefit:nth-last-child(-n+2) { border-bottom: none; }
.vol-benefit:hover { background: rgba(255,255,255,0.02); }

.vol-benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(180,22,22,0.08);
  border: 1px solid rgba(180,22,22,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b41616;
  flex-shrink: 0;
  margin-top: 1px;
}

.vol-benefit-title {
  font-size: 0.925rem;
  font-weight: 700;
  color: #e0e0e0;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.vol-benefit-desc {
  font-size: 0.825rem;
  color: #666;
  line-height: 1.65;
}

/* ── Teams ───────────────────────────────────────────────── */

.vol-teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.vol-team-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, background 0.2s;
}

.vol-team-card:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

/* Card header: icon + team name + tag */
.vol-team-header {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.vol-team-icon {
  width: 38px;
  height: 38px;
  background: rgba(180,22,22,0.08);
  border: 1px solid rgba(180,22,22,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b41616;
  flex-shrink: 0;
  margin-top: 1px;
}

.vol-team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.25;
}

.vol-team-tag {
  font-size: 0.75rem;
  color: #555;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Body description */
.vol-team-desc {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.75;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Role chips: flat, uniform weight — no red accent */
.vol-team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.vol-role-chip {
  font-size: 0.695rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  color: #777;
  letter-spacing: 0.01em;
}

/* Senior chip: slightly brighter border/text, still neutral */
.vol-role-chip--senior {
  color: #bbb;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.13);
}

/* Requirements: all one visual weight — no colour disruption */
.vol-team-reqs {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.vol-req {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.55;
}

/* Tick icon: muted to sit at the same weight as the text */
.vol-req svg {
  color: #444;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Age/bold text: slightly brighter than body, not white */
.vol-req strong {
  color: #999;
  font-weight: 600;
}

/* Apply link: restrained, no red — colour comes from hover */
.vol-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: color 0.15s;
  letter-spacing: 0.01em;
}

.vol-apply-link::after {
  content: '\2192';
  transition: transform 0.15s;
  font-weight: 400;
}

.vol-apply-link:hover {
  color: #ccc;
}
.vol-apply-link:hover::after { transform: translateX(3px); }

/* ── Process steps ───────────────────────────────────────── */

.vol-process-steps {
  display: flex;
  align-items: flex-start;
  max-width: 800px;
  gap: 0;
}

.vol-process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}

.vol-process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 1rem;
}

.vol-process-body { padding: 0 0.5rem; }

.vol-process-title {
  font-size: 0.925rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.vol-process-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
}

.vol-process-connector {
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 20px;
  height: 1px;
  width: 3rem;
  background: rgba(255,255,255,0.08);
}

/* ── Wizard step indicator ───────────────────────────────── */

.vol-steps-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.vol-step-ind {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.vol-step-ind-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.vol-step-ind-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  transition: color 0.25s;
}

.vol-step-ind-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 0.75rem;
  transition: background 0.25s;
}

.vol-step-ind.active .vol-step-ind-num {
  background: #b41616;
  border-color: #b41616;
  color: #fff;
}
.vol-step-ind.active .vol-step-ind-label { color: #fff; }

.vol-step-ind.completed .vol-step-ind-num {
  background: rgba(52,211,153,0.15);
  border-color: #34d399;
  color: #34d399;
}
.vol-step-ind.completed .vol-step-ind-label { color: #34d399; }
.vol-step-ind.completed + .vol-step-ind-line { background: rgba(52,211,153,0.25); }

/* ── Wizard panels ───────────────────────────────────────── */

.vol-panel {
  display: none;
}
.vol-panel.active {
  display: block;
}

.vol-panel-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vol-panel-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}

.vol-panel-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.65;
}

.vol-wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 1rem;
}

.vol-wizard-nav--right {
  justify-content: flex-end;
}

/* ── Form elements ───────────────────────────────────────── */

.vol-form {
  max-width: 680px;
}

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

.vol-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.vol-form-group:last-child { margin-bottom: 0; }

.vol-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #bbb;
}

.vol-req { color: #666; margin-left: 2px; }

.vol-input,
.vol-select,
.vol-textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  padding: 0.625rem 0.875rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}

.vol-input::placeholder,
.vol-textarea::placeholder { color: rgba(255,255,255,0.18); }

.vol-input:focus,
.vol-select:focus,
.vol-textarea:focus {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.vol-input.invalid,
.vol-select.invalid,
.vol-textarea.invalid { border-color: rgba(180,22,22,0.5); }

.vol-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.25)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.25rem;
}
.vol-select option { background: #1a1a1a; color: #fff; }

.vol-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

.vol-hint {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.1rem;
}

.vol-char-count {
  font-size: 0.75rem;
  color: #444;
  text-align: right;
  margin-top: 0.2rem;
}

/* T&S notice */
.vol-ts-notice {
  display: flex;
  gap: 0.75rem;
  background: rgba(180,22,22,0.05);
  border: 1px solid rgba(180,22,22,0.18);
  border-radius: 8px;
  padding: 1rem 1.125rem;
  font-size: 0.82rem;
  color: #999;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.vol-ts-notice[hidden] { display: none; }

.vol-ts-notice svg {
  color: #b41616;
  flex-shrink: 0;
  margin-top: 2px;
}

.vol-ts-checks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

/* Checkbox */
.vol-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #888;
  line-height: 1.65;
  cursor: pointer;
}
.vol-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #b41616;
  cursor: pointer;
}

.vol-inline-link {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.vol-inline-link:hover { color: #fff; }

/* Turnstile */
.vol-turnstile-wrapper { margin-bottom: 1.25rem; }

/* Nav buttons */
.vol-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: #888;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.vol-btn-back:hover { border-color: rgba(255,255,255,0.2); color: #ccc; }

.vol-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.vol-btn-next:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.vol-btn-next svg { transition: transform 0.15s; }
.vol-btn-next:hover svg { transform: translateX(3px); }

.vol-submit-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.vol-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: #b41616;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
}
.vol-submit-btn:hover:not(:disabled) { background: #c91c1c; }
.vol-submit-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.vol-submit-btn svg { transition: transform 0.15s; }
.vol-submit-btn:not(:disabled):hover svg { transform: translateX(3px); }

.vol-submit-note {
  font-size: 0.75rem;
  color: #555;
}

/* Error banner */
.vol-form-error {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(180,22,22,0.07);
  border: 1px solid rgba(180,22,22,0.2);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.82rem;
  color: #f87171;
  margin-bottom: 1.25rem;
}
.vol-form-error[hidden] { display: none; }
.vol-form-error svg { flex-shrink: 0; margin-top: 1px; }

/* Success */
.vol-form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem;
  background: rgba(52,211,153,0.05);
  border: 1px solid rgba(52,211,153,0.15);
  border-radius: 12px;
  max-width: 680px;
}
.vol-form-success[hidden] { display: none; }
.vol-form-success svg { color: #34d399; flex-shrink: 0; margin-top: 2px; }
.vol-form-success h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.35rem; }
.vol-form-success p  { font-size: 0.875rem; color: #888; line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────── */

.vol-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.vol-faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.75rem;
  transition: background 0.2s, border-color 0.2s;
}

.vol-faq-item:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.1);
}

.vol-faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.vol-faq-a {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.7;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 860px) {
  .vol-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vol-hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-left: 0;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .vol-benefits-grid { grid-template-columns: 1fr; }
  .vol-benefit:nth-child(odd) { border-right: none; }
  .vol-benefit:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .vol-benefit:last-child { border-bottom: none; }

  .vol-teams-grid { grid-template-columns: 1fr; }

  .vol-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .vol-section { padding: 3.5rem 0; }
  .vol-hero { padding: 3rem 0; }
  .vol-hero-title { font-size: 2rem; }
  .vol-section-title { font-size: 1.5rem; }

  .vol-process-steps { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .vol-process-step { flex-direction: row; text-align: left; align-items: flex-start; padding: 0; }
  .vol-process-num { margin-bottom: 0; flex-shrink: 0; }
  .vol-process-body { padding: 0; }
  .vol-process-connector { display: none; }

  .vol-steps-indicator { flex-wrap: nowrap; overflow-x: auto; }
  .vol-step-ind-label { display: none; }
  .vol-step-ind-line { min-width: 2rem; }

  .vol-wizard-nav { flex-direction: column; align-items: stretch; }
  .vol-wizard-nav--right { align-items: flex-end; flex-direction: row; }
  .vol-btn-next, .vol-btn-back { justify-content: center; }

  .vol-submit-group { flex-direction: column; width: 100%; }
  .vol-submit-btn { width: 100%; justify-content: center; }
}
