/* Stili dedicati ESCLUSIVAMENTE per la pagina contatti.html */

/* Contenitore principale della pagina */
.contatti-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

/* Header della sezione contatti */
.contatti-header h1 {
    font-size: 2.8rem;
    color: #2c5e3f;
    line-height: 1.2;
}
.contatti-header .sottotitolo {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

/* Divisore */
.divider {
    border: 0;
    height: 1px;
    background-color: #e0e0e0;
    margin: 2.5rem 0;
}

/* Griglia per le informazioni di contatto */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
}
.contact-info-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}
.contact-info-item .icon { font-size: 2.5rem; color: #2c5e3f; margin-bottom: 1rem; }
.contact-info-item h3 { font-size: 1.2rem; color: #2c5e3f; margin-bottom: 0.5rem; }
.contact-info-item p { font-size: 1rem; line-height: 1.6; color: #333; margin: 0; }
.contact-info-item a { color: #2c5e3f; text-decoration: none; font-weight: bold; }
.contact-info-item a:hover { color: #d4b830; }


/* NUOVO CONTENITORE PER WHATSAPP E MAPPA */
.cta-map-container {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* BLOCCO WHATSAPP */
.whatsapp-cta-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    flex: 1; 
}

.whatsapp-cta-box .icon {
    font-size: 3.5rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.whatsapp-cta-box h2 {
    font-size: 2rem;
    color: #2c5e3f;
    margin-bottom: 1rem;
}

.whatsapp-cta-box p {
    font-size: 1.1rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

/* Contenitore per il pulsante */
.whatsapp-button-container {
    margin-top: 2rem;
}

/* Stile pulsante WhatsApp migliorato */
.btn-whatsapp {
    background-color: #25D366 !important; /* Forza il colore */
    color: white !important;
    padding: 15px 30px !important;
    font-size: 1.1rem !important;
    font-weight: bold !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-whatsapp i {
    font-size: 1.3rem !important;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    background-color: #128C7E !important;
}

/* COLONNA MAPPA */
.map-column { 
    flex: 1; 
    min-width: 0;
}
.map-column h2 {
    font-size: 2rem;
    color: #2c5e3f;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Responsività */
@media (max-width: 992px) {
    .cta-map-container {
        flex-direction: column; 
    }
}

@media (max-width: 768px) {
    .contatti-wrapper {
        padding: 1.5rem 1rem;
    }
    .contatti-header h1 {
        font-size: 2.2rem;
    }
    .contatti-header .sottotitolo {
        font-size: 1.1rem;
    }
    .map-column h2 {
        font-size: 1.6rem;
    }
    .contact-info-item {
        padding: 1.5rem;
    }
}
