/*==================================================
AUTOZENTRUM KERTE
STYLE.CSS
==================================================*/


/*==================================================
ROOT
==================================================*/

:root {

    --primary: #d71920;
    --primary-dark: #b51218;

    --secondary: rgba(20,20,20,.55);

    --white: #ffffff;

    --light: rgba(255,255,255,.05);

    --gray: #c7c7c7;

    --border: rgba(255,255,255,.12);

    --shadow:
        0 10px 30px rgba(0,0,0,.25);

    --transition:
        .35s ease;

    --radius:
        14px;

    --container:
        1320px;

}


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

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{
    font-family:'Manrope',sans-serif;
    color:var(--color-text);
    line-height:1.6;
    overflow-x:hidden;
    width:100%;

    background:
        linear-gradient(rgba(18,18,18,.70), rgba(18,18,18,.70)),
        url("images/brushed-metal.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea{

    font-family:inherit;

    outline:none;

}


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

.container{

    width:90%;

    max-width:var(--container);

    margin:auto;

}


/*==================================================
TYPOGRAPHY
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    font-size:.95rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:12px;

    font-size:2.8rem;

    font-weight:800;

    color:var(--secondary);

}

.section-title p{

    margin-top:20px;

    color:var(--gray);

    max-width:760px;

    margin-inline:auto;

}


/*==================================================
BUTTONS
==================================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    background:var(--primary);

    color:#fff;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

    box-shadow:0 20px 35px rgba(215,25,32,.30);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 38px;

    border-radius:50px;

    border:2px solid #fff;

    color:#fff;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}


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

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

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:140px;

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

    background:transparent !important;

    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;

    border:none !important;
    box-shadow:none !important;

    z-index:9999;
    transition:.4s;
}


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

.header-inner{
    width:min(1400px,92%);
    height:100%;
    margin:auto;

    display:grid;
    grid-template-columns:1fr auto 1fr;

    align-items:center;
}

.brand-link{
    grid-column:2;
    justify-self:center;

    display:flex;
    align-items:center;
    gap:12px;
}

.desktop-nav{
    grid-column:3;
    justify-self:end;

    display:flex;
    align-items:center;
    gap:34px;
}


/*==================================================
BRAND
==================================================*/

.brand{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    text-decoration:none;

    user-select:none;

    transition:.35s;

}


.brand img{

    width:62px;

    height:auto;

    margin:0;

    transition:.35s;

}


.brand-text{

    display:flex;

    align-items:center;

}


.brand-text{

    color:#ffffff;

    font-size:1.55rem;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

    transition:.35s;

}


/*==================================================
LOGO HOVER
==================================================*/

.brand:hover{

    transform:translateY(-2px);

}


.brand:hover img{

    transform:scale(1.06);

}


.brand:hover h2{

    color:var(--primary);

}


/*==================================================
LEFT MENU
==================================================*/

.nav-left{

    justify-self:start;

}


.nav-left ul{

    display:flex;

    align-items:center;

    gap:45px;

    list-style:none;

    margin:0;

    padding:0;

}


/*==================================================
RIGHT MENU
==================================================*/

.nav-right{

    justify-self:end;

}


.nav-right ul{

    display:flex;

    align-items:center;

    gap:45px;

    list-style:none;

    margin:0;

    padding:0;

}

/*==================================================
NAVIGATION LINKS
==================================================*/

.nav-left a,
.nav-right a{

    position:relative;

    color:#ffffff;

    text-decoration:none;

    font-size:.95rem;

    font-weight:600;

    letter-spacing:1px;

    transition:.35s;

    padding:10px 0;

}

.nav-left a::after,
.nav-right a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s ease;

}

.nav-left a:hover,
.nav-right a:hover{

    color:var(--primary);

}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after{

    width:100%;

}


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

#header.scrolled,
header.scrolled{
    background:transparent !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    border:none !important;
    box-shadow:none !important;
}

/*==================================================
SCROLLED LOGO
==================================================*/

#header.scrolled .brand{

    transform:scale(.88);

}

#header.scrolled .brand img{

    width:50px;

    margin-bottom:6px;

}

#header.scrolled .brand-text span{

    font-size:.60rem;

    letter-spacing:5px;

    margin-bottom:6px;

}

#header.scrolled .brand-text h2{

    font-size:1.35rem;

    letter-spacing:5px;

}


/*==================================================
PREMIUM LOGO GLOW
==================================================*/

.brand{

    position:relative;

}

.brand::before{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:radial-gradient(

        rgba(220,0,0,.12),

        transparent 70%

    );

    filter:blur(30px);

    z-index:-1;

    opacity:0;

    transition:.4s;

}

.brand:hover::before{

    opacity:1;

}


/*==================================================
HAMBURGER
==================================================*/

.hamburger{

    display:none;

    width:42px;

    height:42px;

    background:none;

    border:none;

    cursor:pointer;

    justify-self:end;

    z-index:10002;

}

