/* ==================================================
   BASIS
================================================== */

:root {

    --black: #111111;
    --black-light: #1b1b1b;
    --black-soft: #222222;

    --orange: #f57c00;
    --orange-dark: #d96500;
    --orange-light: #ff9a32;

    --white: #ffffff;
    --off-white: #f5f5f5;

    --gray: #666666;
    --gray-dark: #3f3f3f;

    --border: #dddddd;

}


* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Manrope", sans-serif;

    color: var(--black);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}


h1,
h2,
h3,
.logo {

    font-family: "Space Grotesk", sans-serif;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;

    width: 100%;
}


button,
input,
select,
textarea {
    font: inherit;
}


.container {

    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}


section {
    padding: 90px 0;
}


/* ==================================================
   NAVIGATIE
================================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(
        17,
        17,
        17,
        0.98
    );

    border-bottom:
        3px solid var(--orange);

    border-radius:
        0 0 18px 18px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.18);

    transition:
        background 0.5s ease,
        opacity 0.5s ease,
        box-shadow 0.5s ease,
        backdrop-filter 0.5s ease;

}


.navbar.scrolled {

    background:
        rgba(
            17,
            17,
            17,
            0.88
        );

    opacity: 0.94;

    box-shadow:
        0 5px 18px
        rgba(0, 0, 0, 0.12);

    backdrop-filter:
        blur(6px);

    -webkit-backdrop-filter:
        blur(6px);

}


.nav-container {

    width: min(
        1200px,
        calc(100% - 40px)
    );

    min-height: 78px;

    margin: 0 auto;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

}


.logo {

    color: var(--white);

    font-size: 29px;

    font-weight: 700;

    letter-spacing:
        0.01em;

    white-space: nowrap;
}


.logo span {
    color: var(--orange);
}


.nav-links {

    display: flex;

    align-items: center;

    gap: 27px;

    list-style: none;
}


.nav-links a {

    position: relative;

    color: var(--white);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 14px;

    font-weight: 600;

    letter-spacing:
        0.04em;

    text-transform:
        uppercase;

    transition:
        color 0.2s ease;
}


.nav-links a:hover {
    color: var(--orange);
}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background:
        var(--orange);

    transition:
        width 0.25s ease;
}


.nav-links a:hover::after {
    width: 100%;
}


/* ==================================================
   HERO
================================================== */

.hero {

    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    background-image:

        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35)
        ),

        url(
            "https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1800&q=85"
        );

    background-size: cover;

    background-position: center;

    color:
        var(--white);

}


.hero::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 140px;

    background:
        linear-gradient(
            transparent,
            rgba(17, 17, 17, 0.95)
        );

    pointer-events:
        none;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    pointer-events:
        none;
}


.hero-container {

    position: relative;

    z-index: 2;

    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    padding:
        110px 0 80px;

}


.hero-content {

    max-width: 760px;

    padding-left:
        clamp(
            25px,
            7vw,
            105px
        );

    opacity: 0;

    animation:
        heroFadeIn
        1.15s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        )
        0.15s
        forwards;

}


