/* MOBILE ACTION BAR */

.mobile-action-bar{
    position:fixed;

    bottom:0;
    left:0;

    width:100%;

    display:none;

    grid-template-columns:1fr 1fr;

    z-index:99999;
}

.mobile-action-bar a{
    height:60px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    color:#fff;
}

.action-call{
    background:#eacb03;
}

.action-form{
    background:#000;
}

/* MOBILE */

@media(max-width:768px){

    .mobile-action-bar{
        display:grid;
    }

    body{
        padding-bottom:60px;
    }

}
/* STANDORTE */

.locations-section{
    width:100%;
    padding:100px 0;
    background:#f5f5f5;
}

.locations-wrapper h1{
    text-align:center;

    font-size:54px;
    line-height:1.2;
    font-weight:800;

    color:#111;

    margin-bottom:18px;
}

.locations-text{
    max-width:760px;

    margin:0 auto 50px;

    text-align:center;

    font-size:17px;
    line-height:1.9;

    color:#666;
}

/* SEARCH */

.locations-search{
    max-width:650px;

    margin:0 auto 60px;

    position:relative;
}

.locations-search input{
    width:100%;
    height:65px;

    border:none;
    outline:none;

    background:#fff;

    padding:0 28px;

    font-size:17px;
    font-weight:500;

    border-radius:18px;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);

    transition:0.3s ease;
}

.locations-search input:focus{
    box-shadow:0 10px 40px rgba(75,135,66,0.18);
}

/* GRID */

.locations-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* BOX */

.location-box{
    background:#fff;

    border-radius:24px;

    padding:38px;

    position:relative;
}
.location-box{
    text-decoration:none;

    color:inherit;
}
.location-box h2{
    color:#111;
}
.location-box:hover h2{
    color:#eacb03;
}}
/* 404 */

.error-page{
    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#f3f3f3;

    padding:80px 20px;
}

.error-box{
    text-align:center;

    max-width:700px;
}

.error-box h1{
    font-size:140px;
    line-height:1;

    color:#eacb03;

    font-weight:800;

    margin-bottom:20px;
}

.error-box h2{
    font-size:42px;
    line-height:1.3;

    color:#000;

    margin-bottom:20px;
}

.error-box p{
    font-size:18px;
    line-height:1.8;

    color:#555;

    margin-bottom:35px;
}

/* MOBILE */

@media(max-width:768px){

    .error-box h1{
        font-size:90px;
    }

    .error-box h2{
        font-size:30px;
    }

    .error-box p{
        font-size:16px;
    }

}
/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial,sans-serif;
    background:#fff;
    color:#333;
    line-height:1.6;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

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

.header{
    width:100%;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#eacb03;
    position:relative;
    z-index:999;
}

/* LOGO */

.header-logo-box{
    width:30%;
    height:100%;
    background:#f3f3f3;
    display:flex;
    align-items:center;
    padding-left:60px;
}

.header-logo img{
    width:180px;
    height:auto;
}

/* NAVIGATION */

.header-nav{
    width:70%;

    display:flex;
    justify-content:flex-end;

    padding-right:70px;
}

.header-menu{
    display:flex;
    align-items:center;
    gap:50px;
}

.header-menu a{
    color:#fff;

    font-size:16px;
    font-weight:700;
    transition:0.3s ease;
}

.header-menu a:hover{
    opacity:0.85;
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    margin-right:20px;
}

/* =========================
   HERO
========================= */

.hero{
    width:100%;
    background:#f3f3f3;
    padding:90px 0;
}

.hero-content{
    max-width:760px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.2;
    font-weight:800;
    color:#111;
    margin-bottom:22px;
}

.hero-content h2{
    font-size:28px;
    line-height:1.4;
    font-weight:700;
    color:#eacb03;
    margin-bottom:35px;
}

/* HERO LIST */

.hero-list{
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:35px;
}

.hero-list li{
    position:relative;
    padding-left:28px;
    font-size:18px;
    color:#222;
}

.hero-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;

    color:#eacb03;
    font-weight:700;
}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;

    margin-bottom:40px;
}

.hero-btn{
    min-width:260px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:17px;
    font-weight:700;

    transition:0.3s ease;
}

.hero-btn-light{
    background:#fff;
    color:#111;
}

.hero-btn-green{
    background:#eacb03;
    color:#fff;
}

.hero-btn:hover{
    opacity:0.9;
}

/* HERO BOTTOM */

