/* =========================
   ZY GLOBAL
========================= */

.site-logo {
    height: 65px;
    width: auto;
    display: block;
}

#logo {
    display: flex;
    align-items: center;
}

#logo h3 {
    margin: 0;
}


/* =========================
   LEISTUNGEN SECTION
========================= */

#leistungen {
    background: #f7faf6;
    max-width: none !important;
    padding: 80px 20px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

#leistungen h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111827;
}

.section-subtitle {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    min-height: 260px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #84cc16;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 23px;
    line-height: 1.25;
    color: #111827;
    margin: 0 0 15px;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.card p {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
}


/* =========================
   CTA BANNER UNTER LEISTUNGEN
========================= */

.cta-banner {
    margin-top: 45px;
    background: linear-gradient(135deg, #111827, #365314);
    color: #ffffff;
    padding: 38px;
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-banner h3 {
    font-size: 30px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #ffffff;
}

.cta-banner p {
    margin: 0;
    color: #e5e7eb;
    font-size: 17px;
    line-height: 1.6;
}

.cta-banner .btn,
.cta-banner .btn-primary {
    background: #84cc16;
    color: #111827;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
}

.cta-banner .btn:hover,
.cta-banner .btn-primary:hover {
    background: #a3e635;
    color: #111827;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    #leistungen {
        padding: 60px 18px;
    }

    #leistungen h2 {
        font-size: 34px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }

    .cta-banner h3 {
        font-size: 25px;
    }

    .site-logo {
        height: 52px;
    }
}

/* =========================
   VORHER / NACHHER & BEWERTUNGEN
========================= */

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    top: 15px;
    left: 15px;

    background: rgba(17,24,39,0.9);
    color: white;

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

@media (max-width: 700px) {

    .image-card img {
        height: 240px;
    }

}

#bewertungen {
    background: linear-gradient(
        180deg,
        #eef8e9 0%,
        #e3f4da 100%
    );

    max-width: none !important;
    width: 100%;

    padding: 90px 20px;
}

#bewertungen h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 35px 0 22px;
}

.placeholder {
    height: 260px;
    background: #f3faef;
    border: 2px dashed #5d8a35;
    border-radius: 18px;
    color: #365314;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.review {
    background: white;
    border-left: 5px solid #111827;
    padding: 28px 32px;
    border-radius: 0 18px 18px 0;
    margin-bottom: 50px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.review p:first-child {
    color: #65a30d;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.review p {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 10px;
}

.review strong {
    color: #111827;
    font-weight: 800;
}

@media (max-width: 700px) {
    #bewertungen {
        padding: 60px 18px;
    }

    #bewertungen h2 {
        font-size: 34px;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .placeholder {
        height: 220px;
    }
}

/* =========================
   KONTAKT
========================= */

#kontakt {
    background: #f7faf6;
    max-width: none !important;
    padding: 90px 20px;
}

#kontakt h2 {
    font-size: 42px;
    color: #111827;
    margin-bottom: 15px;
}

#kontakt p {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.kontakt-box {
    background: white;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
    margin-top: 30px;
}

.kontakt-box input,
.kontakt-box textarea {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 15px;
    background: white;
}

.kontakt-box input:focus,
.kontakt-box textarea:focus {
    border-color: #84cc16;
    outline: none;
    box-shadow: 0 0 0 3px rgba(132,204,22,0.15);
}

.kontakt-box button,
.kontakt-box input[type="submit"] {
    background: #84cc16;
    color: #111827;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-weight: 700;
    cursor: pointer;
}

.kontakt-box button:hover,
.kontakt-box input[type="submit"]:hover {
    background: #65a30d;
    color: white;
}

/* =========================
   HEADER / NAVIGATION
========================= */

#header {
    background: rgba(240, 242, 240, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(132, 204, 22, 0.25);
    min-height: 90px;
    padding: 0 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#logo {
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.site-logo {
    height: 90px;
    width: auto;
    display: block;
}

#navbar {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.zy-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 34px;
}

.zy-nav a {
    color: #84cc16 !important;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
}

.zy-nav a:hover {
    color: #ffffff !important;
}

.zy-whatsapp {
    background: #84cc16;
    color: #111827 !important;
    padding: 14px 22px;
    border-radius: 999px;
}

.zy-whatsapp:hover {
    background: #a3e635;
    color: #111827 !important;
}

#header.scrolled .zy-nav a,
.header-fixed .zy-nav a,
.fixed .zy-nav a {
    color: #111827 !important;
}

#header.scrolled .zy-whatsapp,
.header-fixed .zy-whatsapp,
.fixed .zy-whatsapp {
    color: #111827 !important;
}

.panel-activation {
    display: none;
}

@media (max-width: 900px) {
    #header {
        padding: 15px 20px;
        min-height: auto;
        flex-direction: column;
        gap: 14px;
    }

    #navbar {
        margin-left: 0;
    }

    .zy-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .zy-nav a {
        font-size: 13px;
    }

    .site-logo {
        height: 52px;
    }
}

/* Standardfarbe */
.zy-nav a,
.zy-nav a:visited,
.zy-nav a:focus,
.zy-nav a:active {
    color: #84cc16 !important;
}

/* Farbe nach dem Scrollen */
body.scrolled .zy-nav a,
body.header-fixed .zy-nav a,
#header.scrolled .zy-nav a,
#header.fixed .zy-nav a,
#header.active .zy-nav a {
    color: #111827 !important;
}

/* Hover bleibt weiß */
.zy-nav a:hover {
    color: #ffffff !important;
}

/* ==========================================
   MOBILE OPTIMIERUNG
========================================== */

@media screen and (max-width: 768px) {

    /* HEADER */

    #header {
        padding: 15px 20px !important;
        min-height: auto !important;
        flex-direction: column;
        gap: 15px;
    }

    #logo {
        margin: 0 auto !important;
    }

    .site-logo {
        height: 60px !important;
    }

    #navbar {
        width: 100%;
        justify-content: center;
    }

    .zy-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .zy-nav a {
        font-size: 13px !important;
    }

    /* HERO */

    .hero-section {
        min-height: auto !important;
        padding: 70px 20px !important;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 34px !important;
        line-height: 1.2 !important;
    }

    .hero-section p {
        font-size: 17px !important;
        max-width: 100% !important;
    }

    .hero-inner {
        width: 100%;
    }

    .btn,
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    /* ALLGEMEINE SEKTIONEN */

    section {
        padding: 60px 20px !important;
    }

    h2 {
        font-size: 32px !important;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 16px !important;
    }

    /* LEISTUNGEN */

    .cards {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .card {
        min-height: auto !important;
    }

    /* CTA BANNER */

    .cta-banner {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left;
        padding: 28px !important;
    }

    .cta-banner h3 {
        font-size: 24px !important;
    }

    .cta-banner .btn {
        width: 100%;
        text-align: center;
    }

    /* VORHER NACHHER */

    .before-after {
        grid-template-columns: 1fr !important;
    }

    .image-card {
        height: 260px !important;
    }

    /* BEWERTUNGEN */

    .review {
        padding: 22px !important;
    }

    /* KONTAKT */

    .kontakt-box {
        padding: 25px !important;
    }

    .kontakt-box input,
    .kontakt-box textarea {
        font-size: 16px;
    }

    .kontakt-box button,
    .kontakt-box input[type="submit"] {
        width: 100%;
    }

    /* IMPRESSUM */

    #body {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

html,
body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

#sb-site {
    min-height: 100%;
}