@keyframes heroFadeIn {

    from {

        opacity: 0;

        transform:
            translateY(35px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


.hero-label {

    margin-bottom: 15px;

    color:
        var(--orange);

    font-size: 14px;

    font-weight: 800;

    letter-spacing:
        3px;
}


.hero h1 {

    margin-bottom: 25px;

    color:
        var(--white);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            48px,
            7vw,
            82px
        );

    font-weight: 700;

    letter-spacing:
        -0.045em;

    line-height:
        0.95;
}


.hero h1 span {
    color:
        var(--orange);
}


.hero-text {

    max-width: 680px;

    margin-bottom: 35px;

    color:
        #dddddd;

    font-size: 19px;

    line-height:
        1.7;
}


.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* ==================================================
   BUTTONS
================================================== */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding:
        0 26px;

    border:
        none;

    border-radius:
        6px;

    font-size:
        15px;

    font-weight:
        800;

    cursor:
        pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.btn:hover {
    transform:
        translateY(-2px);
}


.btn-orange {

    background:
        var(--orange);

    color:
        var(--white);

}


.btn-orange:hover {

    background:
        var(--orange-dark);

}


.btn-outline {

    background:
        transparent;

    color:
        var(--white);

    border:
        2px solid
        var(--white);

}


.btn-outline:hover {

    background:
        var(--white);

    color:
        var(--black);

}


/* ==================================================
   ALGEMENE TITELS
================================================== */

.section-title {

    margin-bottom:
        50px;

    text-align:
        center;

}


.section-label {

    margin-bottom:
        8px;

    color:
        var(--orange);

    font-size:
        13px;

    font-weight:
        800;

    letter-spacing:
        2px;

}


.section-title h2 {

    margin-bottom:
        12px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            55px
        );

    font-weight:
        700;

    letter-spacing:
        -0.03em;

    line-height:
        1.05;

}


.section-title > p:last-child {

    color:
        var(--gray);

}


/* ==================================================
   INTRO
================================================== */

.intro {

    background:
        var(--black);

    color:
        var(--white);

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        70px;

    align-items:
        center;

}


.intro h2 {

    max-width:
        600px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            55px
        );

    font-weight:
        700;

    letter-spacing:
        -0.035em;

    line-height:
        1.05;

}


.intro h2 span {

    color:
        var(--orange);

}


.intro-text {

    max-width:
        600px;

}


.intro-text p {

    margin-bottom:
        18px;

    color:
        #cccccc;

    font-size:
        17px;

    line-height:
        1.8;

}


/* ==================================================
   DIENSTEN
================================================== */

.services {

    background:
        var(--off-white);

}


.services-title {

    max-width:
        760px;

    margin-left:
        auto;

    margin-right:
        auto;

}


.services .section-title h2 {

    color:
        var(--black);

}


.services .section-title > p:last-child {

    color:
        #444444;

}


/* SLIDER */

.services-slider {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    gap:
        15px;

}


.services-slider-window {

    width:
        100%;

    overflow:
        hidden;

}


.service-grid {

    display:
        flex;

    gap:
        25px;

    transition:
        transform
        0.65s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

    will-change:
        transform;

}


.service-card {

    display: flex;
    flex-direction: column;
    min-height: 367px;
    height: auto;

    position:
        relative;

    flex:
        0 0
        calc(
            (100% - 50px) / 3
        );

    min-width:
        0;

    min-height:
        350px;

    padding:
        35px;

    background:
        var(--white);

    border-top:
        5px solid
        var(--orange);

    border-radius:
        10px;

    box-shadow:
        0 8px 30px
        rgba(
            0,
            0,
            0,
            0.06
        );

    transition:
        transform
        0.25s
        ease,

        box-shadow
        0.25s
        ease;
}

.service-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 15px 35px
        rgba(
            0,
            0,
            0,
            0.10
        );

}

.service-card .service-btn {
    margin-top: 35px;
}


/* TOP */

.service-top {

    display:
        flex;

    align-items:
        center;

    margin-bottom:
        22px;

}


.service-number {

    color:
        var(--orange);

    font-size:
        13px;

    font-weight:
        900;

    letter-spacing:
        2px;

}


.service-line {

    flex:
        1;

    height:
        1px;

    margin-left:
        14px;

    background:
        #dddddd;

}


/* ICON */

.service-icon {

    margin-bottom:
        14px;

    font-size:
        40px;

}


/* TITEL */

.service-card h3 {

    margin-bottom:
        13px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        26px;

    font-weight:
        700;

    color:
        var(--black);

    line-height:
        1.1;

}


.service-card p {

    color:
        var(--gray-dark);

    font-size:
        15px;

    line-height:
        1.7;

}


