/* ============================================ */
/* Connectie Coaching - Elementor Styles */
/* Geoptimaliseerd voor performance & mobiel */
/* Version: 2.0 - Enhanced Performance */
/* ============================================ */

/* CSS Custom Properties voor theming en performance */
:root {
    --cc-primary: #8B6F5A;
    --cc-primary-dark: #6B5A4A;
    --cc-primary-light: #C8B8A8;
    --cc-text: #2B2B2B;
    --cc-text-light: #5A5A5A;
    --cc-bg: #FFFFFF;
    --cc-bg-light: #F9F7F4;
    --cc-bg-accent: #F3EFEA;
    --cc-shadow-sm: 0 2px 8px rgba(43, 43, 43, 0.1);
    --cc-shadow-md: 0 4px 16px rgba(43, 43, 43, 0.15);
    --cc-shadow-lg: 0 8px 32px rgba(43, 43, 43, 0.2);
    --cc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cc-transition-fast: all 0.2s ease;
    --cc-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --cc-border-radius: 8px;
    --cc-border-radius-lg: 24px;
    --cc-spacing-xs: 8px;
    --cc-spacing-sm: 16px;
    --cc-spacing-md: 24px;
    --cc-spacing-lg: 32px;
    --cc-spacing-xl: 48px;
}

/* Performance optimalisaties */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Containment voor betere performance */
.cc-section,
.cc-section-white,
.cc-section-accent {
    contain: layout style paint;
}

.cc-content-card,
.cc-offer-card {
    contain: layout style paint;
    content-visibility: auto;
}

/* GPU acceleration voor animaties */
.cc-button-primary-ultimate,
.cc-button-secondary-ultimate,
.cc-content-card,
.cc-offer-card,
.cc-hero-background {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize font rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

/* Optimize images */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling met fallback */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ============================================ */
/* SKIP LINK - Accessibility */
/* ============================================ */
.cc-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 1000000;
    padding: 12px 24px;
    background: #8B6F5A;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', 'Lato', sans-serif;
    border-radius: 0 0 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: top 0.3s ease;
}

.cc-skip-link:focus {
    top: 0;
    outline: 3px solid #F3EFEA;
    outline-offset: 2px;
}

/* ============================================ */
/* HEADER STYLES - SCHOON EN WERKEND */
/* ============================================ */
.cc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(43, 43, 43, 0.1);
    z-index: 999999;
    transition: all 0.3s ease;
    padding: 16px 0;
    border-bottom: 2px solid rgba(139, 111, 90, 0.1);
    width: 100%;
    box-sizing: border-box;
}
.cc-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(43, 43, 43, 0.15);
}
.cc-header-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    box-sizing: border-box;
}
.cc-header-logo {
    flex-shrink: 0;
    max-width: 200px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.cc-logo-img {
    height: 60px !important;
    width: auto !important;
    max-width: 200px !important;
    max-height: 60px !important;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
    /* Performance optimalisaties */
    will-change: transform;
    content-visibility: auto;
}
.cc-header.scrolled .cc-logo-img {
    height: 50px;
}
.cc-logo-img:hover {
    transform: scale(1.05);
}
.cc-header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.cc-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}
/* PC & TABLET - Header menu op voorgrond, zichtbaar in goud */
@media (min-width: 769px) {
    /* Header op voorgrond - altijd zichtbaar */
    .cc-header {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        z-index: 999999 !important;
        background: #FFFFFF !important;
        box-shadow: 0 2px 12px rgba(139, 111, 90, 0.08) !important;
        border-bottom: 1px solid rgba(139, 111, 90, 0.15) !important;
    }
    
    /* Nav menu - VOORGROND, goud/bruin, altijd zichtbaar */
    .cc-header-nav,
    .cc-header .cc-header-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 999999 !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        overflow: visible !important;
        right: auto !important;
    }
    
    /* Toggle button volledig verbergen op desktop/tablet */
    .cc-menu-toggle,
    button.cc-menu-toggle,
    nav .cc-menu-toggle,
    .cc-header-nav .cc-menu-toggle,
    header .cc-menu-toggle,
    .cc-header .cc-menu-toggle,
    .cc-header-container .cc-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Menu altijd zichtbaar */
    .cc-nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: row !important;
        gap: 8px !important;
        align-items: center !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Overlay verbergen */
    .cc-menu-overlay {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Reset mobile menu styles op desktop */
    .cc-header-nav .cc-nav-menu {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        padding: 0 !important;
        text-align: left !important;
    }
    
    /* cc-nav-menu - altijd zichtbaar op PC (voorgrond) */
    .cc-header-container .cc-header-nav .cc-nav-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Menu-items in goud/bruin op PC */
    .cc-nav-link {
        padding: 10px 18px !important;
        width: auto !important;
        display: block !important;
        background-color: transparent !important;
        border-radius: 8px !important;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        visibility: visible !important;
        color: #8B6F5A !important; /* Goud/bruin */
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        border: 1px solid transparent !important;
    }
    .cc-nav-link:hover {
        color: #6B5A4A !important;
        background-color: rgba(139, 111, 90, 0.08) !important;
        border-color: rgba(139, 111, 90, 0.2) !important;
    }
    .cc-nav-link.cc-nav-cta {
        background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 100%) !important;
        color: #FFFFFF !important;
        border: none !important;
    }
    .cc-nav-link.cc-nav-cta:hover {
        background: linear-gradient(135deg, #6B5A4A 0%, #5A4A3A 100%) !important;
        color: #FFFFFF !important;
    }
}

/* MOBIEL - Menu verbergen standaard */
@media (max-width: 768px) {
    .cc-nav-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .cc-header-nav:not(.active) .cc-nav-menu {
        /* display: none !important; Verwijderd voor smooth animatie */
        opacity: 0;
        transition: opacity 0.3s ease;
    }
}
.cc-nav-link {
    display: block;
    padding: 10px 20px;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #8B6F5A;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}
.cc-nav-link:hover {
    color: #6B5A4A;
    background-color: #F3EFEA;
}
.cc-nav-link.cc-nav-cta {
    background-color: #8B6F5A;
    color: #FFFFFF;
    font-weight: 600;
}
.cc-nav-link.cc-nav-cta:hover {
    background-color: #6B5A4A;
    color: #FFFFFF;
    transform: translateY(-2px);
}
.cc-nav-link.cc-nav-active {
    font-weight: 600;
    color: #6B5A4A;
    box-shadow: 0 4px 8px rgba(139, 111, 90, 0.3);
}
/* Hamburger Menu Toggle - Verborgen standaard, alleen zichtbaar op mobiel */
.cc-menu-toggle {
    display: none; /* Hidden by default - alleen zichtbaar op mobiel */
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    visibility: hidden;
    opacity: 0;
}

/* DESKTOP/TABLET: Toggle ALTIJD verbergen */
@media (min-width: 769px) {
    .cc-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* MOBILE HEADER - SCHOON EN WERKEND - KLAUW MENU VAN RECHTS */
@media (max-width: 768px) {
    .cc-header {
        padding: 12px 0;
        background: #FFFFFF;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100000;
        width: 100%;
    }
    .cc-header-container {
        padding: 0 16px;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    .cc-header-logo {
        flex-shrink: 0;
        margin: 0;
        padding: 0;
        order: 1;
        width: auto;
        min-width: auto;
    }
    .cc-logo-img {
        height: 48px;
        max-height: 48px;
        max-width: 160px;
        width: auto;
        display: block;
    }
    .cc-header.scrolled .cc-logo-img {
        height: 44px;
        max-height: 44px;
    }
    /* Toggle knop - ALTIJD ZICHTBAAR OP MOBIEL */
    .cc-menu-toggle,
    button.cc-menu-toggle,
    #cc-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-direction: column;
        gap: 6px;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        margin-left: auto;
        margin-right: 0;
        background: #F5EFE7;
        border-radius: 50%;
        border: 1px solid rgba(139, 111, 90, 0.2);
        box-shadow: 0 4px 15px rgba(107, 93, 82, 0.08);
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        max-width: 52px;
        max-height: 52px;
        padding: 0;
        cursor: pointer;
        z-index: 100001;
        position: relative;
        order: 2;
        box-sizing: border-box;
        pointer-events: auto !important;
        transition: all 0.3s ease;
    }
    .cc-menu-toggle:hover {
        background: #FFFFFF;
        box-shadow: 0 6px 20px rgba(107, 93, 82, 0.12);
        transform: scale(1.02);
    }
    .cc-menu-toggle span {
        background-color: #6B5D52;
        width: 24px;
        height: 2px;
        border-radius: 2px;
        display: block;
        transition: all 0.3s ease;
        position: relative;
        margin: 0;
    }
    .cc-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .cc-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .cc-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    /* Menu overlay achtergrond */
    .cc-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(43, 43, 43, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 99999;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
    .cc-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    /* Mobile menu - KLAUW MENU VAN RECHTS */
    .cc-header-nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        transform: translateX(110%);
        width: 360px !important;
        max-width: 92vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 100%) !important;
        box-shadow: -4px 0 30px rgba(43, 43, 43, 0.3) !important;
        overflow-y: auto !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 100000 !important;
        padding: 100px 0 40px !important;
        display: flex !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
        border: none !important;
        backdrop-filter: none !important;
    }
    .cc-header-nav.active {
        transform: translateX(0) !important;
    }
    .cc-nav-menu {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 20px !important;
        width: 100%;
        align-items: stretch;
    }
    .cc-nav-link {
        padding: 18px 24px;
        border-bottom: none;
        text-align: center;
        border-radius: 12px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        position: relative;
        background-color: #F3EFEA;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #8B6F5A;
        font-weight: 500;
    }
    .cc-nav-link:hover {
        background-color: #E8E0D8;
        transform: translateX(-5px) scale(1.02);
        box-shadow: 0 4px 12px rgba(139, 111, 90, 0.2);
    }
    .cc-nav-link.cc-nav-cta {
        margin-top: 8px;
        background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 100%);
        color: #FFFFFF;
        box-shadow: 0 4px 15px rgba(139, 111, 90, 0.3);
    }
    .cc-nav-link.cc-nav-cta:hover {
        background: linear-gradient(135deg, #6B5A4A 0%, #5A4A3A 100%);
        transform: translateX(-5px) scale(1.05);
        box-shadow: 0 6px 20px rgba(139, 111, 90, 0.4);
    }
}
.cc-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #8B6F5A;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.cc-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}
.cc-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.cc-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* Body lock bij open menu */
body.cc-menu-open {
    overflow: hidden;
}
@media (max-width: 480px) {
    .cc-header-container {
        padding: 0 12px;
    }
    .cc-logo-img {
        height: 45px !important;
        max-height: 45px !important;
        max-width: 160px !important;
    }
    .cc-header.scrolled .cc-logo-img {
        height: 40px !important;
        max-height: 40px !important;
    }
    .cc-header-nav {
        width: 280px;
        padding: 70px 0 30px;
    }
    .cc-nav-link {
        font-size: 15px;
        padding: 16px 20px;
        max-width: 100%;
    }
    .cc-nav-link .cc-nav-icon {
        font-size: 18px;
    }
}
/* Header Spacer (om content niet onder header te laten verdwijnen) */
.cc-header-spacer {
    height: 92px;
}
@media (max-width: 768px) {
    .cc-header-spacer {
        height: 74px;
    }
}
@media (max-width: 480px) {
    .cc-header-spacer {
        height: 68px;
    }
}

/* SECTIES - Met Elegante Gradients */
.cc-section {
    padding: 64px 0;
    background: linear-gradient(135deg, #F3EFEA 0%, #E8E0D8 50%, #F3EFEA 100%);
    position: relative;
}
.cc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B6F5A 0%, #C8B8A8 50%, #8B6F5A 100%);
    opacity: 0.3;
}
.cc-section-white {
    padding: 64px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%);
    position: relative;
}
.cc-section-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #C8B8A8 0%, #8B6F5A 30%, #C8B8A8 100%);
    opacity: 0.2;
}
.cc-section-accent {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 50%, #8B6F5A 100%);
    position: relative;
    overflow: hidden;
}
.cc-section-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #C8B8A8 0%, #F3EFEA 50%, #C8B8A8 100%);
    opacity: 0.4;
}
.cc-section-accent::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 184, 168, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cc-section-image {
    padding: 140px 0;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Zorg dat achtergrondafbeelding altijd zichtbaar is */
    background-attachment: scroll;
}
@media (max-width: 768px) {
    .cc-section-image {
        padding: 100px 0;
        min-height: 500px;
    }
}
@media (max-width: 480px) {
    .cc-section-image {
        padding: 80px 0;
        min-height: 450px;
    }
}
/* Lazy load background images via data attribute - wordt via JS geladen */
.cc-section-image[data-bg] {
    background-image: none;
    transition: background-image 0.3s ease;
    /* Performance optimalisaties voor PageSpeed */
    will-change: transform;
    content-visibility: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    contain: layout style paint;
}
.cc-section-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Mooie gradient overlay - foto blijft zichtbaar, tekst goed leesbaar */
    background: linear-gradient(
        180deg,
        rgba(43, 43, 43, 0.5) 0%,
        rgba(43, 43, 43, 0.45) 30%,
        rgba(43, 43, 43, 0.5) 70%,
        rgba(43, 43, 43, 0.55) 100%
    );
    z-index: 0;
    transition: opacity 0.3s ease;
}
/* "Onze aanpak" sectie - DONKERBRUINE ACHTERGROND */
.cc-section-image:has(.cc-heading-white)::before {
    /* Donkerbruine achtergrond - foto blijft subtiel zichtbaar */
    background: linear-gradient(
        180deg,
        rgba(43, 43, 43, 0.85) 0%,
        rgba(43, 43, 43, 0.8) 50%,
        rgba(43, 43, 43, 0.85) 100%
    ) !important;
    /* Geen animatie - statische donkerbruine achtergrond */
}

/* Donkerbruine achtergrond achter tekst container voor extra contrast */
.cc-section-image:has(.cc-heading-white) .cc-container {
    background: rgba(139, 111, 90, 0.6); /* Donkerbruin met transparantie */
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.cc-section-image > * {
    position: relative;
    z-index: 1;
}

/* CONTAINER */
.cc-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* HEADINGS */
/* HEADINGS - Met Subtiele Gradient Tekst */
.cc-heading-xl {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 48px;
    font-weight: 600;
    color: #8B6F5A;
    text-align: center;
    margin: 0 0 24px 0;
    line-height: 1.2;
    position: relative;
}
.cc-heading-xl::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B6F5A 0%, #C8B8A8 50%, #8B6F5A 100%);
    border-radius: 2px;
}
.cc-heading-lg {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 600;
    color: #8B6F5A;
    margin: 0 0 24px 0;
    line-height: 1.3;
    position: relative;
}

/* Als heading-lg in section-image staat, forceer wit */
.cc-section-image .cc-heading-lg {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    color: #FFFFFF !important;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2) !important;
}
.cc-heading-lg::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #8B6F5A 0%, #C8B8A8 100%);
    border-radius: 2px;
}
.cc-heading-white {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF !important;
    text-align: center;
    /* Krachtige text shadow voor maximale leesbaarheid */
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
}

/* Als heading-lg en heading-white samen gebruikt worden, forceer wit */
.cc-heading-lg.cc-heading-white,
.cc-section-image .cc-heading-lg {
    color: #FFFFFF !important;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2) !important;
    margin: 0 0 24px 0;
    position: relative;
}
.cc-heading-white::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C8B8A8 0%, #F3EFEA 50%, #C8B8A8 100%);
    border-radius: 2px;
    opacity: 0.8;
}