.hamburger span{

    display:block;

    width:28px;

    height:3px;

    margin:6px auto;

    border-radius:5px;

    background:#ffffff;

    transition:.35s;

}


/*==================================================
HAMBURGER ANIMATION
==================================================*/

.hamburger.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}


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

.mobile-nav{

    position:fixed;

    top:0;

    left:-100%;

    width:100%;

    height:100vh;

    background:#111;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.45s ease;

    z-index:9998;

}

.mobile-nav.active{

    left:0;

}

.mobile-nav ul{

    list-style:none;

    padding:0;

    margin:0;

    text-align:center;

}

.mobile-nav li{

    margin:28px 0;

}

.mobile-nav a{

    color:#fff;

    text-decoration:none;

    font-size:1.5rem;

    font-weight:700;

    letter-spacing:2px;

    transition:.3s;

}

.mobile-nav a:hover{

    color:var(--primary);

}


/*==================================================
BRAND
==================================================*/

.brand{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    z-index:1001;

}

.brand img{

    width:68px;

    height:auto;

    margin-bottom:12px;

    transition:.35s;

}

.brand-text{

    display:flex;

    flex-direction:column;

    align-items:center;

    line-height:1;

}

.brand-text span{

    color:#bdbdbd;

    font-size:.72rem;

    font-weight:600;

    letter-spacing:7px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.brand-text h2{

    color:#ffffff;

    font-size:2rem;

    font-weight:800;

    letter-spacing:8px;

    margin:0;

    transition:.35s;

}


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

nav ul{

    display:flex;

    align-items:center;

    gap:45px;

}

nav a{

    font-size:.95rem;

    font-weight:700;

    color:#fff;

    position:relative;

    transition:.3s;

}

header.scrolled nav a{

    color:#fff;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

nav a:hover::after,

nav a.active::after{

    width:100%;

}

nav a:hover{

    color:var(--primary);

}


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

.btn-header{

    background:var(--primary);

    color:#fff;

    padding:15px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}

.btn-header:hover{

    background:var(--primary-dark);

}


/*==================================================
HAMBURGER
==================================================*/

.hamburger{

    display:none;

    width:35px;

    cursor:pointer;

}

.hamburger span{

    display:block;

    height:3px;

    margin:6px 0;

    background:#fff;

    transition:.3s;

}

header.scrolled .hamburger span{

    background:#fff;

}

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

@media (max-width:768px){

    .hamburger{

        display:block;
        position:relative;
        z-index:10002;

    }

    nav{

        position:fixed;

        top:0;
        left:-100%;

        width:100%;
        height:100vh;

        background:#111;

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

        transition:.4s ease;

        z-index:10001;

    }

    nav.active{

        left:0;

    }

    nav ul{

        flex-direction:column;
        align-items:center;
        gap:35px;

    }

    nav a{

        color:#fff;
        font-size:1.6rem;
        font-weight:700;

    }

    nav a:hover{

        color:var(--primary);

    }

}


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

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:#050505;

}



/*------------------------------------
BACKGROUND
------------------------------------*/

.hero-background{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    overflow:hidden;

    z-index:1;

}



#heroCar{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transform:scale(1.05);

    filter:

        brightness(.12)

        contrast(1.15)

        saturate(.85);

}



/*------------------------------------
OVERLAY
------------------------------------*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to bottom,

        rgba(0,0,0,.25),

        rgba(0,0,0,.45),

        rgba(0,0,0,.78)

    ),

    linear-gradient(

        to right,

        rgba(0,0,0,.55),

        rgba(0,0,0,.15),

        rgba(0,0,0,.35)

    );

    z-index:2;

}



/*------------------------------------
CONTENT
------------------------------------*/

.hero-content{

    position:relative;

    z-index:10;

    width:90%;

    max-width:900px;

    color:#ffffff;

}



.hero-content .subtitle{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}



.hero-content h1{

    font-size:5rem;

    line-height:1.1;

    font-weight:800;

    text-shadow:

        0 0 30px rgba(0,0,0,.8);

}



.hero-content p{

    margin-top:35px;

    max-width:620px;

    color:#ececec;

    font-size:1.15rem;

    text-shadow:

        0 0 20px rgba(0,0,0,.8);

}



.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}



/*------------------------------------
INTRO ANIMATION
------------------------------------*/

.hero-content h1,

.hero-content p,

.hero-buttons,

.hero-content .subtitle{

    opacity:0;

    transform:translateY(35px);

}

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

