.quote-section{
   padding-left: 30px;
   padding-top: 50px;
}

/* Quote Button */
.ask-for-quote-btn {
    background: #ff0000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ask-for-quote-btn:hover {
    background: #8B0000;
}

/* Popup Styles */
.quote-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.quote-popup-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.quote-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    background: #f8f9fa;
}

.quote-popup-header h3 {
    margin: 0;
    color: #333;
}

.quote-popup-close {
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.quote-popup-close:hover {
    color: #000;
}

#quote-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007cba;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-quote-btn {
    background: #ff0000;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.cancel-quote-btn {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.submit-quote-btn:hover {
    background: #8B0000;
}

.cancel-quote-btn:hover {
    background: #545b62;
}

.submit-quote-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

body.popup-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .quote-popup-content {
        margin: 10% auto;
        width: 95%;
    }
}