/* Custom Font - Magneum */
@font-face {
    font-family: 'Magneum';
    src: url('/fonts/Magneum.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    /* StimuLeren Borne - Vrolijk schoolthema voor kinderen */
    --primary: #65bc7b;
    --primary-dark: #4fa366;
    --primary-light: #8ed19e;
    --primary-lighter: #d4f0db;
    --coral: #F59E0B;
    --coral-light: #FCD34D;
    --coral-dark: #D97706;
    --secondary: #3498db;
    --secondary-light: #5dade2;
    --accent: #F59E0B;
    --purple: #9b59b6;
    --pink: #e91e63;
    --cream: #fffef5;
    --cream-dark: #f5f3e8;
    --dark: #2c3e35;
    --text: #333333;
    --text-light: #6b7280;
    --white: #ffffff;
    --border: #e0e0e0;
    --shadow: rgba(101, 188, 123, 0.2);
    --shadow-dark: rgba(51, 51, 51, 0.1);

    /* Font variabelen - kunnen via admin worden overschreven */
    --font-heading: 'Nunito', -apple-system, sans-serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading-spacing: 0px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 20px var(--shadow-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.nav-logo .logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nav-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo .logo-name {
    font-family: 'Nunito', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.nav-logo .logo-subtitle {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

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

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

.nav-link.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(74, 139, 124, 0.1);
}

.nav-toggle.active {
    background: var(--primary);
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span {
    background: var(--white);
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(101, 188, 123, 0.4);
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    padding: 8px;
}

.mobile-menu::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232, 180, 166, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    padding: 18px 24px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 17px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-link::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding-left: 28px;
}

.mobile-link:hover::before,
.mobile-link:active::before {
    opacity: 1;
    transform: scale(1);
}

.mobile-link:last-child {
    margin-top: 8px;
    background: var(--white);
    color: var(--primary);
    text-align: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-link:last-child::before {
    display: none;
}

.mobile-link:last-child:hover {
    background: var(--cream);
    transform: scale(1.02);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(160deg, var(--primary-lighter) 0%, var(--cream) 35%, var(--cream-dark) 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(101, 188, 123, 0.2) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(52, 152, 219, 0.15) 0%, transparent 60%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(2deg); }
    50% { transform: translate(-10px, 10px) rotate(-1deg); }
    75% { transform: translate(15px, 15px) rotate(1deg); }
}

/* ============================================
   DYNAMIC SCHOOL-THEMED HERO DECORATIONS
   ============================================ */

/* Growing Tree Container - GROOT */
.hero-tree-container {
    display: none; /* Vervangen door meer schoolicoontjes */
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 550px;
    height: 650px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translateY(50px);
    animation: treeGrow 1s ease-out 0.3s forwards;
}

.hero-tree-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 30px 60px rgba(101, 188, 123, 0.4));
}

/* Override voor object element */
.hero-tree-container object {
    width: 100%;
    height: 100%;
}

@keyframes treeGrow {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.7);
    }
    70% {
        opacity: 1;
        transform: translateY(-15px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Floating SVG School Elements */
.floating-svg {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    opacity: 0;
    animation: floatIn 0.8s ease-out forwards;
}

.floating-svg-1 {
    width: 60px;
    height: 60px;
    top: 12%;
    left: 6%;
    animation-delay: 0.8s;
    --float-x: 15px;
    --float-y: -20px;
    --float-rotate: 10deg;
}

.floating-svg-2 {
    width: 55px;
    height: 55px;
    top: 8%;
    right: 18%;
    animation-delay: 1s;
    --float-x: -10px;
    --float-y: -25px;
    --float-rotate: -8deg;
}

.floating-svg-3 {
    width: 65px;
    height: 65px;
    top: 55%;
    left: 4%;
    animation-delay: 1.2s;
    --float-x: 20px;
    --float-y: -15px;
    --float-rotate: 5deg;
}

.floating-svg-4 {
    width: 50px;
    height: 50px;
    top: 25%;
    left: 12%;
    animation-delay: 1.4s;
    --float-x: -12px;
    --float-y: -30px;
    --float-rotate: -12deg;
}

.floating-svg-5 {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 2%;
    animation-delay: 1.6s;
    --float-x: 18px;
    --float-y: -18px;
    --float-rotate: 8deg;
}

.floating-svg-6 {
    width: 50px;
    height: 50px;
    top: 15%;
    left: 20%;
    animation-delay: 1.8s;
    --float-x: -8px;
    --float-y: -22px;
    --float-rotate: -6deg;
}

.floating-svg-7 {
    width: 70px;
    height: 25px;
    top: 70%;
    left: 8%;
    animation-delay: 2s;
    --float-x: 15px;
    --float-y: -12px;
    --float-rotate: 15deg;
}

.floating-svg-8 {
    width: 55px;
    height: 55px;
    top: 65%;
    left: 18%;
    animation-delay: 2.2s;
    --float-x: -15px;
    --float-y: -20px;
    --float-rotate: -10deg;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.5) rotate(-20deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

.floating-svg-1 { animation: floatIn 0.8s ease-out 0.8s forwards, floatDance1 8s ease-in-out 1.6s infinite; }
.floating-svg-2 { animation: floatIn 0.8s ease-out 1s forwards, floatDance2 10s ease-in-out 1.8s infinite; }
.floating-svg-3 { animation: floatIn 0.8s ease-out 1.2s forwards, floatDance3 9s ease-in-out 2s infinite; }
.floating-svg-4 { animation: floatIn 0.8s ease-out 1.4s forwards, floatDance1 11s ease-in-out 2.2s infinite; }
.floating-svg-5 { animation: floatIn 0.8s ease-out 1.6s forwards, floatDance2 8.5s ease-in-out 2.4s infinite; }
.floating-svg-6 { animation: floatIn 0.8s ease-out 1.8s forwards, floatDance3 9.5s ease-in-out 2.6s infinite; }
.floating-svg-7 { animation: floatIn 0.8s ease-out 2s forwards, floatDance1 10.5s ease-in-out 2.8s infinite; }
.floating-svg-8 { animation: floatIn 0.8s ease-out 2.2s forwards, floatDance2 7.5s ease-in-out 3s infinite; }

/* Floating SVG elements - rechts */
.floating-svg-9 {
    width: 55px;
    height: 55px;
    top: 15%;
    right: 8%;
    animation: floatIn 0.8s ease-out 0.9s forwards, floatDance2 9s ease-in-out 1.7s infinite;
}

.floating-svg-10 {
    width: 50px;
    height: 50px;
    top: 28%;
    right: 5%;
    animation: floatIn 0.8s ease-out 1.1s forwards, floatDance1 8s ease-in-out 1.9s infinite;
}

.floating-svg-11 {
    width: 60px;
    height: 60px;
    top: 45%;
    right: 10%;
    animation: floatIn 0.8s ease-out 1.3s forwards, floatDance3 10s ease-in-out 2.1s infinite;
}

.floating-svg-12 {
    width: 45px;
    height: 45px;
    top: 60%;
    right: 4%;
    animation: floatIn 0.8s ease-out 1.5s forwards, floatDance2 9.5s ease-in-out 2.3s infinite;
}

.floating-svg-13 {
    width: 50px;
    height: 50px;
    top: 22%;
    right: 15%;
    animation: floatIn 0.8s ease-out 1.7s forwards, floatDance1 8.5s ease-in-out 2.5s infinite;
}

.floating-svg-14 {
    width: 48px;
    height: 48px;
    top: 52%;
    right: 18%;
    animation: floatIn 0.8s ease-out 1.9s forwards, floatDance3 11s ease-in-out 2.7s infinite;
}

.floating-svg-15 {
    width: 65px;
    height: 22px;
    top: 72%;
    right: 8%;
    animation: floatIn 0.8s ease-out 2.1s forwards, floatDance2 10s ease-in-out 2.9s infinite;
}

.floating-svg-16 {
    width: 52px;
    height: 52px;
    top: 38%;
    right: 3%;
    animation: floatIn 0.8s ease-out 2.3s forwards, floatDance1 9s ease-in-out 3.1s infinite;
}

@keyframes floatDance1 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-15px) translateX(10px) rotate(5deg); }
    50% { transform: translateY(-25px) translateX(-5px) rotate(-3deg); }
    75% { transform: translateY(-10px) translateX(8px) rotate(2deg); }
}

@keyframes floatDance2 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(-8px) rotate(-6deg); }
    50% { transform: translateY(-30px) translateX(12px) rotate(4deg); }
    75% { transform: translateY(-12px) translateX(-6px) rotate(-2deg); }
}

