﻿
:root {
    --ms-primary: #2564cf;
    --ms-primary-700: #164fa0;
    --ms-surface: #fff;
    --ms-bg: #f3f6fb;
    --ms-border: #c7e0f4;
    --shadow-1: 0 10px 28px rgba(0,0,0,.06);
    --shadow-2: 0 18px 48px rgba(37,100,207,.10);
    --shadow-3: 0 26px 72px rgba(37,100,207,.12);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    font-family: 'Segoe UI',system-ui,-apple-system,Arial,sans-serif;
    background: #fff;
    color: #222;
    margin: 0;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease
}

    a:hover {
        color: #555
    }

h1, h2, h3 {
    font-weight: 700;
    margin: .4em 0 .6em
}

@media (prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


.hero-header {
    position: relative;
    width: 100%;
    min-height: min(70vh,720px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.logo-container {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    pointer-events: none;
}

.hero-logo {
    height: 72px;
    width: auto;
    display: block
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 2rem;
    max-width: 1100px;
    width: 100%;
}

    .hero-content h1 {
        margin: 0 0 .4rem;
        font-size: clamp(2rem,4vw+1rem,6rem);
        letter-spacing: -.02em;
        text-shadow: 0 2px 10px rgba(0,0,0,.25);
    }

    .hero-content p {
        margin: 0;
        font-size: clamp(1rem,2vw+1rem,3rem);
        text-shadow: 0 1px 6px rgba(0,0,0,.22);
    }

@media (max-width:768px) {
    .hero-header {
        min-height: 60vh
    }

    .hero-logo {
        height: 56px
    }
}

@media (max-width:480px) {
    .hero-logo {
        height: 44px
    }
}

 .intro-blok {
    position: relative;
    background: radial-gradient(1000px 420px at 10% -20%,rgba(37,100,207,.06),transparent 60%), linear-gradient(180deg,var(--ms-surface) 0%,#fafcff 100%);
    border: 1px solid var(--ms-border);
    border-radius: 26px;
    box-shadow: var(--shadow-1),var(--shadow-2);
    padding: 2.2rem 1.6rem;
    overflow: hidden;
}

    .intro-blok::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 8px;
        background: linear-gradient(90deg,#e9f2ff 0%,#cfe3ff 35%,transparent 70%);
        pointer-events: none;
        opacity: .9;
    }

@media (max-width:768px) {
    .intro-blok > .container {
        max-width: 100% !important;
        padding-inline: 8px;
    }

    .intro-blok {
        padding-left: 8px;
        padding-right: 8px;
    }
        .intro-blok .row {
            --bs-gutter-x: .5rem;
        }  

    .intro-blok .col-md-8,
    .intro-blok .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .intro-blok .seo-content-box {
        padding: clamp(14px,3.5vw,24px)
    }
}

.highlight-box {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg,#fff 0%,#fbfdff 100%) padding-box, linear-gradient(180deg,#eaf2ff,#f7faff) border-box;
    border: 1px solid transparent;
    box-shadow: 0 14px 44px rgba(37,100,207,.12),0 4px 14px rgba(0,0,0,.06);
    padding: 1.4rem;
    transition: transform .18s ease,box-shadow .2s ease,filter .2s ease;
}

    .highlight-box::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 6px;
        background: linear-gradient(180deg,#2189e5 0%,#046ab7 100%);
        border-radius: 20px 0 0 20px;
        opacity: .95;
    }

    .highlight-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 22px 60px rgba(37,100,207,.16),0 8px 22px rgba(0,0,0,.08);
    }

.highlight-title {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin: 0 0 .5rem;
    font-weight: 800;
    color: #1a2a44;
    font-size: clamp(1.05rem,.8rem + .5vw,1.35rem);
}

.highlight-text {
    color: #2f3033;
    line-height: 1.68;
    margin: 0
}

/* Rating link */
.rating {
    margin: .6rem 0 0;
    font-weight: 700;
    font-size: 1rem;
    color: #1b4ea0;
    text-underline-offset: 3px;
    transition: color .18s ease,text-shadow .18s ease;
}

    .rating:hover {
        color: #0f3f86;
        text-shadow: 0 1px 0 rgba(255,255,255,.6)
    }

.faq-section h2 {
    text-align: center;
    margin-bottom: 1.2rem
}

.faq-section .accordion-button {
    white-space: normal;
    line-height: 1.45;
    padding-block: .9rem;
}
@media (max-width:768px) {
    .intro-blok .faq-section > .container {
        max-width: 100% !important;
        padding-inline: 16px;
    }
}


.project-slider-wrapper {
    background: #f5f8fa;
    border: 1px solid #e7eaef;
    border-radius: 28px;
    box-shadow: 0 8px 36px rgba(0,16,40,.06),0 1.5px 8px rgba(0,120,212,.07);
    padding: 48px 0 36px;
    overflow: hidden;
}

.project-slider-container {
    position: relative;
    z-index: 3;
    padding: 0 2.2rem 1.6rem
}

    .project-slider-container::-webkit-scrollbar {
        display: none
    }

.project-slider {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    padding-bottom: 1.8rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.project-item {
    flex: 0 0 auto;
    width: 400px;
    top: 10px;
    background: #fafdff;
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0,24,40,.09);
    border: 1.5px solid #e3e7eb;
    scroll-snap-align: start;
    transition: box-shadow .2s ease,transform .16s ease,background .16s ease,border .15s ease;
}

    .project-item:hover,
    .project-item:focus-within {
        box-shadow: 0 16px 38px rgba(0,120,212,.17),0 6px 18px rgba(0,24,40,.09);
        background: #f3f9fd;
        border-color: #b3daff;
        transform: translateY(-6px) scale(1.02);
        outline: none;
        z-index: 20;
    }

.project-title {
    font-size: 1.12rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg,#228be6 80%,#0078d4 100%);
    padding: 12px 10px;
    margin: 0;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    text-shadow: 0 2px 8px rgba(0,120,212,.10);
    border-bottom: 1.5px solid #e3e7eb;
}

.project-images {
    position: relative;
    width: 100%;
    height: 205px;
    background: #eaf3fb;
    border-radius: 0 0 22px 22px
}

.project-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(.23,.8,.55,1);
    border-radius: 0 0 22px 22px;
}

    .project-slide.active {
        opacity: 1
    }

@media (max-width:991px) {
    .project-item {
        width: 60vw
    }
}

@media (max-width:600px) {
    .project-item {
        width: 78vw
    }
}

.project-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.project-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    cursor: pointer;
    z-index: 1;
}

.project-modal-content {
    position: relative;
    max-width: 96vw;
    max-height: 88vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#modalProjectImg {
    display: block;
    max-width: 95vw;
    max-height: 70vh;
    border-radius: 8px;
    margin: 0 auto;
    background: #222;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: transparent;
    color: #fff;
    font-size: 2.2rem;
    border: none;
    cursor: pointer;
    z-index: 3;
}

.modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30,30,30,.5);
    color: #fff;
    font-size: 2.2rem;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-arrow.left {
        left: 24vw
    }

    .modal-arrow.right {
        right: 24vw
    }

