/* ===== Journey UI CSS ===== */
.wrapper{
  max-width:900px;
  margin:30px auto;
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  font-family:Arial,sans-serif;
}

.wrapper h2{
  margin:0 0 10px;
  font-size:22px;
}

.subtitle{
  color:#666;
  font-size:14px;
  margin-bottom:20px;
}

/* Progress */
.progress-wrap{
  background:#e9ecef;
  border-radius:10px;
  overflow:hidden;
  height:10px;
  margin-bottom:25px;
}

.progress-bar{
  height:10px;
  width:0%;
  background:#d63638;
  transition:0.3s ease;
}

.step-title{
  font-size:18px;
  margin-bottom:15px;
  font-weight:bold;
}

.step{
  display:none;
}
.step.active{
  display:block;
}

.section-box{
  background:#f9fafb;
  padding:15px;
  border-radius:10px;
  border:1px solid #e5e7eb;
  margin-bottom:18px;
}

.field-row{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:8px 0;
  border-bottom:1px solid #eaeaea;
}

.field-row:last-child{
  border-bottom:none;
}

.left-field{
  display:flex;
  gap:10px;
  align-items:center;
  flex:1;
}

.left-field label{
  font-size:14px;
  cursor:pointer;
}

.upload-wrap{
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:240px;
}

.upload-wrap input[type="file"]{
  font-size:12px;
  padding:5px;
  border:1px solid #d1d5db;
  border-radius:6px;
  background:#fff;
}

.small-note{
  font-size:12px;
  color:#6b7280;
}

/* Buttons */
.btn-row{
  display:flex;
  justify-content:space-between;
  margin-top:20px;
  gap:10px;
}

.btn-back{
  padding:10px 16px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-weight:bold;
  background:#e5e7eb;
}

.btn-next{
  padding:10px 16px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-weight:bold;
  background:#d63638;
  color:#fff;
}

.btn-submit{
  padding:10px 16px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  font-weight:bold;
  background:#16a34a;
  color:#fff;
}

/* Radio */
.radio-wrap{
  display:flex;
  gap:20px;
  margin-top:10px;
  margin-bottom:10px;
}

/* Review */
.review-box{
  background:#f3f4f6;
  border:1px solid #e5e7eb;
  padding:15px;
  border-radius:10px;
  font-size:14px;
}

.review-box ul{
  padding-left:18px;
  margin:0;
}

/* ===== Collapsible Accordion Style ===== */
.step {
  display: block !important; /* IMPORTANT: show all steps on one page */
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.step-title.zcj-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 15px;
  background: #f3f4f6;
  margin: 0;
}

.zcj-step-content {
  padding: 15px;
  background: #fff;
}

.step .zcj-arrow {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.step.open .zcj-arrow {
  transform: rotate(180deg);
}

/* remove old multi-step behavior */
.step.active {
  display: block !important;
}


.review-box li{
  margin-bottom:6px;
}

.progress-wrap {
    width: 100%;
    height: 10px;
    background: #e9e9e9;
    border-radius: 50px;
    overflow: hidden;
    margin: 15px 0 25px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: #d63638;
    border-radius: 50px;
    transition: width 0.3s ease-in-out;
}

/* Mobile */
@media(max-width:700px){
  .field-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .upload-wrap{
    min-width:100%;
    width:100%;
  }
}
