/* ===== Algemene sectie styling ===== */
.contact {
  padding: 30px 0;
  background: #f9f9f9;
}

/* ===== Contact info blok ===== */
.contact__content {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: none;
}

/* ===== Titels ===== */
.contact__content h5 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

/* ===== Adres en telefoon ===== */
.contact__address ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact__address li {
  margin-bottom: 15px;
}

.contact__address h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #555;
}

.contact__address p {
  margin: 0;
  color: #777;
}

/* ===== Formulier ===== */
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 13px;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.contact__form button {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  background: #007bff;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.contact__form button:hover {
  background: #0056b3;
}

/* ===== Kaart ===== */
.contact__map iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ===== Tablet (≥ 577px) ===== */
@media (min-width: 577px) {
  .contact {
    padding: 40px 0;
  }

  .contact__content {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  }

  .contact__map iframe {
    height: 400px;
  }
}

/* ===== Desktop (≥ 992px) ===== */
@media (min-width: 992px) {
  .contact {
    padding: 60px 0;
  }

  .contact__content {
    padding: 30px;
    border-radius: 12px;
  }

  .contact__form button {
    width: auto;
    padding: 12px 25px;
  }

  .contact__map iframe {
    height: 780px;
    border-radius: 12px;
  }
}
