/* =========================================================
   AL-YAQEEN – KONTAKT
   ========================================================= */

:root {
    --kontakt-green: #083f2b;
    --kontakt-green-dark: #052c1f;
    --kontakt-green-light: #0d553b;
    --kontakt-gold: #c89b3c;
    --kontakt-gold-light: #d8b45a;
    --kontakt-white: #ffffff;
    --kontakt-text: #24332d;
    --kontakt-muted: #66736d;
    --kontakt-border: #dfe5e1;
    --kontakt-light: #f5f7f5;
}


/* =========================================================
   HERO
   ========================================================= */

.kontakt-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image:
        url("/static/images/kontakt.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kontakt-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(255, 255, 255, 0.90) 34%,
            rgba(255, 255, 255, 0.45) 58%,
            rgba(255, 255, 255, 0.05) 100%
        );
}

.kontakt-hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 80px 30px;
}

.kontakt-hero-content {
    max-width: 650px;
}

.kontakt-hero-label {
    margin-bottom: 20px;

    color: var(--kontakt-gold);

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.kontakt-hero h1 {
    margin: 0 0 25px;

    color: var(--kontakt-green);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 700;
}

.kontakt-hero p {
    max-width: 590px;

    margin: 0;

    color: #34433c;

    font-size: 19px;
    line-height: 1.75;
}


/* =========================================================
   INTRO
   ========================================================= */

/* =========================================================
   KONTAKT INTRO – GRÜNER VERLAUF
   ========================================================= */

.kontakt-intro {
    position: relative;

    padding: 95px 30px 90px;

    background: linear-gradient(
        135deg,
        #e4eee8 0%,
        #d2e1d9 45%,
        #b9cec2 100%
    );

    overflow: hidden;
}

.kontakt-intro .kontakt-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}
.kontakt-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.kontakt-intro .kontakt-container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.kontakt-intro-heading span,
.kontakt-section-label {
    display: block;

    margin-bottom: 16px;

    color: var(--kontakt-gold);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.kontakt-intro-heading h2,
.kontakt-informationen h2,
.kontakt-formular-wrapper h2 {
    margin: 0;

    color: var(--kontakt-green);

    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.kontakt-intro-text {
    padding-top: 8px;
}

.kontakt-intro-text p {
    margin: 0 0 20px;

    color: var(--kontakt-text);

    font-size: 17px;
    line-height: 1.8;
}

.kontakt-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HAUPTBEREICH
   ========================================================= */

/* =========================================================
   KONTAKT MAIN – GRÜNER VERLAUF
   ========================================================= */

.kontakt-main {
    padding: 30px 30px;

    background: linear-gradient(
        135deg,
        #d2e1d9 0%,
        #b9cec2 50%,
        #9eb9aa 100%
    );
    border-top: 1px solid #c89b3c;
}

.kontakt-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}


/* =========================================================
   KONTAKTINFORMATIONEN
   ========================================================= */

.kontakt-informationen h2 {
    margin-bottom: 18px;
}

.kontakt-info-intro {
    max-width: 500px;

    margin: 0 0 45px;

    color: var(--kontakt-muted);

    font-size: 16px;
    line-height: 1.7;
}

.kontakt-info-item {
    display: flex;
    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid var(--kontakt-border);
}

.kontakt-info-item:first-of-type {
    border-top: 1px solid var(--kontakt-border);
}

.kontakt-info-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(200, 155, 60, 0.45);
    border-radius: 50%;

    color: var(--kontakt-gold);

    font-size: 21px;
}

.kontakt-info-content h3 {
    margin: 0 0 7px;

    color: var(--kontakt-green);

    font-size: 17px;
    font-weight: 700;
}

.kontakt-info-content p {
    margin: 0;

    color: var(--kontakt-muted);

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   ERREICHBARKEIT
   ========================================================= */

.kontakt-erreichbarkeit {
    margin-top: 38px;
    padding: 28px 30px;

    border-left: 3px solid var(--kontakt-gold);

    background: var(--kontakt-white);
}

.kontakt-erreichbarkeit h3 {
    margin: 0 0 10px;

    color: var(--kontakt-green);

    font-size: 18px;
}

.kontakt-erreichbarkeit p {
    margin: 0;

    color: var(--kontakt-muted);

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   KONTAKTFORMULAR
   ========================================================= */

.kontakt-formular-wrapper {
    padding: 45px;

    background: var(--kontakt-white);

    border: 1px solid #e5e9e6;

    box-shadow: 0 18px 50px rgba(5, 44, 31, 0.08);
}

.kontakt-formular-wrapper h2 {
    margin-bottom: 15px;
}

.kontakt-form-intro {
    margin: 0 0 35px;

    color: var(--kontakt-muted);

    font-size: 15px;
    line-height: 1.7;
}

.kontakt-formular {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.kontakt-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.kontakt-form-two {
    grid-template-columns: 1fr 1fr;
}

.kontakt-form-group {
    display: flex;
    flex-direction: column;
}

.kontakt-form-group label {
    margin-bottom: 8px;

    color: var(--kontakt-green);

    font-size: 14px;
    font-weight: 600;
}

.kontakt-form-group input,
.kontakt-form-group select,
.kontakt-form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #d5ddd8;
    border-radius: 2px;

    background: #ffffff;

    color: var(--kontakt-text);

    font-family: inherit;
    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.kontakt-form-group input,
.kontakt-form-group select {
    min-height: 50px;
}

.kontakt-form-group textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.6;
}

.kontakt-form-group input::placeholder,
.kontakt-form-group textarea::placeholder {
    color: #9aa59f;
}

.kontakt-form-group input:focus,
.kontakt-form-group select:focus,
.kontakt-form-group textarea:focus {
    border-color: var(--kontakt-gold);

    box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.10);
}


/* =========================================================
   DATENSCHUTZ CHECKBOX
   ========================================================= */

.kontakt-form-checkbox {
    margin-top: 2px;
}

.kontakt-form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    cursor: pointer;
}

