.sticky-contact-wrapper {
  position: fixed;
  right: 20px;
  bottom: 90px; /* Abstand wegen Top-Button */
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.sticky-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #C4001A;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.sticky-btn:hover {
  background-color: #A30015;
  transform: translateY(-2px);
}

.sticky-btn.phone {
  background-color: #1F1F1F; /* dezenter als rot */
}

.sticky-btn.phone:hover {
  background-color: #333333;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .sticky-contact-wrapper {
    right: 15px;
    bottom: 80px;
  }

  .sticky-btn {
    padding: 10px 12px;
    font-size: 13px;
  }
}



/* Helles Formular */
.light-form .w-form-row-label {
  color: #333 !important;
}

/* Dunkles Formular */
.dark-form .w-form-row-label {
  color: #fff !important;
}