   
        /* CSS Variables - Gebaseerd op Kruipruimte Isolatie logo kleuren */
        :root {
            /* Primaire kleuren - donker blauw uit logo */
            --primary: #1e3a5f;
            --primary-dark: #0f1f3a;
            --primary-light: #2b5488;
            --primary-ultralight: #f0f4f8;
            
            /* Accentkleuren - licht blauw uit logo */
            --accent: #4a90b8;
            --accent-dark: #2c6b94;
            --accent-light: #6ba3ca;
            
            /* Neutrale kleuren */
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --dark-gray: #2d2d2d;
            --black: #121212;
            
            /* Typography */
            --font-primary: 'Open Sans', sans-serif;
            --font-heading: 'Alegreya Sans', sans-serif;
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
            
            /* Border radius */
            --border-radius: 16px;
            --border-radius-lg: 24px;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            line-height: 1.7;
            color: var(--dark-gray);
            background-color: var(--light-gray);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            color: var(--dark-gray);
            line-height: 1.3;
        }

        .btn {
            font-family: var(--font-heading);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 8px;
            text-transform: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

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

        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
        }

        .btn-accent {
            background-color: var(--accent);
            border-color: var(--accent);
            color: var(--white);
        }

        .btn-accent:hover {
            background-color: var(--accent-dark);
            border-color: var(--accent-dark);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(74, 144, 184, 0.3);
        }

        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
            background-color: transparent;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(30, 58, 95, 0.2);
        }

        .btn-outline-light {
            color: var(--white);
            border-color: var(--white);
            background-color: transparent;
        }

        .btn-outline-light:hover {
            background-color: var(--white);
            border-color: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Top Bar */
        .top-bar {
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
            font-family: var(--font-heading);
        }

        .top-bar a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .top-bar a:hover {
            color: var(--accent-light);
        }

        /* Header */
        .header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar {
            padding: 16px 0;
        }

        .navbar-brand img {
            height: 60px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link {
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--dark-gray);
            padding: 12px 20px;
            margin: 0 4px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary);
            background-color: var(--primary-ultralight);
        }

        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Phone call button */
        .phone-btn {
            background: var(--accent);
            color: var(--white);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            margin-left: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .phone-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(74, 144, 184, 0.3);
            color: var(--white);
        }

        /* Hero Section - Volledige breedte */
        .hero-section {
            padding: 0;
            background: var(--white);
            position: relative;
        }

        .hero-background {
            border-radius: var(--border-radius-lg);
            border: 12px solid var(--white);
            padding: 100px 0;
            margin: 0px;
            position: relative;
            overflow: hidden;
      
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            right: -10%;
            bottom: -10%;
            background: url('fotos/1.webp') center/cover;
            animation: subtleMove 20s ease-in-out infinite;
            z-index: 0;
        }

        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(15, 31, 58, 0.8));
            z-index: 0;
        }

        @keyframes subtleMove {
            0% {
                transform: scale(1) rotate(0deg);
            }
            25% {
                transform: scale(1.05) rotate(0.3deg);
            }
            50% {
                transform: scale(1.02) rotate(-0.2deg);
            }
            75% {
                transform: scale(1.03) rotate(0.5deg);
            }
            100% {
                transform: scale(1) rotate(0deg);
            }
        }

        .hero-container {
            background: transparent;
            border-radius: 0;
            padding: 0;
            margin: 0;
            max-width: none;
            border: none;
            box-shadow: none;
            position: relative;
            overflow: visible;
        }

        .hero-content {
            position: relative;
            z-index: 2!important;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--dark-gray);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 32px;
            color: var(--medium-gray);
            max-width: 600px;
        }

        .hero-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .hero-benefit {
            display: flex;
            align-items: center;
            padding: 16px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            border-left: 4px solid var(--accent);
        }

        .hero-benefit i {
            color: var(--accent);
            font-size: 1.5rem;
            margin-right: 12px;
            width: 24px;
        }

        .hero-benefit-text {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark-gray);
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
            }
            .hero-buttons .btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Offerte Form */
        .offerte-form-container {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(22, 91, 49, 0.1);
            position: relative;
			z-index: 2;
        }

        .form-badge {
            position: absolute;
            top: -12px;
            left: 30px;
            background: var(--accent);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-control {
            border-radius: 12px;
            border: 2px solid #e9ecef;
            padding: 14px 18px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #fafbfc;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(22, 91, 49, 0.1);
            background-color: var(--white);
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-gray);
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subtitle {
            display: inline-block;
            background: var(--primary-ultralight);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark-gray);
        }

        .section-description {
            font-size: 1.1rem;
            color: var(--medium-gray);
            line-height: 1.7;
        }

        /* USP Section - Compacter en overzichtelijker */
        .usp-section {
            background: linear-gradient(135deg, var(--white) 0%, var(--primary-ultralight) 50%, var(--white) 100%);
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }

        .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
            position: relative;
        }

        /* Subtiele asymmetrie met compacte layout */
        .usp-item:nth-child(1) { 
            margin-top: 0; 
        }
        .usp-item:nth-child(2) { 
            margin-top: 20px; 
        }
        .usp-item:nth-child(3) { 
            margin-top: -10px; 
        }
        .usp-item:nth-child(4) { 
            margin-top: 10px; 
        }
        .usp-item:nth-child(5) { 
            margin-top: -5px; 
        }
        .usp-item:nth-child(6) { 
            margin-top: 15px; 
        }

        .usp-item {
            position: relative;
            padding: 0;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .usp-item.animate {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .usp-card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
            border: none;
            box-shadow: 0 6px 20px rgba(30, 58, 95, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 220px;
            text-align: center;
        }

        .usp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        }

        .usp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(30, 58, 95, 0.12);
        }

        .usp-floating-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
            transition: all 0.4s ease;
            border: 3px solid var(--white);
            margin: 0 auto 20px;
            position: relative;
            top: -10px;
        }

        .usp-card:hover .usp-floating-icon {
            transform: rotate(360deg) scale(1.05);
            box-shadow: 0 6px 16px rgba(30, 58, 95, 0.25);
        }

        .usp-content {
            position: relative;
            z-index: 2;
        }

        .usp-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark-gray);
            line-height: 1.3;
        }

        .usp-description {
            color: var(--medium-gray);
            line-height: 1.5;
            font-size: 0.9rem;
        }

        /* Responsive aanpassingen */
        @media (max-width: 991px) {
            .usp-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .usp-item {
                margin-top: 0 !important;
                margin-bottom: 20px;
            }
            
            .usp-item:nth-child(even) {
                margin-top: 15px !important;
            }
        }

        @media (max-width: 767px) {
            .usp-grid {
                grid-template-columns: 1fr;
            }
            
            .usp-item {
                margin-top: 0 !important;
                margin-bottom: 20px;
            }
            
            .usp-card {
                min-height: 180px;
                padding: 25px 15px;
            }
        }

        /* Werkwijze Section - Met zwevende EPS-parels */
        .werkwijze-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .werkwijze-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(74, 144, 184, 0.05) 0%, transparent 2%),
                radial-gradient(circle at 30% 80%, rgba(74, 144, 184, 0.08) 0%, transparent 2%),
                radial-gradient(circle at 80% 40%, rgba(74, 144, 184, 0.06) 0%, transparent 2%),
                radial-gradient(circle at 70% 10%, rgba(74, 144, 184, 0.04) 0%, transparent 2%),
                radial-gradient(circle at 20% 60%, rgba(74, 144, 184, 0.07) 0%, transparent 2%),
                radial-gradient(circle at 90% 80%, rgba(74, 144, 184, 0.05) 0%, transparent 2%),
                radial-gradient(circle at 40% 30%, rgba(74, 144, 184, 0.06) 0%, transparent 2%);
            background-size: 200px 200px, 150px 150px, 180px 180px, 220px 220px, 160px 160px, 190px 190px, 170px 170px;
            animation: floatingBubbles 30s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes floatingBubbles {
            0% {
                transform: translateX(0) translateY(0) scale(1);
            }
            25% {
                transform: translateX(20px) translateY(-15px) scale(1.1);
            }
            50% {
                transform: translateX(-10px) translateY(10px) scale(0.9);
            }
            75% {
                transform: translateX(15px) translateY(-20px) scale(1.05);
            }
            100% {
                transform: translateX(0) translateY(0) scale(1);
            }
        }

        .timeline-container {
            position: relative;
            margin-top: 80px;
            z-index: 2;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary), var(--accent));
            transform: translateX(-50%);
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 55%;
            text-align: right;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 55%;
            text-align: left;
        }

        .timeline-icon {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateX(-50%);
            z-index: 5;
            color: var(--white);
            font-size: 1.8rem;
            border: 4px solid var(--white);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
            transition: all 0.4s ease;
        }

        .timeline-icon:hover {
            transform: translateX(-50%) scale(1.1) rotate(360deg);
        }

        .timeline-content {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            border: 1px solid rgba(30, 58, 95, 0.08);
            transition: all 0.4s ease;
            z-index: 3;
        }

        .timeline-content:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .timeline-number {
            position: absolute;
            top: -15px;
            background: var(--accent);
            color: var(--white);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(74, 144, 184, 0.3);
        }

        .timeline-item:nth-child(odd) .timeline-number {
            right: -20px;
        }

        .timeline-item:nth-child(even) .timeline-number {
            left: -20px;
        }

        .timeline-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--dark-gray);
        }

        .timeline-description {
            color: var(--medium-gray);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Arrow connectors */
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 30px;
            border: 10px solid transparent;
            border-left-color: var(--white);
        }

        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            left: -20px;
            top: 30px;
            border: 10px solid transparent;
            border-right-color: var(--white);
        }

        /* Review Section */
        .reviews-section {
            background: linear-gradient(135deg, var(--primary-ultralight) 0%, var(--white) 50%, var(--primary-ultralight) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .reviews-slider {
            position: relative;
            margin: 50px 0;
        }

        .review-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 30px;
        }

        .review-card {
            min-width: 380px;
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 30px rgba(30, 58, 95, 0.08);
            border: 1px solid rgba(30, 58, 95, 0.05);
            transition: all 0.4s ease;
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 58, 95, 0.12);
        }

        .review-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .star {
            color: #ffd700;
            font-size: 1.2rem;
        }

        .review-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--dark-gray);
            margin-bottom: 25px;
            text-align: center;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .review-author-info h5 {
            margin: 0;
            color: var(--dark-gray);
            font-size: 1rem;
        }

        .review-author-info small {
            color: var(--medium-gray);
            font-size: 0.85rem;
        }

        .review-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
        }

        .review-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: var(--white);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .review-nav-btn:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
        }

        .review-nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .review-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .review-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(30, 58, 95, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .review-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Asymmetrische secties */
        .section-asymmetric-left {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--white) 0%, var(--white) 60%, var(--primary-ultralight) 60%, var(--primary-ultralight) 100%);
        }

        .section-asymmetric-right {
            padding: 80px 0 120px;
            background: linear-gradient(135deg, var(--primary-ultralight) 0%, var(--primary-ultralight) 40%, var(--white) 40%, var(--white) 100%);
        }

        .isde-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(22, 91, 49, 0.1);
        }

        .subsidy-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--accent);
            text-align: center;
            margin: 20px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .subsidy-text {
            text-align: center;
            color: var(--medium-gray);
            font-size: 1.1rem;
        }

        /* CTA Section - Met achtergrond foto en subtiele beweging */
        .cta-section {
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius-lg);
            margin: 40px;
            border: 8px solid var(--white);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            right: -10%;
            bottom: -10%;
            background: url('fotos/7.jpg') center/cover;
            animation: ctaMove 25s ease-in-out infinite;
            z-index: -2;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(15, 31, 58, 0.85));
            z-index: -1;
        }

        @keyframes ctaMove {
            0% {
                transform: scale(1) rotate(0deg);
            }
            20% {
                transform: scale(1.04) rotate(-0.2deg);
            }
            40% {
                transform: scale(1.02) rotate(0.4deg);
            }
            60% {
                transform: scale(1.05) rotate(-0.3deg);
            }
            80% {
                transform: scale(1.01) rotate(0.1deg);
            }
            100% {
                transform: scale(1) rotate(0deg);
            }
        }

        .cta-content {
            position: relative;
            z-index: 2;
            padding: 80px 0;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--white);
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer - Eenvoudig zonder wave divider */
        .footer {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
            color: var(--white);
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-logo {
            width: 180px;
            height: auto;
            margin-bottom: 24px;
            background: var(--white);
            padding: 12px;
            border-radius: 8px;
        }

        .footer-description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 32px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
            border-left: 3px solid var(--accent);
        }

        .footer-contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(8px);
        }

        .footer-contact-icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            color: var(--accent);
            font-size: 1rem;
        }

        .footer-section h5 {
            color: var(--white);
            margin-bottom: 24px;
            font-weight: 700;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 8px;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            padding: 8px 0;
            position: relative;
        }

        .footer-links a::before {
            content: '→';
            margin-right: 8px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            color: var(--accent);
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(8px);
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            padding: 32px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 32px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-cta h4 {
            color: var(--white);
            margin-bottom: 16px;
            font-size: 1.3rem;
        }

        .footer-cta p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 32px 0;
            text-align: center;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-social {
            display: flex;
            gap: 16px;
        }

        .footer-social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .footer-social-link:hover {
            background: var(--accent);
            border-color: var(--white);
            transform: translateY(-3px);
            color: var(--white);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-container {
                margin: 20px auto;
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .subsidy-amount {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .hero-benefits {
                grid-template-columns: 1fr;
            }
            
            .step-container {
                grid-template-columns: 1fr;
            }

            .review-card {
                min-width: 280px;
            }

            .timeline-item:nth-child(odd) .timeline-content {
                margin-right: 10%;
                text-align: left;
            }
            
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 10%;
                text-align: left;
            }
            
            .timeline-line {
                left: 30px;
            }
            
            .timeline-icon {
                left: 30px;
                transform: translateX(-50%);
            }
        }
		
		/* Bewijs dat het werkt styling */
.proof-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--primary-ultralight);
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h5 {
    margin: 0 0 8px 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.benefit-content p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.testimonial-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    opacity: 0.3;
    font-family: serif;
}

.testimonial-highlight blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.testimonial-highlight cite {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.proof-fact {
    display: flex;
    align-items: flex-start;
    background: var(--primary-ultralight) !important;
    border: 1px solid rgba(30, 58, 95, 0.1);
}

.proof-fact i {
    flex-shrink: 0;
    margin-top: 4px;
}

/* FAQ styling */
.accordion-item {
    border: 1px solid rgba(30, 58, 95, 0.1) !important;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white) !important;
    border: none !important;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary) !important;
    padding: 20px 24px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-ultralight) !important;
    color: var(--primary) !important;
    border-color: var(--primary);
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: var(--primary);
}