.hero-bottom{
    display:flex;
    gap:25px;

    flex-wrap:wrap;

    font-size:17px;
    font-style:italic;
    font-weight:700;

    color:#888;
}

/* =========================
   FEATURES
========================= */

.features{
    width:100%;
    background:#000;
    padding:45px 0;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.feature-item{
    text-align:center;
    padding:10px 40px;
}

.feature-item:not(:last-child){
    border-right:1px solid rgba(255,255,255,0.15);
}

.feature-item h3{
    color:#fff;

    font-size:22px;
    font-weight:700;

    margin-bottom:16px;
}

.feature-item p{
    color:#fff;

    font-size:15px;
    line-height:1.8;
}

/* =========================
   CTA
========================= */

.cta{
    position:relative;

    width:100%;

    padding:120px 0;

    background-image:url('/assets/images/Autoexport-1.webp');
    background-size:cover;
    background-position:center;

    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.45);

    backdrop-filter:blur(2px);
}

.cta-content{
    position:relative;
    z-index:2;

    max-width:900px;

    margin:auto;

    text-align:center;
}

.cta-content h2{
    color:#fff;

    font-size:52px;
    line-height:1.3;
    font-weight:800;

    margin-bottom:18px;
}

.cta-content p{
    color:#fff;

    font-size:21px;

    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:22px;
}

.cta-btn{
    min-width:270px;
    height:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:17px;
    font-weight:700;

    transition:0.3s ease;
}

.cta-btn-light{
    background:#fff;
    color:#111;
}

.cta-btn-green{
    background:#eacb03;
    color:#fff;
}

.cta-btn:hover{
    opacity:0.9;
}

/* =========================
   FORMULAR
========================= */

.bewertung-formular{
    width:100%;
    padding:90px 0;
    background:#fff8c87a;
}

.bewertung-wrapper{
    width:100%;
}

.bewertung-wrapper h2{
    text-align:center;

    font-size:50px;
    line-height:1.2;
    font-weight:800;

    color:#eacb03;

    margin-bottom:18px;
}

.bewertung-text{
    max-width:850px;

    margin:0 auto 55px;

    text-align:center;

    font-size:17px;
    line-height:1.8;

    color:#666;
}

.bewertung-wrapper h3{
    font-size:28px;
    font-weight:800;

    color:#eacb03;

    margin-top:50px;
    margin-bottom:28px;
}

/* GRID */

.form-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;

    margin-bottom:30px;
}

/* GROUP */

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:15px;
    font-weight:700;

    color:#222;

    margin-bottom:10px;
}

/* INPUT */

.form-group input,
.form-group select{
    width:100%;
    height:50px;

    border:1px solid #ddd;
    outline:none;

    background:#fff;

    padding:0 16px;

    font-size:15px;

    border-radius:10px;

    transition:0.3s ease;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#eacb03;
}

/* UPLOAD */

.upload-info{
    font-size:15px;
    line-height:1.8;

    color:#666;

    margin-bottom:20px;
}

.upload-box{
    margin-bottom:35px;
}

.upload-label{
    width:100%;
    min-height:120px;

    border:2px dashed #ccc;

    background:#fff;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    cursor:pointer;

    transition:0.3s ease;
}

.upload-label:hover{
    border-color:#eacb03;
}

.upload-label input{
    position:absolute;
    inset:0;

    opacity:0;

    cursor:pointer;
}

.upload-label span{
    font-size:16px;
    font-weight:700;

    color:#666;
}

/* CAPTCHA */

.captcha-wrapper{
    display:flex;
    align-items:center;
    gap:15px;

    flex-wrap:wrap;

    margin-bottom:30px;
}

.captcha-text{
    font-size:28px;
    font-weight:800;

    color:#eacb03;
}

.captcha-wrapper input{
    width:100px;
    height:50px;

    border:1px solid #ddd;

    border-radius:10px;

    padding:0 15px;

    font-size:18px;
}

/* CHECKBOX */

.checkbox-wrapper{
    margin-bottom:35px;
}

.checkbox-wrapper label{
    display:flex;
    align-items:flex-start;
    gap:12px;

    font-size:15px;
    line-height:1.7;

    color:#555;

    cursor:pointer;
}

.checkbox-wrapper input{
    width:18px;
    height:18px;

    margin-top:4px;

    accent-color:#eacb03;

    flex-shrink:0;
}

.checkbox-wrapper a{
    color:#eacb03;
    font-weight:700;
}

