/* Wrapper */
.srp-form-wrapper {
    background:#f7f7f2;
    padding:25px;
    border-radius:10px;
    margin-bottom:20px;
    max-width:650px;
    margin-left:auto;
    margin-right:auto;
}

/* Heading */
.srp-form-heading {
    text-align:center;
    margin-top:0;
    margin-bottom:20px;
    font-size:24px;
    font-weight:600;
    color:#333;
}

/* Field wrapper */
.srp-field {
    margin-bottom:15px;
    width:90%;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
}

/* Labels */
.srp-field label {
    display:block;
    margin-bottom:5px;
    font-weight:600;
    color:#333;
}

/* Inputs */
.srp-field input[type="text"],
.srp-field input[type="email"],
.srp-field input[type="tel"],
.srp-field select,
.srp-field textarea {
    width:100%;
    padding:10px;
    border-radius:5px;
    border:1px solid #ccc;
    box-sizing:border-box;
    background:#fff;
}

/* Two-column layout */
.srp-row-2col {
    display:flex;
    gap:20px;
    width:90%;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:15px;
}

.srp-col {
    flex:1;
}

/* Section heading */
.srp-section-heading {
    width:90%;
    margin:25px auto 10px auto;
    font-size:18px;
    font-weight:700;
    color:#333;
    border-bottom:2px solid #ddd;
    padding-bottom:5px;
}

/* Job type checkboxes */
.srp-tasks-wrapper {
    margin-top:5px;
}

.srp-task-label {
    display:block;
    margin-top:4px;
    font-weight:500;
}

/* Submit button */
.srp-submit {
    margin-top:20px;
    padding:12px 25px;
    border:none;
    border-radius:5px;
    background:#000;
    color:#fff;
    cursor:pointer;
    font-size:16px;
    display:block;
    width:90%;
    margin-left:auto;
    margin-right:auto;
}

/* Error messages */
.srp-error {
    color:#c00;
    font-size:12px;
    margin-top:4px;
}
/* Success Response */
.srp-form-wrapper .srp-success {
    width: 90% !important;
    margin: 0 auto 20px auto !important;
    padding: 15px 20px !important;
    background: #d4f8d4; !important; /* gold background */
    border-left: 5px solid #2e8b57; !important; /* green accent */
    color: #1f5e3a; /* dark green text */
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    text-align: center !important;
    display: block !important;
}


/* Mobile responsive */
@media (max-width: 600px) {
    .srp-row-2col {
        flex-direction:column;
    }
}