.accordion-button:hover {
    background: var(--primary-ultralight) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a5f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.accordion-body {
    padding: 20px 24px;
    background: var(--white);
    color: var(--dark-gray);
	}
	
	.testimonial-photo {
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    max-width: 140px;
	margin-top: -80px;
}

.testimonial-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Adjust testimonial padding to accommodate photo */
.testimonial-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
}

/* Process Section - Met zwevende EPS-parels */
.process-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}


.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(74, 144, 184, 0.15) 0%, rgba(74, 144, 184, 0.05) 30%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(74, 144, 184, 0.2) 0%, rgba(74, 144, 184, 0.08) 25%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(74, 144, 184, 0.12) 0%, rgba(74, 144, 184, 0.04) 35%, transparent 65%),
        radial-gradient(circle at 70% 10%, rgba(74, 144, 184, 0.18) 0%, rgba(74, 144, 184, 0.06) 20%, transparent 45%),
        radial-gradient(circle at 20% 60%, rgba(74, 144, 184, 0.16) 0%, rgba(74, 144, 184, 0.07) 30%, transparent 55%),
        radial-gradient(circle at 90% 80%, rgba(74, 144, 184, 0.14) 0%, rgba(74, 144, 184, 0.05) 25%, transparent 50%),
        radial-gradient(circle at 40% 30%, rgba(74, 144, 184, 0.13) 0%, rgba(74, 144, 184, 0.06) 28%, transparent 58%),
        radial-gradient(circle at 60% 70%, rgba(74, 144, 184, 0.17) 0%, rgba(74, 144, 184, 0.08) 22%, transparent 48%);
    background-size: 120px 120px, 80px 80px, 100px 100px, 140px 140px, 90px 90px, 110px 110px, 95px 95px, 75px 75px;
    animation: processFloatingBubbles 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes processFloatingBubbles {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(20px) translateY(-15px) scale(1.1);
    }
    50% {
        transform: translateX(-10px) translateY(10px) scale(0.9);
    }
    75% {
        transform: translateX(15px) translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

.process-timeline-wrapper {
    position: relative;
    margin-top: 80px;
    z-index: 2;
}

.process-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) .process-step-content {
    margin-right: 55%;
    text-align: right;
}

