/* ══════════════════════════════════════
   WTCM — Volunteer Application Form
   ══════════════════════════════════════ */
:root {
  --gold:#F5C800; --black:#0A0A0A; --white:#FFF;
  --gray:#1A1A1A; --gray2:#242424; --border:rgba(255,255,255,.1);
  --purple:#6B3FA0; --green:#2D7A3A; --orange:#E06A00;
}
body { font-family: 'Barlow', sans-serif; background: var(--black); color: var(--white); min-height: 100vh; margin: 0; }

/* HEADER */
.app-header { background: var(--black); border-bottom: 2px solid var(--gold); padding: 1rem 2rem; display: flex; align-items: center; gap: .75rem; }
.h-logo-link { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.h-star { width: 28px; height: 28px; background: var(--gold); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); flex-shrink: 0; }
.h-wm { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.h-wm span { color: var(--gold); display: block; font-size: .55rem; letter-spacing: .2em; font-weight: 600; }

/* PROGRESS BAR */
.progress-bar { background: var(--gray); height: 4px; position: relative; }
.progress-fill { height: 4px; background: var(--gold); transition: width .5s ease; }
.step-indicators { display: flex; justify-content: space-between; padding: .75rem 2rem; background: var(--gray); flex-wrap: wrap; gap: .35rem .75rem; }
.step-ind { display: flex; align-items: center; gap: .5rem; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); transition: color .3s; }
.step-ind.active { color: var(--gold); }
.step-ind.done { color: rgba(255,255,255,.5); }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); flex-shrink: 0; transition: background .3s; }
.step-ind.active .step-dot { background: var(--gold); }
.step-ind.done .step-dot { background: rgba(255,255,255,.4); }

/* LAYOUT */
.app-body { display: grid; grid-template-columns: 280px 1fr; min-height: calc(100vh - 120px); }

/* SIDEBAR */
.sidebar { background: var(--gray); border-right: 1px solid var(--border); padding: 2rem 1.5rem; }
.sidebar-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1rem; }
.sidebar-steps { display: flex; flex-direction: column; gap: .25rem; }
.s-step { display: flex; align-items: center; gap: .75rem; padding: .7rem .75rem; border-radius: 3px; cursor: pointer; transition: background .2s; }
.s-step.active { background: rgba(245,200,0,.1); }
.s-step.done { background: rgba(255,255,255,.04); }
.s-step-num { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .75rem; color: rgba(255,255,255,.3); flex-shrink: 0; transition: all .3s; }
.s-step.active .s-step-num { border-color: var(--gold); color: var(--gold); }
.s-step.done .s-step-num { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: var(--white); }
.s-step-label { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .3s; }
.s-step.active .s-step-label { color: var(--white); font-weight: 600; }
.s-step.done .s-step-label { color: rgba(255,255,255,.5); }
.sidebar-note { margin-top: 2rem; background: rgba(245,200,0,.07); border: 1px solid rgba(245,200,0,.15); border-radius: 4px; padding: 1rem; }
.sidebar-note p { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.65; }
.sidebar-note strong { color: var(--gold); }

/* FORM AREA */
.form-area { padding: 2.5rem 2.5rem 5rem; max-width: 700px; }
.step-panel { display: none; }
.step-panel.active { display: block; }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2.2rem; text-transform: uppercase; color: var(--white); margin-bottom: .4rem; }
.step-subtitle { font-size: .9rem; color: rgba(255,255,255,.5); margin-bottom: 2rem; line-height: 1.6; font-weight: 300; }
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.form-label .req { color: var(--gold); }
.form-input, .form-select, .form-textarea { background: var(--gray2); border: 1.5px solid var(--border); color: var(--white); font-family: 'Barlow', sans-serif; font-size: .9rem; padding: .75rem 1rem; border-radius: 3px; outline: none; transition: border-color .2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.25); }
.form-select option { background: var(--gray); }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.form-hint { font-size: .72rem; color: rgba(255,255,255,.3); line-height: 1.5; }