@keyframes floatDance3 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    33% { transform: translateY(-18px) translateX(15px) rotate(8deg); }
    66% { transform: translateY(-22px) translateX(-10px) rotate(-5deg); }
}

/* Colorful floating letters in background */
.floating-letter {
    position: absolute;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    opacity: 0;
    z-index: 0;
    animation: letterFloat 1s ease-out forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.letter-a {
    top: 18%;
    left: 8%;
    color: var(--coral);
    animation: letterFloat 1s ease-out 0.3s forwards, letterBob 12s ease-in-out 1.3s infinite;
}
.letter-b {
    top: 45%;
    right: 12%;
    color: var(--secondary);
    animation: letterFloat 1s ease-out 0.5s forwards, letterBob 14s ease-in-out 1.5s infinite;
    font-size: 4rem;
}
.letter-c {
    top: 72%;
    left: 15%;
    color: var(--purple);
    animation: letterFloat 1s ease-out 0.7s forwards, letterBob 11s ease-in-out 1.7s infinite;
    font-size: 4.5rem;
}
.letter-1 {
    top: 28%;
    right: 22%;
    color: var(--primary);
    animation: letterFloat 1s ease-out 0.4s forwards, letterBob 13s ease-in-out 1.4s infinite;
    font-size: 4rem;
}
.letter-2 {
    top: 58%;
    left: 3%;
    color: var(--pink);
    animation: letterFloat 1s ease-out 0.6s forwards, letterBob 10s ease-in-out 1.6s infinite;
}
.letter-3 {
    top: 12%;
    right: 10%;
    color: var(--accent);
    animation: letterFloat 1s ease-out 0.8s forwards, letterBob 15s ease-in-out 1.8s infinite;
    font-size: 4.5rem;
}

@keyframes letterFloat {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.5);
    }
    100% {
        opacity: 0.12;
        transform: translateY(0) scale(1);
    }
}

