/* WRAPPER */
.zim-form-wrapper {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* SIDEBAR */
.zim-sidebar {
    width: 240px;
    border-right: 1px solid #e2e8f0;
    padding-right: 20px;
}

.zim-steps-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zim-steps-nav li {
    padding: 12px 10px;
    margin-bottom: 6px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    transition: 0.2s;
}

.zim-steps-nav li.active {
    background: #1a7a4a;
    color: #fff;
}

.zim-steps-nav li:hover {
    background: #e6f4ee;
}

/* MAIN CONTENT */
.zim-form-content {
    flex: 1;
}

/* PROGRESS BAR */
.zim-progress-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 25px;
    overflow: hidden;
}

.zim-progress-fill {
    height: 100%;
    width: 0%;
    background: #1a7a4a;
    transition: width 0.3s ease;
}

/* STEPS */
.zim-step {
    display: none;
}

.zim-step.active {
    display: block;
}

/* FORM ELEMENTS */
label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a202c;
}

input[type="text"],
input[type="url"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    background: #fff;
}

textarea {
    resize: vertical;
}

/* FILE UPLOAD */
input[type="file"] {
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px dashed #94a3b8;
    margin-bottom: 20px;
}

/* SUBMIT BUTTON */
.zim-submit-btn {
    background: #1a7a4a;
    color: #fff;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.zim-submit-btn:hover {
    background: #145c36;
}

/* SUCCESS SCREEN */
.zim-success {
    text-align: center;
    padding: 40px;
    background: #e6f4ee;
    border-radius: 12px;
    border: 1px solid #cce9dd;
}

.zim-success.hidden {
    display: none;
}

.zim-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    background: #1a7a4a;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
}

/* REVIEW BOX */
#zim-review {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .zim-form-wrapper {
        flex-direction: column;
    }

    .zim-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }
}
