*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color:#1f2937;
    background:#ffffff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1180px;
    margin:auto;
}

/* HEADER */

.top-header{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    padding:12px 0;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    min-height:165px;
}

.brand-new{
    display:flex;
    align-items:center;
    gap:28px;
}

.mascot-logo{
    width:150px !important;
    max-width:150px !important;
    height:auto !important;
    display:block;
    flex-shrink:0;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-text strong{
    font-size:38px;
    color:#0069b4;
    line-height:1.05;
    font-weight:800;
}

.brand-text span{
    margin-top:6px;
    font-size:18px;
    color:#1f2937;
}

.header-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:12px;
    font-size:15px;
    color:#1f2937;
}

.phone-button{
    background:#0069b4;
    color:white;
    text-decoration:none;
    padding:16px 30px;
    border-radius:6px;
    font-weight:800;
    font-size:20px;
}

.notdienst-inline{
    color:#dc2626;
    font-size:14px;
    font-weight:700;
    text-align:center;
    margin-top:4px;
}

.notdienst-inline strong{
    display:block;
    font-size:18px;
    font-weight:900;
    line-height:1.2;
}

/* NAV */

.main-nav{
    background:#0069b4;
    position:sticky;
    top:0;
    z-index:10;
}

.nav-inner{
    display:flex;
    justify-content:center;
    gap:54px;
    padding:14px 0;
}

.nav-inner a{
    color:white;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
}

.nav-inner a:hover{
    text-decoration:underline;
}

/* HERO */

.hero{
    background:url("images/hero-bad.jpg");
    background-size:cover;
    background-position:center;
    min-height:540px;
}

.hero-overlay{
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.48) 40%,
        rgba(0,0,0,0.15) 100%
    );
    min-height:540px;
    display:flex;
    align-items:center;
}

.hero-content{
    color:white;
    max-width:760px;
}

.hero-label{
    display:inline-block;
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.75);
    padding:9px 18px;
    border-radius:999px;
    font-weight:700;
    margin-bottom:24px;
}

.hero-content h1{
    font-size:64px;
    line-height:1.08;
    margin-bottom:20px;
    font-weight:800;
}

.hero-content p{
    font-size:25px;
    margin-bottom:34px;
    font-weight:700;
}

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    text-decoration:none;
    padding:16px 30px;
    border-radius:6px;
    font-weight:800;
}

.primary{
    background:#0069b4;
    color:white;
}

.secondary{
    background:white;
    color:#0069b4;
}

.light{
    background:white;
    color:#0069b4;
}

/* TRUST */

.trust-bar{
    background:#f3f7fb;
    border-bottom:1px solid #e5e7eb;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    padding:26px 0;
    color:#0f3f66;
}

.trust-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 20px;
    border-right:1px solid #cbd5e1;
}

.trust-item:last-child{
    border-right:none;
}

.trust-icon{
    font-size:42px;
    color:#0069b4;
    margin-bottom:12px;
}

.trust-title{
    font-size:18px;
    font-weight:800;
    color:#0069b4;
    margin-bottom:4px;
}

.trust-text{
    font-size:15px;
    color:#4b5563;
}

/* CONTENT */

.intro,
.services,
.references{
    padding:68px 0;
    background:white;
}

.intro h2,
.services h2,
.references h2{
    text-align:center;
    color:#0069b4;
    margin-bottom:28px;
    font-size:34px;
    line-height:1.2;
}

.intro p{
    max-width:880px;
    margin:auto;
    text-align:center;
    font-size:18px;
    color:#374151;
}

.team-photo{
    display:block;
    width:100%;
    max-width:1000px;
    margin:35px auto;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

/* SERVICES */

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    align-items:start;
}

.service-card{
    background:#f8fafc;
    padding:34px 26px;
    border-radius:14px;
    border:1px solid #e5e7eb;
    box-shadow:0 8px 22px rgba(0,0,0,0.06);
    transition:0.25s ease;
}

.service-card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,0.10);
}

.service-icon{
    width:58px;
    height:58px;
    border:2px solid #0069b4;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0069b4;
    font-size:26px;
    margin-bottom:20px;
    background:white;
}

