#kontakt-wrapper {
    max-width:1200px;
    
}
/* Sektions-Hintergrund */
.contact-section-dark {
background-color: rgba(9, 9, 14, 0.4) !important;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-top: 1px solid rgba(255, 255, 255, 0.04);
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
position: relative;
z-index: 1;
}

/* Formular Glas-Karte mit gepunktetem dot.png Layer und flexibler Breitenbegrenzung */
.contact-form-glass-card {
background: rgba(18, 18, 29, 0.65) url('assets/images/bg/dot.png') repeat;
background-blend-mode: overlay;
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 24px;
box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
padding: 3.5rem;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
max-width: 1000px; /* Passt sich dynamisch dem Inhalt an */
width: 100%;
margin: 0 auto!important; /* Zentriert die Karte horizontal auf der Seite */;
}

.contact-form-glass-card:hover {
border-color: rgba(255, 16, 131, 0.25);
box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 16, 131, 0.05);
}

/* Eingabefelder im edlen Dark-Glow-Stil */
.custom-input {
background-color: rgba(255, 255, 255, 0.03) !important;
border: 1px solid rgba(255, 255, 255, 0.08) !important;
border-radius: 12px !important;
color: #ffffff !important;
padding: 0.9rem 1.25rem !important;
font-size: 0.95rem !important;
transition: all 0.25s ease-in-out !important;
width: 100%;
}

.custom-input::placeholder {
color: #64748b !important;
}

.custom-input:focus {
background-color: rgba(255, 255, 255, 0.06) !important;
border-color: #FF1083 !important;
box-shadow: 0 0 15px rgba(255, 16, 131, 0.25) !important;
outline: none !important;
}

/* Symmetrische Custom Checkbox im Neon-Style */
.custom-checkbox {
background-color: rgba(255, 255, 255, 0.03) !important;
border: 1px solid rgba(255, 255, 255, 0.15) !important;
width: 1.25rem !important;
height: 1.25rem !important;
transition: all 0.2s ease !important;
cursor: pointer;
}

.custom-checkbox:checked {
background-color: #FF1083 !important;
border-color: #FF1083 !important;
box-shadow: 0 0 10px #FF1083 !important;
}

/* Premium Button mit Farbverlauf und massivem Schatten */
.btn-submit {
background: linear-gradient(135deg, #FF1083 0%, #9D00FF 100%) !important;
border: none !important;
border-radius: 12px !important;
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
box-shadow: 0 4px 20px rgba(255, 16, 131, 0.3) !important;
}

.btn-submit:hover {
transform: translateY(-2px) !important;
box-shadow: 0 8px 30px rgba(255, 16, 131, 0.5), 0 0 20px rgba(157, 0, 255, 0.4) !important;
}

/* Responsive SVG-Skalierung für das Header-Element */
.outline-header-svg {
width: 100%;
max-width: 320px; /* Schützt vor Überdehnung auf Ultra-Wide Monitoren */
height: auto;
display: inline-block;
transition: transform 0.3s ease;
}

.outline-header-svg:hover {
transform: scale(1.02);
}

/* DSGVO Link */
.text-neon-pink {
color: #FF1083 !important;
text-shadow: 0 0 8px rgba(255, 16, 131, 0.2);
}

.text-neon-pink:hover {
color: #ffffff !important;
text-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Captcha Box Design */
.captcha-box {
background: rgba(255, 255, 255, 0.015) !important;
border: 1px solid rgba(255, 255, 255, 0.04) !important;
border-radius: 14px !important;
padding: 1.25rem !important;
backdrop-filter: blur(5px);
}

/* Korrektur für Grid-Ausrichtung im Kontakt-Formular */
.contact-form-glass-card form {
display: block;
width: 100%;
}

/* Responsive Anpassungen für Paddings */
@media (max-width: 767.98px) {
.contact-form-glass-card {
  padding: 2.5rem 1.5rem;
}
}
/* Container für das Input-Feld */
.input-container {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
}

/* Basis-Styling des Input-Feldes */
.input-field {
  width: 100%;
  padding: 16px 16px 16px 50px; /* Platz links für das Icon */
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--neutral-100);
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.input-field:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 10px rgba(250, 0, 129, 0.2);
}

/* Das Icon - liegt fest im Feld */
.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-500);
  pointer-events: none;
  transition: color 0.3s ease;
}

/* Label - das "schwebende" Element */
.floating-label {
  position: absolute;
  left: 50px; /* Label startet rechts neben dem Icon */
  top: 50%;
  transform: translateY(-50%);
  color: var(--neutral-500);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  padding: 0 4px;
}

/* Animation: Label wandert hoch bei Fokus oder Wert-Eingabe */
.input-field:focus + .floating-label,
.input-field:not(:placeholder-shown) + .floating-label {
  top: 0;
  left: 45px;
  font-size: 12px;
  color: var(--neon-pink);
  background: var(--dark-bg); /* Überdeckt den Rahmen beim Hochwandern */
}

/* Icon Farbe beim Fokus ändern */
.input-field:focus ~ .input-icon {
  color: var(--neon-pink);
}

/* Bestehender Wrapper bleibt erhalten, nur ergänzt */
.floating-input-group {
  position: relative;
}

.floating-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 3;
}

.floating-textarea + .floating-icon,
.floating-input-group textarea ~ .floating-icon {
  top: 24px;
  transform: none;
}

.floating-input-group.is-valid .floating-icon {
  color: #22c55e;
  text-shadow: 0 0 10px rgba(34, 197, 94, 0.35);
}

.floating-input-group.is-invalid .floating-icon {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
}

.floating-input-group.is-valid .floating-input {
  border-color: rgba(34, 197, 94, 0.75) !important;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.floating-input-group.is-invalid .floating-input {
  border-color: rgba(239, 68, 68, 0.75) !important;
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.18);
}

.floating-input-group.is-valid .floating-label {
  color: #22c55e;
}

.floating-input-group.is-invalid .floating-label {
  color: #ef4444;
}