/* css/style-contatti.css */

/* --- HEADER DI PAGINA --- */
.page-header {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 64, 128, 0.9)), url('https://picsum.photos/1600/400?random=303') center center/cover;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}
.page-header h1 { margin: 0; font-size: 42px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.page-header p { margin: 10px auto 0 auto; font-size: 18px; opacity: 0.9; max-width: 700px; }

/* --- LAYOUT PRINCIPALE --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Colonne: 40% info, 60% form */
    gap: 50px;
    align-items: flex-start;
}
.contact-info, .contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

/* --- BLOCCO INFORMAZIONI --- */
.contact-info h3 { margin: 0 0 15px 0; font-size: 22px; color: #004080; }
.contact-info p { color: #6c757d; line-height: 1.6; margin-bottom: 30px; }
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}
.info-item svg { color: #0056b3; flex-shrink: 0; margin-top: 3px; }
.info-item div { display: flex; flex-direction: column; }
.info-item strong { font-size: 16px; color: #333; margin-bottom: 3px; }
.info-item span, .info-item a { font-size: 15px; color: #495057; text-decoration: none; }
.info-item a:hover { text-decoration: underline; }

/* --- MODULO DI CONTATTO --- */
.contact-form h3 { margin: 0 0 25px 0; font-size: 22px; color: #004080; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: #495057; font-size: 14px; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px 15px; border: 1px solid #ced4da; border-radius: 5px; font-size: 16px; box-sizing: border-box; font-family: inherit; transition: box-shadow 0.2s, border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: #0056b3; box-shadow: 0 0 0 0.2rem rgba(0,86,179,.25);
}
.btn-submit {
    width: 100%; padding: 12px; background-color: #d12727; color: white; border: none; border-radius: 5px; font-size: 16px; font-weight: bold; cursor: pointer; transition: background-color 0.2s;
}
.btn-submit:hover { background-color: #a71f1f; }
.btn-submit:disabled { background-color: #6c757d; cursor: not-allowed; }
.form-message {
    margin-top: 15px; padding: 12px; border-radius: 5px; font-weight: bold; display: block; text-align: center;
}
.form-message.success { background-color: #d4edda; color: #155724; }
.form-message.error { background-color: #f8d7da; color: #721c24; }

/* --- MAPPA --- */
.map-container { margin-top: 60px; text-align: center; }
.map-container h3 { font-size: 28px; margin-bottom: 20px; }
.map-container iframe { max-width: 100%; border-radius: 8px; box-shadow: 0 5px 25px rgba(0,0,0,0.07); }

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Le colonne si impilano */
    }
}