/* LINK */

.service-link {

    position:
        absolute;

    left:
        35px;

    bottom:
        30px;

    color:
        var(--orange);

    font-size:
        14px;

    font-weight:
        800;

}


.service-link span {

    display:
        inline-block;

    margin-left:
        4px;

    transition:
        transform
        0.2s
        ease;

}


.service-link:hover span {

    transform:
        translateX(5px);

}


/* UITGELICHT */

.featured-service {

    background:
        var(--black);

    color:
        var(--white);

    border-top-color:
        var(--orange);

}


.featured-service h3 {

    color:
        var(--white);

}


.featured-service p {

    color:
        #cccccc;

}


.featured-service .service-line {

    background:
        rgba(
            255,
            255,
            255,
            0.18
        );

}


.featured-service .service-link {

    color:
        var(--orange-light);

}


.featured-badge {

    position:
        absolute;

    top:
        16px;

    right:
        16px;

    padding:
        6px 9px;

    background:
        var(--orange);

    color:
        var(--white);

    border-radius:
        3px;

    font-size:
        9px;

    font-weight:
        900;

    letter-spacing:
        1px;

}


/* PIJLEN */

.slider-arrow {

    flex:
        0 0 48px;

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0;

    border:
        none;

    border-radius:
        50%;

    background:
        var(--black);

    color:
        var(--white);

    font-size:
        20px;

    cursor:
        pointer;

    transition:
        background
        0.2s
        ease,

        transform
        0.2s
        ease;

}


.slider-arrow:hover {

    background:
        var(--orange);

    transform:
        scale(1.08);

}


/* DOTS */

.slider-dots {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        8px;

    margin-top:
        28px;

}


.slider-dot {

    width:
        9px;

    height:
        9px;

    padding:
        0;

    border:
        none;

    border-radius:
        50%;

    background:
        #cfcfcf;

    cursor:
        pointer;

    transition:
        width
        0.25s
        ease,

        background
        0.25s
        ease;

}


.slider-dot.active {

    width:
        28px;

    border-radius:
        10px;

    background:
        var(--orange);

}


/* ==================================================
   RAMEN & GLAS
================================================== */

.windows {

    background:
        var(--black);

    color:
        var(--white);

}


.windows-grid {

    display:
        grid;

    grid-template-columns:
        1.05fr 1fr;

    gap:
        70px;

    align-items:
        center;

}


.windows-image {

    min-height:
        600px;

    overflow:
        hidden;

    border-radius:
        10px;

}


.windows-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

}


.windows-content {

    max-width:
        600px;

}


.windows-content h2 {

    margin-bottom:
        24px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            42px,
            5vw,
            62px
        );

    font-weight:
        700;

    letter-spacing:
        -0.04em;

    line-height:
        0.98;

}


.windows-content h2 span {

    color:
        var(--orange);

}


.windows-content > p:not(.section-label) {

    margin-bottom:
        18px;

    color:
        #cccccc;

    font-size:
        17px;

    line-height:
        1.8;

}


.window-points {

    margin:
        30px 0;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

}


.window-point {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    padding:
        17px 0;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

}


.window-point span {

    color:
        var(--orange);

    font-size:
        13px;

    font-weight:
        900;

}


.window-point strong {

    font-size:
        18px;

}


/* ==================================================
   PROJECTEN
================================================== */

.projects {

    background:
        var(--white);

}


.project-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        25px;

}


.project-card {

    position:
        relative;

    height:
        400px;

    overflow:
        hidden;

    border-radius:
        10px;

    background:
        var(--black);

}


.project-card img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform
        0.45s
        ease;

}


.project-card:hover img {

    transform:
        scale(1.06);

}


.project-info {

    position:
        absolute;

    left:
        0;

    right:
        0;

    bottom:
        0;

    padding:
        100px 25px
        25px;

    color:
        var(--white);

    background:
        linear-gradient(
            transparent,
            rgba(
                0,
                0,
                0,
                0.9
            )
        );

}