.leistungen{

    padding:120px 0;

    background:#ffffff;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:45px 35px;

    transition:var(--transition);

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.04);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:var(--primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-icon{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    border-radius:20px;

    background:rgba(215,25,32,.08);

    color:var(--primary);

    margin-bottom:30px;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:var(--primary);

    color:#fff;

    transform:rotate(-6deg) scale(1.08);

}

.service-card h3{

    font-size:1.35rem;

    margin-bottom:18px;

    font-weight:800;

}

.service-card p{

    color:var(--gray);

    line-height:1.8;

}


/*==================================================
WARUM WIR
==================================================*/

.why-us{

    background:var(--light);

    padding:120px 0;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.why-card{

    background:#fff;

    padding:45px 35px;

    border-radius:var(--radius);

    transition:var(--transition);

    position:relative;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.why-number{

    font-size:3.4rem;

    font-weight:800;

    color:rgba(215,25,32,.10);

    margin-bottom:15px;

}

.why-card h3{

    font-size:1.35rem;

    margin-bottom:18px;

}

.why-card p{

    color:var(--gray);

}


/*==================================================
MOBILE.DE SECTION
==================================================*/

.mobile-section{

    padding:130px 0;

    background:linear-gradient(135deg,#111111,#202020);

    color:#fff;

    position:relative;

    overflow:hidden;

}

.mobile-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:rgba(215,25,32,.08);

    border-radius:50%;

    right:-250px;

    top:-250px;

}

.mobile-content{

    position:relative;

    z-index:2;

    max-width:800px;

    margin:auto;

    text-align:center;

}

.section-badge{

    display:inline-block;

    padding:12px 22px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    color:#fff;

    margin-bottom:25px;

    letter-spacing:1px;

    backdrop-filter:blur(10px);

}

.mobile-content h2{

    font-size:3rem;

    margin-bottom:30px;

    line-height:1.2;

}

.mobile-content p{

    max-width:700px;

    margin:auto;

    color:#dddddd;

    line-height:1.9;

    margin-bottom:45px;

}

.mobile-content .btn-primary{

    font-size:1rem;

}


/*==================================================
BUTTON ARROW EFFECT
==================================================*/

.btn-primary{

    position:relative;

    overflow:hidden;

}

.btn-primary::after{

    content:"→";

    margin-left:12px;

    transition:.3s;

}

.btn-primary:hover::after{

    margin-left:18px;

}


/*==================================================
SECTION SPACING
==================================================*/

section{

    position:relative;

}

section::after{

    content:"";

    display:block;

    clear:both;

}


/*==================================================
GLOBAL CARD EFFECT
==================================================*/

.service-card,
.why-card{

    will-change:transform;

}


/*==================================================
SOFT FADE ANIMATION
==================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


/*==================================================
TEXT SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#efefef;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/*==================================================
ÜBER UNS (HOME)
==================================================*/

.about-home{

    padding:130px 0;

    background:#ffffff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:22px;

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.about-image::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:var(--primary);

    opacity:.08;

    border-radius:50%;

    left:-70px;

    bottom:-70px;

    z-index:-1;

}

.about-text span{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    font-weight:800;

    letter-spacing:2px;

    margin-bottom:18px;

}

.about-text h2{

    font-size:3rem;

    margin-bottom:30px;

    line-height:1.2;

}

.about-text p{

    color:var(--gray);

    margin-bottom:22px;

    line-height:1.9;

}


/*==================================================
STANDORT
==================================================*/

.location{

    padding:130px 0;

    background:var(--light);

}

.location-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:45px;

    align-items:stretch;

}

.location-info{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.location-info h3{

    margin-bottom:15px;

    font-size:1.3rem;

    color:var(--secondary);

}

.location-info p{

    margin-bottom:35px;

    color:var(--gray);

    line-height:1.8;

}

.location-info ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.location-info li{

    color:var(--gray);

    padding-bottom:12px;

    border-bottom:1px solid var(--border);

}

.location-info li:last-child{

    border:none;

}


/*==================================================
GOOGLE MAP
==================================================*/

.map{

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.map iframe{

    width:100%;

    height:100%;

    min-height:520px;

    border:0;

}


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

.contact-home{

    padding:130px 0;

    background:#ffffff;

}

.contact-grid{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:50px;

    align-items:start;

}


/*==================================================
CONTACT INFO
==================================================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.contact-box{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:var(--shadow);

    border-left:5px solid var(--primary);

    transition:var(--transition);

}

.contact-box:hover{

    transform:translateY(-6px);

}

.contact-box h3{

    margin-bottom:12px;

    font-size:1.2rem;

}

.contact-box p{

    color:var(--gray);

    line-height:1.8;

}


/*==================================================
CONTACT FORM
==================================================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid var(--border);

    border-radius:14px;

    font-size:1rem;

    transition:.3s;

    background:#fafafa;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:var(--primary);

    background:#fff;

    box-shadow:0 0 0 4px rgba(215,25,32,.10);

}


/*==================================================
PLACEHOLDER
==================================================*/

.contact-form input::placeholder,

.contact-form textarea::placeholder{

    color:#999;

}


/*==================================================
FORM BUTTON
==================================================*/

.contact-form .btn-primary{

    width:fit-content;

    margin-top:8px;

}


/*==================================================
INPUT AUTOFILL
==================================================*/

input:-webkit-autofill,

textarea:-webkit-autofill{

    -webkit-box-shadow:0 0 0 1000px white inset;

}


/*==================================================
SECTION DIVIDER
==================================================*/

.about-home::after,

.location::after,

.contact-home::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:0;

    width:120px;

    height:4px;

    background:var(--primary);

    border-radius:100px;

}

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

footer{

    background:#111111;

    color:#ffffff;

    padding:90px 0 30px;

    position:relative;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    margin-bottom:60px;

}

.footer-logo{

    width:220px;

    margin-bottom:25px;

}

.footer-column p{

    color:#bfbfbf;

    line-height:1.9;

}

.footer-column h3{

    margin-bottom:25px;

    font-size:1.2rem;

    position:relative;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:var(--primary);

    border-radius:20px;

}

.footer-column ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-column li{

    color:#c8c8c8;

}

.footer-column a{

    transition:var(--transition);

}

.footer-column a:hover{

    color:var(--primary);

    padding-left:8px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    text-align:center;

    color:#9b9b9b;

    font-size:.95rem;

}


/*==================================================
COOKIE BANNER
==================================================*/

#cookieBanner{

    position:fixed;

    left:30px;

    bottom:30px;

    width:420px;

    background:#ffffff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

    z-index:9999;

    display:none;

}

.cookie-content h3{

    margin-bottom:15px;

    font-size:1.2rem;

}

.cookie-content p{

    color:var(--gray);

    line-height:1.7;

}

.cookie-buttons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.cookie-buttons button{

    flex:1;

}


/*==================================================
BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:35px;

    bottom:35px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#ffffff;

    font-size:1.3rem;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:999;

    box-shadow:0 15px 35px rgba(215,25,32,.35);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-6px);

    background:var(--primary-dark);

}


/*==================================================
WHATSAPP BUTTON
==================================================*/

#whatsappButton{

    position:fixed;

    right:35px;

    bottom:105px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:var(--transition);

    z-index:998;

}

#whatsappButton:hover{

    transform:scale(1.08);

}


