.quote-form-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex; justify-content: center; align-items: center;
}
.quote-form-content {
    background: #fff;
    padding: 20px;
    max-width: 500px;
    border-radius: 5px;
}


#request-quote-button {
    background-color: #ff6600; /* Nice orange color */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#request-quote-button:hover {
    background-color: #e65c00; /* Darker orange on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

#request-quote-button:active {
    transform: scale(0.95); /* Click effect */
}
