/* ========================================
DPL PROPERTY SERVICES QUOTE FORM
======================================== */

.dpl-quote-form {
max-width: 900px;
margin: 0 auto;
}

/* Sections */

.quote-section {
padding: 30px;
border-radius: 14px;
margin-bottom: 25px;
box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.section-blue {
background: #e3e7f0;
}

.section-grey {
background: #e3e7f0;
}

.section-white {
background: #ffffff;
}

/* Rows */

.dpl-quote-form .form-row {
margin-bottom: 20px;
}


/* Labels */

.dpl-quote-form label {
display: block;
margin-bottom: 8px;
margin-top: 8px;
font-weight: 600;
color: #2f3b52;
font-size: 15px;
}

/* Inputs */

.dpl-quote-form input[type="text"],
.dpl-quote-form input[type="email"],
.dpl-quote-form input[type="tel"],
.dpl-quote-form select,
.dpl-quote-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d9e1ea;
    border-radius: 8px;
    background: #ffffff !important;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Focus States */

.dpl-quote-form input,
.dpl-quote-form select,
.dpl-quote-form textarea {
border-color: #3558ff;
outline: none;
box-shadow: 0 0 0 3px rgba(53,88,255,0.12);
}

/* Textarea */

.dpl-quote-form textarea {
min-height: 180px;
resize: vertical;
}

/* File Upload */

.dpl-quote-form input[type="file"] {
width: 100%;
padding: 18px;
border: 2px dashed #3558ff;
border-radius: 8px;
background: #ffffff;
box-sizing: border-box;
}

/* Radio Buttons */

.dpl-quote-form .wpcf7-radio {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.dpl-quote-form .wpcf7-list-item {
margin: 0;
}

.dpl-quote-form .wpcf7-list-item label {
display: flex;
align-items: center;
gap: 8px;
font-weight: 500;
cursor: pointer;
}

/* Submit Button */

.dpl-quote-form .wpcf7-submit {
width: 100%;
background: #3558ff;
color: #ffffff;
border: none;
border-radius: 8px;
padding: 18px;
font-size: 16px;
font-weight: 700;
letter-spacing: 0.5px;
cursor: pointer;
transition: all 0.3s ease;
}

.dpl-quote-form .wpcf7-submit {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(53,88,255,0.25);
}

/* Validation */

.dpl-quote-form .wpcf7-not-valid-tip {
margin-top: 5px;
font-size: 13px;
}

/* Mobile */

@media (max-width: 768px) {

.quote-section {
    padding: 20px;
    margin-bottom: 15px;
}

.dpl-quote-form .wpcf7-radio {
    flex-direction: column;
    gap: 10px;
}

}
.dpl-quote-form select {
    background-color: #ffffff !important;
}
.form-row{
    margin-bottom: 10px;
}