/* ==========================================================
   Shadow Wolves Logistic.NET
   Premium Style v2.1
   Author: Thomas Denk
========================================================== */

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;

    background:#050505;

    color:#f5f5f5;

    overflow-x:hidden;

    line-height:1.7;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/* ==========================================================
   ROOT
========================================================== */

:root{

    --primary:#d9d9d9;
    --secondary:#8f8f8f;

    --dark:#050505;
    --dark-light:#101010;
    --card:#181818;

    --white:#ffffff;

    --text:#f3f3f3;
    --text-light:#b9b9b9;

    --border:rgba(255,255,255,.08);

    --shadow:

        0 15px 45px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s ease;

    --container:1280px;

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0d0d0d;

}

::-webkit-scrollbar-thumb{

    background:#666;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#999;

}

/* ==========================================================
   SELECTION
========================================================== */

::selection{

    background:#ffffff;

    color:#000;

}

/* ==========================================================
   LINKS
========================================================== */

a{

    color:inherit;

    text-decoration:none;

    transition:var(--transition);

}

/* ==========================================================
   LISTS
========================================================== */

ul{

    list-style:none;

}

/* ==========================================================
   IMAGES
========================================================== */

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* ==========================================================
   BUTTONS
========================================================== */

button{

    border:none;

    outline:none;

    cursor:pointer;

    font-family:inherit;

}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:min(92%,var(--container));

    margin:auto;

}

/* ==========================================================
   SECTION
========================================================== */

.section{

    padding:120px 0;

    position:relative;

}

/* ==========================================================
   TITLES
========================================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:3px;

    font-size:.85rem;

    margin-bottom:10px;

}

.section-title h2{

    font-size:clamp(2rem,5vw,3.4rem);

    font-weight:800;

}

.section-intro{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

    color:var(--text-light);

    font-size:1.05rem;

}

/* ==========================================================
   GLASS CARD
========================================================== */

.glass{

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    border-radius:var(--radius);

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

}

/* ==========================================================
   BUTTONS
========================================================== */

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:16px 34px;

    border-radius:50px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:#ffffff;

    color:#111;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:

        0 12px 35px rgba(255,255,255,.20);

}

.btn-secondary{

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.04);

    color:#fff;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}

/* ==========================================================
   LOADER
========================================================== */

#loader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:25px;

    z-index:999999;

    transition:.8s;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}

#loader img{

    width:130px;

}

#loader h2{

    font-size:1.3rem;

    letter-spacing:2px;

}

/* ==========================================================
   PROGRESS BAR
========================================================== */

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:#ffffff;

    z-index:999999;

}
/* ==========================================================
   HEADER
========================================================== */

header{

    position:fixed;

    top:0;
    left:0;
    width:100%;

    z-index:10000;

    transition:all .35s ease;

    background:rgba(5,5,5,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

header.scrolled{

    background:rgba(5,5,5,.92);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}

/* ==========================================================
   HEADER CONTAINER
========================================================== */

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:88px;

}

/* ==========================================================
   LOGO
========================================================== */

.logo{

    display:flex;

    align-items:center;

    gap:16px;

    font-weight:800;

    font-size:1.2rem;

    letter-spacing:.5px;

    white-space:nowrap;

}

.logo img{

    width:64px;

    transition:.35s ease;

}

.logo:hover img{

    transform:rotate(-5deg) scale(1.08);

}

.logo span{

    color:#fff;

}

/* ==========================================================
   NAVIGATION
========================================================== */

#navigation{

    display:flex;

    align-items:center;

    gap:32px;

}

#navigation a{

    position:relative;

    color:var(--text-light);

    font-size:.96rem;

    font-weight:600;

    transition:.3s ease;

}

#navigation a:hover{

    color:#ffffff;

}

/* ==========================================================
   ACTIVE LINK
========================================================== */

#navigation a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:2px;

    background:#ffffff;

    transition:.35s;

}

#navigation a:hover::after,

#navigation a.active::after{

    width:100%;

}

#navigation a.active{

    color:#ffffff;

}

/* ==========================================================
   MOBILE MENU
========================================================== */

#mobile-menu{

    display:none;

    justify-content:center;

    align-items:center;

    width:52px;

    height:52px;

    border-radius:12px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    cursor:pointer;

    transition:.3s ease;

}

#mobile-menu:hover{

    background:rgba(255,255,255,.12);

}