/* BUTTON */

.form-btn{
    min-width:300px;
    height:54px;

    border:none;

    background:#eacb03;
    color:#fff;

    font-size:17px;
    font-weight:700;

    border-radius:12px;

    cursor:pointer;

    transition:0.3s ease;
}

.form-btn:hover{
    opacity:0.9;
}

/* MESSAGE */

#form-message{
    margin-top:25px;

    padding:18px 22px;

    border-radius:14px;

    font-size:15px;
    font-weight:700;

    display:none;
}

/* =========================
   FOOTER
========================= */

.footer{
    width:100%;
    background:#f3f3f3;

    border-top:1px solid #dcdcdc;
}

/* MAIN CONTAINER */

.footer > .container{
    padding:70px 40px 40px;
}

/* GRID */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

/* LOGO */

.footer-logo{
    display:flex;
    align-items:center;

    margin-bottom:20px;
}

.footer-logo-img{
    width:220px;
    height:auto;
}

/* TEXT */

.footer-text{
    max-width:320px;

    font-size:15px;
    line-height:1.8;

    color:#666;
}

/* TITLES */

.footer-box h3{
    font-size:18px;
    font-weight:700;

    color:#eacb03;

    margin-bottom:22px;
}

/* LINKS */

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-links a{
    color:#666;
    font-size:15px;

    transition:0.3s ease;
}

.footer-links a:hover{
    color:#eacb03;
}

/* COPYRIGHT */

.footer-bottom{
    border-top:1px solid #ddd;
}

.footer-bottom .container{
    padding-top:20px;
    padding-bottom:20px;
}

.footer-bottom p{
    text-align:center;

    font-size:14px;

    color:#777;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .header-logo-box{
        width:40%;
        padding-left:30px;
    }

    .header-nav{
        width:60%;
        padding-right:40px;
    }

    .header-menu{
        gap:28px;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content h2{
        font-size:24px;
    }

    .features-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .feature-item{
        border:none !important;
    }

    .cta-content h2{
        font-size:42px;
    }

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

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:40px;
    }

}

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

