html, body {
    font-family: 'Inter', sans-serif;
}

input,
textarea,
button,
select,
label,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span {
    font-family: 'Inter', sans-serif;
}
:root {
    --text-2xl: 32px;
    --text-xl: 26px;
    --text-lg: 20px;
    --text-base: 16px;
    --font-weight-medium: 500;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Grund-Typografie */
h1 {
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h2 {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h4 {
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

h5{
    font-family: 'Inter', sans-serif;
}

/* Hauptbereich */
.kontaktbereich {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.kontakt-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.kontakt-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
.header {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 48px;

    background:
            radial-gradient(circle at top right, rgba(159, 178, 191, 0.18), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f5f8fa 100%);

    border: 1px solid rgba(219, 227, 232, 0.9);
    border-radius: 24px;
    box-shadow: 0 18px 42px -30px rgba(18, 32, 41, 0.22);

    position: relative;
    overflow: hidden;
}

.header h4, .contact-form h4, .map-section h4{
    margin: 0 0 12px 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    font-variant-caps: all-small-caps;
    color: #7b8f9c;
    font-family: 'Inter', sans-serif;
}

.header h1 {
    margin: 0 0 16px 0;
    max-width: 12ch;

    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0f1b24;
}

.header p {
    margin: 0;
    color: #6b7c88;
}

.subline-main {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 500;
}

.subline-second {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.55;
}

/* Kontakt-Boxen */
.kontakt-item {
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 26px;

    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    border: 1px solid #dbe3e8;
    border-radius: 24px;
    box-shadow: 0 18px 42px -30px rgba(18, 32, 41, 0.22);

    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kontakt-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px -28px rgba(18, 32, 41, 0.24);
    border-color: #cfd8de;
}

.icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgb(153, 172, 184);
    border-radius: 16px;
    box-shadow: 0 14px 28px -20px rgba(115, 136, 150, 0.55);
}

.icon i {
    font-size: 19px;
    color: #ffffff;
}

.beschriftung {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 52px;
}

.beschriftung h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #0f1b24;
}

.beschriftung a {
    display: inline-block;
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #5f7482;
    text-decoration: none;
}

.beschriftung a:hover {
    text-decoration: underline;
}

.beschriftung p {
    margin: 0 0 4px 0;
    font-size: 15px;
    line-height: 1.55;
    color: #6f7d88;
}

.beschriftung p:last-child {
    margin-bottom: 0;
}

/* Formular */
.contact-form {
    flex: 1;
    width: 100%;

    display: flex;
    flex-direction: column;

    padding: 40px 48px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    border: 1px solid #dbe3e8;
    border-radius: 24px;
    box-shadow: 0 18px 42px -30px rgba(18, 32, 41, 0.22);
}

.contact-form h3, .map-section h3{
    margin: 0 0 8px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f1b24;
}


.contact-form h5, .map-section p {
    margin: 0 0 24px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6f7d88;
}

.contact-form label {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;

    margin-bottom: 20px;
    padding: 14px 16px;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #14202a;

    background: #fbfcfd;
    border: 1px solid #d5dde4;
    border-radius: 14px;
    outline: none;

    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #98a4ae;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: #879eae;
    box-shadow: 0 0 0 4px rgba(159, 178, 191, 0.14);
}

.contact-form textarea {
    min-height: 160px;
    line-height: 1.7;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 4px;
    padding: 16px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 16px;
    cursor: pointer;

    background: linear-gradient(135deg, #9fb2bf 0%, #738896 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;

    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 18px 36px -22px rgba(115, 136, 150, 0.65);
}

.contact-form button:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
}

.contact-form button:active {
    transform: scale(0.98);
}

.contact-form button i {
    margin-right: 8px;
}

.contact-form sup {
    margin-left: 2px;
    font-weight: 700;
    color: #d92d20;
}

.contact-form p {
    margin: 14px 0 0 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: #6f7d88;
}

/* Social Box */



.social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: auto;
    margin-top: 52px;

}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    text-decoration: none;
}
.social-icons i {
    font-size: 50px;
    line-height: 1;

}

.social-icons .fa-instagram {
    color: #E1306C;
}

.social-icons .fa-whatsapp {
    color: #25D366;
}

.social-icons a:hover {
    transform: translateY(-2px);

}

.social-icons a:hover i {
    transform: scale(1.08);
}

/* Call Button */
.call-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;

    background-color: #b4d6ed;
    color: #f3f0f0;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;

    border-radius: 8px;
    transition: 0.3s;
    animation: pulse 2.5s infinite ease-in-out;
}