.process-step:nth-child(even) .process-step-content {
    margin-left: 55%;
    text-align: left;
}

.process-step-icon {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--white);
    font-size: 1.8rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
    transition: all 0.4s ease;
}

.process-step-icon:hover {
    transform: translateX(-50%) scale(1.1) rotate(360deg);
}

.process-step-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(30, 58, 95, 0.08);
    transition: all 0.4s ease;
    z-index: 3;
}

.process-step-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.process-step-number {
    position: absolute;
    top: -15px;
    background: var(--accent);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(74, 144, 184, 0.3);
}

.process-step:nth-child(odd) .process-step-number {
    right: -20px;
}

.process-step:nth-child(even) .process-step-number {
    left: -20px;
}

.process-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-family: var(--font-heading);
}

.process-step-text {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Arrow connectors */
.process-step:nth-child(odd) .process-step-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 30px;
    border: 10px solid transparent;
    border-left-color: var(--white);
}

.process-step:nth-child(even) .process-step-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    border: 10px solid transparent;
    border-right-color: var(--white);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .process-step:nth-child(odd) .process-step-content {
        margin-right: 10%;
        text-align: left;
    }
    
    .process-step:nth-child(even) .process-step-content {
        margin-left: 10%;
        text-align: left;
    }
    
    .process-center-line {
        left: 30px;
    }
    
    .process-step-icon {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .process-step-content {
        padding: 30px 25px;
    }
    
    .process-step-title {
        font-size: 1.2rem;
    }
    
    .process-step-text {
        font-size: 0.95rem;
    }
}
/* Header scroll effect enhancements */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 0 2.5%; /* This creates 95% width */
    width: 95%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	top: 4px;
}