/* HERO TITLE - Premium Design met maximale impact */
.cc-hero-title {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 72px;
    font-weight: 900;
    color: #FFFFFF !important;
    text-align: center;
    margin: 0 0 40px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    
    /* Premium text shadow voor diepte en leesbaarheid */
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 6px 30px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 0, 0, 0.5);
    
    filter: none;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    
    position: relative;
    display: block;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}
/* Hero title in section-image - Premium */
.cc-section-image .cc-hero-title {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
}
@media (max-width: 768px) {
    .cc-hero-title {
        font-size: 48px;
        margin-bottom: 30px;
        letter-spacing: -0.5px;
        padding: 0 16px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.9),
            0 4px 16px rgba(0, 0, 0, 0.8),
            0 6px 24px rgba(0, 0, 0, 0.7);
        filter: none;
    }
    .cc-hero-subtitle {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .cc-hero-title {
        font-size: 36px;
        margin-bottom: 24px;
        line-height: 1.2;
        padding: 0 12px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.9),
            0 4px 12px rgba(0, 0, 0, 0.8),
            0 6px 18px rgba(0, 0, 0, 0.7);
        filter: none;
    }
    .cc-hero-subtitle {
        font-size: 18px;
    }
    .cc-button-cta,
    .cc-button-outline {
        padding: 18px 32px;
        font-size: 16px;
        letter-spacing: 0.5px;
        max-width: 100%;
    }
    .cc-hero-buttons {
        gap: 16px;
        margin-top: 35px;
    }
    .cc-button-cta:hover,
    .cc-button-outline:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

/* TEXT */
.cc-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #8B6F5A;
    margin: 0 0 16px 0;
    letter-spacing: 0.1px;
}
.cc-text-large {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #8B6F5A;
    margin: 0 0 20px 0;
    letter-spacing: 0.1px;
}
.cc-text-white {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF !important;
    margin: 0 0 20px 0;
    /* Krachtige text shadow voor maximale leesbaarheid */
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.7),
        0 0 16px rgba(255, 255, 255, 0.3),
        0 0 24px rgba(255, 255, 255, 0.2) !important;
}

/* Alle tekst in section-image moet wit zijn, BEHALVE buttons */
.cc-section-image *:not(.cc-button-white):not(.cc-button):not(.cc-button-white *):not(.cc-button *) {
    color: #FFFFFF !important;
}

/* Hero title en heading-xl in section-image moeten WIT zijn (overschrijf gradient EN inline styles) */
.cc-section-image .cc-hero-title,
.cc-section-image .cc-heading-xl,
.cc-section-image h1.cc-heading-xl,
.cc-section-image h1.cc-hero-title,
.cc-section-image h1.cc-heading-xl[style],
.cc-section-image h1.cc-hero-title[style],
.cc-section-image .cc-heading-xl[style*="color"],
.cc-section-image .cc-hero-title[style*="color"] {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 6px 24px rgba(0, 0, 0, 0.6) !important;
}
/* Overschrijf ook inline styles voor hero title - MAXIMALE SPECIFICITEIT */
.cc-section-image h1[style*="color"],
.cc-section-image h1.cc-heading-xl[style*="color"],
.cc-section-image h1.cc-hero-title[style*="color"] {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Specifiek voor headings in section-image - alle headings moeten wit zijn */
.cc-section-image h1,
.cc-section-image h2,
.cc-section-image h3,
.cc-section-image h4,
.cc-section-image h5,
.cc-section-image h6 {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2) !important;
    font-weight: 500;
}

/* Buttons in section-image moeten DONKER zijn voor leesbaarheid - MAXIMALE SPECIFICITEIT */
.cc-section-image .cc-button-white,
.cc-section-image .cc-button,
.cc-section-image a.cc-button-white,
.cc-section-image a.cc-button,
.cc-section-image .cc-button-group .cc-button-white,
.cc-section-image .cc-button-group .cc-button,
.cc-section-image .cc-button-group a.cc-button-white,
.cc-section-image .cc-button-group a.cc-button,
.cc-section-image div .cc-button-white,
.cc-section-image div a.cc-button-white,
.cc-section-image .cc-container .cc-button-white,
.cc-section-image .cc-container a.cc-button-white {
    color: #8B6F5A !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%) !important;
    background-image: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%), linear-gradient(135deg, #8B6F5A, #C8B8A8) !important;
    -webkit-text-fill-color: #8B6F5A !important;
}
.cc-section-image .cc-button-white:hover,
.cc-section-image .cc-button:hover,
.cc-section-image a.cc-button-white:hover,
.cc-section-image a.cc-button:hover,
.cc-section-image .cc-button-group .cc-button-white:hover,
.cc-section-image .cc-button-group .cc-button:hover,
.cc-section-image .cc-button-group a.cc-button-white:hover,
.cc-section-image .cc-button-group a.cc-button:hover,
.cc-section-image div .cc-button-white:hover,
.cc-section-image div a.cc-button-white:hover,
.cc-section-image .cc-container .cc-button-white:hover,
.cc-section-image .cc-container a.cc-button-white:hover {
    color: #8B6F5A !important;
    background: linear-gradient(135deg, #F3EFEA 0%, #FFFFFF 50%, #F3EFEA 100%) !important;
    -webkit-text-fill-color: #8B6F5A !important;
}

/* LISTS */
.cc-list {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #8B6F5A;
    margin: 0 0 20px 0;
    padding-left: 20px;
}
.cc-list li {
    margin-bottom: 8px;
}
/* List items in section-image - betere zichtbaarheid */
.cc-section-image .cc-list {
    padding-left: 24px;
    color: #FFFFFF !important; /* Witte tekst voor list */
}
.cc-section-image .cc-list li {
    color: #FFFFFF !important; /* Witte tekst voor list items */
    /* Krachtige text shadow voor maximale leesbaarheid */
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.8),
        0 0 16px rgba(255, 255, 255, 0.3),
        0 0 24px rgba(255, 255, 255, 0.2) !important;
    font-weight: 600; /* Verhoogd van 500 naar 600 voor betere leesbaarheid */
    margin-bottom: 12px;
    font-size: 18px; /* Iets groter voor betere leesbaarheid */
}

/* Als cc-text-white en cc-list samen gebruikt worden, forceer wit */
.cc-section-image .cc-list.cc-text-white,
.cc-section-image .cc-text-white.cc-list {
    color: #FFFFFF !important;
}
.cc-section-image .cc-list.cc-text-white li,
.cc-section-image .cc-text-white.cc-list li {
    color: #FFFFFF !important;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 4px 12px rgba(0, 0, 0, 0.8),
        0 0 16px rgba(255, 255, 255, 0.3),
        0 0 24px rgba(255, 255, 255, 0.2) !important;
}

/* BUTTONS */
/* BUTTONS - Met Elegante Gradients */
.cc-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 50%, #8B6F5A 100%);
    color: #FFFFFF;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 111, 90, 0.2);
}
.cc-button::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 ease;
}
.cc-button:hover::before {
    left: 100%;
}
.cc-button:hover {
    background: linear-gradient(135deg, #6B5A4A 0%, #8B6F5A 50%, #6B5A4A 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 111, 90, 0.4);
}
.cc-button:active {
    transform: translateY(0);
}
.cc-button-white {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%);
    color: #8B6F5A;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background-image: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%), linear-gradient(135deg, #8B6F5A, #C8B8A8);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 111, 90, 0.15);
}
.cc-button-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 111, 90, 0.1), transparent);
    transition: left 0.5s ease;
}
.cc-button-white:hover::before {
    left: 100%;
}
.cc-button-white:hover {
    background: linear-gradient(135deg, #F3EFEA 0%, #FFFFFF 50%, #F3EFEA 100%);
    color: #8B6F5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(139, 111, 90, 0.3);
}
.cc-button-white:active {
    transform: translateY(0);
}

/* PRICE */
.cc-price {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #2B2B2B;
    margin: 24px 0;
}

/* CONTACT INFO */
.cc-contact-info {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #8B6F5A;
    margin: 24px 0 0 0;
}
.cc-contact-info a {
    color: #8B6F5A;
    text-decoration: none;
    transition: color 0.3s ease;
}
.cc-contact-info a:hover {
    color: #2B2B2B;
    text-decoration: underline;
}

/* IMAGES - Geoptimaliseerd voor PageSpeed */
.cc-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
    box-shadow: 0 4px 12px rgba(43, 43, 43, 0.15);
    display: block;
    max-width: 100%;
    object-fit: cover;
    /* Performance optimalisaties */
    will-change: transform;
    content-visibility: auto;
    /* Optimaliseer rendering */
    image-rendering: -webkit-optimize-contrast;
    /* Voorkom layout shift */
    aspect-ratio: attr(width) / attr(height);
}

/* Image Frame met Scroll Effect - Voor Over Ons pagina */
.cc-image-frame {
    width: 100%;
    height: 100%;
    max-height: 500px; /* Vaste hoogte die overeenkomt met tekst */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(43, 43, 43, 0.15);
    position: relative;
    background: #F9F7F4;
}

.cc-image-scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 111, 90, 0.5) rgba(249, 247, 244, 0.1);
}

.cc-image-scroll::-webkit-scrollbar {
    width: 8px;
}

.cc-image-scroll::-webkit-scrollbar-track {
    background: rgba(249, 247, 244, 0.1);
    border-radius: 4px;
}

.cc-image-scroll::-webkit-scrollbar-thumb {
    background: rgba(139, 111, 90, 0.5);
    border-radius: 4px;
}

.cc-image-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 111, 90, 0.7);
}

.cc-image-frame .cc-image {
    width: 100%;
    height: auto;
    min-height: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.cc-image-half {
    width: 50%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 4px 8px rgba(43, 43, 43, 0.1);
    display: block;
}

/* LAYOUT */
.cc-center {
    text-align: center;
}
.cc-flex {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    /* Performance optimalisatie */
    will-change: transform;
    contain: layout style;
}
.cc-flex > * {
    flex: 1 1 auto;
    min-width: 300px;
    max-width: 100%;
}

/* RESPONSIVE - TABLET (768px en kleiner) */
@media (max-width: 768px) {
    /* Section-image overlay - donkerder op tablet voor betere leesbaarheid */
    .cc-section-image::before {
        background: rgba(43, 43, 43, 0.7) !important;
    }
    .cc-section-image:has(.cc-heading-white)::before {
        background: linear-gradient(
            180deg,
            rgba(43, 43, 43, 0.85) 0%,
            rgba(43, 43, 43, 0.8) 50%,
            rgba(43, 43, 43, 0.85) 100%
        ) !important;
    }
    .cc-section-image:has(.cc-heading-white) .cc-container {
        background: rgba(139, 111, 90, 0.6);
        padding: 32px 24px;
        border-radius: 10px;
    }
    
    .cc-heading-xl {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .cc-heading-lg {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .cc-heading-white {
        font-size: 28px;
    }
    .cc-container {
        padding: 0 16px;
    }
    .cc-section {
        padding: 48px 0;
    }
    .cc-section-white {
        padding: 48px 0;
    }
    .cc-section-accent {
        padding: 64px 0;
    }
    .cc-section-image {
        padding: 100px 0;
        min-height: 500px;
    }
    .cc-text {
        font-size: 15px;
    }
    .cc-text-large {
        font-size: 17px;
    }
    .cc-text-white {
        font-size: 17px;
        /* VERSTERKTE text shadow voor tablet */
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.8),
            0 4px 12px rgba(0, 0, 0, 0.7),
            0 0 16px rgba(0, 0, 0, 0.6) !important;
        font-weight: 600 !important; /* Verhoogd voor betere leesbaarheid */
    }
    /* List items in section-image - tablet aanpassingen */
    .cc-section-image .cc-list li {
        font-size: 17px !important; /* Iets groter op tablet */
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.8),
            0 4px 12px rgba(0, 0, 0, 0.7),
            0 0 16px rgba(0, 0, 0, 0.6) !important;
        font-weight: 600 !important;
    }
    .cc-button,
    .cc-button-white {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 8px auto;
        padding: 12px 24px;
        font-size: 15px;
    }
    .cc-flex {
        flex-direction: column;
        gap: 24px;
    }
    .cc-flex > * {
        flex: 1 1 100%;
        min-width: 100%;
    }
    .cc-image-half {
        width: 100%;
    }
    .cc-price {
        font-size: 22px;
    }
    .cc-contact-info {
        font-size: 16px;
    }
}

/* RESPONSIVE - MOBIEL (480px en kleiner) */
@media (max-width: 480px) {
    /* Image Frame responsive */
    .cc-image-frame {
        max-height: 350px;
    }
    /* Section-image overlay - nog donkerder op mobiel voor betere leesbaarheid */
    .cc-section-image::before {
        background: linear-gradient(
            180deg,
            rgba(43, 43, 43, 0.55) 0%,
            rgba(43, 43, 43, 0.5) 50%,
            rgba(43, 43, 43, 0.55) 100%
        ) !important;
    }
    .cc-section-image:has(.cc-heading-white)::before {
        background: linear-gradient(
            180deg,
            rgba(43, 43, 43, 0.85) 0%,
            rgba(43, 43, 43, 0.8) 50%,
            rgba(43, 43, 43, 0.85) 100%
        ) !important;
    }
    .cc-section-image:has(.cc-heading-white) .cc-container {
        background: rgba(139, 111, 90, 0.6);
        padding: 28px 20px;
        border-radius: 8px;
    }
    
    .cc-heading-xl {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    .cc-heading-lg {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .cc-heading-white {
        font-size: 24px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 4px 16px rgba(0, 0, 0, 0.7),
            0 0 20px rgba(255, 255, 255, 0.3);
    }
    .cc-container {
        padding: 0 12px;
    }
    .cc-section {
        padding: 32px 0;
    }
    .cc-section-white {
        padding: 32px 0;
    }
    .cc-section-accent {
        padding: 48px 0;
    }
    .cc-section-image {
        padding: 80px 0;
        min-height: 450px;
    }
    .cc-text {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .cc-text-large {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .cc-text-white {
        font-size: 16px;
        margin-bottom: 16px;
        /* VERSTERKTE text shadow voor mobiel - MAXIMALE zichtbaarheid */
        text-shadow: 
            0 3px 8px rgba(0, 0, 0, 0.9),
            0 6px 16px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 0, 0, 0.7) !important;
        font-weight: 700 !important; /* Extra bold voor mobiel */
    }
    /* List items in section-image - mobiel aanpassingen */
    .cc-section-image .cc-list li {
        font-size: 17px !important; /* Groter op mobiel voor betere leesbaarheid */
        text-shadow: 
            0 3px 8px rgba(0, 0, 0, 0.9),
            0 6px 16px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 0, 0, 0.7) !important;
        font-weight: 700 !important; /* Extra bold voor mobiel */
        color: #FFFFFF !important; /* Garantie witte tekst */
    }
    .cc-section-image .cc-list {
        color: #FFFFFF !important; /* Garantie witte tekst voor list */
    }
    .cc-list {
        font-size: 14px;
        padding-left: 18px;
    }
    .cc-list li {
        margin-bottom: 6px;
    }
    /* List items in section-image - mobiel specifiek */
    .cc-section-image .cc-list {
        font-size: 16px !important; /* Groter op mobiel */
        color: #FFFFFF !important; /* Garantie witte tekst */
    }
    .cc-section-image .cc-list li {
        font-size: 17px !important; /* Nog groter voor betere leesbaarheid */
        color: #FFFFFF !important; /* Garantie witte tekst */
        text-shadow: 
            0 3px 8px rgba(0, 0, 0, 0.9),
            0 6px 16px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(0, 0, 0, 0.7) !important;
        font-weight: 700 !important; /* Extra bold */
        margin-bottom: 14px; /* Meer ruimte tussen items */
    }
    .cc-button,
    .cc-button-white {
        padding: 12px 20px;
        font-size: 14px;
        margin: 6px auto;
    }
    .cc-price {
        font-size: 20px;
        margin: 20px 0;
    }
    .cc-contact-info {
        font-size: 15px;
        line-height: 1.8;
    }
    .cc-image {
        margin: 16px 0;
        border-radius: 6px;
    }
    /* Image Frame responsive */
    .cc-image-frame {
        max-height: 400px;
    }
}

/* PERFORMANCE OPTIMALISATIES - PageSpeed */
.cc-button,
.cc-button-white {
    will-change: transform;
}
/* Image attributes worden toegevoegd via PHP filter */
img.cc-image {
    content-visibility: auto;
}

/* FORMULIER STYLES */
.cc-afspraak-form {
    margin-top: 24px;
}
.cc-form-group {
    margin-bottom: 24px;
}
.cc-label {
    display: block;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 8px;
}
.cc-input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    color: #2B2B2B;
    background-color: #FFFFFF;
    border: 2px solid #C8B8A8;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.cc-input:focus {
    outline: none;
    border-color: #8B6F5A;
}
.cc-input::placeholder {
    color: #8B6F5A;
    opacity: 0.6;
}
textarea.cc-input {
    resize: vertical;
    min-height: 100px;
}
.cc-form-message {
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
}
.cc-form-message.cc-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.cc-form-message.cc-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* RESPONSIVE FORMULIER */
@media (max-width: 480px) {
    .cc-form-group {
        margin-bottom: 20px;
    }
    .cc-label {
        font-size: 15px;
    }
    .cc-input {
        font-size: 15px;
        padding: 10px 14px;
    }
}

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */

/* Wave-overgang van pagina naar footer */
.cc-footer-wave {
    display: block;
    width: 100%;
    line-height: 0;
    margin-bottom: -2px;
    overflow: hidden;
}
.cc-footer-wave svg {
    display: block;
    width: 100%;
    height: 48px;
}
@media (max-width: 768px) {
    .cc-footer-wave svg { height: 32px; }
}
@media (max-width: 480px) {
    .cc-footer-wave svg { height: 20px; }
}

.cc-footer {
    background: #2C1F14;
    color: #F0EAE2;
    font-family: 'Jost', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtiele textuur-stippen op achtergrond */
.cc-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(212,196,176,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Groot gloeiend licht linksboven */
.cc-footer::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -150px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(180,140,100,0.07) 0%, transparent 65%);
    pointer-events: none;
}

/* ---- QUOTE BANNER ---- */
.cc-footer-quote {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 40px 56px;
    border-bottom: 1px solid rgba(212,196,176,0.12);
}

.cc-footer-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    line-height: 0.5;
    color: rgba(212,196,176,0.18);
    display: block;
    margin-bottom: 24px;
    user-select: none;
}

.cc-footer-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: #E8DECE;
    max-width: 780px;
    margin: 0 auto 28px;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

.cc-footer-quote-btn {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    border: 1px solid rgba(212,196,176,0.45);
    color: #D4C4B0;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.35s ease;
}

.cc-footer-quote-btn:hover {
    background: rgba(212,196,176,0.12);
    border-color: #D4C4B0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* ---- HOOFD GRID ---- */
.cc-footer-main {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 40px 56px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px 60px;
}

@media (max-width: 1100px) {
    .cc-footer-main { grid-template-columns: 1fr 1fr; gap: 36px 40px; }
}
@media (max-width: 768px) {
    .cc-footer-main { grid-template-columns: 1fr 1fr; gap: 28px 24px; padding: 48px 24px 40px; }
    .cc-footer-quote { padding: 48px 24px 36px; }
    .cc-footer-quote-text { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .cc-footer-main { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px 32px; }
    .cc-footer-quote { padding: 40px 20px 32px; }
    .cc-footer-brand { text-align: center; }
    .cc-footer-brand .cc-footer-logo-img { margin: 0 auto 16px; }
}

/* Brand kolom */
.cc-footer-brand .cc-footer-logo-img {
    height: 64px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.85);
    margin-bottom: 20px;
    display: block;
    transition: opacity 0.3s ease;
}
.cc-footer-brand .cc-footer-logo-img:hover { opacity: 1; }

.cc-footer-tagline {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(240,234,226,0.6);
    max-width: 300px;
    margin-bottom: 32px;
}

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

.cc-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212,196,176,0.2);
    color: rgba(240,234,226,0.55);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cc-footer-social-link:hover {
    border-color: #D4C4B0;
    color: #D4C4B0;
    background: rgba(212,196,176,0.08);
    transform: translateY(-3px);
}

/* Nav kolommen */
.cc-footer-nav-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212,196,176,0.5);
    margin-bottom: 24px;
}