#mobile-menu i{

    font-size:22px;

    color:#ffffff;

    transition:.3s ease;

}

#mobile-menu.open i{

    transform:rotate(90deg);

}

/* ==========================================================
   HEADER SHADOW
========================================================== */

header::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:1px;

    background:

        linear-gradient(

            90deg,

            transparent,

            rgba(255,255,255,.12),

            transparent

        );

}

/* ==========================================================
   NAV ANIMATION
========================================================== */

#navigation a{

    overflow:hidden;

}

#navigation a:hover{

    transform:translateY(-2px);

}
/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

    background:
        linear-gradient(rgba(5,5,5,.72),rgba(5,5,5,.84)),
        url("../images/hero.jpg")
        center center/cover no-repeat;

}

/* ==========================================================
   HERO IMPRESSUM
========================================================== */

.hero-impressum{

    background:
        linear-gradient(rgba(15,15,15,.78),rgba(5,5,5,.88)),
        url("../images/hero-impressum.jpg")
        center center/cover no-repeat;

}

/* ==========================================================
   HERO DATENSCHUTZ
========================================================== */

.hero-datenschutz{

    background:
        linear-gradient(rgba(8,20,30,.78),rgba(5,5,5,.90)),
        url("../images/hero-datenschutz.jpg")
        center center/cover no-repeat;

}

/* ==========================================================
   OVERLAY
========================================================== */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at top right,
        rgba(255,255,255,.05),
        transparent 55%),

        radial-gradient(circle at bottom left,
        rgba(255,255,255,.03),
        transparent 45%);

    pointer-events:none;

}

/* ==========================================================
   HERO CONTENT
========================================================== */

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    padding:180px 20px 120px;

}

.hero-logo{

    width:170px;

    margin:0 auto 35px;

    animation:float 6s ease-in-out infinite;

}

.hero-small{

    color:var(--secondary);

    text-transform:uppercase;

    letter-spacing:4px;

    margin-bottom:18px;

    font-size:.9rem;

}

.hero h1{

    font-size:clamp(3rem,7vw,6rem);

    font-weight:900;

    line-height:1;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero h2{

    font-size:clamp(1.3rem,3vw,2rem);

    font-weight:300;

    color:var(--primary);

    margin-bottom:30px;

}

.hero-text{

    max-width:760px;

    margin:0 auto;

    color:var(--text-light);

    font-size:1.1rem;

    line-height:1.9;

}

/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-top:55px;

}

.hero-buttons .btn-primary,

.hero-buttons .btn-secondary{

    min-width:230px;

}

/* ==========================================================
   SCROLL INDICATOR
========================================================== */

.scroll-indicator{

    margin-top:80px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    color:#d0d0d0;

    animation:bounce 2.5s infinite;

}

.scroll-indicator span{

    font-size:.9rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

.scroll-indicator i{

    font-size:26px;

}

/* ==========================================================
   WATERMARK
========================================================== */

.hero::after{

    content:"";

    position:absolute;

    right:-180px;

    bottom:-120px;

    width:700px;

    height:700px;

    background:url("../images/wolf-watermark.png")
        center/contain no-repeat;

    opacity:.035;

    pointer-events:none;

    transform:rotate(-12deg);

}

/* ==========================================================
   HERO IMAGE OPTIMIZATION
========================================================== */

.hero,
.hero-impressum,
.hero-datenschutz{

    background-attachment:fixed;

}

@media(max-width:992px){

    .hero,
    .hero-impressum,
    .hero-datenschutz{

        background-attachment:scroll;

    }

}
/* ==========================================================
   ABOUT
========================================================== */

.about-section{

    position:relative;

    overflow:hidden;

}

.about-grid{

    display:grid;

    grid-template-columns:1.1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-text p{

    margin-bottom:24px;

    color:var(--text-light);

    font-size:1.05rem;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:var(--radius);

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:transform .45s ease;

}

.about-image:hover img{

    transform:scale(1.03);

}

/* ==========================================================
   FEATURES
========================================================== */

.features{

    position:relative;

    background:

        linear-gradient(rgba(255,255,255,.02),rgba(255,255,255,0));

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.feature-card{

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    border-radius:var(--radius);

    backdrop-filter:blur(18px);

    padding:40px 30px;

    text-align:center;

    transition:all .35s ease;

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,255,255,.18);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.feature-card i{

    font-size:48px;

    margin-bottom:24px;

    color:#ffffff;

}

.feature-card h3{

    margin-bottom:18px;

    font-size:1.35rem;

}

.feature-card p{

    color:var(--text-light);

    line-height:1.8;

}

/* ==========================================================
   FLEET
========================================================== */

.fleet-section{

    position:relative;

}

.fleet-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.fleet-card{

    overflow:hidden;

    border-radius:var(--radius);

    background:#111;

    border:1px solid var(--border);

    transition:all .35s ease;

}

.fleet-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.fleet-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:transform .45s ease;

}

.fleet-card:hover img{

    transform:scale(1.08);

}

.fleet-content{

    padding:30px;

}

.fleet-content h3{

    margin-bottom:16px;

    font-size:1.45rem;

}

.fleet-content p{

    color:var(--text-light);

    line-height:1.8;

}

/* ==========================================================
   SECTION BACKGROUND
========================================================== */

.about-section::before,
.fleet-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        url("../images/section-bg.jpg")

        center center/cover no-repeat;

    opacity:.035;

    pointer-events:none;

}
/* ==========================================================
   GALLERY
========================================================== */

.gallery-section{

    position:relative;

    overflow:hidden;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:var(--radius);

    border:1px solid var(--border);

    cursor:pointer;

    background:#111;

    transition:all .35s ease;

}

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:transform .5s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/* Overlay */

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        rgba(0,0,0,0),

        rgba(0,0,0,.45)

    );

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::after{

    opacity:1;

}