/*==================================================
GENERAL ANIMATIONS
==================================================*/

.fade{

    opacity:0;

    transform:translateY(40px);

    transition:.8s ease;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

.zoom{

    opacity:0;

    transform:scale(.9);

    transition:.8s ease;

}

.zoom.show{

    opacity:1;

    transform:scale(1);

}

.slide-left{

    opacity:0;

    transform:translateX(-60px);

    transition:.8s ease;

}

.slide-left.show{

    opacity:1;

    transform:translateX(0);

}

.slide-right{

    opacity:0;

    transform:translateX(60px);

    transition:.8s ease;

}

.slide-right.show{

    opacity:1;

    transform:translateX(0);

}


/*==================================================
IMAGE EFFECTS
==================================================*/

img{

    transition:var(--transition);

}

.about-image:hover img{

    transform:scale(1.03);

}

.service-card:hover img{

    transform:scale(1.05);

}


/*==================================================
LINK EFFECT
==================================================*/

a{

    transition:var(--transition);

}


/*==================================================
SECTION BACKGROUND DECORATION
==================================================*/

.leistungen::before,

.why-us::before,

.about-home::before{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(215,25,32,.03);

    filter:blur(10px);

    z-index:0;

}

.leistungen::before{

    top:-80px;

    left:-80px;

}

.why-us::before{

    right:-120px;

    top:40px;

}

.about-home::before{

    left:50%;

    bottom:-120px;

}


/*==================================================
TEXT EFFECT
==================================================*/

h1,
h2,
h3{

    letter-spacing:-.5px;

}

strong{

    color:var(--primary);

}


/*==================================================
SMOOTH HOVER
==================================================*/

.service-card,
.why-card,
.contact-box,
.btn-primary,
.btn-secondary{

    transition:all .35s ease;

}


/*==================================================
FOCUS ACCESSIBILITY
==================================================*/

a:focus,
button:focus,
input:focus,
textarea:focus{

    outline:3px solid rgba(215,25,32,.35);

    outline-offset:3px;

}


/*==================================================
HIDE OVERFLOW
==================================================*/

section{

    overflow:hidden;

}


/*==================================================
END OF PART 4
==================================================*/

/*==================================================
UTILITY CLASSES
==================================================*/

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.pt-1{padding-top:10px;}
.pt-2{padding-top:20px;}
.pt-3{padding-top:30px;}
.pt-4{padding-top:40px;}
.pt-5{padding-top:50px;}

.pb-1{padding-bottom:10px;}
.pb-2{padding-bottom:20px;}
.pb-3{padding-bottom:30px;}
.pb-4{padding-bottom:40px;}
.pb-5{padding-bottom:50px;}


/*==================================================
SHADOW HELPERS
==================================================*/

.shadow-sm{

    box-shadow:0 5px 15px rgba(0,0,0,.06);

}

.shadow{

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

}

.shadow-lg{

    box-shadow:0 30px 60px rgba(0,0,0,.16);

}


/*==================================================
BORDER RADIUS HELPERS
==================================================*/

.radius-sm{

    border-radius:8px;

}

.radius{

    border-radius:14px;

}

.radius-lg{

    border-radius:24px;

}

.radius-round{

    border-radius:999px;

}


/*==================================================
DISPLAY HELPERS
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    align-items:center;

    justify-content:center;

}

.flex-between{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.grid{

    display:grid;

}


/*==================================================
BADGES
==================================================*/

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(215,25,32,.08);

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

}