.cc-footer .cc-footer-nav,
.cc-footer .cc-footer-nav li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.cc-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.cc-footer-main { text-align: left !important; }
.cc-footer-quote { text-align: center; }

.cc-footer .cc-footer-nav a,
.cc-footer .cc-footer-nav a:link,
.cc-footer .cc-footer-nav a:visited {
    font-size: 0.93rem;
    color: rgba(240,234,226,0.65) !important;
    text-decoration: none !important;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 0;
}

.cc-footer .cc-footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4C4B0;
    transition: width 0.3s ease;
}

.cc-footer .cc-footer-nav a:hover {
    color: #F0EAE2 !important;
    padding-left: 6px;
}

.cc-footer .cc-footer-nav a:hover::after { width: 100%; }

.cc-footer .cc-footer-contact-mail,
.cc-footer .cc-footer-contact-mail:link,
.cc-footer .cc-footer-contact-mail:visited {
    color: rgba(240,234,226,0.65) !important;
    text-decoration: none !important;
}
.cc-footer .cc-footer-contact-mail:hover {
    color: #F0EAE2 !important;
}

.cc-footer .cc-footer-legal-link,
.cc-footer .cc-footer-legal-link:link,
.cc-footer .cc-footer-legal-link:visited {
    color: rgba(240,234,226,0.3) !important;
    text-decoration: none !important;
}
.cc-footer .cc-footer-legal-link:hover {
    color: #D4C4B0 !important;
}

.cc-footer .cc-footer-quote-btn,
.cc-footer .cc-footer-quote-btn:link,
.cc-footer .cc-footer-quote-btn:visited {
    color: #D4C4B0 !important;
    text-decoration: none !important;
}
.cc-footer .cc-footer-quote-btn:hover {
    color: #fff !important;
}

.cc-footer-brand a,
.cc-footer-brand a:link,
.cc-footer-brand a:visited {
    text-decoration: none !important;
}

.cc-footer .cc-footer-social-link,
.cc-footer .cc-footer-social-link:link,
.cc-footer .cc-footer-social-link:visited {
    color: rgba(240,234,226,0.55) !important;
    text-decoration: none !important;
}
.cc-footer .cc-footer-social-link:hover {
    color: #D4C4B0 !important;
}

/* Contact kolom */
.cc-footer-contact-mail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: rgba(240,234,226,0.65);
    text-decoration: none;
    transition: color 0.25s ease;
    margin-bottom: 20px;
}

.cc-footer-contact-mail:hover { color: #F0EAE2; }

.cc-footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(212,196,176,0.08);
    border: 1px solid rgba(212,196,176,0.15);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.cc-footer-contact-mail:hover .cc-footer-contact-icon {
    background: rgba(212,196,176,0.18);
    border-color: rgba(212,196,176,0.4);
}

/* ---- BODEM ---- */
.cc-footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(212,196,176,0.1);
    max-width: 1240px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 640px) {
    .cc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }
}

.cc-footer-copyright {
    font-size: 0.82rem;
    color: rgba(240,234,226,0.3);
    letter-spacing: 0.03em;
}

.cc-footer-legal {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cc-footer-legal-link {
    font-size: 0.82rem;
    color: rgba(240,234,226,0.3);
    text-decoration: none;
    transition: color 0.25s ease;
    padding: 2px 8px;
}
.cc-footer-legal-link:hover { color: #D4C4B0; }

.cc-footer-separator {
    color: rgba(240,234,226,0.12);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .cc-footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }
    .cc-footer::before {
        height: 30px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 C480,50 960,50 1440,0 L1440,60 L0,60 Z' fill='%233D2E1F'/%3E%3C/svg%3E") no-repeat center top;
        background-size: cover;
    }
    .cc-footer-grid {
        flex-direction: column;
        gap: 40px;
    }
    .cc-footer-top {
        padding-bottom: 40px;
    }
    .cc-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .cc-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================ */
/* DISCLAIMER & PRIVACY STYLES */
/* ============================================ */
.cc-disclaimer-privacy-kort {
    padding: 40px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(139, 111, 90, 0.2);
}
.cc-disclaimer-section,
.cc-privacy-section {
    margin-bottom: 32px;
}
.cc-disclaimer-section:last-child,
.cc-privacy-section:last-child {
    margin-bottom: 0;
}
.cc-disclaimer-title,
.cc-privacy-title {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 600;
    color: #8B6F5A;
    margin: 0 0 16px 0;
}
.cc-disclaimer-text,
.cc-privacy-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #5A5A5A;
    margin: 0 0 12px 0;
}
.cc-disclaimer-links {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(139, 111, 90, 0.1);
}
.cc-disclaimer-links-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 14px;
    color: #8B6F5A;
    text-align: center;
    margin: 0;
}
.cc-disclaimer-links-text a {
    color: #8B6F5A;
    text-decoration: none;
    transition: color 0.3s ease;
}
.cc-disclaimer-links-text a:hover {
    color: #6B5A4A;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .cc-disclaimer-privacy-kort {
        padding: 32px 0;
        margin-top: 32px;
    }
    .cc-disclaimer-title,
    .cc-privacy-title {
        font-size: 20px;
    }
    .cc-disclaimer-text,
    .cc-privacy-text {
        font-size: 14px;
    }
    .cc-disclaimer-links-text {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* PRINT STYLES */
@media print {
    .cc-section-image {
        background-image: none !important;
        background-color: #F3EFEA;
    }
    .cc-section-image::before {
        /* Op print: geen overlay */
        display: none;
    }
    /* Mobile: nog donkerder overlay voor betere leesbaarheid */
    .cc-section-image::before {
        background: rgba(43, 43, 43, 0.7) !important;
    }
    .cc-section-image:has(.cc-heading-white)::before {
        background: rgba(43, 43, 43, 0.8) !important;
    }
    .cc-button,
    .cc-button-white {
        display: none;
    }
    .cc-afspraak-form {
        display: none;
    }
    .cc-footer {
        display: none;
    }
}

/* ============================================ */
/* CRITICAL FIXES - MAXIMALE SPECIFICITEIT */
/* Overschrijf ALLES voor hero title en buttons */
/* Deze regels staan aan het einde om alles te overschrijven */
/* ============================================ */

/* Hero title MOET wit zijn - overschrijf ALLES inclusief inline styles en gradients */
.cc-section-image h1.cc-hero-title,
.cc-section-image h1.cc-heading-xl,
.cc-section-image .cc-hero-title,
.cc-section-image .cc-heading-xl,
.cc-section-image h1[class*="hero"],
.cc-section-image h1[class*="heading-xl"],
.cc-section-image .cc-container h1.cc-hero-title,
.cc-section-image .cc-container h1.cc-heading-xl,
.cc-section-image .cc-container .cc-hero-title,
.cc-section-image .cc-container .cc-heading-xl {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.7),
        0 6px 24px rgba(0, 0, 0, 0.6) !important;
}

/* Buttons MOETEN donker zijn - overschrijf ALLES */
.cc-section-image a.cc-button-white,
.cc-section-image .cc-button-white,
.cc-section-image a[class*="button-white"],
.cc-section-image [class*="button-white"],
.cc-section-image .cc-container a.cc-button-white,
.cc-section-image .cc-container .cc-button-white,
.cc-section-image .cc-button-group a.cc-button-white,
.cc-section-image .cc-button-group .cc-button-white,
.cc-section-image div a.cc-button-white,
.cc-section-image div .cc-button-white {
    color: #8B6F5A !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%) !important;
    background-image: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%), linear-gradient(135deg, #8B6F5A, #C8B8A8) !important;
    -webkit-text-fill-color: #8B6F5A !important;
}
.cc-section-image a.cc-button-white:hover,
.cc-section-image .cc-button-white:hover,
.cc-section-image a[class*="button-white"]:hover,
.cc-section-image [class*="button-white"]:hover,
.cc-section-image .cc-container a.cc-button-white:hover,
.cc-section-image .cc-container .cc-button-white:hover,
.cc-section-image .cc-button-group a.cc-button-white:hover,
.cc-section-image .cc-button-group .cc-button-white:hover,
.cc-section-image div a.cc-button-white:hover,
.cc-section-image div .cc-button-white:hover {
    color: #8B6F5A !important;
    background: linear-gradient(135deg, #F3EFEA 0%, #FFFFFF 50%, #F3EFEA 100%) !important;
    -webkit-text-fill-color: #8B6F5A !important;
}

/* ============================================ */
/* MODERN HOMEPAGE DESIGN STYLES */
/* ============================================ */

/* Hero Fullscreen - Premium Design */
.cc-hero-fullscreen {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.cc-hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(43, 43, 43, 0.4) 0%,
        rgba(43, 43, 43, 0.5) 50%,
        rgba(43, 43, 43, 0.6) 100%
    );
    z-index: 0;
}
.cc-hero-content {
    max-width: 950px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}
.cc-hero-subtitle {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF !important;
    margin: 0 0 50px 0;
    line-height: 1.7;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 16px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.3px;
}
.cc-hero-buttons {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 55px;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Premium Gradient Buttons - Hero - ULTRA PREMIUM */
.cc-button-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 52px;
    background: linear-gradient(135deg, #8B6F5A 0%, #A68B75 25%, #C8B8A8 50%, #A68B75 75%, #8B6F5A 100%);
    background-size: 300% 300%;
    color: #FFFFFF !important;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(139, 111, 90, 0.6),
        0 0 0 0 rgba(139, 111, 90, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.25),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 18px;
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.cc-button-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}
.cc-button-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.cc-button-cta:hover::before {
    left: 100%;
}
.cc-button-cta:hover::after {
    width: 300px;
    height: 300px;
}
.cc-button-cta:hover {
    background-position: 100% 0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(139, 111, 90, 0.7),
        0 0 0 10px rgba(139, 111, 90, 0.15),
        inset 0 2px 6px rgba(255, 255, 255, 0.35),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #FFFFFF !important;
    letter-spacing: 1px;
}
.cc-button-cta:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(139, 111, 90, 0.6),
        0 0 0 5px rgba(139, 111, 90, 0.1);
}

.cc-button-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 52px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 100%);
    background-size: 200% 200%;
    color: #FFFFFF !important;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 18px;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
}
.cc-button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}
.cc-button-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}
.cc-button-outline:hover::before {
    left: 100%;
}
.cc-button-outline:hover::after {
    width: 300px;
    height: 300px;
}
.cc-button-outline:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.3) 100%);
    background-position: 100% 0;
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.35),
        inset 0 2px 6px rgba(255, 255, 255, 0.4),
        inset 0 -2px 6px rgba(0, 0, 0, 0.15);
    color: #FFFFFF !important;
    letter-spacing: 1px;
}
.cc-button-outline:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}
.cc-button-cta-large {
    display: inline-block;
    padding: 22px 56px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%);
    background-size: 200% 200%;
    color: #8B6F5A !important;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 21px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.25),
        0 0 0 0 rgba(139, 111, 90, 0.2);
    border: 2px solid rgba(139, 111, 90, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}
