/* ==================================================
   BASIS
================================================== */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f2ec;
    color: #121212;
}
img {
    display: block;
    max-width: 100%;
}
a {
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}
p {
    max-width: 760px;
    font-size: 19px;
    line-height: 1.7;
}
h1 {
    margin: 24px 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.95;
    letter-spacing: -2px;
}
h2 {
    margin: 0 0 24px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -1px;
}
h3 {
    margin-top: 0;
    font-size: 24px;
}
section {
    padding: 90px 48px;
}
/* ==================================================
   BOVENSTE CONTACTBALK
================================================== */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    min-height: 38px;
    background: #121212;
    color: white;
    font-size: 13px;
}
.top-contact-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 38px;
    padding: 8px 24px;
}
.top-contact-right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.top-contact-item {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}
.top-contact-item:hover {
    color: #c79a2b;
}
/* ==================================================
   NAVIGATIE
================================================== */
nav,
.site-nav {
    position: fixed;
    top: 38px;
    left: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 96px;
    padding: 14px 24px;
    background: rgba(245, 242, 236, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.logo-link {
    display: inline-block;
    text-decoration: none;
}
.logo {
    width: 76px;
    height: auto;
}
nav .nav-links,
.site-nav .nav-links,
nav > div {
    display: flex;
    align-items: center;
    gap: 28px;
}
nav a,
.site-nav a {
    color: #121212;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}
nav a:hover,
.site-nav a:hover,
nav a[aria-current="page"] {
    color: #9b7a32;
}
/* ==================================================
   KNOPPEN EN LABELS
================================================== */
.button {
    display: inline-block;
    margin-top: 22px;
    padding: 15px 24px;
    background: #121212;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}
.button:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}
.section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #9b7a32;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.section-label.gold {
    color: #c79a2b;
}
.text-link {
    display: inline-block;
    margin-top: 18px;
    color: #9b7a32;
    font-weight: 700;
    text-decoration: none;
}
.text-link:hover {
    text-decoration: underline;
}
/* ==================================================
   HOMEPAGE HERO
================================================== */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 230px 48px 90px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.52) 45%,
            rgba(0, 0, 0, 0.20) 100%
        ),
        url("Images/Auto home.jpg");
    background-position: center;
    background-size: cover;
    color: white;
}
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 760px;
}
.hero-text h1 {
    max-width: 780px;
}
.hero-text p {
    max-width: 720px;
    font-size: 20px;
    line-height: 1.65;
}
.hero span {
    color: #c79a2b;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero .button {
    background: #c79a2b;
    color: #121212;
}
.hero .button:hover {
    background: #d8ae43;
}
.trust-line {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    letter-spacing: 0.4px;
}
/* ==================================================
   KAARTEN OP HOMEPAGE
================================================== */

