* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #030807;
    color: #ffffff;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 50px;
    background: rgba(3, 8, 7, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 203, 131, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e2cb83;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #b0c0bc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e2cb83;
}

.nav-call-btn {
    padding: 8px 18px;
    border: 1px solid #e2cb83;
    border-radius: 20px;
    color: #e2cb83;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.nav-call-btn:hover {
    background: #e2cb83;
    color: #030807;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, #0d2a25 0%, transparent 70%),
        radial-gradient(ellipse at center, #0a1f1c 0%, #030807 80%);
}

.hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.logo-card {
    background: linear-gradient(180deg, #626431 0%, #3d401e 50%, #292c13 100%);
    border: 1.5px solid #858943;
    border-radius: 28px;
    padding: 30px 50px 25px 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), inset 0 1px 2px rgba(255, 255, 255, 0.2);
    width: 340px;
}

.logo-lmj {
    font-size: 5rem;
    font-weight: 800;
    color: #e2cb83;
    letter-spacing: 2px;
    line-height: 1;
    display: block;
    text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.car-divider {
    width: 110px;
    margin: -5px auto 5px auto;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 6px;
    color: #dfca88;
}

.tagline {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #d1c7a3;
    margin-top: 6px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-primary {
    padding: 14px 32px;
    border-radius: 30px;
    background: #e2cb83;
    color: #030807;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(226, 203, 131, 0.4);
}

.btn-secondary {
    padding: 14px 32px;
    border-radius: 30px;
    border: 1px solid #3c4843;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: #e2cb83;
    color: #e2cb83;
}

.car-background {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50vh;
    background: url('https://images.unsplash.com/photo-1603584173870-7f23fdae1b7a?q=80&w=1600&auto=format&fit=crop') center bottom / contain no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

/* Secties */
.content-section {
    padding: 100px 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.alt-bg {
    background: #060e0c;
    max-width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #e2cb83;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-top: 5px;
}

/* Empty State (voorraad leeg) */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    border: 1px dashed rgba(226, 203, 131, 0.25);
    border-radius: 16px;
    text-align: center;
    gap: 16px;
    background: rgba(9, 20, 18, 0.5);
}

.empty-icon {
    font-size: 3rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.3rem;
    color: #e2cb83;
}

.empty-state p {
    color: #7f948e;
    font-size: 0.9rem;
    max-width: 380px;
    line-height: 1.6;
}

/* Car Grid */
.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.car-card {
    background: #091412;
    border: 1px solid #142824;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

.car-card:hover {
    border-color: #e2cb83;
    transform: translateY(-5px);
}

.car-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(3, 8, 7, 0.8);
    color: #e2cb83;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(226, 203, 131, 0.3);
    z-index: 2;
}

/* ── Car Slider ─────────────────────────────────────────────────── */

.car-slider {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #040d0b;
}

.car-slider-track {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.15s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(3, 8, 7, 0.75);
    border: 1px solid rgba(226, 203, 131, 0.3);
    color: #e2cb83;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
    z-index: 3;
}

.car-card:hover .slider-btn {
    opacity: 1;
}

.slider-prev { left: 10px; }
.slider-next { right: 10px; }

.slider-btn:hover {
    background: rgba(226, 203, 131, 0.25);
}

/* Photo counter */
.photo-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(3, 8, 7, 0.8);
    color: #e2cb83;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    border: 1px solid rgba(226, 203, 131, 0.25);
    z-index: 4;
    pointer-events: none;
}

/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 4px;
    background: #091412;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #233833;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}

.dot.active {
    background: #e2cb83;
    transform: scale(1.3);
}

/* ── Details Modal ───────────────────────────────────────────────── */

.car-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.car-modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: #091412;
    border: 1px solid #1a3530;
    border-radius: 20px;
    width: min(960px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: modalIn 0.28s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: sticky;
    top: 16px;
    left: calc(100% - 16px);
    grid-column: 1 / -1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(226, 203, 131, 0.15);
    border: 1px solid rgba(226, 203, 131, 0.3);
    color: #e2cb83;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 16px 0 auto;
    z-index: 10;
    transition: background 0.2s;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(226, 203, 131, 0.3);
}

.modal-gallery {
    position: relative;
    padding: 0 0 16px 0;
}

.modal-main-img {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    border-radius: 12px 0 0 0;
    transition: opacity 0.15s ease;
}

.modal-prev, .modal-next {
    position: absolute;
    top: 145px;
    opacity: 1 !important;
}

.modal-prev { left: 10px; }
.modal-next { right: 10px; }

.modal-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 16px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #233833 transparent;
}

.modal-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 52px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
}

.modal-thumb.active,
.modal-thumb:hover {
    border-color: #e2cb83;
    opacity: 1;
}

.modal-info {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-badge {
    position: static;
    display: inline-block;
    width: fit-content;
    margin-bottom: 4px;
}

.modal-info h2 {
    font-size: 1.4rem;
    line-height: 1.3;
}

.modal-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e2cb83;
}

.modal-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: #8fa39e;
    line-height: 1.7;
    white-space: pre-wrap;
    flex: 1;
    overflow-y: auto;
    max-height: 220px;
    scrollbar-width: thin;
    scrollbar-color: #233833 transparent;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.modal-mp-btn {
    padding: 14px 24px;
    border-radius: 30px;
    border: 1px solid #3c4843;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.modal-mp-btn:hover {
    border-color: #e2cb83;
    color: #e2cb83;
}