.call-button:hover {
    background-color: #5b687e;
    transform: scale(1.08);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(180, 214, 237, 0.4);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 20px 8px rgba(180, 214, 237, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(180, 214, 237, 0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .kontaktbereich {
        margin: 50px auto;
        padding: 0 16px;
    }

    .kontakt-container {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .contact-form,
    .kontakt-info,
    .kontakt-item,
    .map-section,
    .header {
        width: 100%;
        box-sizing: border-box;
    }

    .contact-form {
        padding: 32px 24px;
        border-radius: 22px;
    }

    .kontakt-info {
        gap: 16px;
    }

    .kontakt-item {
        min-height: 150px;
        gap: 16px;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .icon i {
        font-size: 17px;
    }

    .beschriftung {
        min-height: 46px;
        flex: 1;
        min-width: 0;
    }

    .beschriftung h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .beschriftung a {
        font-size: 15px;
        margin-bottom: 6px;
        overflow-wrap: anywhere;
    }

    .beschriftung p {
        font-size: 14px;
    }

    .social-icons {
        margin-top: 24px;
    }

    .map-section {
        padding: 24px 20px;
    }
}
.map-section {
    margin: 40px auto;

    padding: 28px 30px;
    background:
            radial-gradient(circle at top right, rgba(159, 178, 191, 0.18), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f5f8fa 100%);
    border: 1px solid #dbe3e8;
    border-radius: 24px;
    box-shadow: 0 18px 42px -30px rgba(18, 32, 41, 0.22);
}

.map-container {
    overflow: hidden;
    border-radius: 18px;

    box-shadow: 0 10px 25px -15px rgba(18, 32, 41, 0.25);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

@keyframes formPulseSoft {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(159, 178, 191, 0);
    }

    30% {
        transform: scale(1.01);
        box-shadow: 0 0 6px 1px rgba(159, 178, 191, 0.12);
    }

    60% {
        transform: scale(1.015);
        box-shadow: 0 0 12px 2px rgba(159, 178, 191, 0.18);
    }

    80% {
        transform: scale(1.01);
        box-shadow: 0 0 6px 1px rgba(159, 178, 191, 0.12);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(159, 178, 191, 0);
    }
}

.contact-form.highlight {
    animation: formPulseSoft 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1b6c3e;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: fadeIn 0.5s ease;
}

.notification.error {
    background: #e74c3c;
}

.progress {
    height: 3px;
    background: white;
    margin-top: 10px;
    animation: shrink 5s linear forwards;
}

@keyframes shrink {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.map-consent-box {
    background: #f5f7fa;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.map-consent-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.map-consent-box p {
    color: #555;
    margin-bottom: 25px;
    font-size: 15px;
}

/* BUTTON */
#accept-maps-only {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(135deg, #111, #333);
    color: white;
    border: none;
    border-radius: 12px;

    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
    transition: all 0.25s ease;
}

#accept-maps-only i {
    font-size: 16px;
}

/* Hover Effekt */
#accept-maps-only:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Klick Effekt */
#accept-maps-only:active {
    transform: scale(0.96);
}
.map-container {
    width: 100%;
    margin-top: 25px;
}

.map-container .map-consent-box {
    width: 100%;
    box-sizing: border-box;
}