#modalProjectCaption {
    margin-top: 14px;
    color: #fff;
    text-align: center;
    font-size: 1rem
}

@media (max-width:600px) {
    #modalProjectImg {
        max-width: 99vw;
        max-height: 55vh
    }

    .modal-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.9rem
    }

        .modal-arrow.left {
            left: 2vw
        }

        .modal-arrow.right {
            right: 2vw
        }
}

.klantverhaal-blok {
    background: linear-gradient(120deg,#f9f6ec 0%,#f8fafd 100%);
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

.klantverhaal-card {
    display: flex;
    gap: 0;
    background: rgba(255,255,255,.94);
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(32,77,145,.11),0 2px 14px rgba(0,120,212,.13);
    border: 1.5px solid #e6eaf7;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    min-height: 420px;
    position: relative;
}

    .klantverhaal-card::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0;
        width: 7px;
        background: linear-gradient(180deg,#0078d4 0%,#228be6 100%);
    }

.klantverhaal-info {
    flex: 1.2;
    padding: 42px 38px 38px 56px;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.klantverhaal-logo {
    max-width: 110px;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 6px #eaf3fb)
}

.klantverhaal-info blockquote {
    margin: 0 0 16px;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #222;
    font-style: italic;
    padding-left: 14px;
    background: linear-gradient(90deg,#fafdff 75%,#e7f1fa 100%);
    border-radius: 7px;
}

.klantverhaal-naam {
    font-size: 1rem;
    color: #0b3b66;
    font-weight: 500;
    opacity: .9
}

.klantverhaal-img {
    flex: 1;
    min-width: 350px;
    background: linear-gradient(120deg,#eaf3fb 75%,#d4ecfa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .klantverhaal-img img {
        max-width: 440px;
        max-height: 330px;
        width: 95%;
        height: auto;
        border-radius: 0 0 28px 0;
        object-fit: cover;
        box-shadow: 0 3px 18px rgba(32,77,145,.10);
    }

.klantverhaal-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 28px
}

@media (max-width:991px) {
    .klantverhaal-card {
        flex-direction: column;
        max-width: 96vw
    }

    .klantverhaal-info {
        padding: 28px 20px 18px 26px
    }

    .klantverhaal-img {
        min-width: unset;
        padding: 14px 0
    }

        .klantverhaal-img img {
            max-width: 95vw;
            max-height: 220px;
            border-radius: 0 0 22px 22px
        }
}

.klantverhaal-scroll {
    height: 50vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(90deg,#fafdff 70%,#e7f1fa 100%);
    border-radius: 7px;
    padding: 14px 0;
    margin-bottom: 8px;
}

    .klantverhaal-scroll::-webkit-scrollbar {
        width: 9px;
        background: #eaf3fb;
        border-radius: 8px
    }

    .klantverhaal-scroll::-webkit-scrollbar-thumb {
        background: linear-gradient(120deg,#0078d4 60%,#228be6 100%);
        border-radius: 8px;
        border: 2px solid #eaf3fb;
    }

.ms-btn {
    background: linear-gradient(90deg,#2186eb 70%,#0078d4 100%);
    color: #fff;
    border: 3px solid #fff;
    border-radius: 999px;
    padding: 1em 2.2em;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 3px 24px rgba(0,120,212,.16),0 1.5px 7px rgba(0,120,212,.09),0 0 0 4px rgba(33,134,235,.06);
    transition: transform .13s ease,box-shadow .18s ease,filter .18s ease,background .18s ease;
    display: inline-flex;
    align-items: center;
    gap: .6em;
    min-width: 170px;
    justify-content: center;
    text-shadow: 0 1.5px 8px rgba(0,120,212,.10);
}

    .ms-btn:hover, .ms-btn:focus {
        background: linear-gradient(90deg,#005fa3 68%,#1460aa 100%);
        box-shadow: 0 12px 32px rgba(33,134,235,.18),0 2px 8px rgba(33,134,235,.09),0 0 0 6px #cfeaff;
        transform: translateY(-3px) scale(1.04);
        filter: brightness(1.07);
    }

    .ms-btn:active {
        background: linear-gradient(90deg,#1460aa 65%,#1976d2 100%);
        box-shadow: 0 3px 10px rgba(33,134,235,.13),0 0 0 2px #1976d220;
        transform: scale(.98);
    }


.waarom-SolvoForce-nordic {
    background: #f3f2f1;
    padding: 64px 0 56px
}

.waarom-box {
    background: #fff;
    border: none;
    border-radius: 18px;
    box-shadow: 0 2px 14px rgba(0,0,0,.08);
    padding: 2rem 1.3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    text-align: center;
    transition: transform .16s ease,box-shadow .18s ease,background .18s ease;
}

    .waarom-box:hover {
        background: #F3F9FD;
        box-shadow: 0 8px 32px rgba(0,123,220,.12);
        transform: translateY(-4px) scale(1.02)
    }

.text-accent {
    color: #d2aa6d
}

.diensten-blokken {
    background: #fff;
    padding: 48px 0
}

.dienst-blok {
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    padding: 1.25rem 1rem;
    text-align: center;
    transition: transform .16s ease,box-shadow .18s ease,background .18s ease;
}

    .dienst-blok:hover {
        background: #F3F9FD;
        box-shadow: 0 6px 24px rgba(0,123,220,.10);
        transform: translateY(-4px) scale(1.03)
    }

    .dienst-blok img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 12px
    }

    .dienst-blok h3 {
        font-size: 1.05rem;
        margin: .4rem 0
    }


.foto-rij {
    background: #fff
}

    .foto-rij img {
        border-radius: 10px;
        object-fit: cover;
        width: 100%;
        height: auto;
        box-shadow: 0 2px 10px rgba(0,0,0,.08)
    }


.floating-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0067b8;
    color: #fff;
    text-align: center;
    line-height: 50px;
    font-size: 1.35rem;
    border: 2px solid #f3f2f1;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
    z-index: 9999;
    cursor: pointer;
    transition: background .18s,box-shadow .18s;
}

    .floating-call-btn:hover {
        background: #005a9e;
        box-shadow: 0 4px 16px rgba(0,103,184,.14)
    }

@media (max-width:991px) {
    .floating-call-btn {
        display: block
    }
}

.offerte-floating-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0078d4;
    color: #fff;
    font-size: 2.1rem;
    border: 2px solid #f3f2f1;
    box-shadow: 0 2px 10px rgba(0,0,0,.11);
    transition: background .2s,box-shadow .2s;
    cursor: pointer;
}

    .offerte-floating-btn:hover {
        background: #005a9e;
        box-shadow: 0 6px 18px rgba(0,103,184,.11)
    }

@media (max-width:991px) {
    .offerte-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 90px;
        right: 10px;
        background: #009688
    }
}


#offerteModal .modal-dialog {
    margin: 10vh auto 1.5rem;
    max-width: 640px
}

@media (max-width:1024px) {
    #offerteModal .modal-dialog {
        margin: 15vh auto;
        max-width: 95vw
    }
}


.laser-banner {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: 150px;
    background: rgba(255,255,255,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.1);
    z-index: 100;
    transform: translateY(-100%);
    animation: slideDown 1s ease-out 2s forwards,fadeOut 3s ease-out 10s forwards;
}

.laser-banner-content {
    max-width: 1200px;
    padding: 50px 0;
    text-align: center
}

.laser-label {
    display: block;
    font-size: 1.55rem;
    color: #d96b33;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.laser-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #222;
    line-height: 1.5;
    white-space: nowrap
}

@keyframes slideDown {
    to {
        transform: translateY(0)
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translateY(-50px)
    }
}

@media (max-width:768px) {
    .laser-banner {
        height: 200px
    }

    .laser-text {
        white-space: normal
    }

    .laser-banner-content {
        padding: 80px 16px 40px
    }
}

@media (max-width:480px) {
    .laser-label {
        font-size: 1.2rem
    }

    .laser-banner-content {
        padding-inline: 12px
    }
}


.main-content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden;
}
