/* Add class 'quotation-form' to the Elementor Form Widget */
.quotation-form .elementor-field-group {
    margin-bottom: 20px;
}
.quotation-form .elementor-field-textual {
    height: 60px;
    background-color: #ffffff;
    border: 1px solid #D9D9D9;
    border-radius: 0px;
    padding: 18px;
    font-size: 18px;
    color: #333333;
}
.quotation-form .elementor-field-textual::placeholder {
    color: #B8B8B8;
}
.quotation-form textarea.elementor-field-textual {
    height: 320px;
}
.quotation-form .elementor-button {
    width: 440px;
    height: 80px;
    background-color: #FFC107 !important;
    border-radius: 999px !important;
    color: #111111 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.quotation-form .elementor-button:hover {
    background-color: #E6AE00 !important;
    transform: scale(1.02);
}
/* Button-style checkboxes */
.quotation-form .elementor-field-type-checkbox .elementor-field-option {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #ffffff;
    border: 1px solid #D9D9D9;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.quotation-form .elementor-field-type-checkbox .elementor-field-option input[type="checkbox"] {
    display: none;
}
.quotation-form .elementor-field-type-checkbox .elementor-field-option:has(input[type="checkbox"]:checked) {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #111111;
}
.quotation-form .elementor-field-type-checkbox .elementor-field-option:hover {
    background-color: #FFC107;
    color: #111111;
}