.home-cards-section {
    padding-top: 0;
    padding-bottom: 90px;
    transform: translateY(-70px);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;

    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    min-height: 250px;
    padding: 34px;

    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.card h3 {
    margin-bottom: 18px;
    color: #121212;
}

.card p {
    margin-top: 0;
    font-size: 17px;
}

.card .text-link {
    margin-top: auto;
    padding-top: 20px;
}
/* ==================================================
   ALGEMENE SECTIES
================================================== */
.split {
    background: #121212;
    color: white;
}
.cta-section {
    padding: 100px 48px;
    background: white;
}
.cta-section h2 {
    max-width: 900px;
}
.cta-section p {
    max-width: 720px;
}
/* ==================================================
   WAAROM SECUREIQ
================================================== */
.why-section {
    padding: 100px 48px;
    background: white;
}
.intro-text {
    max-width: 760px;
    margin-bottom: 42px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
    margin-top: 40px;
}
.why-item {
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
}
.why-item span {
    display: inline-block;
    margin-bottom: 24px;
    color: #9b7a32;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}
.why-item h3 {
    max-width: 320px;
}
.why-item p {
    font-size: 17px;
}
/* ==================================================
   LOSSE PAGINA'S
================================================== */
/*
De contactbalk is 38px hoog.
De navigatie is 96px hoog.
Samen is dat 134px.
*/
.content-page,
.diensten-page,
.contact-page {
    padding-top: 134px;
}
.page-hero {
    padding: 100px 48px 70px;
}
.light-hero {
    background: #f5f2ec;
}
.dark-page-hero {
    background: #121212;
    color: white;
}
.page-hero h1 {
    max-width: 1000px;
}
.text-section {
    padding: 90px 48px;
    background: white;
}
.text-section p {
    max-width: 900px;
    margin-bottom: 24px;
}
/* ==================================================
   DIENSTENPAGINA
================================================== */
.service-detail {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    padding: 90px 48px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.service-detail.dark-detail {
    background: #121212;
    color: white;
}
.service-number {
    display: inline-block;
    margin-bottom: 18px;
    color: #9b7a32;
    font-weight: 800;
    letter-spacing: 1px;
}
.service-detail ul {
    margin-top: 24px;
    padding-left: 20px;
}
.service-detail li {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.6;
}
/* ==================================================
   FAQ-PAGINA
================================================== */
.faq-section {
    padding: 60px 48px 90px;
    background: #f5f2ec;
}
.faq-item {
    max-width: 900px;
    padding: 26px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.faq-item h3 {
    margin-bottom: 10px;
}
.faq-item p {
    margin-bottom: 0;
}
/* ==================================================
   CONTACTPAGINA
================================================== */
.contact-page {
    min-height: 100vh;
}
.contact-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 134px);
    padding: 70px 5%;
    background-image: url("Images/contact-bg.jpg");
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.contact-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.62) 45%,
            rgba(0, 0, 0, 0.35) 100%
        );
}
.contact-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);
    align-items: center;
    gap: clamp(40px, 5vw, 80px);
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}
.contact-text,
.contact-form-card {
    min-width: 0;
}
.contact-text {
    max-width: 720px;
    color: white;
}
.contact-text h1 {
    max-width: 760px;
    margin: 18px 0 28px;
    color: white;
    font-size: clamp(46px, 5.2vw, 78px);
    line-height: 1.08;
}
.contact-text p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 21px;
    line-height: 1.7;
}
.contact-highlight {
    margin-top: 45px;
    color: rgba(255, 255, 255, 0.90) !important;
    font-weight: 700;
}
.contact-form-card {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 620px;
    padding: 13px;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 255, 255, 0.22),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255, 255, 255, 0.16),
            transparent 38%
        ),
        #d4a62a;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}
