/* contatti.css */
.contacts-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:start;
}

.contact-left{
  display:flex;
  flex-direction:column;
  gap: 28px;
}
.center{ text-align:center; }
.mt{ margin-top: 18px; }

.contact-card{
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(238,242,234,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}
.contact-card h2{
  margin: 0 0 12px;
  font-size: 20px;
}
.contact-card h3{
  margin: 18px 0 8px;
  font-size: 16px;
  opacity: .95;
}

/* Versione più "pulita": stesso tono del sito, senza blocchi troppo scuri */
.contact-card--dark{
  background: rgba(22,50,31,.88);
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
}
.contact-card--dark a{ color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.contact-card--dark .muted{ opacity:.92; }

.contact-card--light{
  background: #eef2ea;
  color: #102013;
  border: 1px solid rgba(0,0,0,.06);
}
.contact-lines p{ margin: 8px 0; }

.map-wrap{
  margin-top: 12px;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.12);
}
.map-wrap iframe{
  width: 100%;
  height: 330px;
  border: 0;
  display:block;
}
.map-link{
  display:inline-block;
  margin-top: 10px;
  font-weight: 600;
}

.contact-cta{
  display:flex;
  gap: 14px;
  justify-content:flex-start;
  flex-wrap:wrap;
  margin: 10px 0 4px;
}

/* Pulsanti telefono/whatsapp (stile più "pulito" e coerente) */
.call-btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-weight: 700;
  text-decoration: none;
  min-width: 0;
}
.call-btn:hover{ background: rgba(255,255,255,.12); }
.call-btn span{ font-size: 14px; }

.contact-form .field{ margin-bottom: 14px; }
.contact-form textarea{
  width: 100%;
  resize: vertical;
}
.hint{ font-size: 13px; opacity:.85; margin: 8px 0 0; }
.msg{ margin-top: 12px; font-weight: 600; }

/* Link privacy: niente blu acceso */
.privacy a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.msg.is-error{ color: #7a1414; }
.msg.is-success{ color: #1f5c2e; }

@media (max-width: 860px){
  .contacts-grid{ grid-template-columns: 1fr; }
  .map-wrap iframe{ height: 280px; }
}


/* Layout simmetrico: due riquadri con altezza simile */
.contacts-grid{
  align-items: stretch;
}
.contact-card{
  display:flex;
  flex-direction:column;
}
.contact-card .map-wrap{
  margin-top: 12px;
}
.contact-card .map-link{ margin-top: 10px; }
.contact-card--light .contact-form{ margin-top: 8px; }
