/* Start custom CSS for section, class: .elementor-element-2a41198 *//* Container Box - Professional Wide Version */
.quote-form-container {
    background: #ffffff;
    padding: 40px;
    border: 2px solid #000000;
    border-radius: 8px;
    max-width: 950px; /* This makes it wider as requested */
    margin: 30px auto;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Centered Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #000000;
    padding-bottom: 20px;
}

/* Form Layout for Rows */
.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

/* Bold Labels and Solid Black Borders */
.quote-form-container label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 13px;
}

.quote-form-container input, 
.quote-form-container select, 
.quote-form-container textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #000000;
    border-radius: 0;
    font-size: 16px;
}

/* Full Width Black Button */
.quote-form-container .wpcf7-submit {
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
    width: 100%;
    border: none;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.quote-form-container .wpcf7-submit:hover {
    background-color: #333333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-row { flex-direction: column; gap: 0; }
}/* End custom CSS */