/* === BLUERDRACHE KONTAKTFORMULAR === */

.bd-contact-form-wrapper {
    max-width: 700px;
    margin: 30px auto;
    padding: 35px;
    background: linear-gradient(135deg, #0a1628 0%, #111d2e 100%);
    border: 1px solid #1e3a5f;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.05);
    color: #e0e6ed;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.bd-contact-title {
    margin: 0 0 10px;
    font-size: 24px;
    color: #00d4ff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.bd-contact-subtitle {
    margin: 0 0 25px;
    font-size: 14px;
    color: #7a8fa8;
    line-height: 1.5;
}

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

.bd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bd-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bd-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #7a8fa8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bd-form-group input,
.bd-form-group select,
.bd-form-group textarea {
    padding: 14px 16px;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid #1e3a5f;
    border-radius: 10px;
    color: #e0e6ed;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    outline: none;
}

.bd-form-group input::placeholder,
.bd-form-group textarea::placeholder {
    color: #4a5a6a;
}

.bd-form-group input:focus,
.bd-form-group select:focus,
.bd-form-group textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
    background: rgba(30, 58, 95, 0.5);
}

.bd-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.bd-form-group select option {
    background: #0a1628;
    color: #e0e6ed;
}

.bd-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.bd-privacy-check {
    margin-top: 5px;
}

.bd-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: #7a8fa8;
    line-height: 1.5;
}

.bd-checkbox-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.bd-checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(30, 58, 95, 0.3);
    border: 2px solid #1e3a5f;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-top: 2px;
}

.bd-checkbox-label input:checked + .bd-checkmark {
    background: #00d4ff;
    border-color: #00d4ff;
}

.bd-checkbox-label input:checked + .bd-checkmark::after {
    content: '✓';
    color: #0a1628;
    font-size: 14px;
    font-weight: 700;
}

.bd-checkbox-label a {
    color: #00d4ff;
    text-decoration: underline;
}

.bd-checkbox-label a:hover {
    color: #fff;
}

.bd-recaptcha-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.bd-contact-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, #00d4ff 0%, #2a5a8f 100%);
    color: #0a1628;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.bd-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.bd-contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.bd-contact-submit:hover::before {
    left: 100%;
}

.bd-contact-success {
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00c853;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 600;
}

.bd-contact-error {
    background: rgba(255, 23, 68, 0.15);
    border: 1px solid rgba(255, 23, 68, 0.3);
    color: #ff1744;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .bd-contact-form-wrapper {
        padding: 20px;
        margin: 15px;
    }
    .bd-form-row {
        grid-template-columns: 1fr;
    }
    .bd-contact-title {
        font-size: 20px;
    }
}

.bd-recaptcha-v3-info {
    font-size: 12px;
    color: #7a8fa8;
    text-align: center;
    padding: 8px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
    border: 1px dashed #1e3a5f;
}

.bd-recaptcha-v3-info::before {
    content: '🔒 ';
}