.cc-button-cta-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 111, 90, 0.1), transparent);
    transition: left 0.6s ease;
}
.cc-button-cta-large:hover::before {
    left: 100%;
}
.cc-button-cta-large:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 35px rgba(0, 0, 0, 0.35),
        0 0 0 8px rgba(139, 111, 90, 0.1);
    border-color: rgba(139, 111, 90, 0.3);
    color: #8B6F5A !important;
}
.cc-button-cta-large:active {
    transform: translateY(-2px) scale(1.02);
}

/* Intro Section - Premium */
.cc-section-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9F7F4 0%, #FFFFFF 50%, #F9F7F4 100%);
    position: relative;
    overflow: hidden;
}
.cc-section-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 111, 90, 0.2), transparent);
}
.cc-intro-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #5A5A5A;
    margin: 0 0 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.cc-intro-highlight {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #8B6F5A;
    margin: 0 0 30px 0;
    text-align: center;
}
.cc-intro-description {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #5A5A5A;
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Section Header */
.cc-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.cc-section-intro-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #5A5A5A;
    margin: 20px auto 0;
    max-width: 700px;
}

/* Grid Layouts */
.cc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.cc-content-card {
    background: #FFFFFF;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(43, 43, 43, 0.08),
        0 0 0 1px rgba(139, 111, 90, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 111, 90, 0.1);
    position: relative;
    overflow: hidden;
}
.cc-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B6F5A, #C8B8A8, #8B6F5A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.cc-content-card:hover::before {
    transform: scaleX(1);
}
.cc-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(43, 43, 43, 0.15),
        0 0 0 1px rgba(139, 111, 90, 0.1);
}
.cc-card-title {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 600;
    color: #8B6F5A;
    margin: 0 0 16px 0;
}
.cc-image-container {
    text-align: center;
    margin-top: 40px;
}
.cc-image-container .cc-image {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.15);
    max-width: 100%;
    height: auto;
}

/* Feature Grid */
.cc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}
.cc-feature-item {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 
        0 2px 10px rgba(43, 43, 43, 0.05),
        0 0 0 1px rgba(139, 111, 90, 0.05);
    position: relative;
    overflow: hidden;
}
.cc-feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B6F5A, #C8B8A8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.cc-feature-item:hover::after {
    transform: scaleX(1);
}
.cc-feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #C8B8A8;
    box-shadow: 
        0 10px 30px rgba(139, 111, 90, 0.2),
        0 0 0 1px rgba(139, 111, 90, 0.1);
}
/* Oude emoji icons verwijderd - nu gebruiken we SVG icons */
.cc-feature-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    color: #5A5A5A;
    margin: 0;
    line-height: 1.6;
}
.cc-message-box {
    background: linear-gradient(135deg, #F3EFEA 0%, #E8E0D8 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border-left: 4px solid #8B6F5A;
    margin-top: 40px;
}
.cc-message-text {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #2B2B2B;
    margin: 0;
}

/* Aanpak Section */
.cc-section-aanpak {
    padding: 100px 0;
}
.cc-aanpak-content {
    max-width: 1000px;
    margin: 0 auto;
}
.cc-aanpak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}
.cc-aanpak-item {
    text-align: center;
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.cc-aanpak-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cc-aanpak-item:hover::before {
    opacity: 1;
}
.cc-aanpak-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.cc-aanpak-number {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 48px;
    font-weight: 700;
    color: #C8B8A8;
    margin-bottom: 12px;
    line-height: 1;
    transition: all 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cc-aanpak-item:hover .cc-aanpak-number {
    transform: scale(1.1);
    color: #F3EFEA;
}
.cc-aanpak-number {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 48px;
    font-weight: 700;
    color: #C8B8A8;
    margin-bottom: 12px;
    line-height: 1;
}
.cc-aanpak-title {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF !important;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cc-aanpak-message {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.cc-message-large {
    font-size: 22px !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
}

/* CTA Section - Premium */
.cc-cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.cc-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}
.cc-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 184, 168, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}
.cc-cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.cc-cta-title {
    font-size: 42px !important;
    margin-bottom: 24px !important;
}
.cc-cta-text {
    font-size: 20px !important;
    margin-bottom: 16px !important;
    line-height: 1.8 !important;
}
.cc-cta-subtext {
    font-size: 18px !important;
    margin-bottom: 40px !important;
    opacity: 0.9;
}
.cc-cta-button {
    margin-top: 20px;
}

/* Premium Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.cc-content-card,
.cc-feature-item,
.cc-aanpak-item {
    animation: fadeIn 0.6s ease-out backwards;
}
.cc-content-card:nth-child(1) { animation-delay: 0.1s; }
.cc-content-card:nth-child(2) { animation-delay: 0.2s; }
.cc-feature-item:nth-child(1) { animation-delay: 0.1s; }
.cc-feature-item:nth-child(2) { animation-delay: 0.15s; }
.cc-feature-item:nth-child(3) { animation-delay: 0.2s; }
.cc-feature-item:nth-child(4) { animation-delay: 0.25s; }
.cc-feature-item:nth-child(5) { animation-delay: 0.3s; }
.cc-feature-item:nth-child(6) { animation-delay: 0.35s; }
.cc-aanpak-item:nth-child(1) { animation-delay: 0.1s; }
.cc-aanpak-item:nth-child(2) { animation-delay: 0.15s; }
.cc-aanpak-item:nth-child(3) { animation-delay: 0.2s; }
.cc-aanpak-item:nth-child(4) { animation-delay: 0.25s; }
.cc-aanpak-item:nth-child(5) { animation-delay: 0.3s; }
.cc-aanpak-item:nth-child(6) { animation-delay: 0.35s; }

/* ============================================ */
/* PREMIUM ICONS & EFFECTS */
/* ============================================ */

/* Hero Premium Icon - Veel kleiner */
.cc-hero-premium {
    position: relative;
}
.cc-hero-icon-wrapper {
    margin-bottom: 15px;
    animation: none !important;
    opacity: 0.5;
    visibility: visible !important;
    transform: none !important;
}
.cc-hero-icon-wrapper svg {
    opacity: 0.6 !important;
    visibility: visible !important;
}
.cc-hero-icon {
    width: 20px !important;
    height: 20px !important;
    animation: none !important;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.1));
    display: block !important;
    margin: 0 auto;
    opacity: 0.6 !important;
    visibility: visible !important;
    max-width: 20px !important;
    max-height: 20px !important;
    transform: none !important;
}
.cc-hero-icon circle,
.cc-hero-icon path {
    transition: none !important;
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Icons */
.cc-button-icon {
    width: 16px !important;
    height: 16px !important;
    margin-right: 0 !important;
    transition: transform 0.3s ease;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
    max-width: 16px !important;
    max-height: 16px !important;
}
.cc-button-cta:hover .cc-button-icon,
.cc-button-outline:hover .cc-button-icon {
    transform: translateX(3px);
}
.cc-button-cta-large .cc-button-icon {
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px;
    max-width: 18px !important;
    max-height: 18px !important;
}

/* Intro Premium */
.cc-section-intro-premium {
    position: relative;
    overflow: hidden;
}
.cc-intro-icon-wrapper {
    margin-bottom: 15px;
    animation: none !important;
    opacity: 0.5;
    visibility: visible !important;
    transform: none !important;
}
.cc-intro-icon-wrapper svg {
    opacity: 0.6 !important;
    visibility: visible !important;
}
.cc-intro-icon {
    width: 18px !important;
    height: 18px !important;
    filter: drop-shadow(0 1px 2px rgba(139, 111, 90, 0.1));
    display: block !important;
    margin: 0 auto;
    opacity: 0.6 !important;
    visibility: visible !important;
    max-width: 18px !important;
    max-height: 18px !important;
}
.cc-intro-icon circle,
.cc-intro-icon path {
    transition: none !important;
}

/* Section Headers met Icons */
.cc-section-header-premium {
    position: relative;
}
.cc-section-icon-wrapper {
    margin-bottom: 12px;
    display: inline-block;
    animation: none !important;
    opacity: 0.5;
    transform: none !important;
}
.cc-section-icon {
    width: 16px !important;
    height: 16px !important;
    filter: drop-shadow(0 1px 2px rgba(139, 111, 90, 0.1));
    transition: none !important;
    opacity: 0.6 !important;
    max-width: 16px !important;
    max-height: 16px !important;
    transform: none !important;
}
.cc-section-icon-wrapper:hover .cc-section-icon {
    transform: none !important;
}
.cc-section-icon-white .cc-section-icon {
    filter: drop-shadow(0 2px 5px rgba(255, 255, 255, 0.2));
}

/* Premium Cards */
.cc-card-premium {
    position: relative;
    overflow: visible;
}
.cc-card-icon-wrapper {
    margin-bottom: 12px;
    display: inline-block;
    padding: 8px;
    background: linear-gradient(135deg, rgba(139, 111, 90, 0.05), rgba(200, 184, 168, 0.05));
    border-radius: 6px;
    transition: all 0.4s ease;
}
.cc-card-icon {
    width: 16px !important;
    height: 16px !important;
    transition: none !important;
    opacity: 0.6 !important;
    max-width: 16px !important;
    max-height: 16px !important;
    transform: none !important;
}
.cc-card-premium:hover .cc-card-icon-wrapper {
    background: linear-gradient(135deg, rgba(139, 111, 90, 0.15), rgba(200, 184, 168, 0.15));
    transform: translateY(-3px);
}
.cc-card-premium:hover .cc-card-icon {
    transform: none !important;
}

/* Premium Feature Items */
.cc-feature-grid-premium {
    position: relative;
}
.cc-feature-premium {
    position: relative;
    overflow: visible;
}
.cc-feature-icon-wrapper {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    transition: all 0.4s ease;
}
.cc-feature-icon-svg {
    width: 18px !important;
    height: 18px !important;
    transition: none !important;
    transform: none !important;
    filter: drop-shadow(0 1px 2px rgba(139, 111, 90, 0.1));
    display: block !important;
    margin: 0 auto;
    opacity: 0.6 !important;
    max-width: 18px !important;
    max-height: 18px !important;
}
.cc-feature-icon-svg circle,
.cc-feature-icon-svg path,
.cc-feature-icon-svg rect {
    transition: none !important;
}
.cc-feature-premium:hover .cc-feature-icon-svg circle,
.cc-feature-premium:hover .cc-feature-icon-svg path {
    stroke-width: 3.5;
}
.cc-feature-premium:hover .cc-feature-icon-wrapper {
    transform: translateY(-8px);
}
.cc-feature-premium:hover .cc-feature-icon-svg {
    transform: none !important;
    filter: drop-shadow(0 1px 2px rgba(139, 111, 90, 0.1));
}

/* Premium Message Box */
.cc-message-box-premium {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 40px;
    background: linear-gradient(135deg, #F3EFEA 0%, #E8E0D8 50%, #F3EFEA 100%);
    border-left: 5px solid #8B6F5A;
    box-shadow: 0 6px 25px rgba(139, 111, 90, 0.15);
}
.cc-message-icon {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
    animation: checkmark 0.6s ease-out 0.3s backwards;
    display: block !important;
    opacity: 0.6 !important;
    max-width: 16px !important;
    max-height: 16px !important;
}
.cc-message-icon circle,
.cc-message-icon path {
    transition: all 0.3s ease;
}
.cc-message-icon-white {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    animation: checkmark 0.6s ease-out 0.3s backwards;
    opacity: 0.6 !important;
    max-width: 16px !important;
    max-height: 16px !important;
}
.cc-message-icon-white circle,
.cc-message-icon-white path {
    transition: all 0.3s ease;
}
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Premium Section Gradient */
.cc-section-premium-gradient {
    background: linear-gradient(135deg, #F3EFEA 0%, #E8E0D8 30%, #F9F7F4 60%, #E8E0D8 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}
.cc-section-premium-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 111, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-20px, -30px) scale(1.1);
    }
}

/* Premium Aanpak Section */
.cc-section-aanpak-premium {
    position: relative;
}
.cc-aanpak-grid-premium {
    position: relative;
}
.cc-aanpak-premium {
    position: relative;
    overflow: visible;
}
.cc-aanpak-icon-wrapper {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    opacity: 0.5;
    transition: all 0.4s ease;
}
.cc-aanpak-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.15));
    transform: none !important;
    display: block;
    opacity: 0.7;
}
.cc-aanpak-icon circle,
.cc-aanpak-icon path,
.cc-aanpak-icon rect {
    transition: none !important;
}
.cc-aanpak-premium:hover .cc-aanpak-icon circle,
.cc-aanpak-premium:hover .cc-aanpak-icon path,
.cc-aanpak-premium:hover .cc-aanpak-icon rect {
    stroke-width: 3;
    fill-opacity: 0.2;
}
.cc-aanpak-premium:hover .cc-aanpak-icon-wrapper {
    opacity: 1;
    transform: none !important;
}
.cc-aanpak-message-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.cc-message-icon-white {
    width: 24px;
    height: 24px;
    animation: checkmark 0.6s ease-out 0.3s backwards;
    opacity: 0.7;
}

/* Premium CTA Section */
.cc-cta-premium {
    position: relative;
    overflow: hidden;
}
.cc-cta-icon-wrapper {
    margin-bottom: 15px;
    animation: none !important;
    opacity: 0.5;
    transform: none !important;
}
.cc-cta-icon {
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.1));
    display: block !important;
    margin: 0 auto;
    opacity: 0.6 !important;
    max-width: 20px !important;
    max-height: 20px !important;
}
.cc-cta-icon circle,
.cc-cta-icon path {
    transition: none !important;
}

/* Premium Image Container */
.cc-image-premium {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.cc-image-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 111, 90, 0.05), rgba(200, 184, 168, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}
.cc-image-premium:hover::before {
    opacity: 1;
}
.cc-image-premium .cc-image {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cc-image-premium:hover .cc-image {
    transform: scale(1.05);
}

/* Premium Section White */
.cc-section-premium {
    position: relative;
    overflow: hidden;
}
.cc-section-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 111, 90, 0.2), transparent);
}

/* Responsive Premium Icons */
@media (max-width: 768px) {
    .cc-hero-icon {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
    }
    .cc-section-icon {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
    }
    .cc-card-icon {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
    }
    .cc-feature-icon-svg {
        width: 16px !important;
        height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
    }
    .cc-aanpak-icon-wrapper {
        width: 14px !important;
        height: 14px !important;
        top: 6px !important;
        right: 6px !important;
    }
    .cc-message-icon,
    .cc-message-icon-white {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
    }
    .cc-cta-icon {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
    }
    .cc-intro-icon {
        width: 16px !important;
        height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
    }
    .cc-message-box-premium {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .cc-hero-icon {
        width: 16px !important;
        height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
    }
    .cc-intro-icon {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
    }
    .cc-button-icon {
        width: 14px !important;
        height: 14px !important;
        max-width: 14px !important;
        max-height: 14px !important;
    }
}

/* Extra Premium Effects */
.cc-hero-premium-content {
    position: relative;
}
.cc-hero-premium-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Premium Card Hover Effects */
.cc-card-premium {
    position: relative;
}
.cc-card-premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8B6F5A, #C8B8A8, #8B6F5A);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}
.cc-card-premium:hover::after {
    opacity: 0.3;
}
/* Zorg dat SVG icons altijd zichtbaar zijn en correct renderen */
.cc-hero-icon,
.cc-intro-icon,
.cc-section-icon,
.cc-card-icon,
.cc-feature-icon-svg,
.cc-aanpak-icon,
.cc-message-icon,
.cc-message-icon-white,
.cc-cta-icon,
.cc-button-icon {
    display: block;
    flex-shrink: 0;
    overflow: visible;
}
.cc-hero-icon svg,
.cc-intro-icon svg,
.cc-section-icon svg,
.cc-card-icon svg,
.cc-feature-icon-svg svg,
.cc-aanpak-icon svg,
.cc-message-icon svg,
.cc-message-icon-white svg,
.cc-cta-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}
/* Button icons zijn inline */
.cc-button-icon {
    display: inline-block;
    vertical-align: middle;
}
/* Zorg dat alle SVG elementen correct renderen */
svg.cc-hero-icon,
svg.cc-intro-icon,
svg.cc-section-icon,
svg.cc-card-icon,
svg.cc-feature-icon-svg,
svg.cc-aanpak-icon,
svg.cc-message-icon,
svg.cc-message-icon-white,
svg.cc-cta-icon {
    display: block !important;
    overflow: visible !important;
    visibility: visible !important;
}
/* Button icons zijn inline */
svg.cc-button-icon {
    display: inline-block !important;
    overflow: visible !important;
    visibility: visible !important;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}