.service-card h3{
    color:#0069b4;
    margin-bottom:14px;
    font-size:22px;
}

.service-card p{
    color:#374151;
    font-size:16px;
}

.service-btn{
    margin-top:20px;
    border:none;
    background:none;
    color:#0069b4;
    font-weight:800;
    font-size:16px;
    cursor:pointer;
    padding:0;
}

.service-btn:hover{
    text-decoration:underline;
}

.service-details{
    display:none;
    margin-top:22px;
    padding-top:20px;
    border-top:1px solid #dbe3ec;
}

.service-details.active{
    display:block;
}

.service-details h4{
    color:#06365f;
    font-size:18px;
    margin-bottom:12px;
}

.service-details ul{
    list-style:none;
    margin-bottom:18px;
}

.service-details li{
    position:relative;
    padding-left:22px;
    margin-bottom:8px;
    color:#374151;
    font-size:15px;
    line-height:1.4;
}

.service-details li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#0069b4;
    font-weight:900;
}

.service-detail-link{
    display:inline-block;
    background:#0069b4;
    color:white;
    text-decoration:none;
    padding:11px 18px;
    border-radius:6px;
    font-weight:800;
    font-size:15px;
}

.service-detail-link:hover{
    background:#00528d;
}

/* REFERENCES */

/* REFERENCES */

.reference-slider{
    position:relative;
    max-width:1100px;
    margin:0 auto;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(0,0,0,0.14);
}

.slide{
    display:none;
}

.slide.active{
    display:block;
}

.slide img{
    width:100%;
    height:600px;
    object-fit:contain;
    display:block;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.45);
    color:white;
    border:none;
    width:50px;
    height:50px;
    border-radius:50%;
    font-size:28px;
    cursor:pointer;
    z-index:10;
}

.prev{
    left:20px;
}

.next{
    right:20px;
}

.slider-dots{
    text-align:center;
    margin-top:20px;
}

.dot{
    display:inline-block;
    width:12px;
    height:12px;
    margin:0 5px;
    background:#cbd5e1;
    border-radius:50%;
    cursor:pointer;
}

.dot.active{
    background:#0069b4;
}
/* CONTACT */

.contact-section{
    background:#f3f7fb;
    padding:78px 0;
    border-top:1px solid #e5e7eb;
}

.contact-header{
    text-align:center;
    max-width:780px;
    margin:0 auto 42px auto;
}

.section-label{
    display:inline-block;
    color:#0069b4;
    font-weight:800;
    font-size:15px;
    margin-bottom:8px;
    text-transform:uppercase;
    letter-spacing:0.05em;
}

.contact-header h2{
    color:#0069b4;
    font-size:36px;
    line-height:1.2;
    margin-bottom:12px;
}

.contact-header p{
    color:#374151;
    font-size:18px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr 1fr;
    gap:26px;
    align-items:stretch;
}

.contact-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:32px 28px;
    box-shadow:0 10px 28px rgba(0,0,0,0.07);
}

.contact-card-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    border:2px solid #0069b4;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0069b4;
    font-size:25px;
    margin-bottom:20px;
}

.contact-card h3{
    color:#06365f;
    font-size:24px;
    line-height:1.2;
    margin-bottom:22px;
}

.contact-line{
    margin-bottom:18px;
}

.contact-line strong{
    display:block;
    color:#0069b4;
    font-size:15px;
    margin-bottom:4px;
}

.contact-line span,
.contact-line a{
    color:#1f2937;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
}

.contact-line a:hover{
    color:#0069b4;
    text-decoration:underline;
}

.opening-row{
    display:flex;
    justify-content:space-between;
    gap:18px;
    padding:13px 0;
    border-bottom:1px solid #e5e7eb;
}

.opening-row:last-child{
    border-bottom:none;
}

.opening-row span{
    color:#374151;
    font-size:16px;
}

.opening-row strong{
    color:#06365f;
    font-size:16px;
    text-align:right;
}

.opening-row.muted span,
.opening-row.muted strong{
    color:#6b7280;
}

.emergency-card{
    border:2px solid #ef4444;
    background:#fffafa;
}

.emergency-icon{
    border-color:#ef4444;
    color:#ef4444;
}

.emergency-card h3{
    color:#b91c1c;
}

