.elementor-2980 .elementor-element.elementor-element-f05afc8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2980 .elementor-element.elementor-element-0a1848c{--spacer-size:136px;}.elementor-2980 .elementor-element.elementor-element-7cfaf2c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-2980 .elementor-element.elementor-element-f05afc8{--content-width:100%;}.elementor-2980 .elementor-element.elementor-element-7cfaf2c{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-b3ff9d6 *//* Container */
.anfrage-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 30px;
  background: #f8fafc;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  font-family: 'Inter', sans-serif;
}

/* Überschrift */
.anfrage-card h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #0B7B86;
  position: relative;
}
.anfrage-card h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg,#19B7C8,#0FA2B1);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Labels & Inputs */
.anfrage-card label {
  font-weight: 600;
  margin-top: 12px;
  display: block;
}
.anfrage-card input,
.anfrage-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  margin-top: 6px;
  font-size: 15px;
  background: #fff;
}
.invalid {
  border-color: red !important;
  background: #ffe6e6 !important;
}

/* Radio-Buttons modern */
.radio-group {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.radio-card {
  flex: 1;
  background: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}
.radio-card input { display: none; }
.radio-card span { display: block; font-size: 15px; }
.radio-card:hover { border-color: #19B7C8; }
.radio-card input:checked + span {
  color: #fff;
  background: linear-gradient(180deg,#19B7C8,#0FA2B1);
  border-radius: 8px;
  padding: 8px;
}

/* Checkbox-Gruppe modern */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.checkbox-card {
  flex: 1 1 calc(50% - 12px);
  background: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}
.checkbox-card input { display: none; }
.checkbox-card span { display: block; font-size: 15px; }
.checkbox-card:hover { border-color: #19B7C8; }
.checkbox-card input:checked + span {
  color: #fff;
  background: linear-gradient(180deg,#19B7C8,#0FA2B1);
  border-radius: 8px;
  padding: 8px;
}
.checkbox-group.invalid {
  border: 2px solid red;
  padding: 8px;
  border-radius: 10px;
}

/* Datei-Upload */
.file-upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
}
.file-upload input[type="file"] { display: none; }
.file-upload span {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-upload button {
  background: linear-gradient(180deg,#19B7C8,#0FA2B1);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
.file-upload button:hover { background: #0B7B86; }

/* Submit Button */
.anfrage-card button[type="submit"] {
  margin-top: 20px;
  background: linear-gradient(180deg,#19B7C8,#0FA2B1);
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
}
.anfrage-card button[type="submit"]:hover { background: #0B7B86; }

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 9999;
}
.overlay.show { opacity: 1; visibility: visible; }
.danke-box {
  text-align: center;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: popIn 0.4s ease;
}
.danke-box h2 {
  color: #0B7B86;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
}
.danke-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #0B7B86;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.danke-box button:hover { background: #19B7C8; }
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}/* End custom CSS */