:root {
    --bg-main: #F4F5F8; 
    --card-bg: #FFFFFF; 
    --text-dark: #0F172A; 
    --text-muted: #64748B; 
    --accent-orange: #ff5a00; 
    --accent-blue: #0F172A; 
    --border-light: #E2E8F0; 
    
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-premium: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
}

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

/* De custom cursor hierboven vervangt de normale pijl voor de "premium" look, maar een
   tekst-invoerveld heeft echt een zichtbare tekst-cursor nodig om te kunnen zien waar je
   typt — dus die krijgen hun eigen, normale cursor terug. */
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]), textarea {
    cursor: text;
}
input[type="checkbox"], input[type="radio"], select {
    cursor: pointer;
}

body { 
    background-color: var(--bg-main); 
    color: var(--text-dark); 
    font-family: var(--font-body); 
    overflow-x: hidden; 
}

a { 
    text-decoration: none; 
    color: inherit; 
}

/* --- CUSTOM CURSOR --- */
.cursor-dot { 
    width: 8px; 
    height: 8px; 
    background: var(--accent-orange); 
    border-radius: 50%; 
    position: fixed; 
    pointer-events: none; 
    z-index: 9999; 
    transform: translate(-50%, -50%); 
    transition: width 0.2s, height 0.2s; 
}

.cursor-outline { 
    width: 40px; 
    height: 40px; 
    border: 1px solid rgba(255, 90, 0, 0.3); 
    border-radius: 50%; 
    position: fixed; 
    pointer-events: none; 
    z-index: 9998; 
    transform: translate(-50%, -50%); 
    transition: width 0.2s, height 0.2s, background-color 0.2s; 
}

.cursor-hover .cursor-dot { width: 0; height: 0; }
.cursor-hover .cursor-outline { 
    width: 60px; 
    height: 60px; 
    background-color: rgba(255, 90, 0, 0.1); 
    border-color: var(--accent-orange); 
}

/* --- TYPOGRAFIE & BASIS --- */
h1, h2, h3, h4 { 
    font-family: var(--font-head); 
    font-weight: 800; 
    color: var(--text-dark); 
}

p { 
    color: var(--text-muted); 
    line-height: 1.6; 
}

.accent-text { color: var(--accent-orange); }

/* --- BUTTONS --- */
.btn { 
    background: var(--accent-orange); 
    color: #FFF; 
    font-family: var(--font-head); 
    font-weight: 700; 
    padding: 12px 28px; 
    border-radius: 30px; 
    border: none; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    white-space: nowrap;
}
.btn:hover { 
    background: #E04E00; 
    transform: translateY(-2px); 
    box-shadow: 0 10px 20px rgba(255, 90, 0, 0.2); 
}
.btn-full { width: 100%; }
.btn-light { 
    background: #FFF; 
    color: var(--text-dark); 
    border: 1px solid var(--border-light);
}
.btn-light:hover { 
    background: #F8F9FA; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
}

/* --- NAVIGATIE --- */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 920px;
    background: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-light); 
    border-radius: 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 20px; 
    z-index: 1000; 
    box-shadow: var(--shadow-premium); 
}
.logo { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; color: var(--accent-blue); }
.logo span { color: var(--accent-orange); }
.nav-links { display: flex; gap: 1.6rem; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; white-space: nowrap; }
.hover-link { position: relative; color: var(--text-dark); }
.hover-link::after { 
    content: ''; 
    position: absolute; 
    width: 0; 
    height: 2px; 
    bottom: -4px; 
    left: 0; 
    background-color: var(--accent-orange); 
    transition: width 0.3s ease; 
}
.hover-link:hover::after { width: 100%; }

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 6px 10px;
}
.mobile-nav-panel {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: var(--card-bg);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}
.mobile-nav-panel.is-open { display: flex; }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav-close { background: none; border: none; color: var(--text-dark); font-size: 1.5rem; cursor: pointer; }
.mobile-nav-link { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--text-dark); }