/* Zoom Icon */

.gallery-item::before{

    content:"\f00e";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%) scale(.8);

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:26px;

    opacity:0;

    transition:.35s;

    z-index:5;

}

.gallery-item:hover::before{

    opacity:1;

    transform:translate(-50%,-50%) scale(1);

}

/* ==========================================================
   LIGHTBOX
========================================================== */

#lightbox{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.94);

    backdrop-filter:blur(14px);

    z-index:999999;

    opacity:0;

    transition:opacity .35s ease;

}

#lightbox.active{

    display:flex;

    opacity:1;

}

#lightboxImage{

    max-width:90vw;

    max-height:88vh;

    object-fit:contain;

    border-radius:18px;

    border:2px solid rgba(255,255,255,.08);

    box-shadow:

        0 25px 70px rgba(0,0,0,.65);

    animation:lightboxZoom .35s ease;

}

/* ==========================================================
   CLOSE BUTTON
========================================================== */

.close-lightbox{

    position:absolute;

    top:30px;

    right:35px;

    width:56px;

    height:56px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    font-size:34px;

    cursor:pointer;

    transition:.35s;

}

.close-lightbox:hover{

    background:#fff;

    color:#111;

    transform:rotate(90deg);

}

/* ==========================================================
   NAV BUTTONS
========================================================== */

#prevImage,
#nextImage{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:68px;

    height:68px;

    border:none;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:28px;

    cursor:pointer;

    transition:.3s;

}

#prevImage{

    left:30px;

}

#nextImage{

    right:30px;

}

#prevImage:hover,
#nextImage:hover{

    background:#fff;

    color:#111;

    transform:translateY(-50%) scale(1.08);

}

/* ==========================================================
   COUNTER
========================================================== */

.lightbox-counter{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:.9rem;

    letter-spacing:1px;

}

/* ==========================================================
   LOADER
========================================================== */

.lightbox-loading{

    width:70px;

    height:70px;

    border:4px solid rgba(255,255,255,.15);

    border-top:4px solid #fff;

    border-radius:50%;

    animation:spin .8s linear infinite;

}

#lightbox.loading .lightbox-loading{

    display:block;

}

#lightbox.loading #lightboxImage{

    opacity:0;

}

.lightbox-loading{

    display:none;

}

/* ==========================================================
   LIGHTBOX ANIMATION
========================================================== */

@keyframes lightboxZoom{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}
/* ==========================================================
   TRUCKSBOOK
========================================================== */

.trucksbook-section{

    position:relative;

}

.trucksbook-box{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:center;

    padding:60px;

    border-radius:var(--radius);

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

}

.tb-info h3{

    font-size:2rem;

    margin-bottom:25px;

}

.tb-info p{

    color:var(--text-light);

    line-height:1.9;

    margin-bottom:30px;

}

