/* Estilos específicos para la página "Solicitar Presupuesto" */

.quote-form-section {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.quote-form-section h2 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 20px;
}

.quote-form-section p.section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#quote-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#quote-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
    font-size: 1em;
}

#quote-form input,
#quote-form textarea,
#quote-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#quote-form input:focus,
#quote-form textarea:focus,
#quote-form select:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.2);
    outline: none;
}

#submit-quote-button {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: center;
    margin-top: 10px;
    min-width: 250px;
}

#submit-quote-button:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#submit-quote-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#quote-form-message {
    margin-top: 10px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    word-wrap: break-word;
    width: 100%;
}

#quote-form-message.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#quote-form-message.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#quote-form-message ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    text-align: left;
}

.hidden {
    display: none;
}