@keyframes letterBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(3deg); }
    50% { transform: translateY(-35px) rotate(-2deg); }
    75% { transform: translateY(-15px) rotate(1deg); }
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    letter-spacing: var(--font-heading-spacing, 0px);
    margin-bottom: 24px;
    color: var(--dark);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    line-height: 1.15;
}

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

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text);
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 20px var(--shadow);
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    border: 2px solid var(--primary-lighter);
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
    border-color: var(--primary-light);
}

.badge i {
    color: var(--primary);
    font-size: 1.1em;
}

.badge:nth-child(1) i { color: var(--coral); }
.badge:nth-child(2) i { color: var(--primary); }
.badge:nth-child(3) i { color: var(--secondary); }

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s ease infinite;
    text-decoration: none;
    z-index: 2;
}

.scroll-indicator:hover {
    color: var(--primary-dark);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(101, 188, 123, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(101, 188, 123, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 3px solid var(--primary);
}

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

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

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--white);
}

.section-cream {
    background: var(--cream);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-light .section-label,
.section-header-light .section-title,
.section-header-light .section-subtitle {
    color: var(--white);
}

.section-header-light .section-label {
    background: rgba(255, 255, 255, 0.2);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(101, 188, 123, 0.15), rgba(101, 188, 123, 0.05));
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 2px solid rgba(101, 188, 123, 0.2);
    font-family: 'Nunito', sans-serif;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: var(--text);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: var(--primary);
}

.feature-content h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.feature-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.about-image {
    position: relative;
    max-width: 350px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px var(--shadow);
}

.about-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px var(--shadow);
}

.about-placeholder i {
    font-size: 80px;
    color: var(--primary-light);
    opacity: 0.5;
}

.nvo-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.nvo-badge img {
    width: 40px;
    height: 40px;
    box-shadow: none;
}

.nvo-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

/* Services Grid - 2x2 Layout voor 4 diensten */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Sfeerfoto in diensten sectie */
.diensten-sfeer {
    max-width: 500px;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.diensten-sfeer img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .diensten-sfeer {
        max-width: 350px;
        margin: 30px auto;
    }
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(101, 188, 123, 0.12);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

@media (max-width: 480px) {
    .service-card {
        padding: 32px 24px;
    }
}

/* Static gradient border - animates only on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--coral));
    border-radius: 28px 28px 0 0;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1.02);
}

/* Floating decoration on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(101, 188, 123, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
    transform: translate(-20%, 20%);
}

.service-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 25px 60px rgba(101, 188, 123, 0.3);
    border-color: var(--primary-light);
}

/* Unique colors per card */
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary)); background-size: 200% 100%; }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--secondary), var(--secondary-light), var(--secondary)); background-size: 200% 100%; }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--coral-light), var(--coral)); background-size: 200% 100%; }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--purple), #bb8fce, var(--purple)); background-size: 200% 100%; }