.kontakt-form-checkbox input {
    margin-top: 4px;

    width: 16px;
    height: 16px;

    flex: 0 0 16px;

    accent-color: var(--kontakt-green);
}

.kontakt-form-checkbox span {
    color: var(--kontakt-muted);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   SENDEN BUTTON
   ========================================================= */

.kontakt-submit {
    align-self: flex-start;

    min-height: 52px;

    padding: 0 30px;

    border: none;
    border-radius: 2px;

    background: var(--kontakt-green);

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.kontakt-submit:hover {
    background: var(--kontakt-green-light);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(8, 63, 43, 0.18);
}


/* =========================================================
   DRINGENDER STERBEFALL
   ========================================================= */

.kontakt-notfall {
    padding: 95px 30px;

    background:
        linear-gradient(
            135deg,
            var(--kontakt-green-dark),
            var(--kontakt-green)
        );
}

.kontakt-notfall-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.kontakt-notfall-label {
    margin-bottom: 17px;

    color: var(--kontakt-gold-light);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.kontakt-notfall h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.25;
}

.kontakt-notfall p {
    max-width: 680px;

    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;
    line-height: 1.75;
}

.kontakt-notfall-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    border: 1px solid var(--kontakt-gold);
    border-radius: 2px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.kontakt-notfall-button:hover {
    background: var(--kontakt-gold);

    color: var(--kontakt-green-dark);

    transform: translateY(-2px);
}


/* =========================================================
   ABSCHLUSS / BERATUNG – DUNKLER GRÜNER VERLAUF
   ========================================================= */

.kontakt-beratung {
    position: relative;

    padding: 100px 30px;

    background: linear-gradient(
        135deg,
        #a9c0b3 0%,
        #8fae9d 50%,
        #6f9180 100%
    );

    overflow: hidden;
}

.kontakt-beratung-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 0 auto;
    text-align: center;

}

.kontakt-beratung-content h2 {
    margin: 0 0 20px;

    color: #083f2b;

    font-size: 40px;
    line-height: 1.25;
}

.kontakt-beratung-content p {
    max-width: 680px;

    margin: 0 auto 32px;

    color: #24332d;

    font-size: 17px;
    line-height: 1.8;
}


.kontakt-beratung-content h2 {
    margin: 0 0 20px;

    color: var(--kontakt-green);

    font-size: 40px;
    line-height: 1.25;
}

.kontakt-beratung-content p {
    max-width: 680px;

    margin: 0 auto 32px;

    color: var(--kontakt-muted);

    font-size: 17px;
    line-height: 1.8;
}

.kontakt-beratung-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 28px;

    border: 1px solid var(--kontakt-green);

    color: var(--kontakt-green);

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.kontakt-beratung-button:hover {
    background: var(--kontakt-green);

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE – TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .kontakt-main-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .kontakt-intro .kontakt-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kontakt-formular-wrapper {
        max-width: none;
    }

}


/* =========================================================
   RESPONSIVE – MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .kontakt-hero {
        min-height: 500px;

        background-position: center;
    }

    .kontakt-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.88) 65%,
                rgba(255, 255, 255, 0.70) 100%
            );
    }

    .kontakt-hero-container {
        padding: 70px 22px;
    }

    .kontakt-hero-content {
        max-width: 100%;
    }

    .kontakt-hero h1 {
        font-size: 42px;
    }

    .kontakt-hero p {
        font-size: 16px;
        line-height: 1.7;
    }


    .kontakt-intro {
        padding: 70px 22px;
    }

    .kontakt-main {
        padding: 70px 22px;
    }

    .kontakt-notfall {
        padding: 70px 22px;
    }

    .kontakt-beratung {
        padding: 70px 22px;
    }


    .kontakt-intro-heading h2,
    .kontakt-informationen h2,
    .kontakt-formular-wrapper h2 {
        font-size: 31px;
    }

    .kontakt-notfall h2 {
        font-size: 31px;
    }

    .kontakt-beratung-content h2 {
        font-size: 32px;
    }


    .kontakt-formular-wrapper {
        padding: 30px 22px;
    }

    .kontakt-form-two {
        grid-template-columns: 1fr;
    }


    .kontakt-submit {
        width: 100%;
    }

    .kontakt-notfall-button,
    .kontakt-beratung-button {
        width: 100%;
        box-sizing: border-box;
    }

}


/* =========================================================
   SEHR KLEINE GERÄTE
   ========================================================= */

@media (max-width: 420px) {

    .kontakt-hero h1 {
        font-size: 36px;
    }

    .kontakt-info-item {
        gap: 14px;
    }

    .kontakt-info-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 18px;
    }

}

/* =========================================================
   ERFOLGSMELDUNG
   ========================================================= */

.kontakt-erfolg {
    margin-bottom: 25px;
    padding: 16px 20px;

    border-left: 3px solid var(--kontakt-gold);

    background: #e4eee8;

    color: var(--kontakt-green);

    font-size: 14px;
    line-height: 1.6;
}

.kontakt-fehler {
    margin-bottom: 25px;
    padding: 16px 20px;

    border-left: 3px solid #b33a3a;

    background: #f7e8e8;

    color: #7d2222;

    font-size: 14px;
    line-height: 1.6;
}

