/* Kontakt + Footer */

/* ===================== KONTAKT ===================== */
.kontakt {
    padding: 7rem 2.5rem;
    background: linear-gradient(135deg, #34608B 0%, #3D6D9A 50%, #4A7DAB 100%);
    color: #FFFFFF;
}
.kontakt-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem;
}
.kontakt h2 { font-size: clamp(2rem, 3.5vw, 2.6rem); color: #FFFFFF; margin-bottom: 1rem; }
.kontakt-desc { color: var(--text-on-dark-soft); font-size: 1.05rem; margin-bottom: 2.5rem; }
.kontakt-details { display: flex; flex-direction: column; gap: 1.5rem; }
.kd-item { display: flex; gap: 1rem; align-items: flex-start; }
.kd-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 10px; background: rgba(196,30,42,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 1.1rem;
}
.kd-item strong { display: block; color: #FFFFFF; font-size: 0.95rem; }
.kd-item span { color: var(--text-on-dark-soft); font-size: 0.9rem; }
.kontakt-map {
    border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    aspect-ratio: 4/3;
}
.kontakt-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.8); }

/* ===================== KONTAKT-FORMULAR ===================== */
.kontakt-form-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    backdrop-filter: blur(4px);
}
.kf-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.4rem, 2vw, 1.7rem);
    color: #FFFFFF;
    margin-bottom: 0.4rem;
}
.kf-subtitle {
    color: var(--text-on-dark-soft);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
.kf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.kf-field { display: flex; flex-direction: column; gap: 0.4rem; }
.kf-field label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-on-dark-soft);
}
.kf-field input,
.kf-field select,
.kf-field textarea {
    width: 100%;
    padding: 0.75rem 0.95rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #FFFFFF;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.kf-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.kf-field input::placeholder,
.kf-field textarea::placeholder { color: rgba(255,255,255,0.55); }
.kf-field select { appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23ffffff' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.kf-field select option { color: #1A1A1A; background: #FFFFFF; }
.kf-field input:focus,
.kf-field select:focus,
.kf-field textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px var(--red-tint-medium);
}
.kf-field input.kf-invalid,
.kf-field textarea.kf-invalid,
.kf-field select.kf-invalid {
    border-color: var(--red);
    background: rgba(196,30,42,0.12);
}
.kf-dsgvo {
    display: flex; align-items: flex-start; gap: 0.6rem;
    font-size: 0.88rem; color: var(--text-on-dark-soft);
    line-height: 1.5; cursor: pointer;
    margin-top: 0.25rem;
}
.kf-dsgvo input[type="checkbox"] {
    margin-top: 3px;
    width: 16px; height: 16px;
    accent-color: var(--red);
    cursor: pointer;
}
.kf-dsgvo a { color: #FFFFFF; text-decoration: underline; }
.kf-dsgvo a:hover { color: var(--red-bright); }
.kf-dsgvo.kf-dsgvo-invalid { color: #FFFFFF; }
.kf-dsgvo.kf-dsgvo-invalid input[type="checkbox"] { outline: 2px solid var(--red); outline-offset: 2px; border-radius: 2px; }
.kf-error {
    background: rgba(196,30,42,0.18);
    border: 1px solid rgba(196,30,42,0.45);
    color: #FFFFFF;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}
.kf-submit {
    margin-top: 0.5rem;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: #FFFFFF;
    background: var(--red);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 6px 16px rgba(196,30,42,0.35);
}
.kf-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(196,30,42,0.45); }
.kf-submit:focus-visible { outline: 3px solid #FFFFFF; outline-offset: 2px; }
.kf-success {
    text-align: center;
    padding: 2rem 1.25rem;
}
.kf-success-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(74,222,128,0.18);
    color: var(--success-on-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; font-weight: 700;
    border: 1px solid rgba(74,222,128,0.45);
}
.kontakt-map-wide {
    max-width: 1200px;
    margin: 4rem auto 0;
    border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    aspect-ratio: 21/9;
}
.kontakt-map-wide iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.8); }

@media (max-width: 900px) {
    .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .kontakt-form-card { padding: 1.5rem; }
    .kf-row { grid-template-columns: 1fr; }
    .kontakt-map-wide { aspect-ratio: 4/3; margin-top: 2.5rem; }
}

/* ===================== FOOTER ===================== */
footer {
    background: linear-gradient(135deg, #34608B 0%, #3D6D9A 50%, #4A7DAB 100%); padding: 4rem 2.5rem 6rem;
    color: var(--text-on-dark-soft); font-size: 0.88rem;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
}
.footer-brand img { height: 42px; margin-bottom: 1rem; }
.footer-brand p { max-width: 360px; line-height: 1.7; }
.footer-col h4 {
    font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
    font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-on-dark-soft); margin-bottom: 1.25rem;
}
.footer-col a {
    display: block; color: var(--text-on-dark-soft);
    text-decoration: none; margin-bottom: 0.6rem;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--red-bright); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: var(--text-on-dark-soft);
}
.footer-social a:hover {
    background: var(--red); border-color: var(--red);
    color: #fff; transform: translateY(-2px);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.kontakt-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.kontakt-social a {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.6rem 1.1rem; border-radius: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-on-dark-soft); font-size: 0.85rem; font-weight: 600;
    text-decoration: none; transition: all 0.3s;
}
.kontakt-social a:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
    color: #fff; transform: translateY(-2px);
}
.kontakt-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
    max-width: 1200px; margin: 2.5rem auto 0;
    padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem; flex-wrap: wrap; gap: 1rem;
}