.header.scrolled .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar {
    padding: 16px 0;
    transition: all 0.3s ease;
}

.header.scrolled .navbar {
    padding: 12px 0;
}

.navbar-brand img {
    height: 60px;
    transition: all 0.3s ease;
}

.header.scrolled .navbar-brand img {
    height: 50px;
}/* Process Section - Met zwevende EPS-parels */
.process-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(74, 144, 184, 0.05) 0%, transparent 2%),
        radial-gradient(circle at 30% 80%, rgba(74, 144, 184, 0.08) 0%, transparent 2%),
        radial-gradient(circle at 80% 40%, rgba(74, 144, 184, 0.06) 0%, transparent 2%),
        radial-gradient(circle at 70% 10%, rgba(74, 144, 184, 0.04) 0%, transparent 2%),
        radial-gradient(circle at 20% 60%, rgba(74, 144, 184, 0.07) 0%, transparent 2%),
        radial-gradient(circle at 90% 80%, rgba(74, 144, 184, 0.05) 0%, transparent 2%),
        radial-gradient(circle at 40% 30%, rgba(74, 144, 184, 0.06) 0%, transparent 2%);
    background-size: 200px 200px, 150px 150px, 180px 180px, 220px 220px, 160px 160px, 190px 190px, 170px 170px;
    animation: processFloatingBubbles 30s ease-in-out infinite;
    z-index: 0;
}

