/* Kontakt-Sektion (#contact) */
.contact_part {
    background-color: #0d0d0d;
}

.contact_wrapper {
    align-items: flex-start;
}

.contact_info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact_info_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact_info_item i {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #EA1C29;
    color: #ffffff;
    font-size: 22px;
}

.contact_info_item h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 6px;
}

.contact_info_item p,
.contact_info_item a {
    color: #cfcfcf;
    margin: 0;
}

.contact_info_item a:hover {
    color: #EA1C29;
}

.contact_form .form-group {
    margin-bottom: 20px;
}

.contact_form label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact_form .form-control {
    width: 100%;
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 18px;
    color: #1a1a1a;
    font-size: 15px;
}

.contact_form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot-Feld: fuer Menschen unsichtbar, fuer die meisten Bots aber im DOM auffindbar */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact_form button[type="submit"] {
    border: none;
    cursor: pointer;
}

.contact_form .form-message {
    margin-top: 15px;
    font-weight: 600;
}

.contact_form .form-message.success {
    color: #4caf50;
}

.contact_form .form-message.error {
    color: #EA1C29;
}

.contact_form button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .contact_info {
        margin-bottom: 40px;
    }
}
