:root {
            --primary-blue: #0b5ed7;
            --primary-hover: #0a4ebd;
            --whatsapp-green: #25d366;
            --whatsapp-hover: #20ba5a;
            --danger-red: #8b0000;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-gradient: radial-gradient(circle at 10% 20%, rgba(242, 246, 253, 1) 0%, rgba(255, 255, 255, 1) 90%);
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            --card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);
            --form-border: #e2e8f0;
        }

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

        body {
            color: var(--text-dark);
            background: var(--bg-gradient);
            overflow-x: hidden;
        }

        /* --- NAVBAR (AANGEPAST: STANDAARD WIT & FIXED) --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background-color: #ffffff; /* Nu standaard strak wit in plaats van transparant */
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02); /* Subtiele scheiding bij de start */
            transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
        }

        /* Wanneer er gescrolld wordt, krijgt hij een lichte transparantie en compactere padding */
        .navbar.scrolled {
            padding: 15px 8%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            background-color: var(--primary-blue);
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .logo-text {
            font-weight: 700;
            font-size: 20px;
            color: #0f172a;
        }

        .logo-text span {
            display: block;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: -2px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 25px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-blue);
        }

        .nav-links a.active {
            background-color: #eff6ff;
            padding: 8px 16px;
            border-radius: 20px;
            color: var(--primary-blue);
        }

        .nav-btn {
            background-color: var(--primary-blue);
            color: white !important;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600 !important;
            transition: background-color 0.2s;
        }

        .nav-btn:hover {
            background-color: var(--primary-hover);
        }

        /* --- HERO SECTION (OPGEVANGEN WITRUIMTE) --- */
        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            /* De padding-top sluit nu exact aan op de hoogte van de vaste witte navbar */
            padding: 140px 8% 80px 8%; 
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative; /* Toegevoegd: essentieel om bubbels binnen deze container te houden */
        }

        /* --- ZEEPBUBBELS EFFECT --- */
        /* --- ZEEPBUBBELS EFFECT (GEOPTIMALISEERD VOOR BETERE ZICHTBAARHEID) --- */
        .bubble-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        .bubble {
            position: absolute;
            bottom: -60px;
            /* Krachtigere gradient: witter glanspunt en dieper blauwe gloed */
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, rgba(11, 94, 215, 0.2) 50%, rgba(11, 94, 215, 0.3) 100%);
            /* Duidelijkere randlijn */
            border: 1px solid rgba(11, 94, 215, 0.4);
            border-radius: 50%;
            /* Sterkere schaduwen voor een écht 3D glaseffect */
            box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(11, 94, 215, 0.15);
            opacity: 0;
            animation: riseAndPop 7s infinite ease-in-out;
        }

        /* Posities, groottes en timings van de losse bubbels */
        .bubble:nth-child(1) { left: 8%; width: 40px; height: 40px; animation-delay: 0s; animation-duration: 6s; }
        .bubble:nth-child(2) { left: 25%; width: 25px; height: 25px; animation-delay: 1.5s; animation-duration: 8s; }
        .bubble:nth-child(3) { left: 40%; width: 55px; height: 55px; animation-delay: 3s; animation-duration: 7s; }
        .bubble:nth-child(4) { left: 60%; width: 35px; height: 35px; animation-delay: 0.5s; animation-duration: 9s; }
        .bubble:nth-child(5) { left: 75%; width: 50px; height: 50px; animation-delay: 4.5s; animation-duration: 6.5s; }
        .bubble:nth-child(6) { left: 90%; width: 22px; height: 22px; animation-delay: 2s; animation-duration: 7.5s; }

        .bubble:nth-child(7) { left: 2%; width: 55px; height: 55px; animation-delay: 0s; animation-duration: 4s; }
        .bubble:nth-child(8) { left: 10%; width: 35px; height: 35px; animation-delay: 0.5s; animation-duration: 6s; }
        .bubble:nth-child(9) { left: 85%; width: 50px; height: 50px; animation-delay: 1.5s; animation-duration: 5.5s; }
        .bubble:nth-child(10) { left: 34%; width: 22px; height: 22px; animation-delay: 2.8s; animation-duration: 12.5s; }


        @keyframes riseAndPop {
            0% {
                bottom: 5%;
                transform: scale(0.3) translateX(0);
                opacity: 0;
            }
            15% {
                opacity: 0.95; /* Bijna volledig dekkend bij de start voor maximale zichtbaarheid */
                transform: scale(1) translateX(10px);
            }
            50% {
                transform: scale(1.05) translateX(-15px);
                opacity: 0.85; /* Blijft goed zichtbaar tijdens het zweven */
            }
            80% {
                opacity: 0.7; /* Begint hier pas heel langzaam te vervagen */
            }
            100% {
                bottom: 90%;
                transform: scale(0.8) translateX(15px);
                opacity: 0; /* Knalt uit elkaar */
            }
        }
        /* --- EFFEKTEN: LICHTBLAUWE WOLKEN & COMPOSITIE CIRKELS --- */
        .hero-content {
            position: relative;
            z-index: 1;
        }

        /* Grote, zachte organische blauwe wolk achter het tekstvak */
        .hero-content::before {
            content: "";
            position: absolute;
            top: 45%;
            left: 35%;
            transform: translate(-50%, -50%);
            width: 460px;
            height: 460px;
            background: radial-gradient(circle, rgba(11, 94, 215, 0.07) 0%, rgba(11, 94, 215, 0) 70%);
            filter: blur(40px);
            z-index: -1;
            pointer-events: none;
        }

        /* Dunne abstracte cirkellijn */
        .hero-content::after {
            content: "";
            position: absolute;
            top: -20px;
            left: -40px;
            width: 340px;
            height: 340px;
            border: 1px solid rgba(11, 94, 215, 0.05);
            border-radius: 50%;
            z-index: -2;
            pointer-events: none;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background-color: #e0f2fe;
            color: var(--primary-blue);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 25px;
        }

        .hero-title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 20px;
            color: #0f172a;
        }

        .hero-title span {
            color: var(--primary-blue);
        }

        .hero-description {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 35px;
            max-width: 540px;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-blue {
            background-color: var(--primary-blue);
            color: white;
            border: none;
        }

        .btn-blue:hover {
            background-color: var(--primary-hover);
        }

        .btn-whatsapp {
            background-color: var(--whatsapp-green);
            color: white;
        }

        .btn-whatsapp:hover {
            background-color: var(--whatsapp-hover);
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            border-top: 0px solid #e2e8f0;
            padding-top: 10px;
        }

        .usp-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
            border-left: 2px solid blue;
            padding-left: 8px;
        }

        .usp-icon {
            color: var(--primary-blue);
            font-size: 18px;
            margin-bottom: 5px;
        }

        .usp-title {
            font-weight: 700;
            font-size: 14px;
            color: #0f172a;
        }

        .usp-text {
            font-size: 12px;
            color: var(--text-muted);
        }

        .image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1; /* Toegevoegd om boven de bubbels te blijven */
        }

        .main-image {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.06);
            object-fit: cover;
        }

        .spoed-card {
            position: absolute;
            left: -20px;
            bottom: 40px;
            background-color: var(--danger-red);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            text-decoration: none;
            transition: transform 0.1s;
            overflow: hidden; 
            z-index: 10;
        }

        /* De glanzende streep */
        .spoed-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 0.4) 50%, 
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-20px);
            animation: spoedGlow 3s infinite linear;
        }
        
        .text-danger{
            color: darkred;
        }
        
        .spoed-card:hover {
            transform: translateY(-2px);
        }

        /* De animatie die elke 10 seconden afspeelt */
        @keyframes spoedGlow {
            0% {
                left: -150%;
            }
            10% {
                left: 150%;
            }
            100% {
                left: 150%;
            }
        }

        .spoed-tag {
            font-size: 11px;
            text-transform: uppercase;
            font-weight: 700;
            opacity: 0.8;
            letter-spacing: 0.5px;
            display: block;
            margin-bottom: 2px;
        }

        .spoed-text {
            font-weight: 700;
            font-size: 16px;
        }

        /* --- DIENSTEN SECTION --- */
        .services-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 8% 80px 8%;
            position: relative;
            z-index: 2; /* Zorgt dat content netjes over eventuele uitlopende bubbels valt */
        }

        .section-tag {
            color: var(--primary-blue);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: block;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            border: 1px solid #f1f5f9;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .service-card:hover {
            box-shadow: var(--card-shadow-hover);
            transform: translateY(-2px);
        }

        .card-img-container {
            width: 100%;
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .service-card:hover .card-img-container img {
            transform: scale(1.12);
        }

        .card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-title-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .card-icon-box {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background-color: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .card-title {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
        }

        .card-text {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .card-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-blue);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .service-card:hover .card-link {
            gap: 10px;
        }

        /* --- CONTACT & FORMULIER SECTION --- */
        .contact-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 8% 120px 8%;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-side {
            display: flex;
            flex-direction: column;
        }

        .contact-info-side .btn-whatsapp {
            align-self: flex-start;
            margin-top: 15px;
            margin-bottom: 40px;
        }

        .info-box {
            background: white;
            border: 1px solid #f1f5f9;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: var(--card-shadow);
        }

        .info-box-tag {
            font-size: 11px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 8px;
        }

        .info-box-text {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.6;
        }

        .form-panel {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
        }

        .form-panel h3 {
            font-size: 24px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .form-panel .form-subtitle {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group-full {
            grid-column: span 2;
        }

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: #334155;
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--form-border);
            border-radius: 10px;
            font-size: 14px;
            color: var(--text-dark);
            background-color: #ffffff;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.1);
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 16px;
            padding-right: 40px;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .date-input-wrapper {
            position: relative;
        }

        .date-input-wrapper i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
        }

        .date-input-wrapper input {
            padding-left: 45px;
        }

        .btn-submit {
            width: 100%;
            background-color: var(--primary-blue);
            color: white;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s;
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .btn-submit:hover {
            background-color: var(--primary-hover);
        }

        .form-terms {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            line-height: 1.4;
        }

        .info-grey .fa{
            color: #ccc;
            margin-right: 10px;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-container, .contact-section {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-container {
                padding-top: 120px;
            }
            .hero-description {
                margin: 0 auto 35px auto;
            }
            .btn-group, .contact-info-side .btn-whatsapp {
                justify-content: center;
                align-self: center;
            }
            .usp-grid, .info-box {
                text-align: left;
            }
            .image-wrapper {
                margin-top: 40px;
            }
            .spoed-card {
                left: 20px;
            }
        }

        @media (max-width: 600px) {
            .services-grid, .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group-full {
                grid-column: span 1;
            }
            .hero-title {
                font-size: 38px;
            }
            .form-panel {
                padding: 24px;
            }
        }
        
.logoicon{
     height: 35px!important;
}