/*
Theme Name: Studius
Theme URI: https://studius.nl
Author: Benjamin Peters (Baptiq)
Description: Concept website — licht thema, Studius huisstijl, multi-page
Version: 2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: studius
*/

/* ============================================
   Lokale Fonts — Be Vietnam Pro + Nunito Sans
   Gehost vanuit assets/fonts/ i.p.v. Google Fonts (AVG-compliant)
   ============================================ */

@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('assets/fonts/BeVietnamPro-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('assets/fonts/BeVietnamPro-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('assets/fonts/BeVietnamPro-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('assets/fonts/BeVietnamPro-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Be Vietnam Pro';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('assets/fonts/BeVietnamPro-ExtraBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('assets/fonts/NunitoSans-Variable.woff2') format('woff2');
}

/* ============================================
   CSS Custom Properties
   Overschreven door site-config.php via inline style
   ============================================ */

:root {
    --primary: #fd8549;
    --primary-dark: #e06b2e;
    --secondary: #8ae0e5;
    --text: #2f3c4c;
    --text-light: #566476;
    --bg: #ffffff;
    --bg-light: #f6fdfe;
    --border: #e9eaec;
    --hero-bg: #2f3c4c;
    --hero-text: #ffffff;
    --font: 'Nunito Sans', sans-serif;
    --font-heading: 'Be Vietnam Pro', sans-serif;
    --max-width: 1140px;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: clip;
}

html {
    overflow-x: clip;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.15) transparent;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--text); line-height: 1.25; }
::selection { background: rgba(253, 133, 73, 0.2); color: var(--text); }

/* ============================================
   Layout
   ============================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow { max-width: 800px; }
.container.narrow { max-width: 800px; }

/* Info passage — SEO-tekstblok, visueel geïntegreerd met de rest van de pagina */
.info-passage {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 32px 36px;
    max-width: 900px;
}

.info-passage h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.info-passage p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.info-passage p:last-child {
    margin-bottom: 0;
}

/* Info twee-koloms: illustratie links, tekst rechts */
.info-split {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: start;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 900px;
}

.info-split-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: rgba(253, 133, 73, 0.08);
    border-radius: 20px;
    flex-shrink: 0;
}

.info-split-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 1.5;
}

.info-split-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.info-split-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Stappen-timeline */
.steps-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
}

/* Verticale lijn tussen stappen */
.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
    padding-top: 2px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Interactieve stappen: klikbare kaarten die uitklappen */
.step-item {
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.step-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(253, 133, 73, 0.08);
}

.step-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(253, 133, 73, 0.1);
    border-left: 3px solid var(--primary);
}

/* Nummer wordt kleiner in de kaart */
.step-item.active .step-number {
    transform: scale(1.08);
}

.step-content p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: max-height 0.4s var(--ease), opacity 0.35s ease, margin 0.35s ease;
}

.step-item.active .step-content p {
    max-height: 150px;
    opacity: 1;
    margin-top: 8px;
}

/* Plus/min indicator */
.step-content h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.step-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(253, 133, 73, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: background var(--transition), transform var(--transition);
}

.step-toggle::before,
.step-toggle::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 1px;
    transition: transform 0.3s var(--ease), opacity 0.3s ease;
}

/* Horizontale lijn (altijd zichtbaar) */
.step-toggle::before {
    width: 12px;
    height: 2px;
}

/* Verticale lijn (verdwijnt bij active → wordt min-teken) */
.step-toggle::after {
    width: 2px;
    height: 12px;
}

.step-item.active .step-toggle {
    background: var(--primary);
    transform: rotate(180deg);
}

.step-item.active .step-toggle::before,
.step-item.active .step-toggle::after {
    background: #fff;
}

.step-item.active .step-toggle::after {
    opacity: 0;
    transform: rotate(90deg);
}

/* Verticale lijn verbergen bij kaart-stijl (nummer staat in de kaart) */
.step-item:not(:last-child)::after {
    display: none;
}