.tb-info ul{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.tb-info li{

    display:flex;

    align-items:center;

    gap:15px;

    color:var(--text-light);

}

.tb-info li i{

    color:#ffffff;

    font-size:18px;

}

.tb-action{

    display:flex;

    justify-content:center;

    align-items:center;

}

.tb-action .btn-primary{

    min-width:240px;

}

/* ==========================================================
   PARTNER
========================================================== */

.partners-section{

    position:relative;

}

.partners-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.partner-card{

    text-align:center;

    padding:40px 30px;

    border-radius:var(--radius);

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

    transition:all .35s ease;

}

.partner-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.partner-card img{

    width:90px;

    margin:0 auto 25px;

    transition:.35s ease;

}

.partner-card:hover img{

    transform:scale(1.08);

}

.partner-card h3{

    margin-bottom:18px;

    font-size:1.4rem;

}

.partner-card p{

    color:var(--text-light);

    line-height:1.8;

}

.partner-note{

    max-width:850px;

    margin:60px auto 0;

    text-align:center;

    color:var(--text-light);

    font-size:.95rem;

}

/* ==========================================================
   CONTACT
========================================================== */

.contact-section{

    position:relative;

}

.contact-box{

    max-width:900px;

    margin:auto;

    padding:60px;

    border-radius:var(--radius);

    background:rgba(255,255,255,.04);

    border:1px solid var(--border);

    backdrop-filter:blur(18px);

    text-align:center;

    box-shadow:var(--shadow);

}

.contact-box p{

    color:var(--text-light);

    line-height:1.9;

    font-size:1.05rem;

}

.contact-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

    margin-top:40px;

}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary{

    min-width:230px;

}

/* ==========================================================
   SECTION BACKGROUND
========================================================== */

.trucksbook-section::before,
.partners-section::before,
.contact-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        url("../images/section-bg.jpg")

        center center/cover no-repeat;

    opacity:.03;

    pointer-events:none;

}
/* ==========================================================
   FOOTER
========================================================== */

footer{

    position:relative;

    margin-top:120px;

    background:
        linear-gradient(rgba(5,5,5,.94),rgba(5,5,5,.98)),
        url("../images/footer-bg.jpg") center center/cover no-repeat;

    border-top:1px solid rgba(255,255,255,.08);

    overflow:hidden;

}

footer::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at top right,
        rgba(255,255,255,.05),
        transparent 60%);

    pointer-events:none;

}

.footer-grid{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1.5fr;

    gap:50px;

    padding:80px 0;

    align-items:center;

}

/* ==========================================================
   FOOTER ABOUT
========================================================== */

.footer-about img{

    width:90px;

    margin-bottom:20px;

}

.footer-about h3{

    font-size:1.5rem;

    margin-bottom:15px;

}

.footer-about p{

    color:var(--text-light);

    line-height:1.8;

}

/* ==========================================================
   FOOTER LINKS
========================================================== */

.footer-links h4,
.footer-community h4{

    margin-bottom:20px;

    font-size:1.15rem;

}

.footer-links ul,
.footer-community ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a,
.footer-community a{

    color:var(--text-light);

    transition:.3s ease;

}

.footer-links a:hover,
.footer-community a:hover{

    color:#ffffff;

    padding-left:8px;

}

/* ==========================================================
   SHADOW WOLVES NETWORK
========================================================== */

.footer-network{

    display:flex;

    justify-content:flex-end;

}

.footer-network-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    backdrop-filter:blur(16px);

    padding:18px;

    transition:.35s ease;

}

.footer-network-card:hover{

    transform:translateY(-6px);

    box-shadow:

        0 20px 45px rgba(0,0,0,.35),

        0 0 20px rgba(255,255,255,.08);

}

.footer-network-card img{

    display:block;

    max-width:420px;

    width:100%;

    height:auto;

}

/* ==========================================================
   FOOTER BOTTOM
========================================================== */

.footer-bottom{

    position:relative;

    z-index:2;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

    padding:30px 0;

    border-top:1px solid rgba(255,255,255,.08);

    color:#a8a8a8;

    font-size:.95rem;

}

.footer-bottom span{

    color:#cfcfcf;

}

/* ==========================================================
   SCROLL TO TOP
========================================================== */

#topButton{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    display:none;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#ffffff;

    color:#111;

    font-size:20px;

    box-shadow:var(--shadow);

    transition:.35s ease;

    z-index:99999;

}

#topButton:hover{

    transform:translateY(-6px);

    background:#e5e5e5;

}