.emergency-card p{
    color:#374151;
    font-size:17px;
    margin-bottom:24px;
}

.emergency-number{
    background:#b91c1c;
    color:white;
    padding:18px;
    border-radius:12px;
}

.emergency-number span{
    display:block;
    font-size:14px;
    font-weight:700;
    margin-bottom:4px;
    opacity:0.9;
}

.emergency-number a{
    color:white;
    text-decoration:none;
    font-size:25px;
    font-weight:900;
}

.contact-actions{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:36px;
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    padding:15px 24px;
    border-radius:8px;
    font-weight:900;
    font-size:16px;
}

.primary-contact{
    background:#0069b4;
    color:white;
}

.primary-contact:hover{
    background:#00528d;
}

.secondary-contact{
    background:white;
    color:#0069b4;
    border:2px solid #0069b4;
}

.secondary-contact:hover{
    background:#eaf4ff;
}

/* FOOTER */

footer{
    background:#06365f;
    color:white;
    text-align:center;
    padding:30px 0;
    font-size:15px;
}

.footer-inner p{
    margin:4px 0;
}

/* PARTNER */

.partners{
    padding:70px 0;
    background:#f8fafc;
}

.partners h2{
    text-align:center;
    color:#0069b4;
    margin-bottom:40px;
    font-size:34px;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

.partner-card{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:140px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.partner-card img{
    max-width:100%;
    max-height:80px;
    object-fit:contain;
    filter:grayscale(15%);
    transition:0.3s;
}

.partner-card:hover img{
    filter:none;
    transform:scale(1.05);
}

/* MOBILE */

@media(max-width:950px){

    .header-inner{
        flex-direction:column;
        text-align:center;
        min-height:auto;
        padding:20px 0;
    }

    .brand-new{
        flex-direction:column;
        gap:12px;
    }

    .mascot-logo{
        width:130px !important;
        max-width:130px !important;
    }

    .brand-text strong{
        font-size:30px;
    }

    .brand-text span{
        font-size:16px;
    }

    .header-contact{
        align-items:center;
    }

    .phone-button{
        font-size:18px;
        padding:14px 24px;
    }

    .nav-inner{
        flex-wrap:wrap;
        gap:18px 28px;
        padding:15px 0;
    }

    .hero,
    .hero-overlay{
        min-height:520px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content p{
        font-size:21px;
    }

    .trust-grid,
    .service-grid,
    .reference-grid,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .trust-item{
        border-right:none;
        border-bottom:1px solid #cbd5e1;
        padding:18px 0;
    }

    .trust-item:last-child{
        border-bottom:none;
    }

    .service-card{
        padding:30px 24px;
        text-align:center;
    }

    .service-icon{
        margin-left:auto;
        margin-right:auto;
    }

    .service-details{
        text-align:left;
    }

    .contact-header h2{
        font-size:30px;
    }

    .contact-card{
        padding:28px 24px;
    }

    .contact-card-icon{
        margin-left:auto;
        margin-right:auto;
    }

    .contact-card{
        text-align:center;
    }

    .contact-line,
    .emergency-card p{
        text-align:center;
    }

    .opening-row{
        flex-direction:column;
        gap:4px;
        text-align:center;
    }

    .opening-row strong{
        text-align:center;
    }

    .emergency-number a{
        font-size:23px;
    }

    .contact-actions{
        flex-direction:column;
    }

    .contact-btn{
        width:100%;
    }

.partner-grid{
    grid-template-columns:1fr 1fr;
}

.slide img{
    height:320px;
}
}


/* FOOTER */

footer{
    background:#06365f;
    color:white !important;
    text-align:center;
    padding:30px 0;
    font-size:15px;
}

.footer-inner{
    max-width:800px;
    margin:auto;
    text-align:center;
}

.footer-inner p,
footer p{
    color:white !important;
    margin:8px 0;
}

footer a,
footer a:visited{
    color:white !important;
    text-decoration:none;
    font-weight:600;
}

footer a:hover{
    color:white !important;
    text-decoration:underline;
}



.google-rating{
    text-align:center;
    padding:18px 0;
    background:white;
    font-size:18px;
    color:#1f2937;
}