/*==================================================
SMALL DIVIDER
==================================================*/

.divider{

    width:70px;

    height:4px;

    background:var(--primary);

    border-radius:100px;

    margin:25px auto;

}


/*==================================================
LOADING EFFECT
==================================================*/

.loading{

    position:relative;

    overflow:hidden;

}

.loading::after{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    animation:loading 1.8s infinite;

}

@keyframes loading{

    100%{

        left:100%;

    }

}


/*==================================================
CARD BORDER EFFECT
==================================================*/

.service-card,
.why-card,
.contact-box{

    border:1px solid transparent;

}

.service-card:hover,
.why-card:hover,
.contact-box:hover{

    border-color:rgba(215,25,32,.18);

}


/*==================================================
BUTTON ACTIVE
==================================================*/

.btn-primary:active,
.btn-secondary:active{

    transform:scale(.98);

}


/*==================================================
INPUT ACTIVE
==================================================*/

.contact-form input:valid,
.contact-form textarea:valid{

    border-color:#dcdcdc;

}


/*==================================================
FORM LABEL SUPPORT
==================================================*/

.form-group{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.form-group label{

    font-weight:700;

    font-size:.95rem;

}


/*==================================================
IMAGE RADIUS
==================================================*/

.rounded-image{

    border-radius:20px;

    overflow:hidden;

}


/*==================================================
IMAGE OVERLAY
==================================================*/

.image-overlay{

    position:relative;

}

.image-overlay::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.25)
    );

    opacity:0;

    transition:.35s;

}

.image-overlay:hover::before{

    opacity:1;

}


/*==================================================
HOVER LIFT
==================================================*/

.hover-lift{

    transition:.35s;

}

.hover-lift:hover{

    transform:translateY(-8px);

}


/*==================================================
SECTION TITLE ANIMATION
==================================================*/

.section-title h2{

    transition:.4s;

}

.section-title:hover h2{

    color:var(--primary);

}


/*==================================================
ICON CIRCLE
==================================================*/

.icon-circle{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(215,25,32,.08);

    color:var(--primary);

}


/*==================================================
BACKGROUND HELPERS
==================================================*/

.bg-light{

    background:var(--light);

}

.bg-dark{

    background:#111111;

    color:#ffffff;

}

.bg-white{

    background:#ffffff;

}


/*==================================================
TEXT COLORS
==================================================*/

.text-primary{

    color:var(--primary);

}

.text-gray{

    color:var(--gray);

}

.text-white{

    color:#ffffff;

}


/*==================================================
MAX WIDTH HELPERS
==================================================*/

.w-100{

    width:100%;

}

.max-600{

    max-width:600px;

}

.max-800{

    max-width:800px;

}

.max-1000{

    max-width:1000px;

}


/*==================================================
OPACITY
==================================================*/

.opacity-75{

    opacity:.75;

}

.opacity-50{

    opacity:.5;

}

.opacity-25{

    opacity:.25;

}


/*==================================================
TRANSITIONS
==================================================*/

.transition{

    transition:var(--transition);

}


/*==================================================
END OF PART 5
==================================================*/

/*==================================================
PERFORMANCE OPTIMIZATIONS
==================================================*/

*,
*::before,
*::after{

    backface-visibility:hidden;

}

img{

    image-rendering:auto;

    max-width:100%;

    height:auto;

}

iframe{

    max-width:100%;

}


/*==================================================
FOCUS VISIBLE
==================================================*/

:focus-visible{

    outline:3px solid rgba(215,25,32,.35);

    outline-offset:4px;

}


/*==================================================
DISABLED
==================================================*/

button:disabled,
input:disabled,
textarea:disabled{

    opacity:.6;

    cursor:not-allowed;

}


/*==================================================
TABLE DEFAULTS
==================================================*/

table{

    width:100%;

    border-collapse:collapse;

}

th,
td{

    padding:15px;

    text-align:left;

}

th{

    background:var(--primary);

    color:#fff;

}

td{

    border-bottom:1px solid var(--border);

}


/*==================================================
LIST DEFAULT
==================================================*/

.content ul{

    list-style:disc;

    padding-left:25px;

}

.content ol{

    list-style:decimal;

    padding-left:25px;

}

.content li{

    margin-bottom:10px;

}


/*==================================================
BLOCKQUOTE
==================================================*/

blockquote{

    border-left:5px solid var(--primary);

    padding:20px 30px;

    margin:30px 0;

    background:#fafafa;

    font-style:italic;

}


/*==================================================
CODE
==================================================*/

code{

    background:#f2f2f2;

    padding:3px 8px;

    border-radius:6px;

    font-family:monospace;

}


/*==================================================
HR
==================================================*/

hr{

    border:none;

    height:1px;

    background:var(--border);

    margin:60px 0;

}