@keyframes processFloatingBubbles {
    0% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(20px) translateY(-15px) scale(1.1);
    }
    50% {
        transform: translateX(-10px) translateY(10px) scale(0.9);
    }
    75% {
        transform: translateX(15px) translateY(-20px) scale(1.05);
    }
    100% {
        transform: translateX(0) translateY(0) scale(1);
    }
}

.process-timeline-wrapper {
    position: relative;
    margin-top: 80px;
    z-index: 2;
}

.process-center-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 80px;
    opacity: 1; /* Changed from 0 to 1 */
    transform: translateY(0); /* Changed from translateY(30px) to 0 */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Animation classes for scroll effects */
.process-step.hidden {
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) .process-step-content {
    margin-right: 55%;
    text-align: right;
}

.process-step:nth-child(even) .process-step-content {
    margin-left: 55%;
    text-align: left;
}

.process-step-icon {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--white);
    font-size: 1.8rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
    transition: all 0.4s ease;
}

.process-step-icon:hover {
    transform: translateX(-50%) scale(1.1) rotate(360deg);
}

.process-step-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(30, 58, 95, 0.08);
    transition: all 0.4s ease;
    z-index: 3;
}

.process-step-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.process-step-number {
    position: absolute;
    top: -15px;
    background: var(--accent);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(74, 144, 184, 0.3);
}

