/* ========================================= */
/* FILE: contatti.css                        */
/* ========================================= */

.contact-section, .directions-section, .map-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}
.map-section { border-bottom: none; }

.contact-h2 {
    color: #a9343c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

/* --- GRID CONTATTI (Info + Form) --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}
@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Info Colonna */
.contact-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.contact-details-box {
    background: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}
.detail-item:last-child { margin-bottom: 0; }
.detail-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: -3px;
}

/* Form Colonna */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #a9343c;
}
.form-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
    box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #a9343c;
    outline: none;
    box-shadow: 0 0 5px rgba(169,52,60,0.2);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.checkbox-group input {
    width: auto;
    margin-top: 5px;
    cursor: pointer;
}
.checkbox-group label {
    font-weight: 400;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
}
.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 15px;
    margin-top: 10px;
}
.form-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 20px;
    text-align: center;
    font-style: italic;
}

/* --- COME RAGGIUNGERCI --- */
.directions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
@media (min-width: 900px) {
    .directions-grid { grid-template-columns: 2fr 1fr; }
}
.directions-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.directions-box h3 {
    color: #a9343c;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.directions-list { list-style: none; padding: 0; }
.directions-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    color: #444;
}
.directions-list li::before {
    content: "•"; color: #a9343c; font-size: 1.5rem;
    position: absolute; left: 0; top: -4px;
}
.whatsapp-alert {
    background: #e8f5e9;
    border-left: 4px solid #25d366;
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 4px;
    color: #2e7d32;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Trasporti (Manteniamo lo stile del Territorio) */
.transport-box p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.5;
}
.btn-transport {
    display: block; background: #a9343c; color: #fff; text-align: center;
    padding: 12px; border-radius: 4px; text-decoration: none;
    margin-bottom: 15px; font-weight: 600; transition: 0.3s;
}
.btn-transport:hover { background: #8e2b32; color: #fff; }

/* --- DOVE SIAMO / MAPPA --- */
.map-address {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}
.map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* --- TABELLA ORARI --- */
.hours-container { 
    width: 100%; 
}
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 0.95rem;
}
.hours-list li:last-child { 
    border-bottom: none; 
}
.hours-list .day { 
    font-weight: 600; 
    color: #555; 
}
.hours-list .time { 
    color: #a9343c; 
    font-weight: 500;
}