.simple-request-box {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.request-step {
    display: none;
}

.request-step.active {
    display: block;
}

.simple-request-progress {
    margin-bottom: 35px;
}

.progress-line {
    height: 8px;
    background: #eee;
    border-radius: 20px;
    overflow: hidden;
}

.progress-line span {
    display: block;
    height: 100%;
    width: 0;
    background: #ffb400;
    transition: .3s;
}

#stepLabel {
    margin-top: 10px;
    font-weight: 600;
}

.request-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.request-cards label {
    cursor: pointer;
}

.request-cards input {
    display: none;
}

.request-cards span {
    display: block;
    border: 2px solid #eee;
    padding: 20px;
    border-radius: 14px;
    font-weight: 700;
    background: #fafafa;
    transition: .2s;
}

.request-cards input:checked+span {
    border-color: #ffb400;
    background: #fff7df;
}

.request-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.privacy-note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

@media(max-width: 768px) {
    .simple-request-box {
        padding: 25px;
    }

    .request-cards {
        grid-template-columns: 1fr;
    }

    .request-actions {
        flex-direction: column;
        gap: 10px;
    }

    .request-actions button {
        width: 100%;
    }
}
/* =====================================
   UPLOAD AREA
===================================== */

.upload-area {

    border: 2px dashed #d9d9d9;

    border-radius: 18px;

    padding: 50px 30px;

    text-align: center;

    background: #fafafa;

    cursor: pointer;

    transition: .25s ease;
}

.upload-area:hover {

    border-color: #f7941d;

    background: #fff7f0;
}

.upload-area.dragover {

    border-color: #f7941d;

    background: #fff2e5;
}

.upload-icon {

    font-size: 52px;

    color: #f7941d;

    margin-bottom: 15px;
}

.upload-content h4 {

    font-size: 24px;

    margin-bottom: 10px;

    font-weight: 700;
}

.upload-content p {

    color: #777;

    margin-bottom: 20px;
}

.upload-btn {

    background: #f7941d;

    border: none;

    color: #fff;

    padding: 12px 28px;

    border-radius: 40px;

    font-weight: 600;

    transition: .2s ease;
}

.upload-btn:hover {

    opacity: .9;
}

#uploadedFiles {

    margin-top: 20px;
}

.uploaded-file {

    display: flex;

    align-items: center;

    justify-content: space-between;

    background: #fff;

    border: 1px solid #eee;

    padding: 12px 15px;

    border-radius: 12px;

    margin-bottom: 10px;
}

.uploaded-file i {

    color: #f7941d;

    margin-right: 10px;
}
#citySelect {

    pointer-events: auto !important;

    opacity: 1 !important;
}