.service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, rgba(101, 188, 123, 0.2), rgba(101, 188, 123, 0.05)); }
.service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.05)); }
.service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05)); }
.service-card:nth-child(4) .service-icon { background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.05)); }

.service-card:nth-child(1) .service-icon i { color: var(--primary); }
.service-card:nth-child(2) .service-icon i { color: var(--secondary); }
.service-card:nth-child(3) .service-icon i { color: var(--coral); }
.service-card:nth-child(4) .service-icon i { color: var(--purple); }

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(101, 188, 123, 0.15), rgba(101, 188, 123, 0.05));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Pulse ring animation on hover */
.service-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 3px solid var(--primary);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
    transform: scale(1);
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 10px 30px rgba(101, 188, 123, 0.3);
}

.service-icon i {
    font-size: 40px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-subtitle {
    display: block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.service-description {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.methods-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.methods-section h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 30px;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.method-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.method-item strong {
    display: block;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}

.method-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.werkwijze-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.werkwijze-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--coral));
    border-radius: 4px;
}

.werkwijze-step {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.werkwijze-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(101, 188, 123, 0.4);
    border: 4px solid var(--white);
}

.werkwijze-step:nth-child(1) .step-number { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); }
.werkwijze-step:nth-child(2) .step-number { background: linear-gradient(135deg, var(--secondary) 0%, #2980b9 100%); }
.werkwijze-step:nth-child(3) .step-number { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); }
.werkwijze-step:nth-child(4) .step-number { background: linear-gradient(135deg, var(--purple) 0%, #8e44ad 100%); }

.step-content {
    flex: 1;
    padding-top: 12px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-content p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: rgba(74, 124, 89, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 8px;
}

.step-icon i {
    font-size: 20px;
    color: var(--primary);
}

.doelgroepen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.doelgroep-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.doelgroep-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 24px 24px 0 0;
}

.doelgroep-card:nth-child(1)::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.doelgroep-card:nth-child(2)::before { background: linear-gradient(90deg, var(--secondary), var(--secondary-light)); }
.doelgroep-card:nth-child(3)::before { background: linear-gradient(90deg, var(--coral), var(--coral-light)); }
.doelgroep-card:nth-child(4)::before { background: linear-gradient(90deg, var(--purple), #bb8fce); }

.doelgroep-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(101, 188, 123, 0.2);
    border-color: var(--primary-light);
}

.doelgroep-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(101, 188, 123, 0.15), rgba(101, 188, 123, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.doelgroep-card:hover .doelgroep-icon {
    transform: scale(1.1);
}

.doelgroep-card:nth-child(1) .doelgroep-icon { background: linear-gradient(135deg, rgba(101, 188, 123, 0.2), rgba(101, 188, 123, 0.05)); }
.doelgroep-card:nth-child(2) .doelgroep-icon { background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.05)); }
.doelgroep-card:nth-child(3) .doelgroep-icon { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05)); }
.doelgroep-card:nth-child(4) .doelgroep-icon { background: linear-gradient(135deg, rgba(155, 89, 182, 0.2), rgba(155, 89, 182, 0.05)); }

.doelgroep-icon i {
    font-size: 32px;
    color: var(--primary);
}

.doelgroep-card:nth-child(1) .doelgroep-icon i { color: var(--primary); }
.doelgroep-card:nth-child(2) .doelgroep-icon i { color: var(--secondary); }
.doelgroep-card:nth-child(3) .doelgroep-icon i { color: var(--coral); }
.doelgroep-card:nth-child(4) .doelgroep-icon i { color: var(--purple); }

.doelgroep-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
}

.age-range {
    display: inline-block;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    background: rgba(74, 124, 89, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.doelgroep-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
}

.tarieven-content {
    max-width: 600px;
    margin: 0 auto;
}

.tarieven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tarieven-single {
    max-width: 500px;
}

.tarieven-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 40px var(--shadow);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.3s ease;
}

