.quote-area {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.quote-form {
    background: #fff;
    padding: 40px;
}

.quote-form h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--main-color);
    margin-bottom: 30px;
}

.quote-form label {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

.quote-form .form-control {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
}

.quote-form .form-control:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(229,41,41,0.1);
}

.btn-quote-submit {
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.btn-quote-submit:hover {
    background: var(--main-color);
    color: #fff;
}

.quote-results {
    background: var(--main-color);
    padding: 40px;
    height: 100%;
}

.quote-results h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 16px;
    border-bottom: 3px solid white;
    margin-bottom: 25px;
}

.quote-result-item {
    background: #fff;
    border-radius: 10px;
    padding: 23px 30px 27px;
    margin-bottom: 24px;
}

.quote-result-item h6 {
    font-weight: 700;
    color: #111;
    font-size: 15px;
}

.quote-result-item p {
    color: #444;
    font-size: 15px;
}

@media (max-width: 991px) {
    .quote-form,
    .quote-results {
        padding: 30px 20px;
    }

    .quote-results {
        border-radius: 0 0 12px 12px;
    }
}