/* CHECKBOX GRID */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.check-item { display: flex; align-items: center; gap: .6rem; cursor: pointer; padding: .6rem; border-radius: 3px; border: 1.5px solid var(--border); transition: border-color .2s; }
.check-item:hover { border-color: rgba(245,200,0,.3); }
.check-item input { display: none; }
.check-box { width: 16px; height: 16px; border-radius: 2px; border: 1.5px solid rgba(255,255,255,.2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.check-item input:checked + .check-box { background: var(--gold); border-color: var(--gold); }
.check-item input:checked + .check-box::after { content: '✓'; font-size: .65rem; color: var(--black); font-weight: 700; }
.check-label { font-size: .8rem; color: rgba(255,255,255,.6); }

/* RADIO GROUP */
.radio-group { display: flex; gap: .75rem; flex-wrap: wrap; }
.radio-card { padding: .65rem 1.1rem; border-radius: 3px; border: 1.5px solid var(--border); cursor: pointer; transition: all .2s; display: flex; align-items: center; gap: .5rem; }
.radio-card:hover { border-color: rgba(245,200,0,.35); }
.radio-card input { display: none; }
.radio-card.selected { border-color: var(--gold); background: rgba(245,200,0,.08); }
.radio-card span { font-size: .82rem; color: rgba(255,255,255,.7); }
.radio-card.selected span { color: var(--white); }

/* BANK VERIFICATION */
.bank-verify-section { background: rgba(245,200,0,.06); border: 1px solid rgba(245,200,0,.2); border-radius: 6px; padding: 1.5rem; margin-top: .5rem; }
.bv-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: .75rem; }
.bv-steps { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.bv-step { display: flex; align-items: flex-start; gap: .75rem; }
.bv-step-num { width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: .05rem; }
.bv-step p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.bv-step strong { color: var(--white); }
.verify-btn { background: var(--gold); color: var(--black); padding: .7rem 1.5rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: opacity .2s; }
.verify-btn:hover { opacity: .88; }
.verify-status { display: none; margin-top: .75rem; background: rgba(45,122,58,.15); border: 1px solid rgba(45,122,58,.35); border-radius: 3px; padding: .65rem 1rem; font-size: .82rem; color: #7EC88A; }

/* FILE UPLOAD */
.file-zone { border: 2px dashed rgba(255,255,255,.15); border-radius: 4px; padding: 1.75rem; text-align: center; cursor: pointer; transition: border-color .2s; display: block; }
.file-zone:hover { border-color: var(--gold); }
.file-zone-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.file-zone p { font-size: .82rem; color: rgba(255,255,255,.4); }
.file-zone input { display: none; }
.file-zone.has-file { border-color: var(--green); border-style: solid; }
.file-zone.has-file p { color: #7EC88A; }

/* DECLARATION */
.decl-box { background: var(--gray2); border-radius: 4px; padding: 1.25rem; font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 1rem; }
.decl-check { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; }
.decl-check-box { width: 18px; height: 18px; border-radius: 2px; border: 1.5px solid rgba(255,255,255,.2); flex-shrink: 0; margin-top: .1rem; display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: .72rem; color: var(--black); font-weight: 700; }
.decl-text { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* SUCCESS */
.success-panel { text-align: center; padding: 3rem 1rem; }
.success-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.success-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 3rem; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.success-sub { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 460px; margin: 0 auto 2rem; }
.success-ref { background: rgba(245,200,0,.08); border: 1px solid rgba(245,200,0,.2); border-radius: 4px; padding: 1.25rem; margin-bottom: 2rem; display: inline-block; }
.success-ref-label { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .25rem; }
.success-ref-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--gold); }
.success-download-link { color: var(--gold); text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid var(--gold); padding: .7rem 1.5rem; border-radius: 3px; }
.success-again-btn { background: var(--gold); color: var(--black); padding: .7rem 1.5rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; }

/* NAV BUTTONS */
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--border); gap: 1rem; }
.btn-prev { background: transparent; color: rgba(255,255,255,.5); padding: .7rem 1.4rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid rgba(255,255,255,.15); border-radius: 3px; cursor: pointer; transition: all .2s; }
.btn-prev:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn-next { background: var(--gold); color: var(--black); padding: .7rem 1.75rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: opacity .2s; margin-left: auto; }
.btn-next:hover { opacity: .88; }
.btn-submit { background: var(--green); color: var(--white); padding: .8rem 2rem; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer; transition: opacity .2s; margin-left: auto; }
.btn-submit:hover { opacity: .88; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .app-body { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .form-area { padding: 1.75rem 1.5rem 4rem; max-width: 100%; }
  .step-title { font-size: 1.7rem; }
}
@media (max-width: 760px) {
  .form-row { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .step-indicators { display: none; }
  .app-header { padding: .85rem 1.25rem; }
}
@media (max-width: 480px) {
  .form-area { padding: 1.25rem 1rem 3rem; }
  .step-title { font-size: 1.4rem; }
  .success-title { font-size: 2rem; }
  .form-nav { flex-wrap: wrap; }
  .btn-prev, .btn-next, .btn-submit { width: 100%; text-align: center; margin-left: 0; }
}