.tarieven-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(101, 188, 123, 0.2);
}

.tarieven-card-highlighted {
    border-color: var(--primary);
    transform: scale(1.02);
}

.tarieven-card-highlighted:hover {
    transform: scale(1.02) translateY(-5px);
}

.tarief-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.tarief-main {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.tarief-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.tarief-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.tarief-amount .currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 8px;
}

.tarief-amount .amount {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.tarief-per {
    font-size: 16px;
    color: var(--text-light);
}

.tarief-info {
    margin-bottom: 28px;
}

.tarief-info p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

.tarief-features {
    list-style: none;
    text-align: left;
}

.tarief-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--text);
}

.tarief-features li i {
    color: var(--primary);
    font-size: 16px;
}

.tarieven-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 32px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: 12px;
}

.tarieven-note i {
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tarieven-note p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.1);
}

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

.form-privacy {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.form-message {
    padding: 16px;
    border-radius: 10px;
    font-size: 15px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(74, 124, 89, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-details h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-details a,
.contact-details p {
    font-size: 18px;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-details a:hover {
    opacity: 0.8;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.contact-social a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Centered Contact Section */
.contact-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.contact-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.contact-icon-large i {
    font-size: 42px;
    color: var(--white);
}

.section-label-light {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.contact-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 40px;
    background: var(--white);
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 60px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-email-link i {
    font-size: 1.1rem;
}

.contact-extra {
    margin-top: 24px;
}

.contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.contact-phone-link:hover {
    opacity: 1;
}

.contact-social-centered {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.contact-social-centered a {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-centered a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    display: block;
}

.footer-logo .logo-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    padding: 6px 0;
    transition: color 0.3s ease;
}

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

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.admin-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-branch {
        width: 160px;
        opacity: 0.7;
    }

    .hero-branch-1 {
        top: 3%;
        left: -3%;
    }

    .hero-branch-2 {
        top: 5%;
        right: -5%;
    }

    .hero-blossom {
        opacity: 0.6;
    }

    .hero-blossom-1 {
        width: 45px;
        top: 28%;
        left: 3%;
    }

    .hero-blossom-2 {
        width: 40px;
        top: 22%;
        right: 5%;
    }

    .hero-blossom-3 {
        width: 35px;
        bottom: 35%;
        left: 5%;
    }

    .hero-blossom-4 {
        width: 30px;
        bottom: 28%;
        right: 4%;
    }

    .hero-petal {
        width: 18px;
        opacity: 0.5;
    }

    .hero-petal-1 {
        top: 18%;
        left: 12%;
    }

    .hero-petal-2 {
        top: 12%;
        left: 30%;
    }

    .hero-petal-3 {
        top: 20%;
        right: 15%;
    }

    .hero-petal-4 {
        top: 8%;
        right: 28%;
    }

    .hero-petal-5 {
        top: 25%;
        left: 45%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .werkwijze-timeline::before {
        left: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 70px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .hero-branch {
        width: 130px;
        opacity: 0.6;
    }

    .hero-branch-1 {
        top: 2%;
        left: -6%;
    }

    .hero-branch-2 {
        top: 4%;
        right: -8%;
    }

    .hero-blossom {
        opacity: 0.55;
    }

    .hero-blossom-1 {
        width: 38px;
        top: 22%;
        left: 2%;
    }

    .hero-blossom-2 {
        width: 32px;
        top: 18%;
        right: 3%;
    }

    .hero-blossom-3 {
        width: 28px;
        bottom: 38%;
        left: 3%;
    }

    .hero-blossom-4 {
        width: 24px;
        bottom: 32%;
        right: 2%;
    }

    .hero-petal {
        width: 15px;
        opacity: 0.45;
    }

    .hero-petal-1 {
        top: 15%;
        left: 10%;
    }

    .hero-petal-2 {
        top: 10%;
        left: 25%;
    }

    .hero-petal-3 {
        top: 18%;
        right: 12%;
    }

    .hero-petal-4 {
        top: 6%;
        right: 22%;
    }

    .hero-petal-5 {
        top: 22%;
        left: 42%;
    }

    .btn-large {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .doelgroepen-grid {
        grid-template-columns: 1fr;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .methods-section {
        padding: 28px 20px;
    }

    .method-item {
        padding: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 28px;
    }

    .werkwijze-step {
        flex-wrap: wrap;
    }

    .step-icon {
        display: none;
    }

    .tarieven-card {
        padding: 32px 24px;
    }

    .tarief-amount .amount {
        font-size: 56px;
    }
}

/* Contact Wrapper Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-info-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-content a,
.contact-info-content span {
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-content a:hover {
    opacity: 0.8;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contact-form .form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.contact-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.contact-form .form-checkbox label {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}

.contact-form .form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.section-primary .contact-social {
    margin-top: 24px;
}

.section-primary .contact-social a {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-primary .contact-social a:hover {
    background: var(--white);
    color: var(--primary);
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
        padding: 28px;
    }
}

/* Animation handled by JS scroll reveal - see initScrollReveal() */

/* ============================================
   DYNAMIC SCROLL & STICKY EFFECTS
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--coral));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Sticky Decorations Container */
.sticky-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

.sticky-element {
    position: fixed;
    width: 50px;
    height: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.sticky-element.visible {
    opacity: 0.7;
}

.sticky-element svg {
    width: 100%;
    height: 100%;
}

.sticky-pencil {
    left: 3%;
    top: 30%;
}

.sticky-star {
    right: 3%;
    top: 45%;
}

.sticky-book {
    left: 5%;
    top: 60%;
}

/* ======================
   Reviews Section
   ====================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 28px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(101, 188, 123, 0.15);
    border-color: var(--primary-light);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

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

.review-meta {
    flex: 1;
}

.review-author {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #F59E0B;
    font-size: 14px;
}

.review-stars i.empty {
    color: #ddd;
}

.review-google {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-google i {
    font-size: 18px;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-text {
    margin: 0 0 14px 0;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.review-date {
    font-size: 13px;
    color: #999;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-outline i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 22px;
    }
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for cards */
.service-card.reveal { transition-delay: 0.1s; }
.service-card.reveal:nth-child(2) { transition-delay: 0.2s; }
.service-card.reveal:nth-child(3) { transition-delay: 0.3s; }
.service-card.reveal:nth-child(4) { transition-delay: 0.4s; }

.doelgroep-card.reveal { transition-delay: 0.1s; }
.doelgroep-card.reveal:nth-child(2) { transition-delay: 0.15s; }
.doelgroep-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.doelgroep-card.reveal:nth-child(4) { transition-delay: 0.25s; }

/* Hero content parallax override */
.hero-content {
    will-change: transform, opacity;
}

.hero-tree-container {
    will-change: transform;
}

/* Floating SVG mouse interaction */
.floating-svg {
    will-change: transform;
    transition: filter 0.3s ease;
}

.floating-svg:hover {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25)) brightness(1.1);
}

/* Section backgrounds with subtle patterns */
.section-primary {
    position: relative;
    overflow: hidden;
}

.section-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Smooth border transition on hover (no flicker) */
.service-card:hover,
.doelgroep-card:hover {
    border-color: var(--primary-light);
}

/* Tablet adjustments for dynamic elements */
@media (max-width: 1024px) {
    .floating-svg-9,
    .floating-svg-10,
    .floating-svg-11,
    .floating-svg-12,
    .floating-svg-13,
    .floating-svg-14,
    .floating-svg-15,
    .floating-svg-16 {
        transform: scale(0.85);
    }
}

/* Mobile adjustments for dynamic elements */
@media (max-width: 768px) {
    .sticky-decorations {
        display: none;
    }

    .floating-svg {
        display: none;
    }

    .floating-letter {
        display: none;
    }

    .hero .school-svg-defs + div {
        display: none;
    }
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
.hero,
.hero-bg,
.floating-svg,
.floating-letter,
.hero-tree-container {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    display: block;
    background: #f0f0f0;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.8), rgba(225, 48, 108, 0.8), rgba(247, 119, 55, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay > i {
    font-size: 32px;
    color: white;
    margin-bottom: 12px;
}

.instagram-stats {
    display: flex;
    gap: 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.instagram-stats i {
    font-size: 14px;
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-cta .btn:hover {
    background: linear-gradient(135deg, #6a2f91 0%, #c72760 50%, #d96830 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.instagram-cta .btn i {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .instagram-item {
        border-radius: 12px;
    }

    .instagram-overlay > i {
        font-size: 24px;
    }

    .instagram-stats {
        font-size: 12px;
        gap: 12px;
    }
}