.project-info span {

    color:
        var(--orange);

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        1.5px;

}


.project-info h3 {

    margin:
        4px 0;

    font-size:
        25px;

}


.project-info p {

    color:
        #dddddd;

}


/* ==================================================
   OVER GEO
================================================== */

.about {

    background:
        var(--black);

    color:
        var(--white);

}


.about-grid {

    display:
        grid;

    grid-template-columns:
        1fr 0.8fr;

    gap:
        60px;

    align-items:
        center;

}


.about-content {

    max-width:
        650px;

}


.about-content h2 {

    margin-bottom:
        23px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            58px
        );

    font-weight:
        700;

    letter-spacing:
        -0.04em;

    line-height:
        1.02;

}


.about-content h2 span {

    display:
        block;

    color:
        var(--orange);

}


.about-content > p:not(.section-label) {

    margin-bottom:
        18px;

    color:
        #cccccc;

    font-size:
        17px;

    line-height:
        1.8;

}


.check-list {

    margin-top:
        30px;

    list-style:
        none;

}


.check-list li {

    margin-bottom:
        12px;

    font-weight:
        700;

}


.check-list li::before {

    content:
        "✓";

    margin-right:
        10px;

    color:
        var(--orange);

}


.about-box {

    width:
        100%;

    padding:
        2px;

    background:
        var(--orange);

    border-radius:
        12px;

}


.about-box-inner {

    padding:
        50px;

    background:
        var(--black);

    border-radius:
        10px;

}


.about-small {

    margin-bottom:
        12px;

    color:
        var(--orange);

    font-size:
        12px;

    font-weight:
        900;

    letter-spacing:
        2px;

}


.about-box h3 {

    margin-bottom:
        18px;

    color:
        var(--white);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        40px;

    font-weight:
        700;

    line-height:
        1.05;

}


.about-box h3 span {

    display:
        block;

    color:
        var(--orange);

}


.about-box-inner > p:not(.about-small) {

    margin-bottom:
        25px;

    color:
        #cccccc;

    font-size:
        16px;

}


/* ==================================================
   OFFERTE
================================================== */

.quote {

    background:
        var(--off-white);

}


.quote-wrapper {

    max-width:
        900px;

    margin:
        0 auto;

    padding:
        45px;

    background:
        var(--white);

    border-radius:
        12px;

    box-shadow:
        0 8px 30px
        rgba(
            0,
            0,
            0,
            0.08
        );

}


.form-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        20px;

}


.form-group {

    display:
        flex;

    flex-direction:
        column;

    gap:
        7px;

    margin-bottom:
        18px;

}


.form-group.full {

    grid-column:
        1 / -1;

}


.form-group label {

    font-weight:
        800;

}


input,
select,
textarea {

    width:
        100%;

    padding:
        14px;

    border:
        1px solid
        var(--border);

    border-radius:
        6px;

    background:
        var(--white);

    color:
        var(--black);

    font:
        inherit;

    outline:
        none;

    transition:
        border-color
        0.2s ease,

        box-shadow
        0.2s ease;

}


input:focus,
select:focus,
textarea:focus {

    border-color:
        var(--orange);

    box-shadow:
        0 0 0 3px
        rgba(
            245,
            124,
            0,
            0.12
        );

}


textarea {

    min-height:
        160px;

    resize:
        vertical;

}


.quote-wrapper .btn {

    margin-top:
        5px;

}


.form-note {

    margin-top:
        15px;

    color:
        var(--gray);

    font-size:
        13px;

}


/* ==================================================
   CONTACT
================================================== */

.contact {

    background:
        var(--orange);

    color:
        var(--white);

    text-align:
        center;

}


.contact h2 {

    margin-bottom:
        12px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            58px
        );

}


.contact-intro {

    max-width:
        700px;

    margin:
        0 auto 40px;

}


