/* --- Floating Quote Button --- */
.quote-btn {
    pointer-events: auto;
    margin-top: 8px;
    padding: clamp(5px, 1vw, 7px) clamp(8px, 2vw, 16px);
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.4);
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 1.2vw, 1.5rem)!important;
    background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 0;
}
.quote-btn:hover { 
    transform: translateY(-3px) scale(1.02); color: white; 
}

@media (max-width: 991px) {
    .quote-btn { 
        margin-right: 0; 
        padding: 12px 24px; 
        font-size: 0.95rem;
    }
}
#quoteModal {
    z-index: 4000 !important; 
}

/* --- Modal Styles --- */
#quoteModal .modal-content { 
    border-radius: 12px; 
    border: none; 
    box-shadow: 0 25px 50px rgba(0,0,0,0.2); 
}

#quoteModal .modal-header { 
    background: #f8f9fa; 
    border-bottom: 1px solid #eee; 
    padding: 1rem 1.5rem; 
}

#quoteModal .form-label { 
    font-size: 0.9rem; 
    color: #444; 
    font-weight: 600;
    margin-bottom: 8px;
}

#quoteModal .form-control, #quoteModal .form-select {
    border-radius: 4px;
    border: 1px solid #ced4da; 
    font-size: 0.95rem;
}

#quoteModal .form-control:focus, #quoteModal .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1); 
    outline: none;
}

.btn-submit-quote {
    background: #0d6efd;
    color: #fff;
    border: none; 
    padding: 12px 60px;
    font-size: 1.1rem; 
    font-weight: 600; 
    border-radius: 4px; 
    transition: 0.3s;
    width: auto; 
    min-width: 280px;
}

.btn-submit-quote:hover {
    background: #0056b3;
}


@media (max-width: 575.98px) {
    .btn-submit-quote {
        width: 100%;
        min-width: 0;
        padding: 11px 18px;
        font-size: 1rem;
    }

    #quoteModal .modal-body {
        padding: 1rem !important;
    }
}