/* Fix voor SVG rendering - Zorg dat alle icons altijd zichtbaar zijn */
.cc-hero-icon-wrapper svg,
.cc-intro-icon-wrapper svg,
.cc-section-icon-wrapper svg,
.cc-card-icon-wrapper svg,
.cc-feature-icon-wrapper svg,
.cc-aanpak-icon-wrapper svg,
.cc-message-box svg,
.cc-cta-icon-wrapper svg,
svg.cc-hero-icon,
svg.cc-intro-icon,
svg.cc-section-icon,
svg.cc-card-icon,
svg.cc-feature-icon-svg,
svg.cc-aanpak-icon,
svg.cc-message-icon,
svg.cc-message-icon-white,
svg.cc-cta-icon {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    box-sizing: border-box !important;
}
/* Zorg dat icon wrappers correct zijn */
.cc-hero-icon-wrapper,
.cc-intro-icon-wrapper,
.cc-section-icon-wrapper,
.cc-card-icon-wrapper,
.cc-feature-icon-wrapper,
.cc-aanpak-icon-wrapper,
.cc-cta-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Fix voor button icons */
.cc-button-cta,
.cc-button-outline,
.cc-button-cta-large {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}
.cc-button-cta .cc-button-icon,
.cc-button-outline .cc-button-icon,
.cc-button-cta-large .cc-button-icon,
.cc-button-cta svg.cc-button-icon,
.cc-button-outline svg.cc-button-icon,
.cc-button-cta-large svg.cc-button-icon {
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 0 !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 16px !important;
    max-height: 16px !important;
}
.cc-button-cta-large .cc-button-icon,
.cc-button-cta-large svg.cc-button-icon {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

/* Premium Feature Glow */
.cc-feature-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(139, 111, 90, 0.2), transparent);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}
.cc-feature-premium:hover::before {
    width: 150px;
    height: 150px;
}

/* Premium Aanpak Glow */
.cc-aanpak-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}
.cc-aanpak-premium:hover::before {
    width: 120px;
    height: 120px;
}

/* Premium Section Dividers */
.cc-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(139, 111, 90, 0.3), transparent);
}

/* Premium Text Effects */
.cc-intro-highlight {
    position: relative;
    display: inline-block;
}
.cc-intro-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B6F5A, #C8B8A8, #8B6F5A);
    border-radius: 2px;
    animation: underlineExpand 0.8s ease-out 0.5s backwards;
}
@keyframes underlineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cc-hero-fullscreen {
        min-height: 85vh;
        padding: 100px 0;
    }
    .cc-hero-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }
    .cc-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    .cc-button-cta,
    .cc-button-outline {
        width: 100%;
        max-width: 320px;
        padding: 20px 40px;
        font-size: 17px;
        letter-spacing: 0.6px;
    }
    .cc-button-cta:hover,
    .cc-button-outline:hover {
        transform: translateY(-3px) scale(1.03);
    }
    .cc-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cc-aanpak-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cc-cta-title {
        font-size: 32px !important;
    }
    .cc-section-intro {
        padding: 60px 0;
    }
    .cc-intro-text {
        font-size: 18px;
    }
    .cc-intro-highlight {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cc-feature-grid {
        grid-template-columns: 1fr;
    }
    .cc-aanpak-grid {
        grid-template-columns: 1fr;
    }
    .cc-aanpak-number {
        font-size: 36px;
    }
    .cc-content-card {
        padding: 30px 20px;
    }
    .cc-feature-item {
        padding: 24px 20px;
    }
}

/* ============================================ */
/* ELEMENTOR HEADER INSTELLINGEN - Custom CSS */
/* ============================================ */

/* Fix voor logo bug - voorkom groot logo boven header bij laden */
.site-header .site-branding .site-logo,
.site-header .site-branding .site-logo img,
.site-header .site-branding .site-title,
.site-header .site-branding .site-title a {
    max-width: 200px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    overflow: hidden !important;
}

/* Elementor Header Logo Styling */
.site-header .site-branding .site-logo img {
    width: auto !important;
    max-width: 200px !important;
    height: 60px !important;
    max-height: 60px !important;
    object-fit: contain !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

/* Elementor Header Title Styling */
.site-header .site-branding .site-title {
    font-family: 'Montserrat', 'Lato', sans-serif !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .site-branding .site-title a {
    color: #8B6F5A !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.site-header .site-branding .site-title a:hover {
    color: #2B2B2B !important;
}

/* Elementor Header Container */
.site-header.dynamic-header {
    position: relative !important;
    z-index: 9999 !important;
}

.site-header .header-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 16px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px !important;
}

/* Elementor Header Branding */
.site-header .site-branding {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    max-width: 200px !important;
    overflow: hidden !important;
}

/* Verberg logo/title als het verborgen moet zijn */
.site-header .site-branding .site-logo.hide,
.site-header .site-branding .site-title.hide {
    display: none !important;
}

/* Responsive Elementor Header */
@media (max-width: 768px) {
    .site-header .site-branding .site-logo img {
        max-width: 150px !important;
        height: 50px !important;
        max-height: 50px !important;
    }
    
    .site-header .site-branding .site-title {
        font-size: 20px !important;
    }
    
    .site-header .header-inner {
        padding: 12px 15px !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .site-header .site-branding .site-logo img {
        max-width: 120px !important;
        height: 45px !important;
        max-height: 45px !important;
    }
    
    .site-header .site-branding .site-title {
        font-size: 18px !important;
    }
    
    .site-header .header-inner {
        padding: 10px 12px !important;
        gap: 15px !important;
    }
}

/* Fix voor FOUT (Flash of Unstyled Content) - verberg logo tot CSS geladen is */
/* Gebruik inline style in HTML of JavaScript om dit te activeren */
.site-header .site-branding {
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Alternatief: gebruik will-change voor betere performance */
.site-header .site-branding .site-logo img {
    will-change: transform !important;
    content-visibility: auto !important;
}

/* Zorg dat logo niet buiten header container komt */
.site-header {
    overflow: hidden !important;
    position: relative !important;
}

.site-header .site-branding {
    position: relative !important;
    z-index: 1 !important;
}

/* CRITICAL FIX: Zorg dat ALLE SVG icons altijd zichtbaar zijn */
svg.cc-hero-icon,
svg.cc-intro-icon,
svg.cc-section-icon,
svg.cc-card-icon,
svg.cc-feature-icon-svg,
svg.cc-aanpak-icon,
svg.cc-message-icon,
svg.cc-message-icon-white,
svg.cc-cta-icon {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: inherit !important;
    height: inherit !important;
}
/* Button icons zijn inline en hebben eigen sizing */
svg.cc-button-icon {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}

/* Fix voor SVG paths en circles binnen icons */
.cc-hero-icon path,
.cc-hero-icon circle,
.cc-intro-icon path,
.cc-intro-icon circle,
.cc-button-icon path,
.cc-button-icon circle {
    stroke: currentColor !important;
    fill: none !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Zorg dat button icons altijd zichtbaar zijn */
.cc-button-cta svg,
.cc-button-outline svg,
.cc-button-cta-large svg {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 16px !important;
    height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
}
.cc-button-cta-large svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

/* ============================================ */
/* NIEUWE ULTIMATE STYLES - Voor nieuwe pagina's */
/* Toegevoegd: 2 februari 2026 */
/* ============================================ */

/* HERO ULTIMATE - Premium Hero Sectie */
.cc-hero-ultimate {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cc-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.cc-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    transform: translateZ(0);
}
.cc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(43, 43, 43, 0.5) 0%,
        rgba(43, 43, 43, 0.4) 50%,
        rgba(43, 43, 43, 0.5) 100%
    );
    z-index: 1;
}
.cc-hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cc-hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.cc-hero-content-ultimate {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}
/* Hero Intro Box - Super Mooi Gecentreerd - WITTE TEKST */
.cc-hero-intro-box {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 44px 40px;
    border-radius: 24px;
    margin: 44px auto;
    max-width: 740px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background-color, color;
}
.cc-hero-intro-box:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}
.cc-hero-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B6F5A 0%, #C8B8A8 50%, #8B6F5A 100%);
    background-size: 200% 100%;
    border-radius: 24px 24px 0 0;
    animation: shimmerGradient 3s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(139, 111, 90, 0.4);
    z-index: 1;
}

@keyframes shimmerGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.cc-hero-intro-text {
    margin: 0 auto 24px auto;
    font-size: 19px;
    line-height: 1.8;
    color: #FFFFFF !important;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: center;
    max-width: 100%;
    transition: color 0.4s ease;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 4px 16px rgba(0, 0, 0, 0.5) !important;
}
.cc-hero-intro-box:hover .cc-hero-intro-text {
    color: #FFFFFF !important;
}
.cc-hero-intro-question {
    margin: 28px auto 16px auto;
    font-weight: 700;
    color: #FFFFFF !important;
    font-size: 19px;
    font-family: 'Montserrat', 'Lato', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 8px;
    transition: color 0.4s ease;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 4px 16px rgba(0, 0, 0, 0.5) !important;
}
.cc-hero-intro-box:hover .cc-hero-intro-question {
    color: #FFFFFF !important;
}
.cc-hero-intro-question::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    animation: expandLine 0.6s ease-out 0.5s both;
    transition: background 0.4s ease;
    opacity: 0.8;
}
.cc-hero-intro-box:hover .cc-hero-intro-question::after {
    background: #FFFFFF;
    opacity: 1;
}
@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}
.cc-hero-intro-list {
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
    text-align: left;
    max-width: 600px;
    display: inline-block;
}
.cc-hero-intro-list li {
    position: relative;
    padding-left: 32px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.75;
    color: #FFFFFF !important;
    font-family: 'Montserrat', 'Lato', sans-serif;
    transition: color 0.4s ease;
    border-radius: 8px;
    padding-right: 12px;
    opacity: 1;
    animation: fadeInListItem 0.5s ease-out forwards;
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.5) !important;
}
.cc-hero-intro-box:hover .cc-hero-intro-list li {
    color: #FFFFFF !important;
}
.cc-hero-intro-list li:nth-child(1) { animation-delay: 0.1s; }
.cc-hero-intro-list li:nth-child(2) { animation-delay: 0.2s; }
.cc-hero-intro-list li:nth-child(3) { animation-delay: 0.3s; }
.cc-hero-intro-list li:nth-child(4) { animation-delay: 0.4s; }
.cc-hero-intro-list li:nth-child(5) { animation-delay: 0.5s; }
@keyframes fadeInListItem {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Hero Intro Box Transparent - Voor Cursus Pagina */
.cc-hero-intro-box-transparent {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 36px;
    border-radius: 20px;
    margin: 36px auto;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}
.cc-hero-intro-text-transparent {
    margin: 0 auto 20px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #2B2B2B;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-align: center;
    max-width: 100%;
}
.cc-hero-intro-question-transparent {
    margin: 24px auto 16px auto;
    font-weight: 700;
    color: #8B6F5A;
    font-size: 20px;
    font-family: 'Montserrat', 'Lato', sans-serif;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.cc-hero-intro-list-transparent {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    max-width: 100%;
    text-align: left;
    display: inline-block;
}
.cc-hero-intro-list-transparent li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: #2B2B2B;
    text-align: left;
    opacity: 1;
    animation: none;
}
.cc-hero-intro-list-transparent li:before {
    content: '•';
    position: absolute;
    left: 12px;
    color: #8B6F5A;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .cc-hero-intro-box-transparent {
        padding: 32px 24px;
        margin: 28px auto;
        max-width: 95%;
    }
    .cc-hero-intro-text-transparent {
        font-size: 16px;
        line-height: 1.7;
    }
    .cc-hero-intro-question-transparent {
        font-size: 18px;
    }
    .cc-hero-intro-list-transparent li {
        font-size: 15px;
        padding-left: 28px;
    }
}
.cc-hero-intro-list li:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
    padding-left: 36px;
}
.cc-hero-intro-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 4px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.cc-hero-intro-list li:hover:before {
    background: rgba(255, 255, 255, 0.4);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.cc-badge-icon {
    width: 18px;
    height: 18px;
    color: #FFFFFF;
}
.cc-hero-badge span {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}
.cc-hero-title-ultimate {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 28px 0;
    line-height: 1.15;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation: fadeInDown 0.8s ease-out;
}
.cc-hero-title-accent {
    color: #FFFFFF !important;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6) !important;
    font-weight: 700 !important;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cc-hero-title-line {
    display: block;
}
.cc-hero-title-accent {
    color: #FFFFFF !important;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 255, 255, 0.2) !important;
}
.cc-hero-subtitle-ultimate {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 40px 0;
    line-height: 1.7;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.7),
        0 4px 16px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.cc-hero-buttons-ultimate {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px auto 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 0;
    position: relative;
}

/* Force center alignment - alle knoppen 100% in het midden */
.cc-hero-buttons-ultimate > a:only-child,
.cc-hero-buttons-ultimate > a {
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: auto !important;
    max-width: 100% !important;
}
/* Alle button-groepen gecentreerd - 100% in het midden */
.cc-button-group,
.cc-hero-buttons-ultimate {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px 16px !important;
    width: 100% !important;
    text-align: center !important;
}
.cc-button-group > *,
.cc-hero-buttons-ultimate > * {
    margin: 0 !important;
}

/* BUTTONS ULTIMATE - SUPER MOOI! */
.cc-button-primary-ultimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 44px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 50%, #8B6F5A 100%);
    background-size: 200% 200%;
    color: #FFFFFF !important;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(139, 111, 90, 0.5),
        0 4px 12px rgba(139, 111, 90, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    will-change: transform, box-shadow, background-position;
    text-align: center;
    flex-shrink: 0;
}
.cc-button-primary-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}
.cc-button-primary-ultimate:hover::before {
    left: 100%;
}
.cc-button-primary-ultimate:hover {
    transform: translateY(-5px) scale(1.08);
    background-position: 100% 0;
    box-shadow: 
        0 14px 40px rgba(139, 111, 90, 0.6),
        0 6px 20px rgba(139, 111, 90, 0.5),
        0 0 0 6px rgba(139, 111, 90, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}
.cc-button-primary-ultimate:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}
.cc-button-secondary-ultimate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 44px;
    margin: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    color: #FFFFFF !important;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    will-change: transform, box-shadow, background;
    text-align: center;
}
.cc-button-secondary-ultimate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}
.cc-button-secondary-ultimate:hover::before {
    left: 100%;
}
.cc-button-secondary-ultimate:hover {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 
        0 14px 40px rgba(0, 0, 0, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}
.cc-button-secondary-ultimate:active {
    transform: translateY(-2px) scale(1.05);
    transition: all 0.1s ease;
}
.cc-button-text {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    text-align: center;
    white-space: nowrap;
}
.cc-button-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    transition: transform 0.3s ease;
    margin-left: 0;
    display: block;
}
.cc-button-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    flex-grow: 0;
    transition: transform 0.3s ease;
    margin-right: 0;
    display: block;
}
.cc-button-primary-ultimate:hover .cc-button-arrow,
.cc-button-secondary-ultimate:hover .cc-button-arrow {
    transform: translateX(5px);
}
.cc-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.cc-button-primary-ultimate:hover .cc-button-shine,
.cc-button-secondary-ultimate:hover .cc-button-shine {
    left: 100%;
}