.card-panel { 
    background: var(--card-bg); 
    border-radius: 24px; 
    padding: 2.5rem; 
    box-shadow: var(--shadow-premium); 
    border: 1px solid #FFF; 
    position: relative; 
    overflow: hidden; 
}

/* --- HERO SPECIAL --- */
.hero-special { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg-text { position: absolute; width: 100%; top: 50%; transform: translateY(-50%) rotate(-5deg); opacity: 0.03; z-index: 0; pointer-events: none; }
.marquee-hero { 
    font-family: var(--font-head); 
    font-size: 10rem; 
    font-weight: 900; 
    white-space: nowrap; 
    -webkit-text-stroke: 2px var(--text-dark); 
    color: transparent; 
    animation: marqueeLeft 30s linear infinite; 
}
.marquee-hero.reverse { animation: marqueeRight 30s linear infinite; margin-top: -2rem;}
@keyframes marqueeLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.hero-center-piece { 
    z-index: 2; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    padding: 1.5rem; 
    border-radius: 40px; 
    max-width: 700px; 
    width: 90%; 
    text-align: center; 
    background: rgba(255,255,255,0.85); 
    backdrop-filter: blur(20px); 
    border: 1px solid var(--border-light); 
}
.video-mask { 
    width: 100%; 
    height: 350px; 
    border-radius: 30px; 
    background: #E2E8F0; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border: 2px dashed #CBD5E1; 
    margin-bottom: 2rem; 
    position: relative; 
    padding: 2rem;
}
.placeholder-text { font-family: var(--font-head); color: var(--text-muted); font-weight: 600; z-index: 2; line-height: 1.5;}
.bg-vid { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; z-index: 1;}
.video-mask.has-media, .image-placeholder.has-media { border: none; background: var(--text-dark); padding: 0; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1rem; color: var(--accent-blue); }
.hero-content p { font-size: 1.1rem; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }

/* --- BENTO OPLEIDINGEN --- */
.bento-section { padding: 5rem 5%; max-width: 1400px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; font-size: 2rem; }
.section-header h2 { font-size: 3rem; line-height: 1.2; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hover-scale { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.hover-scale:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12); }
.stretched-link { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; }

.bento-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem;}
.icon-wrap { font-size: 2.5rem; background: var(--bg-main); width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 20px; color: var(--accent-blue); }
.price-pill { padding: 8px 16px; border: 1px solid var(--border-light); border-radius: 20px; font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--accent-blue); }

