        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --dark: #1A1A2E;
            --light: #F7F9FB;
            --success: #00C896;
            --warning: #FFD93D;
            --danger: #FF6B6B;
            --gradient: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
            --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
            --radius: 20px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Manrope', sans-serif;
            background: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        /* ==================== NAVIGATIE ==================== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo img {
            height: 50px;
        }

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

        .nav-link {
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

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

        .nav-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-link:hover:after { width: 100%; }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ==================== BUTTONS ==================== */
        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
        }

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

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

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

        .btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

        /* ==================== HERO ==================== */
        .hero {
            min-height: 50vh;
            padding: 5rem 2rem 3rem;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,96C1248,96,1344,128,1392,144L1440,160L1440,320L0,320Z"></path></svg>') bottom/cover;
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: 'Bebas Neue', Impact, sans-serif;
            font-size: 3.5rem;
            line-height: 1.1;
            color: white;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

        .hero-graphic {
            width: 100%;
            height: 260px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--warning) 100%);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            animation: float 4s ease-in-out infinite;
            padding: 1.5rem;
        }

        .hero-graphic img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ==================== KAART SECTIE ==================== */
        .kaart-section {
            padding: 5rem 2rem;
            background: white;
        }

        .kaart-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .kaart-wrapper {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }

        #map {
            width: 100%;
            height: 550px;
        }

        .kaart-controls {
            position: absolute;
            top: 20px;
            left: 20px;
            background: white;
            padding: 1.2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            z-index: 10;
            max-width: 320px;
        }

        .kaart-search {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .kaart-search input {
            flex: 1;
            padding: 0.7rem 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 0.95rem;
            outline: none;
        }

        .kaart-search input:focus {
            border-color: var(--primary);
        }

        .kaart-search button {
            padding: 0.7rem 1.2rem;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .kaart-search button:hover {
            transform: scale(1.05);
        }

        .kaart-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .kaart-chip {
            padding: 0.5rem 1rem;
            background: var(--light);
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-family: inherit;
        }

        .kaart-chip:hover,
        .kaart-chip.active {
            background: var(--primary);
            color: white;
        }

        .kaart-legend {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 1rem;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            z-index: 10;
            font-size: 0.85rem;
        }

        .kaart-legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.4rem;
        }

        .kaart-legend-item:last-child { margin-bottom: 0; }

        .legend-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
        }

        .legend-dot.beschikbaar { background: var(--success); }
        .legend-dot.verhuurd { background: var(--danger); }

        /* Mapbox Popup - fixed image scaling */
        .mapboxgl-popup-content {
            padding: 0 !important;
            border-radius: 15px !important;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.25) !important;
            min-width: 280px;
            max-width: 320px;
            background: white !important;
        }

        .mapboxgl-popup-content img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .mapboxgl-popup-tip {
            border-top-color: white !important;
        }

        .popup-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 1.2rem;
        }

        .popup-header h3 {
            margin: 0 0 0.3rem 0;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .popup-header span {
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .popup-body {
            padding: 1.2rem;
            background: white;
        }

        .popup-specs {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #555;
            font-size: 0.9rem;
        }

        .popup-specs span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .popup-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: #FF6B35;
            margin-bottom: 1rem;
        }

        .popup-price small {
            font-size: 0.9rem;
            font-weight: 400;
            color: #666;
        }

        .popup-btn {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
            color: white;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.95rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .popup-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        }

        .popup-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        /* ==================== MAP SIDEBAR ==================== */
        .cf-map-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,0,0,0.12);
            background: white;
        }

        .cf-map-wrapper {
            position: relative;
            min-height: 500px;
        }

        .cf-map-sidebar {
            background: white;
            border-left: 1px solid #eee;
            display: flex;
            flex-direction: column;
            height: 500px;
        }

        .cf-sidebar-empty {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            color: #888;
            text-align: center;
            padding: 2rem;
        }

        .cf-sidebar-empty i {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 1rem;
        }

        .cf-sidebar-detail {
            display: none;
            flex-direction: column;
            height: 100%;
        }

        .cf-sidebar-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cf-sidebar-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cf-sidebar-body {
            flex: 1;
            overflow-y: auto;
            padding: 1.5rem;
        }

        .cf-sidebar-footer {
            padding: 1.5rem;
            border-top: 1px solid #eee;
            background: white;
        }

        .cf-sidebar-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.1rem;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            box-sizing: border-box;
        }

        .cf-sidebar-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
            color: white;
        }

        @media (max-width: 1024px) {
            .cf-map-layout {
                grid-template-columns: 1fr !important;
            }
            
            .cf-map-sidebar {
                position: fixed !important;
                bottom: 0;
                left: 0;
                right: 0;
                height: auto !important;
                max-height: 60vh;
                z-index: 1000;
                border-radius: 20px 20px 0 0;
                box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
                transform: translateY(100%);
                transition: transform 0.3s;
            }
            
            .cf-map-sidebar.active {
                transform: translateY(0);
            }
            
            .cf-sidebar-empty {
                display: none !important;
            }
            
            .cf-sidebar-body {
                max-height: 40vh;
            }
        }

        /* ==================== VOORDELEN ==================== */
        .voordelen-section {
            padding: 5rem 2rem;
            background: var(--light);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: var(--shadow-soft);
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .stat-icon.primary { background: rgba(255, 107, 53, 0.1); color: var(--primary); }
        .stat-icon.success { background: rgba(0, 200, 150, 0.1); color: var(--success); }
        .stat-icon.warning { background: rgba(255, 217, 61, 0.1); color: #e6c235; }

        .stat-info h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin: 0;
        }

        .stat-info p { color: #666; font-size: 0.9rem; margin: 0; }

        /* ==================== BUSJES GRID ==================== */
        .busjes-section {
            padding: 5rem 2rem;
        }

        .busjes-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .van-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .van-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s;
        }

        .van-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .van-image {
            height: 160px;
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
            position: relative;
        }

        .van-status {
            position: absolute;
            top: 10px;
            right: 10px;
            padding: 0.3rem 0.8rem;
            background: var(--success);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .van-status.unavailable { background: var(--danger); }

        .van-info { padding: 1.5rem; }

        .van-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .van-specs {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            color: #666;
            font-size: 0.85rem;
            flex-wrap: wrap;
        }

        .van-specs span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .van-price {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .van-price small {
            font-size: 0.85rem;
            font-weight: 400;
            color: #666;
        }

        /* ==================== TIMELINE ==================== */
        .timeline-section {
            background: var(--gradient-hero);
            padding: 5rem 2rem;
        }

        .timeline-section .section-title,
        .timeline-section .section-subtitle {
            color: white;
            text-align: center;
        }

        .timeline {
            position: relative;
            padding: 2rem 0;
            max-width: 900px;
            margin: 2rem auto 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255,255,255,0.3);
        }

        .timeline-item {
            display: flex;
            margin-bottom: 2rem;
            position: relative;
        }

        .timeline-item:nth-child(even) { flex-direction: row-reverse; }

        .timeline-content {
            flex: 1;
            padding: 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow-soft);
            margin: 0 2rem;
            transition: all 0.3s;
        }

        .timeline-content:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
        }

        .timeline-content h3 {
            font-size: 1.1rem;
            color: var(--primary);
            margin: 0 0 0.5rem 0;
        }

        .timeline-content p { color: #666; font-size: 0.95rem; margin: 0; }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--primary);
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: var(--shadow-soft);
            z-index: 1;
            top: 1.5rem;
        }

        .timeline-spacer { flex: 1; }

        /* ==================== PRICING ==================== */
        .pricing-section {
            padding: 5rem 2rem;
            background: var(--light);
        }

        .pricing-card {
            max-width: 500px;
            margin: 0 auto;
            background: white;
            border-radius: var(--radius);
            padding: 2.5rem;
            box-shadow: var(--shadow-medium);
            text-align: center;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            color: var(--dark);
            margin: 0 0 0.5rem 0;
        }

        .pricing-subtitle { color: #666; margin-bottom: 2rem; }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .pricing-price small {
            font-size: 1.2rem;
            font-weight: 400;
            color: #666;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin: 2rem 0;
            padding: 0;
        }

        .pricing-features li {
            padding: 0.7rem 0;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            color: #444;
            border-bottom: 1px solid #eee;
        }

        .pricing-features li:last-child { border-bottom: none; }
        .pricing-features i { color: var(--success); }

        /* ==================== CTA ==================== */
        .cta-section {
            background: var(--dark);
            padding: 5rem 2rem;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 1rem;
        }

        .cta-section p {
            color: rgba(255,255,255,0.7);
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ==================== CONTACT ==================== */
        .contact-section {
            padding: 5rem 2rem;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 2rem;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-soft);
        }

        .form-group { margin-bottom: 1.5rem; }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: #666;
        }

        .contact-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 107, 53, 0.1);
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover { color: white; }

        .footer-socials { display: flex; gap: 1rem; }

        .footer-socials a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 2rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }

        /* ==================== MODAL ==================== */
        .modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(5px);
        }

        .modal.active { display: flex; }

        .modal-content {
            background: white;
            border-radius: var(--radius);
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .modal-header h2 { font-size: 1.5rem; color: var(--dark); margin: 0; }

        .modal-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #999;
            line-height: 1;
        }

        .modal-close:hover { color: var(--danger); }

        /* ==================== TOAST ==================== */
        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--success);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow-medium);
            transform: translateX(400px);
            transition: transform 0.3s;
            z-index: 3000;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .toast.show { transform: translateX(0); }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 968px) {
            .hero-content { grid-template-columns: 1fr; text-align: center; }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1rem; }
            .hero-buttons { justify-content: center; }
            .hero-graphic { height: 200px; }
            .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .hero { min-height: auto; padding: 4rem 1.5rem 2.5rem; }
            .hero h1 { font-size: 2.2rem; }
            .hero-graphic { height: 180px; }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow-medium);
            }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
            
            .kaart-controls {
                position: relative;
                top: 0;
                left: 0;
                max-width: 100%;
                border-radius: 0;
            }
            
            /* Hide top nav on mobile when bottom nav is present */
            body.has-bottom-nav nav .nav-links,
            body.has-bottom-nav nav .mobile-toggle {
                display: none !important;
            }
            
            /* Extra padding at bottom for bottom nav */
            body.has-bottom-nav {
                padding-bottom: 70px;
            }
            
            body.has-bottom-nav .kaart-page,
            body.has-bottom-nav .cf-kaart-fullscreen {
                padding-bottom: 70px;
            }
        }

        /* ==================== STICKY BOTTOM NAVIGATION (MOBIEL) ==================== */
        .cf-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 9999;
            padding: 0.5rem 0;
            padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
        }

        @media (max-width: 768px) {
            .cf-bottom-nav {
                display: block;
            }
        }

        .cf-bottom-nav-inner {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .cf-bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #888;
            font-size: 0.7rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 12px;
            transition: all 0.2s ease;
            position: relative;
            min-width: 60px;
        }

        .cf-bottom-nav-item i {
            font-size: 1.4rem;
            margin-bottom: 0.25rem;
            transition: transform 0.2s ease;
        }

        .cf-bottom-nav-item:hover,
        .cf-bottom-nav-item.active {
            color: var(--primary);
        }

        .cf-bottom-nav-item.active {
            background: rgba(255, 107, 53, 0.1);
        }

        .cf-bottom-nav-item.active i {
            transform: scale(1.1);
        }

        /* Center button (Zoeken) - special styling */
        .cf-bottom-nav-item.cf-nav-search {
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            margin-top: -20px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
            padding: 0;
            min-width: 56px;
        }

        .cf-bottom-nav-item.cf-nav-search i {
            font-size: 1.5rem;
            margin: 0;
        }

        .cf-bottom-nav-item.cf-nav-search span {
            display: none;
        }

        .cf-bottom-nav-item.cf-nav-search:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
        }

        /* Badge voor notificaties */
        .cf-bottom-nav-badge {
            position: absolute;
            top: 0;
            right: 50%;
            transform: translateX(100%);
            background: var(--danger);
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            min-width: 16px;
            height: 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
        }

        /* Animatie voor active state */
        @keyframes navPop {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .cf-bottom-nav-item.active i {
            animation: navPop 0.3s ease;
        }

        /* ==================== TOAST NOTIFICATIE ==================== */
        .cf-toast {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--dark);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            z-index: 99999;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .cf-toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        @media (max-width: 768px) {
            .cf-toast {
                bottom: 90px;
                left: 1rem;
                right: 1rem;
                transform: translateX(0) translateY(100px);
                text-align: center;
            }
            .cf-toast.show {
                transform: translateX(0) translateY(0);
            }
        }

/* ==================== MOBIELE OPTIMALISATIE ==================== */

/* Voorkom horizontaal scrollen */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

section, .stats-container, .how-container, .busjes-container,
.testimonials-container, .footer-grid, .kaart-layout,
.hero-content, .kaart-container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Stats sectie - basis */
.stats-section {
    padding: 4rem 2rem;
    background: var(--gradient-hero);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.stats-header h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.stats-header p {
    color: rgba(255,255,255,0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Tablet */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
}

/* Mobiel - 768px */
@media (max-width: 768px) {
    .stats-section {
        padding: 2.5rem 1rem;
    }
    
    .stats-header {
        margin-bottom: 1.5rem;
    }
    
    .stats-header h2 {
        font-size: 1.5rem;
    }
    
    .stats-header p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Hero mobiel */
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    /* Kaart sectie mobiel */
    .kaart-section {
        padding: 2rem 1rem;
    }
    
    .kaart-header h2,
    .section-title {
        font-size: 1.4rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* Map zoekbalk mobiel */
    .map-search-bar {
        width: 95%;
        padding: 0.35rem;
    }
    
    .map-search-bar input {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .map-search-bar button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Sidebar mobiel */
    .kaart-sidebar {
        max-height: 350px;
    }
    
    .sidebar-specs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .sidebar-spec {
        padding: 0.5rem;
    }
    
    .sidebar-spec i {
        font-size: 0.9rem;
    }
    
    .sidebar-spec strong {
        font-size: 0.8rem;
    }
    
    /* Hoe werkt het mobiel */
    .how-section {
        padding: 3rem 1rem;
    }
    
    .how-header h2 {
        font-size: 1.5rem;
    }
    
    .how-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-steps::before {
        display: none;
    }
    
    .how-step {
        padding: 1.5rem;
    }
    
    /* Busjes grid mobiel */
    .busjes-section {
        padding: 2.5rem 1rem;
    }
    
    .busjes-header h2 {
        font-size: 1.4rem;
    }
    
    .van-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Footer mobiel */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
}

/* Extra kleine schermen - 480px */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stats-header h2 {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .kaart-header h2,
    .section-title {
        font-size: 1.2rem;
    }
    
    #map {
        height: 350px;
    }
    
    .sidebar-image {
        height: 140px;
    }
}

