/* Floating Contact Icons */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Gemeinsames Button-Design */
.btn-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
  transition: transform .15s ease, box-shadow .15s ease;
}
.floating-contact a,
.floating-contact a:hover,
.floating-contact a:focus,
.floating-contact a:active {
  text-decoration: none;
}

/* Hover */
.btn-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 26px rgba(0,0,0,.4);
}

/* Icon-Größe */
.btn-float .material-icons {
  font-size: 30px;
}

/* WhatsApp Bild */
.wa-img {
  width: 28px;
  height: 28px;
  display: block;
}

/* Farben */
.btn-phone {
  background: #cc2e2e;
}

.btn-whatsapp {
  background: #25D366;
}

.btn-mail {
  background: #3498db;
}
/* Back to Top Button */
.btn-top {
  background: #555;
  border: none;
  cursor: pointer;
  display: none; /* Start: versteckt */
}

/* optional etwas dezenter */
.btn-top:hover {
  background: #333;
}

/* ===== Header Formular Overlay ===== */
.header-form-wrap { position: relative; }

.header-form {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 420px;
  max-width: calc(100% - 32px);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  padding: 14px;
  z-index: 50;
}

.header-form .form-title{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
}

.header-form label{
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 992px){
  .header-form{
    position: static;
    width: auto;
    margin: 12px auto 0 auto;
  }
}

/* ===== Kontakt Sektion ===== */
.contact-section{
  margin: 40px 0;
  padding: 22px;
  border-radius: 14px;
  background: #f6f6f6;
  border: 1px solid rgba(0,0,0,.06);
}

.contact-section h2{ margin-top: 0; }
.small-note{ font-size: 12px; opacity: .75; }
/* ===== Header: Slider + Formular nebeneinander ===== */
.header-split { margin-top: 10px; }

.header-slider {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

/* Formular rechts */
.header-form-box{
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  padding: 14px;
  height: 100%;
}

.header-form-box .form-title{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 800;
}

.header-form-box label{
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.small-note{ font-size: 12px; opacity: .75; }

/* Auf kleinen Displays untereinander */
@media (max-width: 991.98px){
  .header-form-box{ margin-top: 10px; }
}
  .cta-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin: 10px 0 18px;
  }
  .cta-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration:none;
    font-weight:700;
    line-height:1;
  }
  .cta-call{
    background:#c00000;
    color:#fff;
  }
  .cta-request{
    background:#fff;
    color:#c00000;
    border:2px solid #c00000;
  }
  .cta-btn:hover{ opacity:.9; }

