
:root {
    --white: #FFFFFF;
    --black: #000000;
    --gray: #6B6B6B;
    --dark-gray: #373737;

    --primary-black: #0A0A0A;
    --secondary-black: #1A1A1A;
    --gold-text: #dfb45b;

    /* --primary: #FFD700;  */
    --primary: linear-gradient(135deg, #a37027 0%, #e1b85f 50%, #bc8c39 100%);
    /* --primary: #D4AF37;  */
    --secondary: #007bff;

    --wa-green: #25D366;
    
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Arial", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-black);
    color: var(--white);
    font-family: var(--font-primary);
    line-height: 1.2;
}

h1{
    font-size: 4em;
    font-weight: 300;
}
h2{
    font-size: 2.5em;
    font-weight: 200;
}
h3{
    font-size: 2em;
}

a{
    font-size: .8em;
    text-decoration: none;
    color: var(--white);
}

h4{
    font-size: 2em;
    font-weight: 100;
}

p{
    font-size: .9em;
    color: var(--white);
}

.primary_btn{
    min-width: 120px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 18px;
    border: none;
    outline: none;
    cursor: pointer;
}
    .primary_btn:hover{
        box-shadow: 0 0 15px rgba(225, 184, 95, 0.2);
        transition: box-shadow 0.3s ease;
    }

.primary_btn_outline{
    min-width: 120px;
    background: transparent;
    border: 1px solid  var(--gold-text);
    color: var(--gold-text);
    padding: 12px 18px;
    outline: none;
    text-align: center;
    width: 100%;
    transition: all 100ms ease-in-out;
    cursor:pointer;
}
    .primary_btn_outline:hover{
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 0 15px rgba(225, 184, 95, 0.2);
        transition: box-shadow 0.3s ease;
    }

.secondary_btn{
    min-width: 120px;
    background-color: transparent;
    color: var(--white);
    padding: 12px 18px;
    border: none;
    outline: none;
}

header{
    width:100%;
    padding: 16px;
    display: grid;
    grid-template-columns: 170px 1fr 170px;
    position: fixed;
    background-color: var(--primary-black);
    z-index: 999;
    top: 0;
    left: 0;
}

.mt-16{
    margin-top: 16px;
}
.gap-16{
    gap: 16px;
}
.text-muted{
    color: var(--gray) !important;
}
.text-muted p{
    color: var(--gray) !important;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex-start{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.flex-between{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gap-32{
    gap: 32px;
}
.nav-links{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}
    .nav-links a{
        font-size: 1.2em;
        font-weight: 100;
    }
    .nav-links a:hover{
        color: var(--gold-text);
    }
.header-cta{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.floating-contact{
    width: 48px;
    height: 48px;
    background-color: var(--wa-green);
    color: var(--white);
    border-radius: 9999px;
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
    .floating-contact i{
        font-size: 28px;
    }

section.hero{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 200px);
    text-align: center;
}

section.hero-small{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background-size: cover;
    background-position: center;
    height: calc(100vh - 400px);
    text-align: center;
    border-bottom: 4px solid var(--gold-text);
}
    .hero-inner{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16px 0;
        gap: 16px;
        flex-direction: column;
    }

section.cars{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 96px 16px;
    flex-direction: column;
}

    div.section-header{
        text-align: center;
    }
        div.section-header p{
            margin-top: 16px;
        }
        div.section-header p.text-muted *{
            color: var(--dark-gray);
        }

    div.product-grid{
        margin: 32px auto;
        max-width: 1300px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
        margin-top: 64px;
    }
        div.product-card{
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        div.product-img{
            width: 100%;
        }
            div.product-img img{
                width: 100%;
                aspect-ratio: 4/3;
                object-fit: cover;
            }
        div.product-body{
            margin: 0 auto;
            width: 95%;
            padding: 32px 16px;
            border-bottom: 1px solid var(--dark-gray);
        }
        h3.product-title{
            font-weight: 200;
            text-transform: uppercase
        }
        div.product-info-holder{
            padding: 32px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
        }
            .current-price{
                font-size: 1.3em !important;
                color: var(--gold-text);
            }
        div.product-footer{
            width: 90%;
            margin: 0 auto;
            margin-top: 32px;
        }
section.lr_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch; /* Houd dit op stretch zodat ze even hoog blijven */
}  
    div.l_container {
        width: 100%;
        padding: 64px 0px;
        background-color: var(--secondary-black);
    }
    div.l_container_inner {
        margin: 0 auto;
        width: 100%;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    div.r_container {
        width: 100%;
        /* 1. Geef de container een relatieve positie */
        position: relative; 
        /* 2. Voorkom dat een lege container inklapt op mobiel (optioneel, pas aan naar wens) */
        min-height: 300px; 
    }   
        div.r_container img {
            /* 3. Haal de foto uit de normale 'flow' zodat hij de hoogte niet meer opdrukt */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* 4. Zorg dat de foto netjes binnen de box blijft */
            object-fit: cover; 
        }

        .usp-container {
            margin-top: 32px;
        }
        .usp-container h2 {
            color: var(--gold-text);
            font-weight: 600;
        }
        h2.dienst-h2, h2.dienst-h2 p {
            color: var(--gold-text);
            font-weight: 600;
            font-size: 1.1em;
        }
.bb-gold{
    border-bottom: 4px solid var(--gold-text);
}
section.diensten{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 96px 16px;
    flex-direction: column;
}

    div.section-header{
        text-align: center;
    }
        div.section-header p{
            margin-top: 16px;
        }

    div.diensten-container{
        margin: 32px auto;
        max-width: 1200px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 48px;
        margin-top: 64px;
    }
        div.dienst-card{
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 32px;
            padding: 32px;
            background-color: var(--secondary-black);
        }
            div.dienst-icon{
                width: 56px;
                height: 56px;
                border-radius: 999px;
                display: flex;
                justify-content: center;
                align-items: center;
                background: var(--primary);
            }
                div.dienst-icon i{
                    color: var(--white);
                    font-size: 1.1em;
                }
            div.dienst-title h4{
                font-weight: normal;
                font-size: 1.5em;
                color: var(--gold-text);
            }

/* CAR PAGE */
.car-container {
    margin: 64px auto;
    max-width: 1200px;
    width: 100%;
}

/* Grote Scheidingslijn */
.section-divider {
    border: 0;
    height: 1px;
    background: #1a1c23;
    margin: 40px 0;
}

/* --- BOVENSTE SECTIE --- */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.main-image-container {
    width: 100%;
}
.car-container .primary_btn{
    width: max-content;
}
.main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

/* Details Rechts */
.details-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 0;
}

.badge {
    align-self: flex-start;
    color: var(--white);
    border: 1px solid var(--gold-text);
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.details-container h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.placeholder-text {
    font-size: 0.9rem;
    color: var(--whites);
    line-height: 1.5;
    margin-bottom: 30px;
    text-transform: uppercase; /* Matcht het design van je placeholder */
}

/* Specificaties Grid (2 kolommen) */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 15px;
    column-gap: 30px;
    margin: 40px 0;
}

.spec-item {
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

.spec-item .label {
    color: var(--gray);
    width: 100px;
}


.disclaimer {
    font-size: 0.75rem;
    margin-top: 30px;
}

/* --- ONDERSTE SECTIE --- */
.content-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

/* Beschrijving */.description-container {
    width: 100%;
}

/* De knoppenrij */
.tabs-nav {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #1a1c23; /* Donkere lijn onder de tabs */
    margin-bottom: 25px;
}

.tab-btn {
    background: none;
    border: none;
    color: #646c7f; /* Onactieve tab kleur */
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.tab-btn:hover {
    color: #ffffff;
}

/* De actieve tab krijgt de gouden lijn en witte tekst */
.tab-btn.active {
    color: #ffffff;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Valt exact over de border-bottom van de nav */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d1a12c; /* Jouw goudkleur */
}

/* Inhoud panelen */
.tab-panel {
    display: none; /* Verberg standaard alle tabs */
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block; /* Toon alleen de actieve tab */
}

/* --- OPTIES BINNEN DE TAB --- */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.option-group-set h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 12px;
    border-bottom: 1px solid #1a1c23;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
}

.option-group-set p {
    font-size: 0.85rem;
    color: #a0a5b5;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.option-group-set .bullet {
    color: #d1a12c; /* Goudkleurige bulletpoints voor de opties */
}

.description-text p {
    font-size: 0.9rem;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Suggesties Lijst (Rechts) */
.suggestions-list {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.suggestion-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #1a1c23;
}

.suggestion-item:first-child {
    padding-top: 0;
}

.suggestion-img {
    width: 140px;
    height: 95px;
    object-fit: cover;
    border-radius: 4px;
}

.suggestion-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.suggestion-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.suggestion-details a{
    align-self: flex-end;
}


.suggestion-year {
    font-size: 0.9rem;
    color: #646c7f;
}

/* 1. Voorkom dat Flexbox/Grid layouts oneindig groot worden door Swiper */
.hero-section > div:first-child,
.main-image-container {
    min-width: 0 !important;
    width: 100%;
}

/* 2. De hoofdcontainer van de Swiper slider */
.main-image-slider {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: #000000; /* Zwarte achtergrond mochten foto's afwijkende maten hebben */
}

/* 3. Styling voor de losse slides */
.main-image-slider .swiper-slide {
    width: 100% !important; /* Dwingt Swiper om exact de containerbreedte aan te houden */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 4. De afbeeldingen binnen de slider */
.main-image-slider .main-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* 'cover' snijdt de randen af voor vulling, gebruik 'contain' als je de hele foto wilt zien */
}

/* 5. Navigatie pijltjes (Knoppen) */
.main-image-slider .swiper-button-next,
.main-image-slider .swiper-button-prev {
    color: #d1a12c !important; /* Jouw goud/gele accentkleur */
    background-color: rgba(0, 0, 0, 0.6); /* Donkere cirkel achter de pijl voor perfect contrast */
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 10; /* Zorgt dat ze altijd bóvenop de foto's liggen */
    transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Hover effect op de pijltjes */
.main-image-slider .swiper-button-next:hover,
.main-image-slider .swiper-button-prev:hover {
    background-color: rgba(209, 161, 44, 0.2); /* Subtiele gouden gloed bij hover */
    transform: scale(1.05);
}

/* Formaat van het daadwerkelijke pijl-icoontje in de cirkel */
.main-image-slider .swiper-button-next::after,
.main-image-slider .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

/* Exacte positionering vanaf de zijkanten van de foto */
.main-image-slider .swiper-button-next {
    right: 15px !important;
}

.main-image-slider .swiper-button-prev {
    left: 15px !important;
}

/* 6. Paginatie stippen onderin (indien geactiveerd in JS) */
.main-image-slider .swiper-pagination {
    bottom: 15px !important;
    z-index: 10;
}

/* De standaard stippen */
.main-image-slider .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

/* De actieve stip (goud) */
.main-image-slider .swiper-pagination-bullet-active {
    background: #d1a12c !important;
    opacity: 1 !important;
    width: 20px; /* Maakt de actieve stip een liggend streepje, erg modern */
    border-radius: 4px;
    transition: width 0.3s ease;
}

.option-group-set h4{
    font-size: 1.5em;
    font-weight: 300;
    color: var(--gold-text);
}


.about_intro {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 96px 16px;
    flex-direction: column;
}

.about_intro .section-header{
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}


footer{
    width: 100%;
}
    footer .container{
        margin: 0 auto;
        max-width: 1500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
        .footer-grid{
            padding: 64px 16px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 300px 300px;
        }
        .footer-col h4{
            color:var(--gold-text);
            text-transform: uppercase;
            font-size: 1.3em;
        }
        .footer-col ul li{
            list-style-type: none;
            margin-top: 16px;
        }
    div.footer-bottom{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        font-size: .8em;
        padding: 32px 0;
        border-top: 1px solid var(--dark-gray);
    }
div.header-res-icon{
    display: none;
}
div.header-res{
    display: none;
    position: fixed;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
    gap: 64px;
    z-index: 9999;
    background-color: var(--primary-black);
    color: var(--white);
}
    div.header-res-inner{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 64px;
        flex-direction: column;
    }
.nav-links-res{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
}
    .header-res .fa-xmark{
        position: absolute;
        top: 32px;
        right: 32px;
        font-size: 1.3em;
        color: var(--white);
    }
@media (max-width: 910px) {
    div.diensten-container{
        grid-template-columns: 1fr;
    }
    div.dienst-card{
        margin: 0 auto;
        max-width: 400px;
    }
    div.footer-grid{
        grid-template-columns: 1fr 200px 200px;
        gap: 32px;
    }
}
@media (max-width: 768px) {
    .content-section{
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
        padding: 0 32px;
        grid-template-columns: 1fr;
    }
    .l_container_inner{
        padding: 0 16px;
    }
    .hero-section{
        margin: 0 auto;
        max-width: 500px;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 0 32px;
    }
    .specs-grid{
        display: none;
    }
    .car-call-info{
        justify-content: flex-start;
        align-items: flex-start;
        gap: 32px;
        flex-direction: column-reverse;
    }
    div.product-grid{
        grid-template-columns: 1fr;
    }
    div.product-card{
        margin: 0 auto;
        max-width: 500px;
        width: 100%;
    }
    section.lr_container{
        flex-direction: column;
    }
    section.lr_container_reverse{
        flex-direction: column-reverse;
    }
    div.footer-grid{
        grid-template-columns: 1fr;
    }
    header{
        grid-template-columns: auto 1fr;
    }
    .header-cta{
        display: none;
    }
    .nav-links{
        display: none;
        justify-content: flex-end;
    }
    div.header-res-icon{
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
}