/* GW19 KONTAKTFORMULAR */
.gw19-kontakt { width: 100%; padding: 80px 0; position: relative; }
.gw19-kontakt__inner { max-width: 900px; margin: 0 auto; padding: 0 40px; }
.gw19-kontakt__content { max-width: 700px; }

.gw19-kontakt__heading {
    font-family: "swear-display", serif; font-weight: 400; font-style: italic;
    color: #3B5249; font-size: 48px; margin: 0 0 12px 0;
}
.gw19-kontakt__subtitle {
    font-family: "helvetica-lt-pro", sans-serif; font-weight: 300;
    color: #E8A090; font-size: 14px; margin: 0 0 35px 0;
}

/* Form */
.gw19-kontakt__form { display: flex; flex-direction: column; gap: 15px; }
.gw19-kontakt__row { display: flex; gap: 15px; }
.gw19-kontakt__row--3 > * { flex: 1; }
.gw19-kontakt__row--2 > * { flex: 1; }

.gw19-kontakt__input, .gw19-kontakt__textarea {
    width: 100%; padding: 14px 16px;
    border: 1px solid #ddd; background: #fff;
    font-family: "helvetica-lt-pro", sans-serif; font-size: 14px; font-weight: 300;
    color: #333; outline: none; transition: border-color 0.3s ease;
    -webkit-appearance: none; border-radius: 0;
}
.gw19-kontakt__input:focus, .gw19-kontakt__textarea:focus { border-color: #3B5249; }
.gw19-kontakt__input--full { width: 100%; }
.gw19-kontakt__textarea { resize: vertical; min-height: 120px; }

select.gw19-kontakt__input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    padding-right: 35px;
}

.gw19-kontakt__submit {
    display: inline-block; width: auto; align-self: flex-start;
    padding: 14px 40px; background-color: #E8A090; color: #ffffff;
    border: none; cursor: pointer;
    font-family: "recursive-sans-linear-static", sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    transition: background-color 0.3s ease;
}
.gw19-kontakt__submit:hover { background-color: #d4897a; }

/* Floating Contact Buttons */
.gw19-kontakt__floating {
    position: fixed; right: 0; top: 50%; transform: translateY(-50%);
    z-index: 999; display: flex; flex-direction: column; gap: 2px;
}
.gw19-kontakt__float-btn {
    display: flex; align-items: center; justify-content: center;
    width: 50px; height: 50px; background-color: #E8A090;
    text-decoration: none; transition: background-color 0.3s ease;
}
.gw19-kontakt__float-btn:hover { background-color: #d4897a; }

@media (max-width: 690px) {
    .gw19-kontakt { padding: 50px 0; }
    .gw19-kontakt__inner { padding: 0 20px; }
    .gw19-kontakt__heading { font-size: 36px; }
    .gw19-kontakt__row { flex-direction: column; }
    .gw19-kontakt__floating { display: none; }
}