/* Kleurvariaties per dienst */
.steps-timeline--bijles .step-number {
    background: var(--secondary);
    color: var(--text);
}
.steps-timeline--bijles .step-item:hover { border-color: var(--secondary); box-shadow: 0 2px 12px rgba(138, 224, 229, 0.12); }
.steps-timeline--bijles .step-item.active { border-color: var(--secondary); border-left-color: var(--secondary); box-shadow: 0 4px 20px rgba(138, 224, 229, 0.15); }
.steps-timeline--bijles .step-toggle { background: rgba(138, 224, 229, 0.12); }
.steps-timeline--bijles .step-toggle::before,
.steps-timeline--bijles .step-toggle::after { background: var(--secondary); }
.steps-timeline--bijles .step-item.active .step-toggle { background: var(--secondary); }

.steps-timeline--examen .step-number {
    background: #7c6fe0;
}
.steps-timeline--examen .step-item:hover { border-color: #7c6fe0; box-shadow: 0 2px 12px rgba(124, 111, 224, 0.1); }
.steps-timeline--examen .step-item.active { border-color: #7c6fe0; border-left-color: #7c6fe0; box-shadow: 0 4px 20px rgba(124, 111, 224, 0.12); }
.steps-timeline--examen .step-toggle { background: rgba(124, 111, 224, 0.1); }
.steps-timeline--examen .step-toggle::before,
.steps-timeline--examen .step-toggle::after { background: #7c6fe0; }
.steps-timeline--examen .step-item.active .step-toggle { background: #7c6fe0; }

/* Citeerbare passage — lang tekstblok met dezelfde styling als content-text */
.container.narrow p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.98rem;
}
.container.narrow h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.section {
    padding: 80px 0;
    position: relative;
    overflow-x: clip;          /* voorkomt horizontale scrollbar door kinderen die buiten viewport vallen */
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary,
a.btn-primary,
a.btn-primary:visited {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(253, 133, 73, 0.3);
}

.btn-primary:hover,
a.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 133, 73, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: all var(--transition);
}

.btn-whatsapp:hover {
    background: #1fba59;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* ============================================
   Scroll Reveal Animaties
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left.active,
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-pop {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    will-change: opacity, transform;
}

.reveal-pop.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* ============================================
   Header / Navigatie
   ============================================ */

.site-header {
    position: fixed !important;   /* !important: beschermt tegen LiteSpeed UCSS override */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo:hover { opacity: 0.9; }

.logo-img {
    height: 42px;
    width: auto;
}

.site-nav {
    display: flex;
    align-items: center;
}

.site-nav ul {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.site-nav a {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.site-header.scrolled .site-nav a {
    color: var(--text-light);
}

.site-nav a:hover,
.site-nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a.active {
    color: var(--primary);
    background: rgba(253, 133, 73, 0.08);
}

.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-1px);
}

.nav-cta--secondary {
    background: transparent !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.6) !important;
}

.nav-cta--secondary:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: #fff !important;
}

/* Pijltje animatie bij hover */
.nav-cta--secondary svg {
    transition: transform 0.25s var(--ease);
}

.nav-cta--secondary:hover svg {
    transform: translate(2px, -2px);
}

/* Scrolled header: outline past zich aan naar donkere tekst */
.site-header.scrolled .nav-cta--secondary {
    color: var(--text) !important;
    border-color: var(--text) !important;
    background: transparent !important;
}

.site-header.scrolled .nav-cta--secondary:hover {
    background: rgba(47,60,76,0.06) !important;
}

/* Mobiele CTA-bar (altijd zichtbaar op mobiel, verborgen op desktop) */
.mobile-cta-bar {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 8px;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

/* Verberg CTA-bar als hamburger menu open is (voorkom dubbele knoppen) */
/* .menu-open = JS-fallback voor browsers zonder :has() support (Firefox <121, Samsung Internet) */
.site-header:has(.site-nav.active) .mobile-cta-bar,
.site-header.menu-open .mobile-cta-bar {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
}

.mobile-cta {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 16px;
    border-radius: 8px;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}

.mobile-cta--contact {
    background: var(--primary);
    color: #fff;
}

.mobile-cta--studyspace {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.6);
}

.mobile-cta--studyspace svg {
    margin-left: 3px;
    vertical-align: middle;
    transition: transform 0.25s var(--ease);
}

/* Scrolled: kleuren aanpassen voor witte header */
.site-header.scrolled .mobile-cta--studyspace {
    color: var(--text);
    border-color: var(--text);
}

/* Hamburger — !important overal nodig om Astra theme CSS uit UCSS te overrulen */
.menu-toggle {
    display: none;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    padding: 10px !important;
    z-index: 101;
    box-shadow: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    line-height: 1 !important;
}

/* Actieve state: oranje cirkel met X als visuele indicator voor sluiten */
.menu-toggle.active {
    background: var(--primary) !important;
    border-radius: 50% !important;
    padding: 0 !important;
    width: 42px;
    height: 42px;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.site-header.scrolled .menu-toggle span { background: var(--text); }

/* Actieve spans: absoluut gepositioneerd in het midden van de cirkel, gedraaid tot een X */
.menu-toggle.active span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0 !important;
    background: #fff !important;
}
.menu-toggle.active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ============================================
   Hero (Homepage)
   ============================================ */

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

.hero-blobs {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    max-width: 600px;
    z-index: 1;
    opacity: 0.5;
    animation: blobFloat 20s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 15px) rotate(5deg); }
    66% { transform: translate(10px, -10px) rotate(-3deg); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,60,76,0.92) 0%, rgba(47,60,76,0.85) 50%, rgba(47,60,76,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.hero-text {
    font-size: 1.05rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.6;
    color: #fff;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ============================================
   Page Header (subpagina's)
   ============================================ */

.page-header {
    background: var(--bg-light);
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-blobs {
    position: absolute;
    top: -20%;
    right: -5%;
    width: 50%;
    max-width: 500px;
    opacity: 0.4;
    z-index: 0;
    animation: blobFloat 25s ease-in-out infinite;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #f97316 100%);
    color: #fff;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.stat-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-top: 4px;
}

.stat-label {
    display: block;
    margin-top: 6px;
    font-size: 0.88rem;
    opacity: 0.9;
    font-weight: 600;
}

.google-reviews-btn {
    border-color: var(--primary);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.google-reviews-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   Service Cards (homepage diensten overzicht)
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    text-decoration: none;
    color: var(--text);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(253, 133, 73, 0.2);
    color: var(--text);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform var(--transition);
}

.service-card:hover .service-link { transform: translateX(4px); }

/* Service page icon (groot op dienstpagina's) */
.service-page-icon {
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.8;
}

/* ============================================
   Pricing Cards
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    border-color: var(--primary);
    box-shadow: 0 4px 24px rgba(253, 133, 73, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.price-from {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-features svg { flex-shrink: 0; }

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================
   Google Reviews
   ============================================ */

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.google-stars {
    display: flex;
    gap: 2px;
    color: #fbbc04;
    font-size: 1.4rem;
}

.google-score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.google-count {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* Reviews carousel */
.reviews-carousel {
    position: relative;
    padding: 0 48px;       /* ruimte voor pijltjes */
}

.reviews-viewport {
    overflow: hidden;      /* overflow op viewport — pijltjes en dots blijven zichtbaar */
}

.reviews-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Op desktop: 3 kaarten naast elkaar */
@media (min-width: 769px) {
    .review-card {
        min-width: calc(100% / 3);
    }
}

/* Op tablet: 2 kaarten */
@media (min-width: 481px) and (max-width: 768px) {
    .review-card {
        min-width: 50%;
    }
}

.review-card-inner {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
    flex: 1;
}

.review-author {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* Navigatie bolletjes */
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-bottom: 4px;   /* voorkom afsnijden door transform scale */
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s var(--ease);
}

.reviews-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============================================
   Steps / Hoe het werkt
   ============================================ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 18%;
    right: 18%;
    height: 2px;
    background: linear-gradient(to right, var(--border), var(--primary), var(--border));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 24px 16px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 4px 16px rgba(253, 133, 73, 0.3);
    transition: all var(--transition);
}

.step-card:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(253, 133, 73, 0.4);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   CTA Section
   ============================================ */

.cta-section {
    background: var(--hero-bg);
    padding: 80px 24px;
    text-align: center;
    overflow-x: clip;          /* voorkomt horizontale scrollbar */
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Content Split (twee kolommen)
   ============================================ */

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

/* Voorkom dat grid-children breder worden dan hun kolom (standaard CSS Grid overflow fix) */
.content-split > * {
    min-width: 0;
}

.content-split--reverse {
    direction: rtl;
}

.content-split--reverse > * {
    direction: ltr;
}

/* Titel boven content-split: full-width, loopt door boven de foto */
.content-split-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.content-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    overflow-wrap: break-word;
}

.content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.98rem;
}

.content-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.image-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.image-grid-2 img {
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ============================================
   Benefits Grid
   ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

/* Bij oneven aantal op desktop: laatste kaart gecentreerd */
@media (min-width: 769px) {
    .benefits-grid > .benefit-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 12px);
        justify-self: center;
    }
}

.benefit-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    display: grid;
    grid-template-columns: 32px 1fr;   /* icoon links, tekst rechts — altijd gelijk uitgelijnd */
    column-gap: 20px;
    row-gap: 4px;
    align-items: start;
}

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

.benefit-icon {
    grid-row: 1 / 3;                   /* icoon strekt over titel + beschrijving */
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   Price Highlight (inline prijs op dienstpagina)
   ============================================ */

.price-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: #fff;
    padding: 32px 40px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 24px rgba(253, 133, 73, 0.1);
}

.price-highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-highlight-content p {
    color: var(--text-light);
    font-size: 0.92rem;
}

.price-highlight-price {
    text-align: center;
}

.price-highlight-price .price-from {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-highlight-price .price-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.price-highlight-price .price-period {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ============================================
   Testimonial Featured (groot, met foto)
   ============================================ */

.testimonial-featured {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(253, 133, 73, 0.15);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content blockquote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-content cite {
    font-style: normal;
}

.testimonial-content cite strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
}

.testimonial-content cite span {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ============================================
   Training Cards (examentraining pagina)
   ============================================ */

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.training-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.4s var(--ease);
}

.training-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.training-type {
    display: inline-block;
    background: rgba(253, 133, 73, 0.1);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.training-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.training-datum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

/* ============================================
   Team Grid
   ============================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

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

.team-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
}

/* LEGO avatar afbeelding (vervangt letter-cirkel wanneer beschikbaar) */
.team-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================
   USP Grid
   ============================================ */

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.usp-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
}

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

.usp-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

.usp-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.usp-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ============================================
   Check List (dienstpagina's vakkenlijst)
   ============================================ */

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.6rem;
    line-height: 1.5;
}

.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================
   FAQ Accordion
   ============================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-item.faq-open {
    border-color: rgba(253, 133, 73, 0.3);
    box-shadow: 0 2px 12px rgba(253, 133, 73, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
    color: var(--text-light);
}

.faq-open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   Contact Page
   ============================================ */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-note {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

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

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

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.form-group small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-form--light input,
.contact-form--light textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: all var(--transition);
    width: 100%;
}

.contact-form--light input:focus,
.contact-form--light textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(253, 133, 73, 0.1);
}

.contact-form--light textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-group--icons {
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    cursor: pointer;
    color: var(--text);
}

.checkbox-group--icons .checkbox-label {
    padding: 10px 14px;
    border: 2px solid var(--border, #e5e7eb);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
}

.checkbox-group--icons .checkbox-label:hover {
    border-color: var(--primary);
    background: rgba(253, 133, 73, 0.04);
}

.checkbox-group--icons .checkbox-label:has(input:checked) {
    border-color: var(--primary);
    background: rgba(253, 133, 73, 0.08);
}

.checkbox-icon {
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

.contact-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-detail svg { flex-shrink: 0; margin-top: 2px; }

.contact-detail strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-detail p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-detail a { color: var(--primary); }
.contact-detail a:hover { color: var(--primary-dark); }

.opening-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.opening-row:last-child { border-bottom: none; }
.opening-day { font-weight: 600; color: var(--text); }
.opening-time { color: var(--text-light); }

/* Maps section */
.maps-section iframe { display: block; line-height: 0; }
.maps-section .maps-placeholder { line-height: 1.6; }

/* ============================================
   Footer (multi-kolom)
   ============================================ */

.site-footer {
    background: #1e2a38;
    color: rgba(255,255,255,0.6);
    padding: 60px 24px 24px;
    font-size: 0.88rem;
    overflow-x: clip;          /* clip i.p.v. hidden: voorkomt dat footer een scrollbare container wordt (veroorzaakte "sprong naar rechts" op mobiel) */
    margin-top: -1px;          /* voorkomt witte streep/gap tussen CTA-sectie en footer */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-about p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li { margin-bottom: 8px; }

.footer-nav a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.footer-faq-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}

.footer-faq-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255,255,255,0.4);
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

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

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    color: var(--primary);
    transition: inherit;
}

.footer-social a:hover svg {
    fill: #fff;
    color: #fff;
}

.footer-lvsi {
    margin-top: 20px;
}

.lvsi-badge {
    display: inline-block;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.lvsi-badge:hover {
    opacity: 0.85;
}

.lvsi-logo {
    height: 48px;
    width: auto;
}

/* Sponsor carousel — oneindige marquee */
.sponsor-section {
    padding: 24px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.sponsor-heading {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.sponsor-track-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.sponsor-track {
    display: flex;
    gap: 40px;
    align-items: center;
    width: max-content;
    animation: sponsor-scroll 25s linear infinite;
}

/* Pauzeer animatie bij hover zodat gebruiker kan klikken */
.sponsor-track:hover {
    animation-play-state: paused;
}

@keyframes sponsor-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsor-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.65;
    transition: opacity var(--transition);
    text-decoration: none;
}

.sponsor-item:hover {
    opacity: 1;
}

.sponsor-item img {
    height: 48px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    border-radius: 6px;
}

.sponsor-name {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.sponsor-item:hover .sponsor-name {
    color: rgba(255,255,255,0.8);
}

/* Verminder beweging voor gebruikers die dat instellen */
@media (prefers-reduced-motion: reduce) {
    .sponsor-track { animation: none; }
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

/* ============================================
   WhatsApp Floating Button
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet: content-split eerder naar 1 kolom (voorkomt titel-overlap op foto) */
@media (max-width: 900px) {
    .content-split { grid-template-columns: 1fr; }
}

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

    .hero { padding: 140px 20px 80px; min-height: 100svh; }
    .hero h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
    .hero-text { font-size: 0.95rem; }

    .page-header { padding: 120px 20px 48px; }
    .page-header h1 { font-size: 1.8rem; }

    .section-header h2 { font-size: 1.7rem; }
    .content-split-title { font-size: 1.5rem; }
    .info-passage { padding: 24px 20px; }
    .info-split { grid-template-columns: 1fr; gap: 20px; padding: 24px 20px; text-align: center; }
    .info-split-icon { margin: 0 auto; width: 80px; height: 80px; }
    .info-split-icon svg { width: 40px; height: 40px; }
    .step-item { grid-template-columns: 40px 1fr; gap: 14px; padding: 10px; margin-left: -10px; margin-right: -10px; }
    .step-number { width: 40px; height: 40px; font-size: 0.95rem; }
    .step-item:not(:last-child)::after { left: 19px; top: 50px; }
    .step-content h3 { font-size: 0.95rem; }
    .step-content p { font-size: 0.85rem; }
    .steps-timeline { max-width: 100%; padding: 0 10px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-value { font-size: 2.2rem; }

    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .training-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .benefit-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .benefit-icon { grid-row: auto; }   /* icoon boven tekst i.p.v. ernaast */
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .usp-grid { grid-template-columns: 1fr; }

    .content-split { gap: 32px; }
    .content-split--reverse { direction: ltr; }
    .content-image { display: flex; justify-content: center; }
    .photo-crossfade { margin: 0 auto; }

    .testimonial-featured { flex-direction: column; text-align: center; gap: 24px; }

    .price-highlight {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 24px;
    }

    .contact-page-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }

    .site-footer { padding: 32px 16px 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; text-align: center; }
    .footer-col.footer-about { grid-column: 1 / -1; }   /* Logo+beschrijving full-width */
    .footer-col:last-child { grid-column: 1 / -1; }     /* Social full-width */
    .footer-about p { font-size: 0.82rem; margin-top: 6px; }
    .footer-logo { margin-bottom: 8px; }
    .footer-col h4 { font-size: 0.9rem; margin-bottom: 8px; }
    .footer-nav li { margin-bottom: 2px; }
    .footer-nav a { font-size: 0.84rem; }
    .footer-contact { display: flex; flex-direction: column; align-items: center; }
    .footer-contact li { font-size: 0.84rem; gap: 6px; margin-bottom: 6px; justify-content: center; }
    .footer-contact a { font-size: 0.84rem; }
    .footer-social { justify-content: center; gap: 8px; margin-bottom: 12px; }
    .footer-social a { width: 34px; height: 34px; }
    .footer-lvsi { margin-top: 6px; }
    .footer-lvsi p { font-size: 0.8rem; margin-bottom: 0; }
    .footer-lvsi small { font-size: 0.72rem; }
    .footer-grid { margin-bottom: 16px; }
    .sponsor-section { padding: 16px 0 20px; }
    .sponsor-heading { font-size: 0.72rem; margin-bottom: 12px; }
    .sponsor-track { gap: 28px; animation-duration: 20s; }
    .sponsor-item { gap: 4px; }
    .sponsor-item img { height: 36px; max-width: 80px; }
    .sponsor-name { font-size: 0.62rem; }
    .footer-bottom { margin-top: 0; padding: 14px 0; }
    .footer-bottom p { font-size: 0.75rem; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }

    /* Mobiel menu */
    .mobile-cta-bar { display: flex; }
    .menu-toggle { display: block; }

    /* Verberg CTA-knoppen wanneer menu open is, zodat header niet te druk is */
    /* .menu-open = JS-fallback voor browsers zonder :has() support */
    .site-header:has(.site-nav.active) .mobile-cta-bar,
    .site-header.menu-open .mobile-cta-bar { display: none; }

    /* Header altijd wit wanneer menu open is */
    .site-header:has(.site-nav.active),
    .site-header.menu-open {
        background: #fff;
        box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }

    /* Hamburger-knop rechts uitlijnen (standaard UX: logo links, close rechts) */
    .site-header:has(.site-nav.active) .container,
    .site-header.menu-open .container {
        justify-content: space-between;
    }

    .site-nav {
        position: fixed;
        top: 72px; /* fallback, wordt dynamisch overschreven door JS via header.offsetHeight */
        left: 0;
        right: 0;
        display: block !important;
        background: #fff;
        text-align: center !important;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease);
        box-shadow: 0 8px 32px rgba(0,0,0,0.08);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
    }

    .site-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .site-nav li {
        text-align: center !important;
        width: 100%;
    }

    .site-nav a {
        color: var(--text) !important;
        display: block !important;
        text-align: center !important;
        padding: 12px 16px !important;
        border-radius: 8px;
        background: none !important;
    }

    .site-nav a:hover,
    .site-nav a.active {
        background: rgba(253, 133, 73, 0.08) !important;
        color: var(--primary) !important;
    }

    .site-nav a.nav-cta {
        margin-top: 8px;
        background: var(--primary) !important;
        color: #fff !important;
        font-weight: 700 !important;
        padding: 14px 16px !important;
        border-radius: 10px !important;
        text-align: center !important;
    }

    .site-nav a.nav-cta:hover,
    .site-nav a.nav-cta:active {
        background: var(--primary-dark) !important;
        color: #fff !important;
    }

    .site-nav a.nav-cta--secondary {
        background: transparent !important;
        color: var(--text) !important;
        font-weight: 700 !important;
        margin-top: 4px;
        padding: 14px 16px !important;
        border-radius: 10px !important;
        border: 2px solid var(--text) !important;
    }

    .site-nav a.nav-cta--secondary:hover,
    .site-nav a.nav-cta--secondary:active {
        background: rgba(47,60,76,0.06) !important;
        color: var(--text) !important;
    }
}

@media (max-width: 480px) {
    .hero { padding: 120px 16px 60px; }
    .hero h1 { font-size: 1.6rem; }

    .page-header { padding: 110px 16px 40px; }
    .page-header h1 { font-size: 1.5rem; }

    .section { padding: 48px 0; }
    .section-header h2 { font-size: 1.5rem; }

    .stats-bar { padding: 36px 16px; }
    .stat-value { font-size: 1.8rem; }
    .stat-suffix { font-size: 1.2rem; }

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

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .faq-question { padding: 16px 18px; font-size: 0.92rem; }
    .faq-answer p { padding: 0 18px 16px; font-size: 0.9rem; }
}

/* ============================================
   Cookie Consent Banner
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--hero-bg);
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    animation: cookieSlideUp 0.4s var(--ease);
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.cookie-banner__content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-banner__content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.cookie-banner__content a {
    color: var(--secondary);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__buttons .btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-banner__buttons .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.cookie-banner__buttons .btn-primary {
    font-size: 0.85rem;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .cookie-banner {
        max-height: 40vh;
        overflow-y: auto;
        padding: 14px 0;
    }
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .cookie-banner__content p {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    .cookie-banner__buttons {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    .cookie-banner__buttons .btn-primary,
    .cookie-banner__buttons .btn-outline {
        flex: 1 1 auto;
        min-width: 0;
        text-align: center;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* ============================================
   Cookie Voorkeuren Paneel
   ============================================ */

.cookie-prefs {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.cookie-prefs--open {
    max-height: 600px;
}

.cookie-prefs__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.cookie-prefs__inner h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}

.cookie-prefs__intro {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin: 0 0 16px;
    line-height: 1.5;
}

.cookie-prefs__category {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cookie-prefs__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-prefs__info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-prefs__info strong {
    font-size: 0.9rem;
    color: #fff;
}

.cookie-prefs__badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    border-radius: 20px;
    padding: 2px 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cookie-prefs__desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin: 6px 0 0;
    line-height: 1.5;
}

.cookie-prefs .btn-primary {
    margin-top: 16px;
    font-size: 0.85rem;
    padding: 10px 24px;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle__slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 24px;
    transition: background 0.25s;
}

.cookie-toggle__slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: var(--primary);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
    transform: translateX(20px);
}

.cookie-toggle--disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cookie-prefs__inner {
        padding: 16px 24px;
    }
    .cookie-prefs--open {
        max-height: 700px;
    }
}

/* ============================================
   Maps Placeholder (cookie consent)
   ============================================ */

.maps-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-light);
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 32px;
}

.maps-placeholder p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 400px;
    margin: 0;
}

.maps-placeholder .btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ============================================
   Legal Pages (privacyverklaring, AV)
   ============================================ */

.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text);
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text);
    margin: 24px 0 10px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 16px 24px;
}

