.contact-section {
    background: linear-gradient(135deg, #0d1117, #161b22);
    padding: 100px 20px;
    font-family: Arial, sans-serif;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 50px;
    /*box-shadow: 0 10px 40px rgba(0,0,0,0.4);*/
	box-shadow:
        0 0 20px rgba(72,167,255,.6),
        inset 0 0 20px rgba(72,167,255,.2);box-shadow:
        0 0 20px rgba(72,167,255,.6),
        inset 0 0 20px rgba(72,167,255,.2);
}

.contact-container h2 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.contact-container p {
    color: #b0b7c3;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bfff;
    box-shadow: 0 0 0 4px rgba(0,191,255,0.15);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #00bfff, #0077ff);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,119,255,0.35);
}

/* DSGVO Checkbox */

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b7c3;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #00bfff;
    cursor: pointer;
}

.checkbox-wrapper a {
    color: #00bfff;
    text-decoration: none;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

/* Honeypot verstecken */

.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Responsive */

@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
    }

    .contact-container {
        padding: 30px;
    }

    .contact-container h2 {
        font-size: 32px;
    }
}
.form-status {
    margin-top: 10px;
}

.success-message {
    background: rgba(0,255,120,0.12);
    border: 1px solid rgba(0,255,120,0.3);
    color: #7dffb3;
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.error-message {
    background: rgba(255,0,80,0.12);
    border: 1px solid rgba(255,0,80,0.3);
    color: #ff8aa8;
    padding: 16px;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(10px);
}