/* ===========================
           ROOT VARIABLES - FLAT COLORS
           =========================== */
        :root {
            /* Light Mode Colors */
            --primary-red: #b89760;
            --primary-dark: #1A1A1A;
            --bg-light: #FFFFFF;
            --bg-gray: #F5F5F5;
            --text-dark: #1A1A1A;
            --text-gray: #4A4A4A;
            --text-light: #7A7A7A;
            --border-color: #E5E5E5;
            --section-spacing: 60px;
        }
        
        [data-theme="dark"] {
            --primary-red: #b89760;
            --primary-dark: #FFFFFF;
            --bg-light: #0A0A0A;
            --bg-gray: #1A1A1A;
            --text-dark: #FFFFFF;
            --text-gray: #D1D5DB;
            --text-light: #9CA3AF;
            --border-color: #2A2A2A;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
html {
	          overflow-x: hidden;
			max-width: 100vw!important;
}
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
            overflow-x: hidden;
			max-width: 100vw!important;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        section {
            padding: var(--section-spacing) 0;
        }

        /* ===========================
           SCROLLBAR STYLING
           =========================== */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-gray);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 10px;
            border: 3px solid var(--bg-gray);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #b4873d;
        }

        /* ===========================
           SCROLL PROGRESS BAR
           =========================== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: var(--primary-red);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* ===========================
           DARK MODE TOGGLE
           =========================== */
        .theme-toggle {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: var(--bg-light);
            border: 2px solid var(--border-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            transform: scale(1.05) rotate(15deg);
        }

        .theme-toggle i {
            font-size: 1.5rem;
            color: var(--text-dark);
            transition: transform 0.3s ease;
        }

        [data-theme="dark"] .theme-toggle .ri-moon-line {
            display: none;
        }

        [data-theme="light"] .theme-toggle .ri-sun-line {
            display: none;
        }

        /* ===========================
           SPOTLIGHT CURSOR EFFECT (DARK MODE)
           =========================== */
        .cursor-spotlight {
            position: fixed;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
            background: radial-gradient(
                circle at center,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.04) 20%,
                rgba(255, 255, 255, 0.02) 40%,
                transparent 70%
            );
            transform: translate(-50%, -50%);
            will-change: transform;
        }

        [data-theme="dark"] .cursor-spotlight {
            opacity: 1;
        }

        [data-theme="light"] .cursor-spotlight {
            opacity: 0;
        }

        @media (max-width: 768px) {
            .cursor-spotlight {
                display: none;
            }
        }

        /* ===========================
           MOBILE NAV BUTTONS
           =========================== */
        .mobile-nav-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(184, 151, 96, 0.15);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
            text-decoration: none;
            padding: 0;
        }

        .mobile-nav-btn i {
            font-size: 20px;
            transition: transform 0.25s ease;
        }

        /* Scroll to top button */
        .scroll-to-top-btn {
            opacity: 0;
            pointer-events: none;
        }

        .scroll-to-top-btn.visible {
            opacity: 1;
            pointer-events: all;
        }

        .scroll-to-top-btn i {
            color: var(--primary-red);
        }

        .scroll-to-top-btn:hover {
            background: rgba(184, 151, 96, 0.1);
            border-color: var(--primary-red);
        }

        .scroll-to-top-btn:hover i {
            transform: translateY(-2px);
        }

        /* WhatsApp button */
        .whatsapp-btn {
            background: rgba(37, 211, 102, 0.08) !important;
            border-color: rgba(37, 211, 102, 0.2) !important;
        }

        .whatsapp-btn i {
            color: #25D366;
        }

        .whatsapp-btn:hover {
            background: rgba(37, 211, 102, 0.15) !important;
            border-color: #25D366 !important;
        }

        .whatsapp-btn:hover i {
            transform: scale(1.1);
        }

        /* Verberg op desktop */
        @media (min-width: 992px) {
            .mobile-nav-btn {
                display: none !important;
            }
        }

        /* ===========================
           NAVIGATION - FLOATING
           =========================== */
        .navbar-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .navbar {
            background: transparent;
            box-shadow: none;
            padding: 14px 36px;
            border-radius: 6px 20px 6px 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            border: 1px solid transparent;
        }

        .navbar-container.scrolled .navbar {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
        }

        .navbar:hover {
            transform: scale(1.01);
        }

        .navbar-brand {
            font-size: 1.5rem;
            color: white !important;
            font-weight: 800;
            letter-spacing: -0.5px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .navbar-brand img {
            height: 45px;
        }

        .navbar-container.scrolled .navbar-brand {
            color: var(--text-dark) !important;
        }

        .navbar-brand .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .navbar-brand .brand-name {
            font-size: 1.5rem;
        }

        .navbar-brand .brand-tagline {
            font-size: 0.7rem;
            font-weight: 400;
            color: var(--primary-red);
            letter-spacing: 0.5px;
        }

        .nav-link {
            color: white !important;
            font-weight: 500;
            font-size: 0.95rem;
            margin: 0 4px;
            padding: 10px 18px !important;
            transition: all 0.3s ease;
            border-radius: 3px 10px 3px 10px;
            position: relative;
        }

        .navbar-container.scrolled .nav-link {
            color: var(--text-dark) !important;
        }

        /* Light mode - zwarte tekst voor scrollen */
        [data-theme="light"] .nav-link {
            color: var(--text-dark) !important;
        }

        [data-theme="light"] .navbar-brand {
            color: var(--text-dark) !important;
        }

        .nav-link:hover {
            color: var(--primary-red) !important;
            background-color: rgba(184, 151, 96, 0.08);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--primary-red);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            transform: scaleX(1);
        }

        /* Dropdown menu styling - HOVER BASED */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            border-radius: 6px 18px 6px 18px;
            padding: 8px;
            margin-top: 8px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            display: none;
            min-width: 280px;
        }

        .dropdown-item {
            color: var(--text-dark);
            padding: 6px 6px;
            border-radius: 3px 10px 3px 10px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .dropdown-item i {
            font-size: 1.2rem;
            color: var(--primary-red);
            transition: transform 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: rgba(184, 151, 96, 0.08);
            color: var(--primary-red);
            transform: translateX(5px);
        }

        .dropdown-item:hover i {
            transform: scale(1.15);
        }

        /* Active state voor dropdown items - geen blauwe kleur */
        .dropdown-item.active {
            background-color: rgba(184, 151, 96, 0.08);
            color: var(--text-dark);
            font-weight: 600;
        }

        .dropdown-item.active i {
            color: var(--primary-red);
        }

        /* Override Bootstrap default active styling */
        .dropdown-item.active,
        .dropdown-item:active {
            background-color: rgba(184, 151, 96, 0.08) !important;
            color: var(--text-dark) !important;
        }

        .dropdown-divider {
            border-color: var(--border-color);
            margin: 8px 0;
        }

        .cta-button {
            background: var(--primary-red) !important;
            color: white !important;
            padding: 11px 28px !important;
            font-size: 0.95rem !important;
            border: none;
            border-radius: 4px 14px 4px 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            background: #b4873d !important;
            border-radius: 14px 4px 14px 4px;
        }

        .navbar-toggler {
            border: none;
            color: white;
        }

        .navbar-container.scrolled .navbar-toggler {
            color: var(--text-dark);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-container.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Dark mode - witte toggler op mobiel */
        [data-theme="dark"] .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        [data-theme="dark"] .navbar-container.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Light mode - zwarte toggler na scrollen */
        [data-theme="light"] .navbar-container.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ===========================
           HERO SECTION
           =========================== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 210px 0 80px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2A2A2A 100%);
        }

        [data-theme="dark"] .hero-section {
            background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease 0.4s both;
            margin-top: 0;
        }

        .hero-image img {
            width: 100%;
            border-radius: 8px 24px 8px 24px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(184, 151, 96, 0.1);
            border: 1px solid var(--primary-red);
            color: var(--primary-red);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            color: white;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        [data-theme="dark"] .hero-title {
            color: white;
        }

        .hero-title .highlight {
            color: var(--primary-red);
            position: relative;
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 40px;
            font-weight: 400;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .hero-cta-primary {
            background: var(--primary-red);
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .hero-cta-primary:hover {
            transform: translateY(-2px);
            background: #b4873d;
            color: white;
            border-radius: 18px 6px 18px 6px;
        }

        .hero-cta-secondary {
            background: transparent;
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        /* Light mode - betere kleuren voor secondary button */
        [data-theme="light"] .hero-cta-secondary {
            color: var(--text-dark);
            border: 2px solid var(--border-color);
            background: var(--bg-light);
        }

        [data-theme="light"] .hero-cta-secondary:hover {
            background: var(--bg-gray);
            border-color: var(--primary-red);
            color: var(--primary-red);
        }

        .hero-cta-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-2px);
            color: white;
            border-radius: 18px 6px 18px 6px;
        }

        /* Parallax Image Class */
        .parallax-image {
            will-change: transform;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* ===========================
           MINIMALE USP BALK
           =========================== */
        .usp-bar {
            background: var(--primary-red);
            padding: 14px 0;
        }

        .usp-items {
            display: flex;
            justify-content: center;
            gap: 32px;
            max-width: 1400px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .usp-item {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
            color: white;
            text-align: center;
            transition: all 0.3s ease;
            cursor: default;
            padding: 0;
        }

        .usp-item:hover {
            opacity: 0.85;
        }

        .usp-item i {
            font-size: 1.1rem;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .usp-item:hover i {
            opacity: 1;
        }

        .usp-item span {
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0.95;
            transition: all 0.3s ease;
        }

        .usp-item:hover span {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .usp-bar {
                padding: 10px 0;
            }

            .usp-items {
                gap: 8px 20px;
            }

            .usp-item i {
                font-size: 0.95rem;
            }

            .usp-item span {
                font-size: 0.8rem;
            }
        }

        /* ===========================
           TRUST SECTION
           =========================== */
        .trust-section {
            background: var(--bg-light);
            padding: 80px 0;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        @media (max-width: 1200px) {
            .trust-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .trust-grid {
                grid-template-columns: 1fr;
            }
        }

        .trust-item {
            text-align: center;
            padding: 40px 30px;
            background: var(--bg-gray);
            border-radius: 6px 20px 6px 20px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .trust-item.fade-in-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .trust-item:hover {
            transform: translateY(-5px);
        }

        .trust-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-red);
            border-radius: 6px 20px 6px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .trust-icon i {
            font-size: 2rem;
            color: white;
        }

        .trust-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .trust-desc {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ===========================
           SECTION HEADERS
           =========================== */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(184, 151, 96, 0.1);
            border: 1px solid var(--primary-red);
            color: var(--primary-red);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===========================
           SERVICES SECTION
           =========================== */
        .services-section {
            background: var(--bg-gray);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: var(--bg-light);
            border-radius: 8px 24px 8px 24px;
            overflow: hidden;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
            border: 2px solid transparent;
        }

        .service-card.fade-in-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-red);
        }

        .service-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-number {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: white;
            border-radius: 4px 16px 4px 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .service-desc {
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-cta:hover {
            gap: 12px;
        }

        /* ===========================
           PROCESS SECTION
           =========================== */
        .process-section {
            background: var(--bg-light);
        }

        .process-timeline {
            position: relative;
            margin-top: 60px;
        }

        .process-step {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }

        .process-step.fade-in-visible {
            opacity: 1;
            transform: translateX(0);
        }

        .process-step:nth-child(even) {
            flex-direction: row-reverse;
            transform: translateX(30px);
        }

        .process-step:nth-child(even).fade-in-visible {
            transform: translateX(0);
        }

        .process-number {
            width: 80px;
            height: 80px;
            background: var(--primary-red);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .process-content {
            flex: 1;
            background: var(--bg-gray);
            padding: 35px;
            border-radius: 6px 20px 6px 20px;
        }

        .process-title {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .process-desc {
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* ===========================
           FLOATING CTA BOXES
           =========================== */
        .cta-box {
            background: var(--bg-light);
            border: 2px solid var(--border-color);
            border-radius: 8px 24px 8px 24px;
            padding: 50px 40px;
            margin: 60px 20px;
            text-align: center;
            transform: scale(0.95);
            opacity: 0.8;
            transition: all 0.6s ease;
        }

        .cta-box.cta-scaled {
            transform: scale(1);
            opacity: 1;
        }

        .cta-box-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-box-text {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-box-button {
            background: var(--primary-red);
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .cta-box-button:hover {
            transform: translateY(-2px);
            background: #b4873d;
            color: white;
            border-radius: 18px 6px 18px 6px;
        }

        @media (max-width: 768px) {
            .cta-box {
                margin: 40px 10px;
                padding: 40px 30px;
            }

            .cta-box-title {
                font-size: 1.6rem;
            }

            .cta-box-text {
                font-size: 1rem;
            }

            .cta-box-button {
                width: 100%;
                justify-content: center;
            }
        }

        /* ===========================
           CTA SECTION - FLOATING
           =========================== */
        .cta-section {
            padding: 100px 0;
            background: transparent;
        }

        .cta-container {
            background: var(--primary-red);
            border-radius: 8px 24px 8px 24px;
            padding: 100px 60px;
            margin: 0 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
        }

        .cta-button-large {
            background: white;
            color: var(--primary-red);
            padding: 20px 50px;
            font-size: 1.2rem;
            border: none;
            border-radius: 6px 20px 6px 20px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .cta-button-large:hover {
            transform: translateY(-3px);
            color: var(--primary-red);
            border-radius: 20px 6px 20px 6px;
        }

        @media (max-width: 768px) {
            .cta-container {
                padding: 80px 30px;
                margin: 0 10px;
                border-radius: 6px 18px 6px 18px;
            }

            .cta-title {
                font-size: 2rem;
            }
        }

        /* ===========================
           STATS SECTION - FLOATING WITH 3D
           =========================== */
        .stats-section {
            padding: 80px 0;
            background: transparent;
        }

        .stats-container {
            background: var(--primary-red);
            border-radius: 8px 24px 8px 24px;
            padding: 80px 60px;
            margin: 0 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            transition: transform 0.1s ease-out;
            transform-style: preserve-3d;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-item.fade-in-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 12px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .stats-container {
                padding: 60px 30px;
                margin: 0 10px;
                border-radius: 6px 18px 6px 18px;
            }
        }

        /* ===========================
           PROJECTS GALLERY
           =========================== */
        .projects-section {
            background: var(--bg-light);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .project-card {
            position: relative;
            border-radius: 6px 20px 6px 20px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
        }

        .project-card.fade-in-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:hover {
            transform: translateY(-8px);
        }

        .project-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 30px;
            transition: all 0.3s ease;
        }

        .project-info h3 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .project-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .project-info .project-description {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, opacity 0.3s ease;
            margin: 0;
        }

        .project-card:hover .project-info .project-description {
            max-height: 120px;
            opacity: 1;
            margin-bottom: 8px;
        }

        /* ===========================
           TESTIMONIALS SECTION - SWIPER SLIDER
           =========================== */
        .testimonials-section {
            background: var(--bg-gray);
            overflow: hidden;
        }

        .testimonials-slider {
            padding: 20px 0 80px;
            margin: 0;
            position: relative;
            /* Full width - breek uit container */
            width: 100vw;
            margin-left: calc(-50vw + 50%);
        }
        
        /* Ruimte aan zijkanten voor arrows */
        .testimonials-slider .swiper {
            padding-left: 60px !important;
            padding-right: 60px !important;
        }
        
        @media (min-width: 992px) {
            .testimonials-slider .swiper {
                padding-left: 80px !important;
                padding-right: 80px !important;
            }
        }

        .testimonial-slide {
            background: var(--bg-light);
            padding: 40px 35px;
            border-radius: 6px 20px 6px 20px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .testimonial-slide:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
        }

        .testimonial-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .testimonial-rating i {
            color: #FFC107;
            font-size: 1.2rem;
        }

        .testimonial-text {
            color: var(--text-gray);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .testimonial-author strong {
            color: var(--text-dark);
            font-size: 1.1rem;
        }

        .testimonial-author span {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Swiper Custom Styling */
        .swiper {
            width: 100%;
            padding: 20px 0 !important;
        }

        .swiper-pagination {
            position: relative !important;
            margin-top: 30px !important;
        }

        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--text-light);
            opacity: 0.3;
            transition: all 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary-red);
            opacity: 1;
            width: 30px;
            border-radius: 6px;
        }
        
        /* Pagination verbergen op desktop */
        @media (min-width: 992px) {
            .swiper-pagination {
                display: none;
            }
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary-red) !important;
            width: 50px;
            height: 50px;
            background: var(--bg-light);
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            display: flex;
        }
        
        /* Op desktop: arrows aan de uiterste zijkanten */
        @media (min-width: 992px) {
            .swiper-button-prev {
                left: 20px;
            }
            
            .swiper-button-next {
                right: 20px;
            }
        }
        
        /* Op mobiel: arrows kleiner en binnen de slider */
        @media (max-width: 991px) {
            .swiper-button-next,
            .swiper-button-prev {
                width: 40px;
                height: 40px;
            }
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 20px !important;
            font-weight: 900;
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            background: var(--primary-red);
            color: white !important;
            transform: scale(1.1);
        }

        /* ===========================
           FAQ SECTION
           =========================== */
        .faq-section {
            background: var(--bg-light);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .faq-item {
            background: var(--bg-gray);
            padding: 30px;
            border-radius: 6px 20px 6px 20px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .faq-item.fade-in-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item:hover {
            border-color: var(--primary-red);
        }

        .faq-question {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 16px;
        }

        .faq-question i {
            color: var(--primary-red);
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .faq-question h3 {
            color: var(--text-dark);
            font-size: 1.2rem;
            font-weight: 700;
            line-height: 1.4;
        }

        .faq-answer {
            color: var(--text-gray);
            line-height: 1.7;
            padding-left: 42px;
        }

        /* ===========================
           ABOUT SECTION
           =========================== */
        .about-section {
            background: var(--bg-gray);
        }

        .about-image {
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }

        .about-image.fade-in-visible {
            opacity: 1;
            transform: translateX(0);
        }

        .about-image img {
            width: 100%;
            border-radius: 8px 24px 8px 24px;
        }

        .about-content {
            opacity: 0;
            transform: translateX(30px);
        }

        .about-content.fade-in-visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mission & Vision Boxes */
        .mission-vision-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 6px 20px 6px 20px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            height: 100%;
        }

        .mission-vision-box:hover {
            border-color: var(--primary-red);
            transform: translateY(-3px);
        }

        .mission-vision-box h4 {
            color: var(--primary-red);
            font-size: 1.2rem;
            margin-bottom: 12px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mission-vision-box h4 i {
            font-size: 1.3rem;
        }

        .mission-vision-box p {
            color: var(--text-gray);
            line-height: 1.7;
            margin: 0;
        }

        /* CTA Buttons in About Section */
        .cta-buttons {
            display: flex;
            gap: 16px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .cta-primary {
            background: var(--primary-red);
            color: white;
            padding: 18px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            background: #b4873d;
            color: white;
            border-radius: 18px 6px 18px 6px;
        }

        .cta-secondary {
            background: transparent;
            color: var(--primary-red);
            padding: 18px 40px;
            font-size: 1.1rem;
            border: 2px solid var(--primary-red);
            border-radius: 6px 18px 6px 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            background: var(--primary-red);
            color: white;
            transform: translateY(-2px);
            border-radius: 18px 6px 18px 6px;
        }

        /* ===========================
           FOOTER - FLOATING
           =========================== */
        .footer {
            background: var(--primary-dark);
            margin: 40px 20px 20px;
            border-radius: 8px 24px 8px 24px;
            padding: 80px 0 40px;
            position: relative;
            transform: scale(0.95);
            opacity: 0.8;
            transition: all 0.6s ease;
        }

        [data-theme="dark"] .footer {
            background: #1A1A1A;
        }

        .footer.footer-scaled {
            transform: scale(1);
            opacity: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-section h4 {
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: color 0.3s ease;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--primary-red);
        }

        .footer-brand {
            margin-bottom: 20px;
        }

        .footer-brand img {
            height: 60px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px 12px 3px 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }

        .footer-social i {
            font-size: 1.3rem;
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-quote {
            font-size: 1.2rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }

        .footer-copyright a {
            color: rgba(255, 255, 255, 0.7);
            display: inline;
            margin: 0;
        }

        /* ===========================
           RESPONSIVE
           =========================== */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-spacing: 80px;
            }

            .hero-section {
                padding: 140px 0 60px;
            }

            .hero-image {
                margin-top: 30px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .hero-cta-primary,
            .hero-cta-secondary {
                width: 100%;
                justify-content: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-step {
                flex-direction: column !important;
                gap: 20px;
            }

            .cta-title {
                font-size: 2rem;
            }

            .footer {
                margin: 20px 10px 10px;
                padding: 60px 0 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .theme-toggle {
                bottom: 20px;
                left: 20px;
                width: 50px;
                height: 50px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .stats-container {
                padding: 60px 30px;
                margin: 0 10px;
                border-radius: 6px 18px 6px 18px;
            }

            .stat-number {
                font-size: 3rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .faq-answer {
                padding-left: 0;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-primary,
            .cta-secondary {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--bg-light);
                padding: 20px;
                border-radius: 5px 16px 5px 16px;
                margin-top: 15px;
                border: 1px solid var(--border-color);
            }

            .nav-link {
                color: var(--text-dark) !important;
            }

            .navbar-brand {
                color: var(--text-dark) !important;
            }

            .navbar-toggler {
                color: var(--text-dark) !important;
            }

            /* Mobile dropdown - click to toggle */
            .nav-item.dropdown .dropdown-menu {
                display: none;
                position: static;
                box-shadow: none;
                border: none;
                background: transparent;
                padding: 0;
                margin-top: 10px;
            }

            .nav-item.dropdown.show .dropdown-menu {
                display: block;
            }

            .dropdown-item {
                padding: 10px 20px;
                margin-bottom: 5px;
            }
        }

        /* ===========================
           FADE IN ANIMATIONS
           =========================== */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===========================
           UTILITIES
           =========================== */
        .container {
            max-width: 1200px;
        }