/*==================================================
LAZY IMAGES
==================================================*/

img[loading="lazy"]{

    opacity:1;

    transition:opacity .4s;

}


/*==================================================
ANCHOR OFFSET
==================================================*/

section{

    scroll-margin-top:110px;

}


/*==================================================
TEXT WRAPPING
==================================================*/

h1,
h2,
h3,
p{

    overflow-wrap:break-word;

}


/*==================================================
REDUCED MOTION
==================================================*/

@media (prefers-reduced-motion: reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}


/*==================================================
PRINT STYLE
==================================================*/

@media print{

    header,
    footer,
    #backToTop,
    #cookieBanner,
    #whatsappButton{

        display:none !important;

    }

    body{

        background:#fff;

        color:#000;

    }

    a{

        text-decoration:none;

        color:#000;

    }

}


/*==================================================
HIGH CONTRAST
==================================================*/

@media (prefers-contrast: more){

    body{

        color:#000;

        background:#fff;

    }

    .btn-primary{

        border:2px solid #000;

    }

}


/*==================================================
SMOOTH IMAGE SCALE
==================================================*/

img{

    transition:transform .4s ease;

}


/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
SCROLLBAR FIREFOX
==================================================*/

html{

    scrollbar-width:thin;

    scrollbar-color:var(--primary) #efefef;

}


/*==================================================
REMOVE BLUE TAP MOBILE
==================================================*/

*{

    -webkit-tap-highlight-color:transparent;

}


/*==================================================
SAFE AREA IOS
==================================================*/

body{

    padding-left:env(safe-area-inset-left);

    padding-right:env(safe-area-inset-right);

}


/*==================================================
LOGO HOVER
==================================================*/

.logo img:hover{

    transform:scale(1.03);

}


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

.footer-column li{

    transition:.3s;

}

.footer-column li:hover{

    transform:translateX(6px);

}


/*==================================================
MAP
==================================================*/

.map iframe{

    display:block;

}


/*==================================================
FORM BUTTON
==================================================*/

.contact-form button{

    align-self:flex-start;

}


/*==================================================
HERO TEXT SHADOW
==================================================*/

.hero-content h1{

    text-shadow:0 8px 25px rgba(0,0,0,.35);

}

.hero-content p{

    text-shadow:0 3px 15px rgba(0,0,0,.25);

}

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

.page-hero{

    position:relative;

    height:65vh;

    min-height:500px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:#080808;

}



.page-hero-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:1;

    overflow:hidden;

}



.page-hero-bg img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transform:scale(1.08);

    transition:transform .8s ease;

}



.page-hero:hover .page-hero-bg img{

    transform:scale(1.12);

}



.page-hero-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to bottom,

        rgba(0,0,0,.25),

        rgba(0,0,0,.55),

        rgba(0,0,0,.88)

    ),

    linear-gradient(

        to right,

        rgba(0,0,0,.65),

        rgba(0,0,0,.15),

        rgba(0,0,0,.45)

    );

}



.page-hero .container{

    position:relative;

    z-index:5;

}



.page-hero-content{

    max-width:750px;

    text-align:center;

    margin:auto;

}



.hero-label{

    display:inline-block;

    color:var(--primary);

    font-size:.95rem;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;

}



.page-hero-content h1{

    font-size:4.5rem;

    font-weight:800;

    color:#ffffff;

    margin-bottom:25px;

    text-shadow:

    0 0 30px rgba(0,0,0,.85);

}



.page-hero-content p{

    font-size:1.15rem;

    line-height:1.8;

    color:#e2e2e2;

    max-width:700px;

    margin:auto;

    text-shadow:

    0 0 18px rgba(0,0,0,.75);

}



.page-hero .hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

}



.page-hero .btn-primary,

.page-hero .btn-secondary{

    min-width:220px;

}



@media(max-width:992px){

    .page-hero{

        height:55vh;

        min-height:420px;

    }

    .page-hero-content h1{

        font-size:3.2rem;

    }

}



@media(max-width:768px){

    .page-hero{

        height:50vh;

        min-height:380px;

    }

    .page-hero-content h1{

        font-size:2.5rem;

    }

    .page-hero-content p{

        font-size:1rem;

    }

    .page-hero .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

}

html,
body{

    min-height:100%;

}

/*==================================================
DARK THEME OVERRIDE
==================================================*/

body{
    background:#111;
    color:#f5f5f5;
}

.section-title h2{
    color:#fff;
}

.section-title p{
    color:#bfbfbf;
}

.leistungen,
.about-home,
.contact-home{
    background:#141414;
}

.why-us,
.location{
    background:#1b1b1b;
}

.service-card,
.why-card,
.contact-box,
.contact-form,
.location-info{
    background:#202020;
    border-color:#333;
    color:#fff;
}

.service-card h3,
.why-card h3,
.contact-box h3,
.location-info h3,
.about-text h2{
    color:#fff;
}

.service-card p,
.why-card p,
.contact-box p,
.location-info p,
.about-text p{
    color:#c5c5c5;
}