.contact-form-card::before {
    content: "";
    position: absolute;
    top: -45px;
    right: 32px;
    bottom: 30px;
    left: 32px;
    z-index: 1;
    background-image: url("Images/logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 70px;
    opacity: 0.055;
    pointer-events: none;
    clip-path: inset(0 round 70px);
    -webkit-mask-image:
        radial-gradient(circle, black 68%, transparent 100%);
    mask-image:
        radial-gradient(circle, black 68%, transparent 100%);
}
.contact-form-card form {
    position: relative;
    z-index: 2;
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #111111;
    font-size: 17px;
    font-weight: 700;
}
.form-group label span {
    color: #9b2c2c;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    background: #f7f7f7;
    color: #111111;
    border: none;
    border-radius: 8px;
    outline: none;
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.08);
    font-family: inherit;
    font-size: 17px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #7f8791;
}
.form-group textarea {
    resize: vertical;
}
.form-button {
    display: inline-block;
    padding: 17px 30px;
    background: #111111;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}
.form-button:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
}
/* ==================================================
   FOOTER
================================================== */
.site-footer {
    padding: 70px 48px 28px;
    background: #121212;
    color: white;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
}
.footer-logo {
    width: auto;
    height: 100px;
    margin-bottom: 18px;
}
.site-footer h4 {
    margin: 0 0 18px;
    color: #c79a2b;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    text-decoration: none;
}
.site-footer a:hover {
    color: white;
}
.site-footer p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
}
.footer-legal {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-legal p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}
.footer-legal strong {
    color: #c79a2b;
    font-weight: 800;
}
.footer-bottom {
    margin-top: 55px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p {
    margin: 0;
    font-size: 13px;
}
/* ==================================================
   ANIMATIES
================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.card,
.why-item,
.contact-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.10);
}
.why-item:hover {
    transform: translateY(-4px);
}
/* ==================================================
   TABLET
================================================== */
@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .contact-text h1 {
        font-size: clamp(44px, 5vw, 66px);
    }
}
@media (max-width: 900px) {
    nav .nav-links,
    .site-nav .nav-links,
    nav > div {
        gap: 16px;
    }
    nav a,
    .site-nav a {
        font-size: 13px;
    }
}
/* ==================================================
   MOBIEL
================================================== */
@media (max-width: 800px) {
    .top-contact-bar {
        font-size: 12px;
    }
    .top-contact-inner {
        justify-content: center;
        min-height: 52px;
        padding: 8px 16px;
    }
    .top-contact-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 14px;
    }
    nav,
    .site-nav {
        top: 52px;
        min-height: 82px;
        padding: 12px 22px;
    }
    nav .nav-links,
    .site-nav .nav-links,
    nav > div {
        display: none;
    }
    .logo {
        width: 64px;
    }
    .hero {
        padding: 185px 24px 70px;
        background:
            linear-gradient(
                rgba(0, 0, 0, 0.68),
                rgba(0, 0, 0, 0.68)
            ),
            url("Images/Auto home.jpg");
        background-position: center;
        background-size: cover;
    }
    section,
    .why-section,
    .cta-section,
    .page-hero,
    .text-section,
    .faq-section {
        padding-right: 24px;
        padding-left: 24px;
    }
    .content-page,
    .diensten-page,
    .contact-page {
        padding-top: 134px;
    }
    .cards,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .service-detail {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 70px 24px;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .contact-hero {
        min-height: auto;
        padding: 50px 5%;
    }
    .contact-text h1 {
        font-size: clamp(42px, 9vw, 70px);
    }
    .contact-text p {
        font-size: 18px;
    }
    .contact-form-card {
        max-width: 100%;
        padding: 26px;
        border-radius: 18px;
    }
    .form-group label {
        font-size: 15px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 15px;
        font-size: 16px;
    }
    p {
        font-size: 17px;
    }
    .site-footer {
        padding: 56px 24px 24px;
    }
}
.split .button {
    background: white;
    color: #121212;
}

.split .button:hover {
    background: #f0f0f0;
    color: #121212;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 6px 0;
    background: #121212;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 800px) {
    nav .nav-links,
    .site-nav .nav-links,
    nav > div {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        z-index: 22;
    }

    nav .nav-links.mobile-open,
    .site-nav .nav-links.mobile-open {
        position: absolute;
        top: 100%;
        left: 0;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        width: 100%;
        padding: 12px 22px 22px;

        background: #f5f2ec;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    }

    nav .nav-links.mobile-open a,
    .site-nav .nav-links.mobile-open a {
        display: block;
        padding: 14px 4px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        font-size: 16px;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* Werkwijzepagina */
.werkwijze-page .page-hero {
    min-height: auto;
    padding: 70px 48px 55px;
}

.werkwijze-page .page-hero h1 {
    max-width: 900px;
    margin-top: 18px;
}

.werkwijze-page .page-hero p {
    margin-bottom: 0;
}

.werkwijze-stappen {
    padding-top: 45px;
    padding-bottom: 90px;
}

.werkwijze-stappen .cards {
    margin-top: 0;
}

@media (max-width: 800px) {
    .werkwijze-page .page-hero {
        padding: 55px 24px 45px;
    }

    .werkwijze-stappen {
        padding-top: 30px;
        padding-bottom: 70px;
    }
}