.contact-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        20px;

    max-width:
        1000px;

    margin:
        0 auto;

}


.contact-card {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    min-height:
        150px;

    padding:
        25px 15px;

    background:
        var(--white);

    color:
        var(--black);

    border-radius:
        8px;

    font-size:
        14px;

    font-weight:
        600;

    transition:
        transform
        0.2s ease,

        box-shadow
        0.2s ease;

}


.contact-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 10px 25px
        rgba(
            0,
            0,
            0,
            0.15
        );

}


.contact-icon {

    color:
        var(--orange);

    font-size:
        30px;

}


.contact-title {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        18px;

    font-weight:
        700;

}


.contact-card > span:last-child {

    overflow-wrap:
        anywhere;

}


/* ==================================================
   WHATSAPP FLOAT
================================================== */

.whatsapp-float {

    position:
        fixed;

    right:
        24px;

    bottom:
        24px;

    width:
        64px;

    height:
        64px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    background:
        #25D366;

    color:
        var(--white);

    border-radius:
        50%;

    text-decoration:
        none;

    box-shadow:
        0 6px 20px
        rgba(
            0,
            0,
            0,
            0.25
        );

    z-index:
        9999;

    transition:
        transform
        0.25s ease,

        box-shadow
        0.25s ease;

    animation:
        whatsappPulse
        2.5s
        infinite;

}


.whatsapp-float:hover {

    transform:
        scale(1.12);

    box-shadow:
        0 10px 30px
        rgba(
            0,
            0,
            0,
            0.35
        );

}


.phone-icon {

    display:
        block;

    color:
        white;

    font-family:
        Arial,
        sans-serif;

    font-size:
        34px;

    line-height:
        1;

    transform:
        rotate(
            -20deg
        );

}


@keyframes whatsappPulse {

    0% {

        box-shadow:
            0 6px 20px
            rgba(
                0,
                0,
                0,
                0.25
            );

    }


    50% {

        box-shadow:
            0 6px 20px
            rgba(
                0,
                0,
                0,
                0.25
            ),

            0 0 0 10px
            rgba(
                37,
                211,
                102,
                0.15
            );

    }


    100% {

        box-shadow:
            0 6px 20px
            rgba(
                0,
                0,
                0,
                0.25
            );

    }

}


/* ==================================================
   FOOTER
================================================== */

footer {

    background:
        #090909;

    color:
        #999999;

}


.footer-content {

    min-height:
        130px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

}


.footer-content strong {

    color:
        var(--white);

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        20px;

}


.footer-content p {

    margin-top:
        5px;

}


.footer-contact {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-end;

    gap:
        5px;

}


.footer-contact a:hover {

    color:
        var(--orange);

}


.footer-bottom {

    padding:
        18px 20px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    text-align:
        center;

    font-size:
        13px;

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {

    .nav-links {
        gap:
            16px;
    }


    .nav-links a {
        font-size:
            12px;
    }


    .intro-grid,
    .about-grid {

        grid-template-columns:
            1fr 1fr;

        gap:
            35px;

    }


    .service-grid .service-card {

        flex:
            0 0
            calc(
                (100% - 25px) / 2
            );

    }


    .windows-grid {

        grid-template-columns:
            1fr;

    }


    .windows-image {

        min-height:
            450px;

    }


    .project-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }


}


/* ==================================================
   MOBIEL
================================================== */