.contact-form input,
.contact-form textarea{
    background:#181818;
    color:#fff;
    border:1px solid #333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#888;
}

.contact-form input:focus,
.contact-form textarea:focus{
    background:#202020;
}

header.scrolled{
    background:rgba(17,17,17,.95);
    backdrop-filter:blur(18px);
}

header.scrolled nav a{
    color:#fff;
}

header.scrolled .hamburger span{
    background:#fff;
}

#cookieBanner{
    background:#202020;
    color:#fff;
    border:1px solid #333;
}

.cookie-content p{
    color:#bdbdbd;
}

blockquote{
    background:#1c1c1c;
    color:#ddd;
}

code{
    background:#2a2a2a;
    color:#fff;
}

::-webkit-scrollbar-track{
    background:#151515;
}

.bg-light{
    background:#181818;
}

.bg-white{
    background:#202020;
}

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

.legal-hero{

    position: relative;

    padding: 220px 0 120px;

    background: linear-gradient(
        135deg,
        #0b0b0b,
        #151515,
        #1d1d1d
    );

    text-align: center;

    overflow: hidden;

}

.legal-hero::before{

    content: "";

    position: absolute;

    inset: 0;

    background: radial-gradient(
        circle at top,
        rgba(255,0,0,.08),
        transparent 65%
    );

}

.legal-hero .container{

    position: relative;

    z-index: 2;

}

.legal-badge{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.legal-hero h1{

    color:#fff;

    font-size:4rem;

    margin-bottom:25px;

}

.legal-hero p{

    max-width:700px;

    margin:auto;

    color:#cfcfcf;

    line-height:1.8;

    font-size:1.1rem;

}

/*==================================================
FAHRZEUGE
==================================================*/

.vehicles{

    padding:120px 0;

    background:#111;

}

.vehicle-filter{

    padding:70px 0;

    background:#181818;

    border-top:1px solid #262626;

    border-bottom:1px solid #262626;

}

.filter-box{

    display:grid;

    grid-template-columns:2fr repeat(3,1fr);

    gap:20px;

}

.filter-box input,

.filter-box select{

    height:58px;

    border:none;

    outline:none;

    border-radius:14px;

    background:#202020;

    color:#fff;

    padding:0 20px;

    font-size:15px;

    transition:.3s;

    border:1px solid transparent;

}

.filter-box input::placeholder{

    color:#9d9d9d;

}

.filter-box input:focus,

.filter-box select:focus{

    border-color:var(--primary);

    background:#252525;

}

.vehicle-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

    gap:35px;

}

.vehicle-card{

    background:#1b1b1b;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    border:1px solid #2d2d2d;

    position:relative;

    display:flex;

    flex-direction:column;

}

.vehicle-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,40,40,.5);

    box-shadow:

    0 25px 60px rgba(0,0,0,.45);

}

.vehicle-image{

    position:relative;

    overflow:hidden;

    aspect-ratio:16/10;

    background:#000;

}

.vehicle-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.vehicle-card:hover .vehicle-image img{

    transform:scale(1.08);

}

.vehicle-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to top,

        rgba(0,0,0,.55),

        transparent 55%

    );

}

.vehicle-status{

    position:absolute;

    top:18px;

    left:18px;

    z-index:5;

    background:var(--primary);

    color:#fff;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:1px;

    padding:8px 14px;

    border-radius:40px;

    text-transform:uppercase;

}

.vehicle-content{

    padding:28px;

    display:flex;

    flex-direction:column;

    flex:1;

}

.vehicle-brand{

    color:var(--primary);

    font-size:.82rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.vehicle-content h3{

    color:#fff;

    font-size:1.6rem;

    line-height:1.35;

    margin-bottom:22px;

    font-weight:700;

}

.vehicle-specs{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

    margin-bottom:30px;

}

.vehicle-specs span{

    background:#222;

    border:1px solid #2f2f2f;

    border-radius:12px;

    padding:12px 14px;

    color:#d7d7d7;

    font-size:.92rem;

    display:flex;

    align-items:center;

    gap:10px;

}

.vehicle-bottom{

    margin-top:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.vehicle-price{

    color:#fff;

    font-size:2rem;

    font-weight:800;

    line-height:1;

}

.vehicle-bottom .btn-primary{

    padding:14px 24px;

    white-space:nowrap;

}

.no-results{

    grid-column:1/-1;

    text-align:center;

    padding:80px 30px;

    background:#1d1d1d;

    border-radius:20px;

    border:1px solid #2d2d2d;

}

.no-results h2{

    color:#fff;

    margin-bottom:15px;

}

.no-results p{

    color:#bcbcbc;

}

/*==================================================
VEHICLE PREMIUM EFFECTS
==================================================*/

.vehicle-card{

    backdrop-filter:blur(18px);

    overflow:hidden;

}

.vehicle-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.03),

        transparent 35%

    );

    pointer-events:none;

}

.vehicle-card::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:

    linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.08),

        transparent

    );

    transform:skewX(-25deg);

    transition:1s;

}