.legal-content li {
    margin-bottom: 4px;
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 10px 14px;
    border: 1px solid var(--border);
    color: var(--text-light);
}

.legal-table th {
    background: var(--bg-alt);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.legal-table td {
    line-height: 1.6;
}

.legal-table a {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .legal-table {
        font-size: 0.85rem;
    }
    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }
}

.legal-disclaimer {
    background: #fff8f0;
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 32px;
}

.legal-disclaimer p {
    color: var(--text);
    font-size: 0.9rem;
    margin: 0;
}

.legal-date {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ============================================
   Form Alerts (success/error meldingen)
   ============================================ */

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.form-alert svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.form-alert p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-alert--success {
    background: #f0faf0;
    border: 1px solid #c3e6c3;
    color: #1a6b1a;
}

.form-alert--success svg {
    stroke: #1a6b1a;
}

.form-alert--error {
    background: #fdf0f0;
    border: 1px solid #e6c3c3;
    color: #8b1a1a;
}

.form-alert--error svg {
    stroke: #8b1a1a;
}

/* Privacy checkbox inline */
.checkbox-label--inline {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label--inline input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
}

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

/* Frequentie-opties in contactformulier */
.frequency-options {
    display: none;
    padding: 12px 16px;
    margin: -4px 0 8px 0;
    background: var(--bg-alt, #f8f9fa);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    grid-column: 1 / -1;
}

.frequency-options.visible {
    display: block;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.frequency-options-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 8px;
}

.frequency-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.frequency-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    transition: border-color var(--transition), background var(--transition);
}

.frequency-pill:hover {
    border-color: var(--primary);
}

.frequency-pill input[type="radio"] {
    display: none;
}

.frequency-pill:has(input:checked) {
    border-color: var(--primary);
    background: rgba(138, 224, 229, 0.1);
}

.frequency-pill small {
    color: var(--primary);
    font-weight: 600;
    margin-left: 2px;
}

/* Footer juridische links */
.footer-legal {
    display: flex;             /* was missing — zonder display:flex werken flex-wrap en justify-content niet */
    margin-top: 8px;
    font-size: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal-sep {
    color: rgba(255,255,255,0.3);
    margin: 0 8px;
}

/* ============================================
   Blog — Archive (overzicht)
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card-title {
    font-size: 1.25rem;
    margin: 8px 0 12px;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-empty {
    text-align: center;
    padding: 64px 0;
}

.blog-empty h2 {
    margin-bottom: 12px;
}

.blog-empty p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.blog-pagination {
    margin-top: 48px;
    text-align: center;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.blog-pagination .page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.blog-pagination .page-numbers.current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ============================================
   Blog — Single (individuele post)
   ============================================ */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

.blog-featured-image {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.post-meta {
    font-size: 0.95rem;
    opacity: 0.8;
}

.post-meta-sep {
    margin: 0 8px;
}

/* Post navigatie (vorige/volgende) */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.post-nav-link {
    display: block;
    padding: 16px;
    border-radius: 12px;
    background: var(--bg-light);
    text-decoration: none;
    transition: background 0.2s;
}

.post-nav-link:hover {
    background: var(--border);
}

.post-nav-next {
    text-align: right;
}

.post-nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.post-nav-title {
    display: block;
    color: var(--text);
    font-weight: 600;
    line-height: 1.3;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.sidebar-widget p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Responsive blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-sidebar {
        position: static;
    }
    .post-navigation {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Frequentie-tabs (pricing)
   ============================================ */
.frequency-tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.frequency-tab {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.frequency-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.frequency-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.price-highlight .frequency-tabs {
    margin-bottom: 12px;
}

/* ============================================
   Photo Carousel (herbruikbaar)
   ============================================ */
.photo-carousel {
    position: relative;
    padding: 0 48px;       /* ruimte voor de pijltjes links/rechts */
}

.photo-carousel-viewport {
    overflow: hidden;      /* overflow op viewport wrapper — dots + pijltjes blijven zichtbaar */
}

.photo-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-carousel-item {
    flex: 0 0 calc(100% / 3);
    padding: 0 8px;
    box-sizing: border-box;
}

.photo-carousel-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Gedeelde carousel pijltjes (foto + reviews) */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 20px)); /* correctie voor dots hoogte */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.2s;
    z-index: 2;
    padding: 0;
}

.carousel-arrow:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

/* Bolletjes navigatie */
.photo-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 4px;   /* voorkom afsnijden door transform scale */
}

.photo-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.photo-carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .photo-carousel,
    .reviews-carousel { padding: 0 36px; }
    .carousel-arrow { width: 32px; height: 32px; }
    .carousel-arrow svg { width: 16px; height: 16px; }
    .photo-carousel-item {
        flex: 0 0 50%;
    }
    .photo-carousel-item img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .photo-carousel,
    .reviews-carousel { padding: 0 28px; }
    .carousel-arrow { width: 28px; height: 28px; }
    .carousel-arrow svg { width: 14px; height: 14px; }
    .photo-carousel-item {
        flex: 0 0 100%;
    }
    .photo-carousel-item img {
        height: 200px;
    }
}

/* ============================================
   Crossfade foto-rotatie (service pages)
   ============================================ */
.photo-crossfade {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3 / 2;
    border-radius: 12px;
    overflow: hidden;
}

.photo-crossfade img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.photo-crossfade img.photo-crossfade-active {
    opacity: 1;
}

/* ============================================
   Locatie Landing Pages
   ============================================ */

/* School-grid — flex grid van school name badges */
.school-grid {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.school-pill {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    color: var(--text);
    transition: box-shadow 0.3s;
}

.school-pill:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Scholen-tekst — fallback wanneer er geen pills zijn */
.scholen-tekst {
    font-style: italic;
    color: var(--text-light);
}

/* Bereikbaarheid-grid — 3-kolommen grid (auto/fiets/OV) */
.bereikbaarheid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bereikbaarheid-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bereikbaarheid-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bereikbaarheid-card svg {
    margin-bottom: 12px;
}

.bereikbaarheid-tijd {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin: 8px 0;
}

.bereikbaarheid-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.bereikbaarheid-detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Locatie-highlights — USP-lijst met vinkjes */
.locatie-highlights ul {
    list-style: none;
    padding: 0;
}

.locatie-highlights li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
}

.locatie-highlights li::before {
    content: "\2713";
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.locatie-highlights li:last-child {
    border-bottom: none;
}

/* Locatie-intro — introductietekst */
.locatie-intro p {
    line-height: 1.8;
}

/* Locatie-cta — call-to-action blok */
.locatie-cta {
    background: var(--primary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #fff;
}

.locatie-cta h2 {
    color: #fff;
    margin-bottom: 12px;
}

.locatie-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.locatie-cta .btn {
    background: #fff;
    color: var(--primary);
}

/* Locatie Landing Pages — responsive */
@media (max-width: 768px) {
    .bereikbaarheid-grid {
        grid-template-columns: 1fr;
    }
    .school-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .locatie-cta {
        padding: 28px 20px;
    }
}