/* SCROLL INDICATOR */
.cc-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.cc-scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}
.cc-scroll-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(15px);
    }
}

/* SECTION PADDING UTILITY */
.cc-section-padding {
    padding: 80px 0;
}
/* Voorkom overlappende secties */
.cc-section + .cc-section,
.cc-section-white + .cc-section-white,
.cc-section + .cc-section-white,
.cc-section-white + .cc-section,
.cc-section-accent + .cc-section,
.cc-section + .cc-section-accent,
.cc-section-white + .cc-section-accent,
.cc-section-accent + .cc-section-white {
    margin-top: 0;
}
/* Zorg voor consistente spacing tussen secties */
.cc-section-padding + .cc-section-padding {
    margin-top: 0;
}

/* HEADING MODERN */
.cc-heading-modern {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 42px;
    font-weight: 600;
    color: #8B6F5A;
    margin: 0 0 32px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.cc-heading-modern.cc-center {
    text-align: center;
}
.cc-section-accent .cc-heading-modern {
    color: #FFFFFF;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

/* OFFER CARDS GRID */
.cc-offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 48px;
}
.cc-offer-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 
        0 4px 20px rgba(43, 43, 43, 0.08),
        0 0 0 1px rgba(139, 111, 90, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 111, 90, 0.1);
    position: relative;
    overflow: hidden;
}
.cc-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B6F5A, #C8B8A8, #8B6F5A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.cc-offer-card:hover::before {
    transform: scaleX(1);
}
.cc-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(43, 43, 43, 0.15),
        0 0 0 1px rgba(139, 111, 90, 0.1),
        0 0 30px rgba(139, 111, 90, 0.08);
}
.cc-offer-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}
.cc-offer-card-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 100%);
    color: #FFFFFF;
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(139, 111, 90, 0.3);
    transition: box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}
/* Lichte shine op hover - geen ventilator-rotatie */
.cc-offer-card:hover .cc-offer-card-number {
    box-shadow: 0 6px 20px rgba(139, 111, 90, 0.4), 0 0 20px rgba(139, 111, 90, 0.15);
}
/* Lichte shine op de cijfers */
.cc-offer-card-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}
.cc-offer-card:hover .cc-offer-card-number::before {
    left: 100%;
}
.cc-offer-card-title {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2B2B2B;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}
.cc-offer-card-content {
    margin-top: 16px;
}
.cc-offer-card-description {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5A5A5A;
    margin: 0;
}