@media (max-width: 700px) {
    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-main-img {
        border-radius: 12px 12px 0 0;
        height: 240px;
    }
}

.car-details {
    padding: 22px;
}

.car-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.car-specs {
    color: #7f948e;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.car-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e2cb83;
}

.btn-card {
    padding: 8px 18px;
    border: 1px solid #233833;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-card:hover {
    border-color: #e2cb83;
    color: #e2cb83;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-box {
    background: #081412;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #11221f;
    transition: 0.3s;
}

.service-box:hover {
    border-color: #e2cb83;
}

.service-box .icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.service-box h3 {
    margin-bottom: 10px;
    color: #e2cb83;
}

.service-box p {
    color: #8fa39e;
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #a0b0ab;
    line-height: 1.8;
}

/* Contact */
.contact-container {
    background: linear-gradient(135deg, #0b1a17 0%, #091412 100%);
    padding: 0;
    border-radius: 24px;
    border: 1px solid #1e3d37;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.contact-info h3 {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    color: #e2cb83;
    padding: 32px 36px 8px;
    border-bottom: 1px solid #1a3530;
    margin-bottom: 0;
}

.contact-info > p {
    grid-column: 1 / -1;
    color: #7f948e;
    font-size: 0.85rem;
    padding: 10px 36px 20px;
    border-bottom: 1px solid #1a3530;
    letter-spacing: 0.5px;
}

.contact-info ul {
    list-style: none;
    margin: 0;
    padding: 24px 36px;
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c0d0cc;
    font-size: 0.95rem;
}

.contact-info a {
    color: #e2cb83;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    color: #f0dfa0;
    text-decoration: underline;
}

.contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #1a3530;
}

.contact-btn {
    padding: 18px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: filter 0.2s, opacity 0.2s;
    letter-spacing: 0.5px;
}

.contact-btn:hover {
    filter: brightness(1.12);
}

.whatsapp {
    background: #25d366;
    color: #fff;
    border-radius: 0 0 0 24px;
}

.call {
    background: #e2cb83;
    color: #030807;
    border-radius: 0 0 24px 0;
    border-left: 1px solid rgba(0,0,0,0.15);
}

footer {
    text-align: center;
    padding: 36px 24px;
    color: #4a5e5a;
    font-size: 0.8rem;
    border-top: 1px solid #0d1a18;
    background: #030807;
    line-height: 1.8;
}

footer a {
    color: #6a8a84;
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: #e2cb83;
}

/* Responsive */
/* Scroll-reveal animatie */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    header {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
    }

    .content-section {
        padding: 80px 20px;
    }

    .logo-card {
        width: 280px;
        padding: 24px 32px 20px 32px;
    }

    .logo-lmj {
        font-size: 4rem;
    }

    .brand-name {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Contact card: full width, vertical on mobile */
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info h3 {
        padding: 24px 24px 8px;
    }

    .contact-info > p {
        padding: 8px 24px 16px;
    }

    .contact-info ul {
        padding: 20px 24px;
    }

    .contact-buttons {
        grid-template-columns: 1fr;
    }

    .whatsapp {
        border-radius: 0;
    }

    .call {
        border-radius: 0 0 24px 24px;
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.15);
    }

    footer {
        padding: 28px 20px;
    }

    footer p + p {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}