.process-step:nth-child(odd) .process-step-number {
    right: -20px;
}

.process-step:nth-child(even) .process-step-number {
    left: -20px;
}

.process-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
    font-family: var(--font-heading);
}

.process-step-text {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Arrow connectors */
.process-step:nth-child(odd) .process-step-content::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 30px;
    border: 10px solid transparent;
    border-left-color: var(--white);
}

.process-step:nth-child(even) .process-step-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    border: 10px solid transparent;
    border-right-color: var(--white);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .process-step:nth-child(odd) .process-step-content {
        margin-right: 10%;
        text-align: left;
    }
    
    .process-step:nth-child(even) .process-step-content {
        margin-left: 10%;
        text-align: left;
    }
    
    .process-center-line {
        left: 30px;
    }
    
    .process-step-icon {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .process-step-content {
        padding: 30px 25px;
    }
    
    .process-step-title {
        font-size: 1.2rem;
    }
    
    .process-step-text {
        font-size: 0.95rem;
    }
}* USP Section - Compacter en overzichtelijker */
.usp-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-ultralight) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

/* Subtiele asymmetrie met compacte layout */
.usp-item:nth-child(1) { 
    margin-top: 0; 
}
.usp-item:nth-child(2) { 
    margin-top: 20px; 
}
.usp-item:nth-child(3) { 
    margin-top: -10px; 
}
.usp-item:nth-child(4) { 
    margin-top: 10px; 
}
.usp-item:nth-child(5) { 
    margin-top: -5px; 
}
.usp-item:nth-child(6) { 
    margin-top: 15px; 
}

.usp-item {
    position: relative;
    padding: 0;
    margin-bottom: 30px;
    opacity: 1; /* Changed from 0 to 1 */
    transform: translateY(0) scale(1); /* Changed from translateY(30px) scale(0.95) */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation classes for scroll effects */
.usp-item.hidden {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
}

.usp-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.usp-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
    text-align: center;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(30, 58, 95, 0.12);
}

.usp-floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
    transition: all 0.4s ease;
    border: 3px solid var(--white);
    margin: 0 auto 20px;
    position: relative;
    top: -10px;
}

.usp-card:hover .usp-floating-icon {
    transform: rotate(360deg) scale(1.05);
    box-shadow: 0 6px 16px rgba(30, 58, 95, 0.25);
}

.usp-content {
    position: relative;
    z-index: 2;
}

.usp-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
    line-height: 1.3;
}

.usp-description {
    color: var(--medium-gray);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive aanpassingen */
@media (max-width: 991px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .usp-item {
        margin-top: 0 !important;
        margin-bottom: 20px;
    }
    
    .usp-item:nth-child(even) {
        margin-top: 15px !important;
    }
}

@media (max-width: 767px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .usp-item {
        margin-top: 0 !important;
        margin-bottom: 20px;
    }
    
    .usp-card {
        min-height: 180px;
        padding: 25px 15px;
    }
}

/* Certification Section - Heel simpel */
.certification-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
}

.certification-container {
    max-width: 600px;
    margin: 0 auto;
}

.certification-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--medium-gray);
    font-size: 1rem;
    margin-right: 30px;
    white-space: nowrap;
}