.vehicle-card:hover::after{

    left:150%;

}



/*==================================================
IMAGE
==================================================*/

.vehicle-image img{

    transition:

    transform .8s ease,

    filter .6s ease;

}

.vehicle-card:hover .vehicle-image img{

    transform:scale(1.1);

    filter:brightness(1.08);

}



/*==================================================
PHOTO COUNT
==================================================*/

.vehicle-image .photo-count{

    position:absolute;

    top:18px;

    right:18px;

    z-index:5;

    padding:8px 14px;

    border-radius:30px;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:.8rem;

    font-weight:600;

}



/*==================================================
FAVORITE
==================================================*/

.favorite-btn{

    position:absolute;

    bottom:18px;

    right:18px;

    width:46px;

    height:46px;

    border-radius:50%;

    border:none;

    cursor:pointer;

    background:rgba(0,0,0,.45);

    backdrop-filter:blur(12px);

    color:#fff;

    font-size:18px;

    transition:.3s;

    z-index:10;

}

.favorite-btn:hover{

    background:var(--primary);

    transform:scale(1.08);

}



/*==================================================
PRICE
==================================================*/

.vehicle-price{

    transition:.35s;

}

.vehicle-card:hover .vehicle-price{

    color:var(--primary);

    transform:scale(1.05);

}



/*==================================================
BUTTON
==================================================*/

.vehicle-bottom .btn-primary{

    transition:.35s;

}

.vehicle-bottom .btn-primary:hover{

    transform:translateY(-2px);

}



/*==================================================
STATUS COLORS
==================================================*/

.vehicle-status{

    box-shadow:

    0 0 20px rgba(255,0,0,.35);

}

.vehicle-status.top{

    background:#ff9800;

}

.vehicle-status.sold{

    background:#555;

}

.vehicle-status.new{

    background:#d50000;

}



/*==================================================
CARD APPEAR
==================================================*/

.vehicle-card{

    opacity:0;

    transform:translateY(40px);

    animation:vehicleFade .7s forwards;

}

.vehicle-card:nth-child(2){

    animation-delay:.1s;

}

.vehicle-card:nth-child(3){

    animation-delay:.2s;

}

.vehicle-card:nth-child(4){

    animation-delay:.3s;

}

.vehicle-card:nth-child(5){

    animation-delay:.4s;

}

.vehicle-card:nth-child(6){

    animation-delay:.5s;

}

.vehicle-card:nth-child(7){

    animation-delay:.6s;

}

.vehicle-card:nth-child(8){

    animation-delay:.7s;

}

@keyframes vehicleFade{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



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

@media(max-width:1200px){

    .vehicle-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .filter-box{

        grid-template-columns:1fr;

    }

    .vehicle-grid{

        grid-template-columns:1fr;

    }

    .vehicle-content{

        padding:24px;

    }

    .vehicle-content h3{

        font-size:1.35rem;

    }

    .vehicle-price{

        font-size:1.7rem;

    }

    .vehicle-bottom{

        flex-direction:column;

        align-items:flex-start;

    }

    .vehicle-bottom .btn-primary{

        width:100%;

        justify-content:center;

        text-align:center;

    }

}

@media(max-width:480px){

    .vehicle-specs{

        grid-template-columns:1fr;

    }

}

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

@media(max-width:1200px){

    #header{

        height:120px;

    }

    .header-container{

        width:95%;

    }

    .nav-left ul,
    .nav-right ul{

        gap:30px;

    }

    .brand img{

        width:54px;

    }

    .brand-text{

        font-size:1.25rem;

        letter-spacing:3px;

    }

}


@media(max-width:992px){

    .nav-left,
    .nav-right{

        display:none;

    }

    .header-container{

        display:flex;

        justify-content:space-between;

        align-items:center;

    }

    .brand{

        position:absolute;

        left:50%;

        transform:translateX(-50%);

    }

    .hamburger{

        display:block;

        margin-left:auto;

    }

}


@media(max-width:768px){

    #header{

        height:90px;

    }

    .brand{

        gap:12px;

    }

    .brand img{

        width:42px;

    }

    .brand-text{

        font-size:1rem;

        letter-spacing:2px;

    }

    .hamburger{

        width:36px;

        height:36px;

    }

    .hamburger span{

        width:24px;

    }

    .mobile-nav a{

        font-size:1.35rem;

    }

}


@media(max-width:480px){

    .brand img{

        width:36px;

    }

    .brand-text{

        font-size:.85rem;

        letter-spacing:1.5px;

    }

    .mobile-nav a{

        font-size:1.2rem;

    }

}

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

.header-right{
    justify-self:end;
    display:flex;
    align-items:center;
}

.brand-link{
    justify-self:center;
    display:flex;
    align-items:center;
    gap:12px;
}

header{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

#header{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

#site-header{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
}

.header-inner{
    background:transparent !important;
}

header::before,
header::after,
#header::before,
#header::after,
#site-header::before,
#site-header::after{
    display:none !important;
}