/* =========================
   MAPS: Background behalten, aber ohne schwarzen Leerraum
   ========================= */

/* Section bekommt Background wie die Seite */
#maps.ftco-appointment{
  position: relative;
  padding: 60px 0;                 /* gleichmäßiger Abstand */
  background-image: url(images/bg_4.jpg); /* <-- dein Holz/Background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay über Background, aber nur innerhalb der Section */
#maps.ftco-appointment .overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}

/* Inhalt über Overlay */
#maps.ftco-appointment .container,
#maps.ftco-appointment .container-wrap{
  position: relative;
  z-index: 2;
}

/* WICHTIG: Map bekommt Höhe -> kein leerer Block */
#maps iframe{
  display: block;
  width: 100%;
  height: 420px;   /* Desktop-Höhe der Karte */
  border: 0;
  border-radius: 12px;
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}

@media (max-width: 768px){
  #maps.ftco-appointment{
    padding: 40px 0;
  }
  #maps iframe{
    height: 320px;
    border-radius: 10px;
  }
}

/* =========================
   CONTACT: Abstand stabil halten
   ========================= */
#contact.ftco-intro{
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 768px){
  #contact.ftco-intro{
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