/* ==========================================================
   COOKIE BANNER
========================================================== */

.cookie-banner{

    position:fixed;

    left:20px;

    right:20px;

    bottom:20px;

    display:none;

    z-index:999999;

}

.cookie-content{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:25px;

    padding:25px;

    background:rgba(20,20,20,.97);

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

}

.cookie-content p{

    flex:1;

    color:var(--text-light);

    line-height:1.7;

}

.cookie-content .btn-primary{

    min-width:180px;

}

/* ==========================================================
   FOOTER ANIMATION
========================================================== */

.footer-network-card,
.footer-links a,
.footer-community a{

    transition:all .35s ease;

}
/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1200px){

    .feature-grid,
    .fleet-grid,
    .partners-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media (max-width:992px){

    #navigation{

        position:fixed;

        top:88px;

        right:-100%;

        width:320px;

        height:calc(100vh - 88px);

        background:rgba(5,5,5,.97);

        backdrop-filter:blur(18px);

        flex-direction:column;

        justify-content:flex-start;

        align-items:flex-start;

        gap:0;

        padding:40px;

        transition:.35s ease;

        border-left:1px solid rgba(255,255,255,.08);

    }

    #navigation.active{

        right:0;

    }

    #navigation a{

        width:100%;

        padding:16px 0;

    }

    #mobile-menu{

        display:flex;

    }

    .about-grid,
    .trucksbook-box{

        grid-template-columns:1fr;

        gap:50px;

    }

    .hero-content{

        padding-top:150px;

    }

}

@media (max-width:768px){

    .gallery-grid,
    .feature-grid,
    .fleet-grid,
    .partners-grid{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-network{

        justify-content:center;

    }

    .hero-buttons,
    .contact-buttons{

        flex-direction:column;

    }

    .hero-buttons a,
    .contact-buttons a{

        width:100%;

    }

    .trucksbook-box,
    .contact-box{

        padding:35px;

    }

    .cookie-content{

        flex-direction:column;

        text-align:center;

    }

}

@media (max-width:576px){

    .section{

        padding:80px 0;

    }

    .hero-logo{

        width:120px;

    }

    .hero h1{

        font-size:2.5rem;

    }

    .hero h2{

        font-size:1.25rem;

    }

    .hero-text{

        font-size:1rem;

    }

    .fleet-card img,
    .gallery-item img{

        height:240px;

    }

    #prevImage,
    #nextImage{

        width:50px;

        height:50px;

        font-size:22px;

    }

    .close-lightbox{

        width:46px;

        height:46px;

        font-size:28px;

    }

}

/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fade{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes bounce{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(10px);

    }

}

@keyframes spin{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes glow{

    0%{

        box-shadow:0 0 0 rgba(255,255,255,0);

    }

    50%{

        box-shadow:0 0 30px rgba(255,255,255,.15);

    }

    100%{

        box-shadow:0 0 0 rgba(255,255,255,0);

    }

}

/* ==========================================================
   HELPER CLASSES
========================================================== */

.text-center{

    text-align:center;

}

.text-light{

    color:var(--text-light);

}

.mt-20{

    margin-top:20px;

}

.mt-40{

    margin-top:40px;

}

.mt-60{

    margin-top:60px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-60{

    margin-bottom:60px;

}

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    justify-content:center;

    align-items:center;

}

.grid{

    display:grid;

}

.rounded{

    border-radius:var(--radius);

}

.shadow{

    box-shadow:var(--shadow);

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

.float{

    animation:float 6s ease-in-out infinite;

}

.glow{

    animation:glow 3s infinite;

}

/* ==========================================================
   ACCESSIBILITY
========================================================== */

a:focus,
button:focus{

    outline:2px solid rgba(255,255,255,.4);

    outline-offset:4px;

}

/* ==========================================================
   PERFORMANCE
========================================================== */

.gallery-item img,
.fleet-card img,
.about-image img{

    will-change:transform;

}

.hero,
.hero-impressum,
.hero-datenschutz{

    background-repeat:no-repeat;

    background-size:cover;

    background-position:center;

}

/* ==========================================================
   PRINT
========================================================== */

@media print{

    header,
    footer,
    #loader,
    #progress-bar,
    #topButton,
    .cookie-banner,
    #lightbox{

        display:none !important;

    }

    body{

        background:#fff;

        color:#000;

    }

}

/* ==========================================================
   END OF FILE
========================================================== */