/* ================================
   Build Quote Widget Styles
================================ */
.build-quote-widget {
    position: relative;
}

/* Button */
.build-quote-btn {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.build-quote-btn:hover {
    background-color: #005bb5;
}

/* Popup */
.build-quote-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    overflow-y: auto;
}

.popup-inner {
    background: #fff;
    max-width: 850px;
    margin: 60px auto;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.close-popup {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #444;
    font-weight: bold;
}

.popup-inner h3 {
    margin-bottom: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

/* Form Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.quote-form textarea {
    min-height: 80px;
    resize: vertical;
}

/* Radio Buttons */
.radio-group label {
    font-weight: 500;
}

.radio-group div {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

/* Submit Button */
.submit-quote {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 14px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.submit-quote:hover {
    background-color: #005bb5;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .popup-inner {
        margin: 40px 15px;
        padding: 25px;
    }
}