/* ==================
QUOTE REQUEST PAGE
================= */

.section-label {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: left;
}


.quote-section {
    padding: 100px 20px;
    background: #f0f4f8;
    color: #2c3e50;
    text-align: center;
}

.quote-section h2 {
    font-size: 3rem;
    color: #ff7f50;
    margin-bottom: 15px;
}

.quote-section p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.6;
}

.quote-form {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Form Rows */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Inputs, Selects, Textarea */
.form-row input,
.form-row select,
.form-row textarea {
    flex: 1 1 48%;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: #ff7f50;
    box-shadow: 0 0 10px rgba(255,127,80,0.2);
}

/* Full width inputs */
.form-row.full-width input,
.form-row.full-width select,
.form-row.full-width textarea {
    flex: 1 1 100%;
}

/* Radio Group */
.radio-group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-group label {
    font-size: 1rem;
    cursor: pointer;
    background: #f7f7f7;
    padding: 12px 20px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.radio-group input[type="radio"] {
    margin-right: 8px;
}

.radio-group label:hover {
    background: #ffefeb;
    transform: translateY(-2px);
}

/* Checkbox Job Types */
.job-types label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    background: #f7f7f7;
    padding: 12px 18px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.job-types input[type="checkbox"] {
    transform: scale(1.2);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.job-types label:hover {
    background: #ffefeb;
    transform: translateY(-2px);
}

/* Textarea */
textarea {
    min-height: 120px;
    resize: none;
}

/* Submit Button */
.btn-submit {
    background: #ff7f50;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: center;
}

.btn-submit:hover {
    background: #e26d3f;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row input,
    .form-row select,
    .form-row textarea {
        flex: 1 1 100%;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .job-types .checkbox-group {
        flex-direction: column;
        gap: 10px;
    }
}