@media(max-width:768px){

    .container{
        padding:0 20px;
    }

    /* HEADER */

    .header{
        height:80px;
    }

    .header-logo-box{
        width:auto;
        padding:0 20px;
    }

    .header-logo img{
        width:150px;
    }

    .menu-toggle{
        display:block;
    }

    .header-nav{
        position:absolute;

        top:80px;
        left:0;

        width:100%;

        background:#eacb03;

        padding:25px;

        display:none;
    }

    .header-nav.active{
        display:block;
    }

    .header-menu{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    /* HERO */

    .hero{
        padding:60px 0;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content h2{
        font-size:22px;
    }

    .hero-list li{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-btn{
        width:100%;
        min-width:100%;
    }

    /* FEATURES */

    .features{
        padding:40px 0;
    }

    .features-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .feature-item{
        padding:0 20px;
    }

    .feature-item h3{
        font-size:20px;
    }

    .feature-item p{
        font-size:15px;
    }

    /* CTA */

    .cta{
        padding:90px 0;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-content p{
        font-size:18px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .cta-btn{
        width:100%;
        min-width:100%;
    }

    /* FORM */

    .bewertung-formular{
        padding:70px 0;
    }

    .bewertung-wrapper h2{
        font-size:34px;
    }

    .bewertung-wrapper h3{
        font-size:24px;
    }

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

    .form-btn{
        width:100%;
        min-width:100%;
    }

    .captcha-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    /* FOOTER */

    .footer > .container{
        padding:50px 20px 30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .footer-logo-img{
        width:180px;
    }

}
/* =========================
   ABOUT SECTION
========================= */

.about-section{
    width:100%;
    background:#f3f3f3;
    padding:90px 0;
}

/* GRID */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;

    align-items:center;
}

/* IMAGE */

.about-image img{
    width:100%;
    height:550px;

    object-fit:cover;
}

/* CONTENT */

.about-content{
    text-align:center;
}

.about-content h2{
    font-size:46px;
    line-height:1.2;
    font-weight:800;

    color:#eacb03;

    margin-bottom:22px;
}

.about-content h3{
    font-size:28px;
    line-height:1.3;
    font-weight:700;

    color:#000;

    margin-bottom:30px;
}

.about-content p{
    font-size:17px;
    line-height:1.9;

    color:#111;

    margin-bottom:20px;
}

/* HIGHLIGHT */

.about-highlight{
    font-weight:700;
}

/* TABLET */

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about-image img{
        height:450px;
    }

    .about-content h2{
        font-size:38px;
    }

    .about-content h3{
        font-size:24px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .about-section{
        padding:70px 0;
    }

    .about-image img{
        height:320px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content h3{
        font-size:22px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.8;
    }

}
/* =========================
   EXPORT SECTION
========================= */

.export-section{
    width:100%;
    background:#fff;
    padding:90px 0;
}

/* GRID */

.export-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;

    align-items:center;
}

/* CONTENT */

.export-content{
    text-align:center;
}

.export-content h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;

    color:#000;

    margin-bottom:18px;
}

.export-content h3{
    font-size:28px;
    line-height:1.3;
    font-weight:800;

    color:#eacb03;

    margin-bottom:28px;
}

.export-content p{
    font-size:17px;
    line-height:1.9;

    color:#222;

    margin-bottom:20px;
}

/* HIGHLIGHT */

.export-highlight{
    font-weight:700;
}

/* IMAGE */

.export-image{
    display:flex;
    justify-content:center;
}

.export-image img{
    width:100%;
    max-width:520px;
}

/* TABLET */

@media(max-width:992px){

    .export-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .export-content h2{
        font-size:36px;
    }

    .export-content h3{
        font-size:24px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .export-section{
        padding:70px 0;
    }

    .export-content h2{
        font-size:30px;
    }

    .export-content h3{
        font-size:22px;
    }

    .export-content p{
        font-size:16px;
        line-height:1.8;
    }

}
/* LEGAL */

.legal-section{
    width:100%;
    padding:100px 0;
    background:#fff;
}

.legal-wrapper{
    max-width:1000px;
}

.legal-wrapper h1{
    font-size:52px;
    font-weight:800;
    color:#eacb03;
    margin-bottom:40px;
}

.legal-wrapper h2{
    font-size:28px;
    font-weight:700;
    color:#000;
    margin-top:40px;
    margin-bottom:18px;
}

.legal-wrapper p{
    font-size:17px;
    line-height:1.9;
    color:#333;
    margin-bottom:18px;
}

.legal-wrapper a{
    color:#eacb03;
    font-weight:700;
}

/* MOBILE */

@media(max-width:768px){

    .legal-section{
        padding:70px 0;
    }

    .legal-wrapper h1{
        font-size:38px;
    }

    .legal-wrapper h2{
        font-size:24px;
    }

    .legal-wrapper p{
        font-size:16px;
    }

}
/* SERVICE */

.service-section{
    width:100%;
    background:#fff;
    padding:100px 0;
}

.service-wrapper{
    max-width:1100px;
}

/* TITLE */

.service-wrapper h1{
    font-size:48px;
    line-height:1.2;
    font-weight:800;

    color:#eacb03;

    margin-bottom:35px;
}

/* SUBTITLE */

.service-wrapper h2{
    font-size:32px;
    line-height:1.3;
    font-weight:700;

    color:#000;

    margin-top:55px;
    margin-bottom:25px;
}

/* TEXT */

.service-wrapper p{
    font-size:17px;
    line-height:1.9;

    color:#333;

    margin-bottom:22px;
}

/* LIST */

.service-list{
    display:flex;
    flex-direction:column;
    gap:16px;

    margin-top:20px;
}

.service-list li{
    position:relative;

    padding-left:28px;

    font-size:17px;
    line-height:1.8;

    color:#333;
}

.service-list li::before{
    content:"✔";

    position:absolute;

    left:0;
    top:0;

    color:#eacb03;
    font-weight:700;
}

/* STEPS */

.service-steps{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

    margin-top:35px;
}

/* STEP */

.step-box{
    background:#f3f3f3;

    padding:35px;

    border-radius:18px;
}

.step-box span{
    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eacb03;
    color:#fff;

    font-size:22px;
    font-weight:700;

    border-radius:50%;

    margin-bottom:20px;
}

.step-box h3{
    font-size:22px;
    font-weight:700;

    margin-bottom:15px;
}

.step-box p{
    margin-bottom:0;
}

/* MOBILE */

@media(max-width:768px){

    .service-section{
        padding:70px 0;
    }

    .service-wrapper h1{
        font-size:34px;
    }

    .service-wrapper h2{
        font-size:26px;
    }

    .service-wrapper p,
    .service-list li{
        font-size:16px;
    }

    .service-steps{
        grid-template-columns:1fr;
    }

}