.bento-auto { grid-column: span 2; grid-row: span 2; }
.bento-auto h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.bento-status { grid-column: span 1; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.highlight-panel { background: var(--accent-orange); border: none; }
.live-dot { 
    width: 12px; 
    height: 12px; 
    background: #FFF; 
    border-radius: 50%; 
    margin: 0 auto 1rem; 
    box-shadow: 0 0 15px rgba(255,255,255,0.8); 
    animation: pulseLive 2s infinite; 
}
@keyframes pulseLive { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
.bento-scooter { grid-column: span 1; }
.bento-motor { grid-column: span 2; background: var(--accent-blue); }
.bento-motor h2 { color: #FFF; margin-bottom: 0.5rem;}
.bento-motor p { color: #CBD5E1; }
.bento-motor .icon-wrap { background: rgba(255,255,255,0.1); color: #FFF;}
.bento-motor .dark-pill { border-color: rgba(255,255,255,0.2); color: #FFF; }

/* --- PAKKETTEN SECTIE --- */
.pricing-section { padding: 5rem 5%; max-width: 1400px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card { display: flex; flex-direction: column; }
.pricing-price { font-size: 3rem; color: var(--accent-blue); font-family: var(--font-head); font-weight: 800; margin: 1rem 0; }
.pricing-features { list-style: none; margin: 1.5rem 0; flex-grow: 1; border-top: 1px solid var(--border-light); padding-top: 1.5rem;}
.pricing-features li { margin-bottom: 1rem; display: flex; align-items: center; gap: 10px; color: var(--text-dark); font-weight: 600;}
.pricing-features i { color: var(--accent-orange); font-size: 1.2rem; }
.pricing-features li.disabled { opacity: 0.4; text-decoration: line-through; }
.pricing-features li.disabled i { color: var(--text-muted); }

/* Uitgelicht pakket aanpassingen (badge hangend aan bovenrand) */
.featured-pricing { 
    border: 2px solid var(--accent-orange); 
    box-shadow: 0 20px 50px rgba(255, 90, 0, 0.15); 
    position: relative; 
    padding-top: 3.5rem; 
    overflow: visible; /* Zorg dat overflow niet op hidden staat als je de badge boven de kaart wilt laten uitsteken, maar bij top: -2px is dat meestal niet nodig */
}
.featured-pricing .badge { 
    position: absolute; 
    top: -2px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--accent-orange); 
    color: white; 
    padding: 6px 24px; 
    border-radius: 0 0 16px 16px; 
    font-size: 0.85rem; 
    font-weight: 800; 
    font-family: var(--font-head); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    z-index: 10; 
}

/* --- INSTRUCTEUR SECTIE --- */
.instructor-section { padding: 5rem 5%; max-width: 1400px; margin: 0 auto; }
.instructor-container { display: flex; gap: 4rem; align-items: center; padding: 3rem; }
.instructor-photo { flex: 1; min-width: 300px; aspect-ratio: 3/4; border-radius: 20px; }
.instructor-text { flex: 1; min-width: 300px; }
.instructor-text .label { color: var(--accent-orange); font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
.instructor-text h2 { font-size: 3rem; margin: 0.5rem 0 1.5rem; }
.check-list { list-style: none; margin-top: 2rem; }
.check-list li { margin-bottom: 1rem; color: var(--text-dark); font-weight: 600; font-family: var(--font-head); display: flex; align-items: center; gap: 10px; }
.check-list i { color: var(--accent-orange); font-size: 1.2rem; }

/* --- MEDIA VAULT --- */
.media-vault { padding: 5rem 5%; max-width: 1400px; margin: 0 auto; }
.vault-header { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.vault-header h2 { font-size: 3rem; margin-bottom: 1rem; }
.extended-media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.image-placeholder { display: flex; align-items: center; justify-content: center; background: #E2E8F0; border: 2px dashed #CBD5E1; color: var(--text-muted); font-weight: 600; text-align: center; padding: 2rem; overflow: hidden; }
.reel-format { aspect-ratio: 9/16; border-radius: 20px; grid-column: span 1; }
.square-format { aspect-ratio: 1/1; border-radius: 20px; grid-column: span 1; }
.wide-format { aspect-ratio: 16/9; border-radius: 24px; grid-column: span 2; }
.reel-format.has-media, .square-format.has-media, .wide-format.has-media { aspect-ratio: auto; }

/* --- GECENTREERDE REVIEWS --- */
.review-section { padding: 5rem 5%; max-width: 1400px; margin: 0 auto; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { border-top: 4px solid var(--accent-orange); display: flex; flex-direction: column; }
.stars { color: var(--accent-orange); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px;}
.review-card p { font-size: 1.1rem; margin-bottom: 1.5rem; font-style: italic; color: var(--text-dark); flex-grow: 1; }
.review-card h4 { font-size: 1rem; color: var(--text-muted); }

/* --- CONTACT FORM --- */
.contact-section { padding: 5rem 5% 10rem; max-width: 1200px; margin: 0 auto; }
.contact-wrapper { display: flex; gap: 4rem; flex-wrap: wrap; padding: 4rem; border-top: 6px solid var(--accent-blue); }
.contact-info { flex: 1; min-width: 300px; }
.contact-info h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; }
.contact-details { margin-top: 3rem; font-family: var(--font-head); font-size: 1.1rem; color: var(--accent-blue); font-weight: 600; line-height: 2;}
.contact-details i { color: var(--accent-orange); margin-right: 10px; width: 20px;}

.premium-form { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 2.5rem; margin-top: 1rem; }
.input-group { position: relative; }
.input-group input, .input-group select { width: 100%; padding: 10px 0; background: transparent; border: none; border-bottom: 2px solid var(--border-light); color: var(--text-dark); font-size: 1.1rem; font-family: var(--font-body); outline: none; transition: border-color 0.3s; }
.input-group label { position: absolute; top: 10px; left: 0; font-family: var(--font-head); color: var(--text-muted); font-weight: 600; transition: 0.3s ease; pointer-events: none; }
.input-group input:focus, .input-group input:not(:placeholder-shown) { border-bottom-color: var(--accent-orange); }
.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label { top: -20px; font-size: 0.8rem; color: var(--accent-orange); }
.input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label { top: -20px; font-size: 0.8rem; color: var(--accent-orange); }

.star-rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.star-rating input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-rating label { font-size: 2.4rem; line-height: 1; padding: 10px 8px; color: var(--border-light); cursor: pointer; transition: color 0.15s ease; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--accent-orange);
}

/* --- FOOTER --- */
.minimal-footer { text-align: center; padding: 4rem 5%; border-top: 1px solid var(--border-light); font-family: var(--font-head); color: var(--text-muted); background-color: var(--card-bg);}
.minimal-footer h2 { font-size: 2rem; color: var(--accent-blue); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-auto, .bento-motor { grid-column: span 2; }
    .extended-media-grid { grid-template-columns: repeat(2, 1fr); }
    .instructor-container { flex-direction: column; }
    .contact-wrapper { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .review-grid { grid-template-columns: 1fr; }
    .bento-auto, .bento-motor, .bento-status, .bento-scooter { grid-column: span 1; }
    .featured-pricing { margin-top: 2rem; }
    .extended-media-grid { grid-template-columns: 1fr; }
    .wide-format, .square-format, .reel-format { grid-column: span 1; aspect-ratio: 16/9; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-nav-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
}

/* --- PAKKET DETAILPAGINA (voorheen 6x gedupliceerd, nu één centrale set regels) --- */
.simple-nav { padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; background: var(--bg-main); }
.back-link { font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: var(--text-dark); display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.back-link:hover { color: var(--accent-orange); }

.page-container { max-width: 1200px; margin: 2rem auto 5rem; padding: 0 5%; display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }

.package-header h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 0.5rem; }
.price-tag { font-size: 2.5rem; font-family: var(--font-head); font-weight: 800; color: var(--accent-blue); margin-bottom: 1.5rem; display: block; }
.intro-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 3rem; }
.badge-popular { display: inline-block; background: var(--accent-orange); color: #fff; padding: 6px 18px; border-radius: 20px; font-family: var(--font-head); font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }

.feature-list { list-style: none; margin-bottom: 3rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.5rem; }
.feature-list i { color: var(--accent-orange); font-size: 1.5rem; margin-top: 3px; }
.feature-list i.muted-icon { color: var(--border-light); }
.feature-list h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.feature-list p { color: var(--text-muted); font-size: 0.95rem; }

.sticky-sidebar { position: sticky; top: 2rem; }
.form-header h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.form-header p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.sticky-sidebar .input-group { margin-bottom: 2rem; }
.sticky-sidebar .input-group input { font-size: 1rem; }

@media (max-width: 900px) {
    .page-container { grid-template-columns: 1fr; gap: 2rem; }
    .sticky-sidebar { position: relative; top: 0; }
    .package-header h1 { font-size: 2.5rem; }
}

/* --- WHATSAPP ZWEVENDE KNOP --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.6);
    animation: whatsapp-pulse 2.4s ease-in-out infinite;
    transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.6); }
    50% { box-shadow: 0 8px 30px -4px rgba(37, 211, 102, 0.95); }
}
@media (max-width: 600px) {
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 16px; right: 16px; }
}

/* --- SCROLL-REVEAL ANIMATIES --- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}