.certification-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.certification-logo {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    border: 1px solid rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.certification-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.cert-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.certification-logo:hover .cert-img {
    filter: grayscale(0%);
}

/* Mobile responsive */
@media (max-width: 576px) {
    .certification-section {
        padding: 30px 0;
    }
    
    .certification-container .row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .certification-text {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .certification-logos {
        justify-content: center;
        gap: 16px;
    }
    
    .cert-img {
        height: 35px;
        max-width: 100px;
    }
}

/* Custom Scrollbar Styling */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 6px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--accent-dark) 100%);
    transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary-dark);
}

::-webkit-scrollbar-corner {
    background: var(--light-gray);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light-gray);
}

/* Alternative thicker scrollbar variant */
.thick-scrollbar::-webkit-scrollbar {
    width: 16px;
}

.thick-scrollbar::-webkit-scrollbar-track {
    background: var(--primary-ultralight);
    border-radius: 8px;
    box-shadow: inset 0 0 4px rgba(30, 58, 95, 0.1);
}

.thick-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: 8px;
    border: 3px solid var(--primary-ultralight);
    box-shadow: 0 2px 6px rgba(30, 58, 95, 0.2);
}

.thick-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-light) 0%, var(--primary-light) 100%);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Minimal scrollbar variant */
.minimal-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.minimal-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.minimal-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(74, 144, 184, 0.4);
    border-radius: 4px;
    border: none;
}

.minimal-scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 144, 184, 0.6);
}


/* Footer Section - Afgerond zoals Hero */
.main-footer-wrapper {
    padding: 0;
    background: var(--light-gray);
    position: relative;
}

.rounded-footer-background {
    border-radius: var(--border-radius-lg);
    border: 0px solid var(--light-gray);
    padding: 80px 0 40px;
    margin: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.rounded-footer-background::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: url('fotos/7.jpg') center/cover;
    opacity: 0.1;
    animation: subtleMove 20s ease-in-out infinite;
    z-index: 0;
}

.rounded-footer-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(18, 18, 18, 0.98) 100%);
    z-index: 1;
}

.footer-grid-container {
    position: relative;
    z-index: 2;
    color: var(--white);
}

/* Brand Section */
.company-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 100%;
}

.company-logo-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.company-logo-img {
    width: 120px;
    height: auto;
    background: var(--white);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.company-main-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    font-family: var(--font-heading);
}

.company-description-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
    font-size: 0.95rem;
}

/* Contact Cards */
.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(74, 144, 184, 0.1);
    border: 1px solid rgba(74, 144, 184, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(74, 144, 184, 0.2);
    transform: translateY(-2px);
    color: var(--white);
    border-color: var(--accent);
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 1rem;
    color: var(--white);
}

.contact-card-details {
    display: flex;
    flex-direction: column;
}

.contact-card-label {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.contact-card-value {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Links Sections */
.services-links-section,
.info-links-section {
    padding-left: 20px;
}

.links-section-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    font-family: var(--font-heading);
}

.links-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.navigation-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navigation-links-list li {
    margin-bottom: 8px;
}

.navigation-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 4px 0;
}

.navigation-links-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navigation-links-list a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.navigation-links-list a:hover::before {
    width: 100%;
}

/* CTA Section */
.cta-social-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.action-call-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 28px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.action-call-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: footerPulse 4s ease-in-out infinite;
}

@keyframes footerPulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.action-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-card-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.action-card-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.action-card-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Social Section */
.social-media-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.social-media-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-media-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-media-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--accent);
}

/* Footer Bottom */
.copyright-bottom-bar {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-notice-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.legal-links-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-links-wrapper a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links-wrapper a:hover {
    color: var(--white);
}

.link-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .rounded-footer-background {
        margin: 20px;
        padding: 60px 0 30px;
    }
    
    .company-info-card {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .services-links-section,
    .info-links-section {
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .cta-social-wrapper {
        gap: 20px;
    }
    
    .action-call-card {
        padding: 24px;
    }
    
    .legal-links-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 12px;
    }
    
    .copyright-notice-text {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .contact-cards-wrapper {
        gap: 8px;
    }
    
    .contact-info-card {
        padding: 12px;
    }
    
    .contact-card-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-card-value {
        font-size: 0.9rem;
    }
}