/* WERKOPDRACHTEN IN BEIGE VAKKEN */
.cc-werkopdracht-box {
    background: #FFF9F5;
    border: 2px solid rgba(139, 111, 90, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    position: relative;
}

.cc-werkopdracht-box::before {
    content: '📝 Werkopdracht';
    display: block;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #8B6F5A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(139, 111, 90, 0.15);
}

.cc-werkopdracht-box .cc-text,
.cc-werkopdracht-box p {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #8B6F5A;
    margin: 0 0 12px 0;
}

.cc-werkopdracht-box .cc-text:last-child,
.cc-werkopdracht-box p:last-child {
    margin-bottom: 0;
}

.cc-werkopdracht-box ul,
.cc-werkopdracht-box ol {
    margin: 12px 0;
    padding-left: 24px;
}

.cc-werkopdracht-box li {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #8B6F5A;
    margin-bottom: 8px;
}

.cc-werkopdracht-box strong {
    color: #6B5A4A;
    font-weight: 600;
}

/* INTRO SECTION ULTIMATE */
.cc-section-intro-ultimate {
    padding: 100px 0;
    background: linear-gradient(135deg, #F9F7F4 0%, #FFFFFF 50%, #F9F7F4 100%);
    position: relative;
}
.cc-intro-card {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 
        0 8px 40px rgba(43, 43, 43, 0.1),
        0 0 0 1px rgba(139, 111, 90, 0.05);
}
.cc-glass-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(139, 111, 90, 0.1);
}
.cc-intro-icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(139, 111, 90, 0.1), rgba(200, 184, 168, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-intro-icon-svg {
    width: 60px;
    height: 60px;
    color: #8B6F5A;
}
.cc-intro-description-ultimate {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #5A5A5A;
    margin: 0 0 20px 0;
}
.cc-intro-description-ultimate:last-child {
    margin-bottom: 0;
}
.cc-intro-highlight-ultimate {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #8B6F5A;
    margin: 32px 0 24px 0;
    line-height: 1.6;
    padding: 24px;
    background: #FFF9F5;
    border-left: 4px solid #8B6F5A;
    border-radius: 8px;
}

/* SECTION WHITE ULTIMATE */
.cc-section-white-ultimate {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 50%, #FFFFFF 100%);
}
.cc-section-header-ultimate {
    text-align: center;
    margin-bottom: 48px;
}
.cc-section-description {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    color: #5A5A5A;
    margin-top: 16px;
}

/* ANIMATIONS */
.cc-fade-in {
    animation: fadeInUp 0.8s ease-out;
}
.cc-slide-up {
    animation: slideUp 0.8s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE - ULTIMATE STYLES */
@media (max-width: 768px) {
    .cc-hero-ultimate {
        min-height: 80vh;
    }
    .cc-hero-content-wrapper {
        padding: 80px 0;
    }
    .cc-hero-title-ultimate {
        font-size: 42px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.8),
            0 4px 20px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-subtitle-ultimate {
        font-size: 18px;
        margin-bottom: 32px;
        padding: 0 16px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.7),
            0 4px 16px rgba(0, 0, 0, 0.5) !important;
    }
    /* Hero Intro Box Mobiel - Super Mooi met Witte Tekst */
    .cc-hero-intro-box {
        padding: 32px 24px !important;
        margin: 32px auto !important;
        max-width: 100% !important;
        border-radius: 18px !important;
        background: rgba(0, 0, 0, 0.45) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 
            0 10px 36px rgba(0, 0, 0, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.2) !important;
    }
    .cc-hero-intro-box:hover {
        transform: none !important;
    }
    .cc-hero-intro-text {
        font-size: 17px !important;
        line-height: 1.75 !important;
        text-align: center !important;
        margin-bottom: 24px !important;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 1px 4px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-intro-question {
        text-align: center !important;
        font-size: 17px !important;
        margin: 24px 0 16px 0 !important;
        display: block !important;
        width: 100% !important;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-intro-question::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .cc-hero-intro-list {
        padding-left: 0 !important;
        text-align: left !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
        width: 100% !important;
    }
    .cc-hero-intro-list li {
        font-size: 16px !important;
        line-height: 1.7 !important;
        padding-left: 32px !important;
        padding-right: 8px !important;
        margin-bottom: 12px !important;
        text-align: left !important;
        opacity: 1 !important;
        animation: none !important;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.8),
            0 4px 12px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-intro-box:hover .cc-hero-intro-list li {
        color: #FFFFFF !important;
    }
    .cc-hero-intro-list li:before {
        width: 22px !important;
        height: 22px !important;
        font-size: 16px !important;
    }
    .cc-hero-intro-list li:hover {
        transform: none !important;
        background-color: transparent !important;
        padding-left: 32px !important;
    }
    .cc-hero-buttons-ultimate {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 12px !important;
        padding: 0 20px !important;
        margin: 28px auto 0 !important;
        text-align: center !important;
        display: flex !important;
    }
    .cc-hero-buttons-ultimate > a {
        width: auto !important;
        max-width: 95% !important;
        margin: 0 !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .cc-hero-content-ultimate {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .cc-button-primary-ultimate,
    .cc-button-secondary-ultimate {
        width: auto !important;
        max-width: 90% !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 12px 24px !important;
        margin: 0 auto !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        min-height: 44px !important;
        max-height: 44px !important;
        border-radius: 50px;
        box-shadow: 
            0 4px 12px rgba(139, 111, 90, 0.4),
            0 2px 6px rgba(139, 111, 90, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.25),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        letter-spacing: 0.2px !important;
        -webkit-tap-highlight-color: transparent;
        display: inline-flex !important;
        text-align: center !important;
    }
    .cc-button-primary-ultimate {
        background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 50%, #8B6F5A 100%) !important;
        background-size: 200% 200% !important;
        border: 2px solid rgba(255, 255, 255, 0.25) !important;
    }
    .cc-button-primary-ultimate:active {
        transform: translateY(-1px) scale(0.98);
        box-shadow: 
            0 4px 16px rgba(139, 111, 90, 0.5),
            0 2px 8px rgba(139, 111, 90, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.1s ease;
    }
    .cc-button-secondary-ultimate {
        background: rgba(255, 255, 255, 0.3) !important;
        backdrop-filter: blur(20px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
        border: 2px solid rgba(255, 255, 255, 0.6) !important;
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5) !important;
    }
    .cc-button-secondary-ultimate:active {
        transform: translateY(-1px) scale(0.98);
        background: rgba(255, 255, 255, 0.35) !important;
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.35),
            0 2px 8px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        transition: all 0.1s ease;
    }
    /* Button text en iconen kleiner op mobiel - ook bij overflow */
    .cc-button-text {
        font-size: 13px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    .cc-button-arrow,
    .cc-button-icon {
        width: 16px !important;
        height: 16px !important;
    }
    /* Touch feedback - geen hover op mobiel, alleen active */
    .cc-button-primary-ultimate:hover,
    .cc-button-secondary-ultimate:hover {
        transform: none;
    }
    /* Hero Intro Box Mobiel - Super Mooi */
    .cc-hero-intro-box {
        padding: 32px 24px;
        margin: 32px auto;
        max-width: 100%;
        border-radius: 18px;
        box-shadow: 
            0 10px 36px rgba(0, 0, 0, 0.12),
            0 4px 12px rgba(139, 111, 90, 0.08),
            0 0 0 1px rgba(139, 111, 90, 0.1);
    }
    .cc-hero-intro-box:hover {
        transform: none;
    }
    .cc-hero-intro-box::before {
        height: 3px;
    }
    .cc-hero-intro-text {
        font-size: 17px;
        line-height: 1.75;
        text-align: center;
        margin-bottom: 24px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.7),
            0 4px 16px rgba(0, 0, 0, 0.5) !important;
    }
    .cc-hero-intro-list li {
        opacity: 1;
        animation: none;
    }
    .cc-hero-intro-question {
        text-align: center;
        font-size: 17px;
        margin: 24px 0 16px 0;
        display: block;
        width: 100%;
    }
    .cc-hero-intro-question::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .cc-hero-intro-list {
        padding-left: 0;
        text-align: left;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        width: 100%;
    }
    .cc-hero-intro-list li {
        font-size: 16px;
        line-height: 1.7;
        padding-left: 32px;
        padding-right: 8px;
        margin-bottom: 12px;
        text-align: left;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.7),
            0 4px 12px rgba(0, 0, 0, 0.5) !important;
    }
    .cc-hero-intro-list li:before {
        width: 22px;
        height: 22px;
        font-size: 16px;
    }
    .cc-heading-modern {
        font-size: 32px;
    }
    .cc-offer-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cc-offer-card {
        padding: 24px;
    }
    .cc-intro-card {
        padding: 40px 30px;
    }
    .cc-section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .cc-hero-title-ultimate {
        font-size: 32px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.8),
            0 4px 20px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-subtitle-ultimate {
        font-size: 16px;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.7),
            0 4px 16px rgba(0, 0, 0, 0.5) !important;
    }
    .cc-heading-modern {
        font-size: 28px;
    }
    .cc-offer-card-header {
        flex-direction: column;
        gap: 12px;
    }
    .cc-offer-card-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .cc-offer-card-title {
        font-size: 20px;
    }
    .cc-intro-card {
        padding: 30px 20px;
    }
    .cc-section-padding {
        padding: 40px 0;
    }
}

/* ============================================ */
/* ONTBREKENDE HOMEPAGE STYLES - Toegevoegd 2 feb 2026 */
/* ============================================ */

/* SECTION GRADIENT ULTIMATE */
.cc-section-gradient-ultimate {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 50%, #8B6F5A 100%);
    position: relative;
    overflow: hidden;
}
.cc-section-gradient-ultimate .cc-heading-modern {
    color: #FFFFFF;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 0, 0, 0.3);
}
.cc-section-gradient-ultimate .cc-intro-description-ultimate {
    color: rgba(255, 255, 255, 0.95);
}
.cc-section-gradient-ultimate .cc-list {
    color: rgba(255, 255, 255, 0.95);
}
.cc-section-gradient-ultimate .cc-list li {
    color: rgba(255, 255, 255, 0.95);
}

/* CARDS GRID MODERN */
.cc-cards-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 48px 0;
}
.cc-card-modern {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(43, 43, 43, 0.08),
        0 0 0 1px rgba(139, 111, 90, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 111, 90, 0.1);
    position: relative;
    overflow: hidden;
}
.cc-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(43, 43, 43, 0.15),
        0 0 0 1px rgba(139, 111, 90, 0.1);
}
.cc-card-icon-modern {
    margin-bottom: 24px;
    position: relative;
}
.cc-card-icon-bg {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(139, 111, 90, 0.1);
    border-radius: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cc-card-icon-svg {
    width: 50px;
    height: 50px;
    color: #8B6F5A;
    position: relative;
    z-index: 1;
}
.cc-card-title-modern {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2B2B2B;
    margin: 0 0 16px 0;
}
.cc-card-text-modern {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #5A5A5A;
    margin: 0 0 24px 0;
}
.cc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B6F5A;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cc-card-link:hover {
    color: #6B5A4A;
    gap: 12px;
}
.cc-card-link svg {
    transition: transform 0.3s ease;
}
.cc-card-link:hover svg {
    transform: translateX(5px);
}

/* FEATURES GRID ULTIMATE */
.cc-features-grid-ultimate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}
.cc-feature-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}
.cc-feature-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.cc-feature-icon-wrapper-modern {
    margin-bottom: 16px;
}
.cc-feature-icon-modern {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
}
.cc-feature-text-modern {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 500;
}

/* SECTION AANPAK ULTIMATE */
.cc-section-aanpak-ultimate {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cc-aanpak-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.cc-aanpak-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cc-aanpak-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(43, 43, 43, 0.7) 0%,
        rgba(43, 43, 43, 0.65) 50%,
        rgba(43, 43, 43, 0.7) 100%
    );
    z-index: 1;
}
.cc-aanpak-content-ultimate {
    position: relative;
    z-index: 2;
}
.cc-aanpak-grid-ultimate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 48px 0;
}
.cc-aanpak-item-ultimate {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}
.cc-aanpak-item-ultimate:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.cc-aanpak-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-aanpak-icon-svg {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
}
.cc-aanpak-number-modern {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 16px 0 8px;
}
.cc-aanpak-title-modern {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    text-transform: lowercase;
}
.cc-aanpak-message-ultimate {
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}
.cc-message-icon-circle-white {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-message-icon-svg {
    width: 40px;
    height: 40px;
    color: #FFFFFF;
}
.cc-message-text-white-large {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}
.cc-message-text-white {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* CTA SECTION ULTIMATE */
.cc-cta-section-ultimate {
    padding: 120px 0;
    background: linear-gradient(135deg, #8B6F5A 0%, #6B5A4A 50%, #8B6F5A 100%);
    position: relative;
    overflow: hidden;
}
.cc-cta-content-ultimate {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cc-cta-icon-circle-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-cta-icon-svg {
    width: 70px;
    height: 70px;
    color: #FFFFFF;
}
.cc-cta-title-ultimate {
    font-family: 'Playfair Display', 'Libre Baskerville', serif;
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3);
}
.cc-cta-text-ultimate {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 16px 0;
    line-height: 1.7;
}
.cc-cta-subtext-ultimate {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
}
.cc-cta-button-wrapper {
    margin-top: 32px;
}
.cc-button-cta-ultimate {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: #FFFFFF;
    color: #8B6F5A;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.cc-button-cta-ultimate:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    background: #F3EFEA;
}

/* IMAGE SHOWCASE */
.cc-image-showcase {
    margin: 48px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.15);
}
.cc-showcase-image {
    width: 100%;
    height: auto;
    display: block;
}

/* SECTION ICON MODERN */
.cc-section-icon-modern {
    margin-bottom: 20px;
    display: inline-block;
}
.cc-section-icon-svg {
    width: 50px;
    height: 50px;
    color: #8B6F5A;
}
.cc-icon-white .cc-section-icon-svg {
    color: #FFFFFF;
}

/* MESSAGE BOX ULTIMATE */
.cc-message-box-ultimate {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.1);
    text-align: center;
    margin-top: 48px;
}
.cc-message-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: rgba(139, 111, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-message-text-ultimate {
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #5A5A5A;
    margin: 0;
}

/* GLASS CARD WHITE */
.cc-glass-card-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE - ONTBREKENDE STYLES */
@media (max-width: 768px) {
    .cc-cards-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cc-features-grid-ultimate {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cc-aanpak-grid-ultimate {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .cc-cta-title-ultimate {
        font-size: 36px;
    }
    .cc-cta-text-ultimate {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .cc-features-grid-ultimate {
        grid-template-columns: 1fr;
    }
    .cc-aanpak-grid-ultimate {
        grid-template-columns: 1fr;
    }
    .cc-cta-title-ultimate {
        font-size: 28px;
    }
    .cc-card-modern {
        padding: 30px 20px;
    }
}

/* ============================================ */
/* MOBIELE VERBETERINGEN - 2 feb 2026 */
/* ============================================ */

/* Verbeterde mobiele weergave voor alle elementen */
@media (max-width: 768px) {
    /* Container padding */
    .cc-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
    
    /* Headings kleiner op mobiel */
    .cc-heading-xl {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    .cc-heading-modern {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    
    /* Text sizes */
    .cc-text-large {
        font-size: 18px !important;
        line-height: 1.6 !important;
    }
    .cc-text {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Section padding */
    .cc-section-padding {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .cc-section-white {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    /* Buttons volledige breedte op mobiel */
    .cc-button-primary-ultimate,
    .cc-button-secondary-ultimate {
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 24px !important;
        font-size: 16px !important;
    }
    
    /* Cards en grids */
    .cc-offer-cards-grid,
    .cc-cards-grid-modern,
    .cc-features-grid-ultimate {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Card padding */
    .cc-offer-card,
    .cc-intro-card {
        padding: 24px 20px !important;
    }
    
    /* Hero section */
    .cc-hero-ultimate {
        min-height: 70vh !important;
        padding: 60px 0 !important;
    }
    .cc-hero-title-ultimate {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    .cc-hero-subtitle-ultimate {
        font-size: 18px !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }
    .cc-hero-buttons-ultimate {
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    
    /* Images responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Lists */
    .cc-list {
        padding-left: 20px !important;
    }
    .cc-list li {
        margin-bottom: 12px !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Footer */
    .cc-footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    .cc-footer-col {
        text-align: center !important;
    }
    
    /* Formulier */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        width: 100% !important;
        padding: 14px !important;
        font-size: 16px !important; /* Voorkomt zoom op iOS */
    }
    
    /* Tables */
    table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* Extra kleine schermen */
@media (max-width: 480px) {
    .cc-heading-xl {
        font-size: 28px !important;
    }
    .cc-heading-modern {
        font-size: 24px !important;
    }
    .cc-hero-title-ultimate {
        font-size: 28px !important;
        margin-bottom: 20px !important;
    }
    .cc-hero-subtitle-ultimate {
        font-size: 16px !important;
        margin-bottom: 28px !important;
        padding: 0 12px !important;
    }
    /* Hero Intro Box Extra Klein - Super Mooi met Witte Tekst */
    .cc-hero-intro-box {
        padding: 28px 20px !important;
        margin: 24px auto !important;
        width: 100% !important;
        border-radius: 16px !important;
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }
    .cc-hero-intro-box:hover {
        transform: none !important;
        background: rgba(0, 0, 0, 0.7) !important;
    }
    .cc-hero-intro-text {
        font-size: 16px !important;
        line-height: 1.65 !important;
        text-align: center !important;
        margin-bottom: 20px !important;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 4px 16px rgba(0, 0, 0, 0.6) !important;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 1px 4px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-intro-question {
        text-align: center !important;
        font-size: 16px !important;
        margin: 20px 0 14px 0 !important;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 4px 16px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-intro-list {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
    }
    .cc-hero-intro-list li {
        font-size: 15px !important;
        line-height: 1.65 !important;
        padding-left: 28px !important;
        padding-right: 6px !important;
        margin-bottom: 10px !important;
        text-align: left !important;
        opacity: 1 !important;
        animation: none !important;
        color: #FFFFFF !important;
        text-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.8),
            0 1px 4px rgba(0, 0, 0, 0.6) !important;
    }
    .cc-hero-intro-list li:before {
        width: 20px !important;
        height: 20px !important;
        font-size: 14px !important;
        top: 3px !important;
    }
    .cc-hero-intro-list li:hover {
        transform: none !important;
        background-color: transparent !important;
        padding-left: 28px !important;
    }
    .cc-section-padding {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }
    .cc-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    /* Hero Intro Box Extra Klein - Super Mooi */
    .cc-hero-intro-box {
        padding: 28px 20px;
        margin: 24px auto;
        width: 100%;
        border-radius: 16px;
    }
    .cc-hero-intro-box:hover {
        transform: none;
    }
    .cc-hero-intro-list li {
        opacity: 1;
        animation: none;
    }
    .cc-hero-intro-text {
        font-size: 16px;
        line-height: 1.65;
        text-align: center;
        margin-bottom: 20px;
    }
    .cc-hero-intro-question {
        text-align: center;
        font-size: 16px;
        margin: 20px 0 14px 0;
    }
    .cc-hero-intro-list {
        display: block;
        width: 100%;
        text-align: left;
    }
    .cc-hero-intro-list li {
        font-size: 15px;
        line-height: 1.65;
        padding-left: 28px;
        padding-right: 6px;
        margin-bottom: 10px;
        text-align: left;
    }
    .cc-hero-intro-list li:before {
        width: 20px;
        height: 20px;
        font-size: 14px;
        top: 3px;
    }
    
    /* Logo kleiner op zeer kleine schermen */
    .cc-logo-img {
        height: 45px !important;
        max-height: 45px !important;
        max-width: 160px !important;
    }
    
    /* Menu toggle groter voor betere toegankelijkheid */
    .cc-menu-toggle {
        min-width: 48px !important;
        min-height: 48px !important;
        padding: 12px !important;
    }
    .cc-menu-toggle span {
        width: 24px !important;
        height: 3px !important;
    }
}

/* Touch targets minimaal 44x44px */
@media (max-width: 768px) {
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Links in menu */
    .cc-nav-link {
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Verbeter scroll gedrag op mobiel */
@media (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Voorkom horizontale scroll */
    body, html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    /* Alle containers binnen viewport */
    .cc-container,
    .cc-header-container {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* ============================================ */
/* VERBETERDE STIJL & ANIMATIES - SUPER MOOI! */
/* ============================================ */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Verbeterde card hover effects */
.cc-content-card,
.cc-offer-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    position: relative;
}

.cc-content-card:hover,
.cc-offer-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(43, 43, 43, 0.15),
        0 0 0 1px rgba(139, 111, 90, 0.15),
        0 0 40px rgba(139, 111, 90, 0.1);
    z-index: 1;
}

/* Glow effect op cards */
.cc-content-card::after,
.cc-offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
    background: linear-gradient(135deg, rgba(139, 111, 90, 0.1), rgba(200, 184, 168, 0.1));
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.cc-content-card:hover::after,
.cc-offer-card:hover::after {
    opacity: 1;
}

/* Verbeterde button animations */
.cc-button-primary-ultimate,
.cc-button-secondary-ultimate {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

.cc-button-primary-ultimate::before,
.cc-button-secondary-ultimate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.cc-button-primary-ultimate:hover::before,
.cc-button-secondary-ultimate:hover::before {
    width: 300px;
    height: 300px;
}

.cc-button-primary-ultimate:hover,
.cc-button-secondary-ultimate:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(139, 111, 90, 0.4),
        0 0 0 4px rgba(139, 111, 90, 0.1);
}

.cc-button-primary-ultimate:active,
.cc-button-secondary-ultimate:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

/* Scroll-triggered animations */
.cc-animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc-animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.cc-animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.cc-animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.cc-animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.cc-animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.cc-animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Parallax effect voor hero */
.cc-hero-background {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Verbeterde header scroll effect */
.cc-header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.cc-header.scrolled {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 4px 30px rgba(43, 43, 43, 0.12),
        0 0 0 1px rgba(139, 111, 90, 0.05);
}

/* Verbeterde nav link hover */
.cc-nav-link {
    position: relative;
    overflow: hidden;
}

.cc-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8B6F5A, #C8B8A8);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.cc-nav-link:hover::before {
    width: 80%;
}

/* Verbeterde logo hover */
.cc-logo-img {
    filter: drop-shadow(0 2px 4px rgba(139, 111, 90, 0.2));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc-logo-img:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(139, 111, 90, 0.4));
}

/* Floating animation voor hero elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cc-hero-badge {
    animation: float 3s ease-in-out infinite;
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.cc-button-primary-ultimate:not(:hover) {
    animation: pulse 3s ease-in-out infinite;
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.cc-offer-card-number {
    background: linear-gradient(
        135deg,
        #8B6F5A 0%,
        #C8B8A8 50%,
        #8B6F5A 100%
    );
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Verbeterde text shadows - NIET voor hero (hero heeft donkere achtergrond) */
.cc-heading-modern,
.cc-heading-xl {
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05);
}

/* HOMEPAGE HERO - "Van twijfel" EN "naar verbinding" BEIDE WIT */
.cc-hero-section .cc-hero-title-ultimate,
.cc-hero-section .cc-hero-title-line,
.cc-hero-section .cc-hero-title-accent {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 0, 0, 0.3) !important;
}

/* Verbeterde form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 111, 90, 0.2);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    border-color: #8B6F5A;
    box-shadow: 
        0 0 0 4px rgba(139, 111, 90, 0.1),
        0 4px 12px rgba(139, 111, 90, 0.15);
    transform: translateY(-2px);
    outline: none;
}

/* Loading state voor buttons */
.cc-button-primary-ultimate.loading,
.cc-button-secondary-ultimate.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cc-button-primary-ultimate.loading::after,
.cc-button-secondary-ultimate.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Verbeterde scroll indicator */
.cc-scroll-indicator {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Smooth fade in voor images */
img {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img.loaded {
    opacity: 1;
}

/* Verbeterde list items */
.cc-list li {
    transition: all 0.3s ease;
    padding-left: 8px;
}

.cc-list li:hover {
    transform: translateX(8px);
    color: #8B6F5A;
}

/* Verbeterde section transitions */
.cc-section {
    position: relative;
    overflow: hidden;
}

.cc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(139, 111, 90, 0.03),
        transparent
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.cc-section:hover::before {
    left: 100%;
}

/* Glassmorphism verbetering */
.cc-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(43, 43, 43, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Verbeterde mobile menu animations verwijderd voor stabielere werking */
@media (max-width: 768px) {
    .cc-nav-menu li {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* PC & TABLET: Menu-items ALTIJD zichtbaar (geen opacity 0) */
@media (min-width: 769px) {
    .cc-nav-menu li,
    .cc-header-nav .cc-nav-menu li,
    .cc-header-container .cc-header-nav .cc-nav-menu li {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
}

/* Performance optimalisaties */
.cc-content-card,
.cc-offer-card,
.cc-button-primary-ultimate,
.cc-button-secondary-ultimate {
    contain: layout style paint;
}

/* Section reveal animation */
.cc-section,
.cc-section-white,
.cc-section-accent {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cc-section.revealed,
.cc-section-white.revealed,
.cc-section-accent.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion support - Enhanced */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .cc-section,
    .cc-section-white,
    .cc-section-accent {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .cc-hero-background {
        transform: none !important;
    }
    
    .cc-button-primary-ultimate:hover,
    .cc-button-secondary-ultimate:hover {
        transform: none !important;
    }
    
    .cc-content-card:hover,
    .cc-offer-card:hover {
        transform: none !important;
    }
}

/* Print styles */
@media print {
    .cc-header,
    .cc-menu-toggle,
    .cc-menu-overlay,
    .cc-hero-scroll-indicator {
        display: none !important;
    }
    
    .cc-section,
    .cc-section-white {
        page-break-inside: avoid;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cc-button-primary-ultimate,
    .cc-button-secondary-ultimate {
        border-width: 3px;
    }
    
    .cc-nav-link {
        border: 1px solid currentColor;
    }
}

/* Focus visible voor betere accessibility */
.cc-button-primary-ultimate:focus-visible,
.cc-button-secondary-ultimate:focus-visible,
.cc-nav-link:focus-visible,
.cc-menu-toggle:focus-visible {
    outline: 3px solid var(--cc-primary);
    outline-offset: 2px;
}

/* Dark mode support (voorbereiding) */
@media (prefers-color-scheme: dark) {
    /* Optioneel: dark mode styles kunnen hier toegevoegd worden */
}

/* ============================================ */
/* HEADER FIX - PC/TABLET MENU + MOBIEL TOGGLE  */
/* ============================================ */

/* PC & TABLET (≥769px): Menu horizontaal in header, goud */
@media (min-width: 769px) {
    header.cc-header .cc-header-container .cc-header-nav,
    #cc-header .cc-header-nav,
    .cc-header .cc-header-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        right: auto !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
        flex-direction: row !important;
        top: auto !important;
        padding: 0 !important;
    }
    header.cc-header .cc-header-nav .cc-nav-menu,
    #cc-header .cc-header-nav .cc-nav-menu {
        display: flex !important;
        flex-direction: row !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    header.cc-header .cc-header-nav .cc-nav-menu li,
    #cc-header .cc-nav-menu li {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }
    header.cc-header .cc-header-nav .cc-nav-menu .cc-nav-link {
        color: #8B6F5A !important;
        display: block !important;
    }
    header.cc-header .cc-header-nav .cc-nav-menu .cc-nav-link.cc-nav-cta {
        color: #FFFFFF !important;
    }
    header.cc-header .cc-menu-toggle,
    #cc-menu-toggle {
        display: none !important;
    }
}

/* MOBIEL (≤768px): Toggle zichtbaar, menu in slide-out */
@media (max-width: 768px) {
    header.cc-header .cc-menu-toggle,
    #cc-menu-toggle,
    .cc-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        z-index: 2147483647 !important;
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: linear-gradient(135deg, #8B6F5A 0%, #C8B8A8 50%, #8B6F5A 100%) !important;
        border: 2px solid rgba(255, 255, 255, 0.5) !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        gap: 6px !important;
    }
    .cc-menu-toggle span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #FFFFFF !important;
        width: 24px !important;
        height: 2px !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }
    .cc-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px) !important;
    }
    .cc-menu-toggle.active span:nth-child(2) {
        opacity: 0 !important;
    }
    .cc-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px) !important;
    }
    header.cc-header .cc-header-nav.active .cc-nav-menu {
        display: flex !important;
    }
    header.cc-header .cc-header-nav.active .cc-nav-menu li {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }
}

/* ============================================ */
/* RESPONSIVE: AANBOD-GRID & PAGINA'S (MOBIEL / TABLET / DESKTOP) */
/* ============================================ */

/* Aanbod-kaarten homepage/index: 1 kolom mobiel, 2 tablet, 3+ desktop */
.cc-aanbod-grid {
    width: 100%;
}
@media (max-width: 600px) {
    .cc-aanbod-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 4px !important;
    }
    .cc-section-white-ultimate .cc-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
@media (min-width: 601px) and (max-width: 900px) {
    .cc-aanbod-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
}

/* Touch-targets: knoppen en nav min 44px */
@media (max-width: 768px) {
    .cc-button-primary-ultimate,
    .cc-button-secondary-ultimate,
    .cc-button-white,
    .cc-footer-button,
    .cc-course-btn,
    a.cc-nav-link {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .cc-footer-grid {
        gap: 24px;
    }
    .cc-footer-col {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .cc-hero-title-ultimate,
    .cc-heading-xl {
        font-size: 1.75rem !important;
        line-height: 1.25 !important;
    }
    .cc-hero-subtitle-ultimate {
        font-size: 1rem !important;
    }
}

/* ============================================ */
/* site-index homepage (scoped)                 */
/* ============================================ */
.site-index-home{--cream:#F5EFE7;--cream-light:#FAF7F2;--beige:#D4C4B0;--warm-brown:#8C7861;--dark-brown:#6B5D52;--dark-text:#3D3329;--light-text:#9A8B7A;--white:#FFFDF9;font-family:'Jost',sans-serif;font-weight:300;color:var(--dark-text);line-height:1.7;font-size:17px;}
.site-index-home h1,.site-index-home h2,.site-index-home h3{font-family:'Cormorant Garamond',serif;font-weight:400;color:var(--dark-brown);}
.site-index-home h1{font-size:clamp(2.4rem,5vw,3.8rem);line-height:1.15;}
.site-index-home h2{font-size:clamp(1.6rem,3.5vw,2.4rem);margin-bottom:1.2rem;}
.site-index-home h3{font-size:1.3rem;font-weight:500;margin-bottom:0.6rem;}
.site-index-home p{margin-bottom:0.9rem;}
.site-index-home a{color:var(--warm-brown);text-decoration:none;}
.site-index-home a:hover{color:var(--dark-brown);}
.site-index-home .intro-text{font-size:1.05rem;line-height:1.85;}
.site-index-home .emphasis-line{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.15rem;color:var(--warm-brown);margin:1.5rem 0;}
.site-index-home .container{max-width:720px;margin:0 auto;padding:0 2rem;}
.site-index-home .container-wide{max-width:960px;margin:0 auto;padding:0 2rem;}
.site-index-home section{padding:5rem 0;}
.site-index-home .section-white{background:var(--white);}
.site-index-home .section-cream{background:var(--cream-light);}
.site-index-home .section-warm{background:var(--cream);}
.site-index-home .divider{width:60px;height:1px;background:var(--beige);margin:0 auto;}
.site-index-home .spacer-md{height:2rem;}
.site-index-home .hero{padding:8rem 0 5rem;text-align:center;position:relative;overflow:hidden;}
.site-index-home .hero::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,rgba(212,196,176,0.1) 0%,transparent 70%);pointer-events:none;}
.site-index-home .hero-logo{width:140px;height:auto;margin-bottom:1.5rem;opacity:0.9;}
.site-index-home .hero-subtitle{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:clamp(1.2rem,2.5vw,1.5rem);color:var(--warm-brown);margin-bottom:2rem;font-weight:400;}
.site-index-home .card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;margin:2rem 0;}
.site-index-home .card{padding:2.5rem 2rem;background:var(--white);border:1px solid rgba(212,196,176,0.3);transition:all 0.35s ease;text-align:center;}
.site-index-home .card:hover{border-color:var(--beige);box-shadow:0 4px 20px rgba(107,93,82,0.06);transform:translateY(-2px);}
.site-index-home .card h3{font-family:'Cormorant Garamond',serif;font-size:1.35rem;font-weight:500;color:var(--dark-brown);margin-bottom:0.8rem;}
.site-index-home .card p{font-size:0.95rem;color:var(--light-text);line-height:1.65;}
.site-index-home .card-link{display:inline-block;margin-top:1.2rem;font-size:0.85rem;letter-spacing:0.05em;color:var(--warm-brown);border-bottom:1px solid var(--beige);padding-bottom:2px;transition:border-color 0.3s;}
.site-index-home .card-link:hover{border-color:var(--warm-brown);}
.site-index-home .btn{display:inline-block;padding:1rem 2.5rem;font-family:'Jost',sans-serif;font-weight:400;font-size:0.88rem;letter-spacing:0.12em;text-transform:uppercase;border:none;cursor:pointer;transition:all 0.35s ease;text-decoration:none;}
.site-index-home .btn-primary{background:var(--dark-brown);color:var(--cream);}
.site-index-home .btn-primary:hover{background:var(--warm-brown);color:var(--cream);box-shadow:0 4px 20px rgba(107,93,82,0.2);}
.site-index-home .fade-in{opacity:0;transform:translateY(18px);transition:opacity 0.7s ease,transform 0.7s ease;}
.site-index-home .fade-in.visible{opacity:1;transform:translateY(0);}
@media (max-width:768px){.site-index-home section{padding:3.5rem 0;}.site-index-home .container,.site-index-home .container-wide{padding:0 1.5rem;}.site-index-home .hero{padding:6rem 0 3.5rem;}.site-index-home .hero-logo{width:110px;}.site-index-home .card-grid{grid-template-columns:1fr;}}

/* ============================================ */
/* TABLET OPTIMALISATIES (769px – 1180px)       */
/* iPad Pro 12.9", iPad Air, Surface Pro        */
/* ============================================ */
@media (min-width: 769px) and (max-width: 1180px) {

    /* ── NAVIGATIE ── */
    .cc-header-container {
        padding: 0 28px !important;
    }
    .cc-header-logo img,
    .cc-logo-img {
        height: 44px !important;
        width: auto !important;
    }
    .cc-nav-link {
        padding: 8px 10px !important;
        font-size: 13px !important;
        letter-spacing: 0 !important;
    }
    .cc-nav-link.cc-nav-cta {
        padding: 8px 16px !important;
    }
    .cc-nav-menu {
        gap: 2px !important;
    }

    /* ── HERO / PAGE HEADER ── */
    .hero {
        padding: 6rem 0 4rem !important;
    }
    .hero-logo {
        width: 110px !important;
    }
    h1, .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem) !important;
        line-height: 1.15 !important;
    }
    .hero-subtitle {
        font-size: 1.15rem !important;
    }

    /* ── CONTAINER ── */
    .container,
    .container-wide {
        padding: 0 40px !important;
        max-width: 960px !important;
    }

    /* ── SECTIONS ── */
    section,
    .section-white,
    .section-cream,
    .section-warm {
        padding: 4.5rem 0 !important;
    }

    /* ── TYPOGRAFIE ── */
    h2 {
        font-size: clamp(1.6rem, 4vw, 2.2rem) !important;
    }
    h3 {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
    }
    .intro-text {
        font-size: 1.05rem !important;
        line-height: 1.75 !important;
    }
    .emphasis-line {
        font-size: 1.3rem !important;
    }

    /* ── HOME: KAART GRID ── */
    .card-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    .card {
        padding: 2rem 1.5rem !important;
    }
    .card h3 {
        font-size: 1.15rem !important;
    }
    .card p {
        font-size: 0.9rem !important;
    }

    /* ── FEATURE LIST ── */
    .feature-list li {
        font-size: 0.95rem !important;
        padding: 0.5rem 0 0.5rem 1.8rem !important;
    }

    /* ── PRODUCT / OFFER CARDS ── */
    .cc-offer-card,
    .product-card,
    .module-card {
        padding: 2rem 1.5rem !important;
    }

    /* ── VERDIEPINGSMODULES: pricing kaarten ── */
    .pricing-grid,
    .module-grid,
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    /* ── TRAJECT: 3-kolom pricing → netjes ── */
    .kies-grid,
    .pricing-cards,
    [class*="price-grid"],
    [class*="kies"] .card-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }

    /* ── FASE / STAPPEN LIJST ── */
    .fase-list {
        gap: 1.25rem !important;
    }
    .fase-item {
        padding: 1.25rem !important;
    }

    /* ── KOMPAS: CONTENT ── */
    .kompas-grid,
    .content-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }

    /* ── WERKBOEK: product afbeeldingen ── */
    .product-pair {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
    .product-img-wrapper {
        max-width: 280px !important;
    }
    .product-img-wrapper img {
        max-height: 340px !important;
    }

    /* ── CTA SECTIE ── */
    .cta-section {
        padding: 3.5rem 2.5rem !important;
    }
    .cta-section h2 {
        font-size: 1.8rem !important;
    }

    /* ── BESTELLEN FORMULIER ── */
    .order-form,
    .bestelling-form {
        max-width: 600px !important;
        padding: 2.5rem !important;
    }

    /* ── FOOTER ── */
    .cc-footer-main {
        grid-template-columns: 2fr 1fr 1fr !important;
        gap: 32px 40px !important;
        padding: 56px 40px 48px !important;
    }
    .cc-footer-brand {
        max-width: 260px !important;
    }
    .cc-footer-tagline {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }
    .cc-footer-nav-title {
        font-size: 0.75rem !important;
        margin-bottom: 12px !important;
    }
    .cc-footer-nav li {
        margin-bottom: 8px !important;
    }
    .cc-footer-nav a {
        font-size: 0.88rem !important;
    }
    .cc-footer-contact-mail {
        font-size: 0.85rem !important;
    }
    .cc-footer-quote {
        padding: 56px 48px !important;
    }
    .cc-footer-quote-text {
        font-size: 1.6rem !important;
    }
    .cc-footer-legal {
        padding: 20px 40px !important;
        font-size: 0.8rem !important;
    }

    /* ── FOOTER WAVE ── */
    .cc-footer-wave svg {
        height: 36px !important;
    }

    /* ── DIVIDER ── */
    .divider,
    .divider-left {
        margin: 1.25rem 0 1.75rem !important;
    }

    /* ── BRIDGE SECTION ── */
    .bridge {
        padding: 3rem 0 !important;
    }
    .bridge-title {
        font-size: 1.4rem !important;
    }

    /* ── CONTACT KAARTEN ── */
    .cc-contact-card {
        padding: 2rem !important;
    }

    /* ── JURIDISCH TABS ── */
    .juridisch-tabs,
    .tab-bar {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .tab-btn {
        font-size: 0.85rem !important;
        padding: 8px 16px !important;
    }

    /* ── QUOTE BANNER ── */
    .cc-footer-quote-btn {
        font-size: 0.88rem !important;
        padding: 12px 28px !important;
    }
}

/* ============================================ */
/* TABLET FIXES WAVE 2 — navigatie, pricing,    */
/* werkboek, footer kolom                       */
/* ============================================ */
@media (min-width: 769px) and (max-width: 1180px) {

    /* ── NAV: compact maar leesbaar ── */
    .cc-nav-link {
        padding: 6px 7px !important;
        font-size: 11.5px !important;
        font-weight: 500 !important;
        letter-spacing: -0.01em !important;
        white-space: nowrap !important;
    }
    .cc-nav-link.cc-nav-cta {
        padding: 6px 12px !important;
        font-size: 11.5px !important;
    }
    .cc-nav-menu {
        gap: 0px !important;
        flex-wrap: nowrap !important;
    }
    .cc-header-container {
        gap: 12px !important;
    }
    .cc-logo-img {
        height: 38px !important;
    }

    /* ── WERKBOEK: grotere tekst & betere layout ── */
    h1 {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem) !important;
        line-height: 1.2 !important;
    }
    h2 {
        font-size: clamp(1.5rem, 3.5vw, 2rem) !important;
    }
    h3 {
        font-size: clamp(1rem, 2.5vw, 1.3rem) !important;
    }
    p, .intro-text, li {
        font-size: 1rem !important;
        line-height: 1.72 !important;
    }
    .intro-text {
        font-size: 1.05rem !important;
    }

    /* ── CONTAINER: meer ruimte ── */
    .container {
        padding: 0 44px !important;
    }

    /* ── TRAJECT: 3-kolom pricing kaarten fixen ── */
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }
    .pricing-card {
        padding: 1.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
    .pricing-price {
        font-size: 2rem !important;
    }
    .pricing-features li {
        font-size: 0.82rem !important;
        padding: 0.3rem 0 !important;
    }
    /* ── TRAJECT: "Kies wat bij je past" header ── */
    .kies-section h2 {
        font-size: 1.6rem !important;
    }

    /* ── WERKBOEK: productfoto's beter ── */
    .product-pair {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        align-items: center !important;
    }
    .product-img-wrapper {
        text-align: center !important;
    }
    .product-img-wrapper img {
        max-width: 220px !important;
        max-height: 280px !important;
        height: auto !important;
        object-fit: contain !important;
    }

    /* ── FOOTER: 3 kolommen netjes ── */
    .cc-footer-main {
        grid-template-columns: 1.8fr 1fr 1fr 1fr !important;
        gap: 24px 28px !important;
        padding: 52px 36px 44px !important;
    }
    .cc-footer-nav a,
    .cc-footer-nav li a {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    .cc-footer-nav-title {
        font-size: 0.72rem !important;
        letter-spacing: 0.12em !important;
        margin-bottom: 10px !important;
    }
    .cc-footer-description,
    .cc-footer-tagline {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    .cc-footer-legal {
        padding: 18px 36px !important;
        font-size: 0.78rem !important;
    }

    /* ── QUOTE FOOTER ── */
    .cc-footer-quote-text {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }
    .cc-footer-quote {
        padding: 52px 40px !important;
    }

    /* ── HOME: 3 kaarten netjes ── */
    .card-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }
    .card {
        padding: 1.75rem 1.25rem !important;
    }
    .card h3 {
        font-size: 1.05rem !important;
    }

    /* ── VERDIEPINGSMODULES: module kaarten ── */
    .modules-grid,
    .module-cards {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    /* ── OVER ONS: fase items ── */
    .fase-list {
        gap: 1rem !important;
    }
    .fase-item {
        padding: 1.25rem 1.5rem !important;
    }

    /* ── SECTIE PADDING ── */
    section,
    .section-white,
    .section-cream,
    .section-warm {
        padding: 4rem 0 !important;
    }
    .hero {
        padding: 5.5rem 0 3.5rem !important;
    }
}

/* ============================================ */
/* EINDE BESTAND */
/* ============================================ */