@media (max-width: 650px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    section {
        padding:
            70px 0;
    }


    .container {

        width:
            calc(100% - 30px);

    }


    /* NAV */

    .navbar {

        border-radius:
            0 0 14px 14px;

    }


    .nav-container {

        width:
            calc(100% - 30px);

        min-height:
            95px;

        padding:
            15px 0;

        flex-direction:
            column;

        gap:
            12px;

    }


    .logo {

        font-size:
            23px;

    }


    .nav-links {

        gap:
            8px 12px;

        flex-wrap:
            wrap;

        justify-content:
            center;

    }


    .nav-links a {

        font-size:
            10px;

        letter-spacing:
            0.02em;

    }


    /* HERO */

    .hero {

        min-height:
            650px;

    }


    .hero-container {

        width:
            calc(100% - 30px);

        padding:
            115px 0 65px;

    }


    .hero-content {

        padding-left:
            10px;

    }


    .hero-label {

        display: block;

        max-width: 100%;

        font-size:
            12px;

        line-height:
            1.4;

        letter-spacing:
            1.5px;

        overflow-wrap:
            break-word;

    }


    .hero h1 {

        font-size:
            clamp(
                32px,
                9.5vw,
                42px
            );

        line-height:
            1.02;

        letter-spacing:
            -0.035em;

        width:
            100%;

        max-width:
            100%;

        overflow-wrap:
            break-word;

    }


    .hero-text {

        font-size:
            13px;

    }


    /* INTRO */

    .intro-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .intro h2 {

        font-size:
            40px;

    }


    /* DIENSTEN */

    .services-slider {

        gap:
            8px;

    }


    .slider-arrow {

        flex:
            0 0 40px;

        width:
            40px;

        height:
            40px;

        font-size:
            17px;

    }


    .service-grid {

        gap:
            15px;

    }


    .service-grid .service-card {

        flex:
            0 0 100%;

    }


    .service-card {
        min-height: 0;
        height: auto;

    }

    .service-card p {
        margin-bottom: 28px;
    } 

    .service-card .service-btn {
        margin-top: 0;
    }


    .service-link {

        left:
            28px;

        bottom:
            27px;

    }


    /* RAMEN */

    .windows-image {

        min-height:
            350px;

    }


    .windows-content h2 {

        font-size:
            43px;

    }


    /* PROJECTEN */

    .project-grid {

        grid-template-columns:
            1fr;

    }


    .project-card {

        height:
            320px;

    }


    /* OVER GEO */

    .about-grid {

        grid-template-columns:
            1fr;

        gap:
            40px;

    }


    .about-box-inner {

        padding:
            35px 25px;

    }


    .about-content h2 {

        font-size:
            40px;

    }


    /* OFFERTE */

    .form-grid {

        grid-template-columns:
            1fr;

    }


    .form-group.full {

        grid-column:
            auto;

    }


    .quote-wrapper {

        padding:
            25px 20px;

    }


    /* CONTACT */

    .contact-grid {

        grid-template-columns:
            repeat(
                3,
                1fr
            );

        gap:
            8px;

    }


    .contact-card {

        min-height:
            125px;

        padding:
            18px 6px;

        font-size:
            10px;

    }


    .contact-icon {

        font-size:
            23px;

    }


    .contact-title {

        font-size:
            13px;

    }


    /* WHATSAPP */

    .whatsapp-float {

        right:
            18px;

        bottom:
            18px;

        width:
            58px;

        height:
            58px;

    }


    .phone-icon {

        font-size:
            28px;

    }


    /* FOOTER */

    .footer-content {

        min-height:
            auto;

        padding:
            30px 0;

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .footer-contact {

        align-items:
            flex-start;

    }

}


/* ==================================================
   KLEINE MOBIELEN
================================================== */

@media (max-width: 400px) {


    .logo {

        font-size:
            20px;

    }


    .nav-links {

        gap:
            7px 9px;

    }


    .nav-links a {

        font-size:
            9px;

    }


    .contact-card {

        min-height:
            120px;

        font-size:
            9px;

    }


    .contact-title {

        font-size:
            12px;

    }

}


/* ==================================================
   TOEGANKELIJKHEID
================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;

    }

}

/* =========================
   MOBILE FIX
========================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 5rem);
    line-height: 0.98;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero p {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero,
  .hero-content,
  section,
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
html,
body {
  overflow-x: hidden;
}