.contact-top {
  background: #f9f9f9;
  padding: 60px 20px;
  position: relative;
  background-image: url('/assets/uploads/contatti.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 130px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

a[href^="mailto"], 
a[href^="tel"] {
  color: inherit !important;
  text-decoration: none !important;
}

.contact-top .intro {
  font-size: 14px;
  margin: 0;
  color: #fafafa;
}

.contact-top h1 {
  color: white;
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0 30px;
}

.contact-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-column {
  flex: 1;
  min-width: 250px;
}

.contact-item {
  margin-bottom: 25px;
  color: white;
}

.contact-item strong {
  display: block;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  color: #fafafa;
cursor: pointer;
}

/* FORM SECTION */
.contact-form-section {
  color:#242424;
  padding: 50px 20px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
select,
textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 10px 5px;
  color:#242424;
  font-size: 14px;
  outline: none;
}

select {
  background-color: transparent;
  color: white;
}

option {
  color: black;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 14px;
}

input:focus,
textarea:focus {
  border-bottom: 1px solid #005ea2;
}

button {
  margin-top: 30px;
  margin-bottom: 50px;
  align-self: center;
  padding: 14px 25px;
  background: #143750; /* colore bottone */
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 999px; /* pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #1d4b78; /* leggermente più chiaro */
}

/* WHATSAPP SECTION */
.whatsapp-section {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.whatsapp-container {
  max-width: 600px;
  margin: 0 auto;
}

.whatsapp-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #242424;
}

.whatsapp-section p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #555;
}

.whatsapp-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #25D366;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.whatsapp-btn i {
  font-size: 20px;
}

.whatsapp-qr img {
margin-top:15px;
  width: 160px;
  height: 160px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-columns {
    flex-direction: column;
  }

  .contact-form-section h2 {
    text-align: center;
  }

  input, textarea, select {
    font-size: 15px;
  }

  button {
    width: 80%;
  }

  .whatsapp-qr img {
    width: 130px;
    height: 130px;
  }
.whatsapp-section {
  padding: 30px 20px;
}
.contact-form-section {
  padding: 30px 20px;
}
}