/* Custom quote button and modal styles */

.quote-btn-container {
    margin: 20px 0;
}

.site-button.quote-btn {
    background-color: #EE3131;
    color: #fff;
    padding: 12px 30px;
    display: inline-block;
    transform: skewX(-20deg);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.site-button.quote-btn:hover {
    background-color: #c92a2a;
    color: #fff;
}

.site-button.quote-btn span {
    display: inline-block;
    transform: skewX(20deg);
}

/* Modal styling */
#quoteModal .modal-header {
    background-color: #EE3131;
    color: #fff;
}

#quoteModal .modal-header .close {
    color: #fff;
    opacity: 0.8;
}

#quoteModal .modal-header .modal-title {
    font-weight: 600;
    text-transform: uppercase;
}

#quoteModal .form-group label {
    font-weight: 600;
}

#quoteModal .form-group .required:after {
    content: " *";
    color: #EE3131;
}

#quoteModal .modal-footer .site-button {
    background-color: #EE3131;
    color: #fff;
    border: none;
    padding: 10px 20px;
}

#quote-response {
    margin-top: 15px;
    padding: 10px;
    display: none;
}

#quote-response.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#quote-response.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
