/* === Basic Reset & General Styles === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === CSS Custom Properties (Variabelen) === */
:root {
    --primary-color: #5F021F; /* Bordeauxrood */
    --primary-color-rgb: 95, 2, 31;
    --primary-color-darker: #4A0117;
    
    --secondary-color: #3D3D3D;    /* Warm donkergrijs/antraciet */
    --text-color-dark: #3D3D3D;    
    --text-color-medium: #606060;  

    --accent-color: #C5A069;          /* Goud/Brons-achtig */
    --accent-color-darker: #B08D57;   /* Donkerdere variant voor hover */
    /* --accent-color-rgb: 197, 160, 105; */ /* RGB voor accent indien nodig voor rgba() */


    --text-color-light: #fff;
    --background-light: #fff;
    --background-grey: #f8f9fa; 
    --background-dark: #1a252f; 
    --border-light: #e9ecef; 
    --border-medium: #ced4da; 
    
    --font-family-heading: 'Montserrat', sans-serif; /* Voor koppen */
    --font-family-body: 'Lato', sans-serif;        /* Voor body tekst */
    
    --default-transition: all 0.3s ease-in-out; 
    --container-max-width: 1140px;
    --section-padding: 4rem 0; 
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --box-shadow-light: 0 2px 15px rgba(0,0,0,0.08);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family-body); /* Gebruik Lato voor body */
    line-height: 1.7; 
    color: var(--text-color-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}
/* Class om scrollen te voorkomen bij mobiel menu open */
body.no-scroll-mobile-menu {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    font-family: var(--font-family-heading); /* Gebruik Montserrat voor koppen */
    font-weight: 600; 
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color); 
}
h1 { font-size: 2.8rem; margin-bottom: 1.5rem; font-weight: 700; } /* Bold Montserrat */
h2 { font-size: 2.2rem; margin-bottom: 2rem; text-align: center; padding-bottom: 1rem; position: relative; font-weight: 700; }
h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0.5rem auto 0;
}
h3 { font-size: 1.6rem; color: var(--secondary-color); font-weight: 600; } /* Semi-bold Montserrat */
h4 { font-size: 1.2rem; color: var(--text-color-medium); font-weight: 500; } /* Medium Montserrat */


p {
    margin-bottom: 1rem;
    color: var(--text-color-medium);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--default-transition);
}
a:hover, a:focus {
    color: var(--accent-color-darker);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block; 
}

ul {
    list-style: none;
    padding-left: 0;
}

/* === Header & Navigation === */
.header {
    background-color: var(--background-light);
    padding: 0.8rem 0; 
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: var(--default-transition);
}
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95); 
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.5rem 0; 
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 50px; 
    width: auto;
    transition: var(--default-transition);
}
.header-scrolled .logo img {
    height: 40px;
}

.nav ul {
    display: flex;
    list-style: none;
}
.nav li {
    margin-left: 0.8rem; 
}
.nav a {
    font-family: var(--font-family-body); 
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600; 
    padding: 0.5rem 0.5rem; 
    font-size: 0.90rem; /* NOG IETS KLEINER VOOR MEER ITEMS */
    border-bottom: 2px solid transparent;
    transition: var(--default-transition);
    white-space: nowrap; 
}
.nav a:hover, .nav a.active, .nav a:focus {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.menu-toggle { 
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px; /* Vaste breedte voor de knop */
    height: 30px; /* Vaste hoogte */
    flex-direction: column; /* Voor iconen onder elkaar */
    justify-content: space-around; /* Ruimte tussen iconen */
}
.menu-toggle-icon {
    display: block;
    width: 100%; 
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0; /* Geen extra marge als flexbox de spacing doet */
    transition: all 0.3s ease-in-out;
    border-radius: 1px;
}
/* Animatie voor hamburgermenu naar X */
.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(2) {
    opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* === Helper Classes === */
.text-center { text-align: center; }
.mb-2 { margin-bottom: 2rem; }
.keyword-highlight { color: var(--primary-color); font-weight: 600; }
.voicebox-highlight { color: var(--accent-color-darker); font-weight: 700; }

/* === Buttons === */
.cta-button, .cta-button-secondary {
    font-family: var(--font-family-heading);
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--default-transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}
.cta-button {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.cta-button:hover, .cta-button:focus {
    background-color: var(--primary-color-darker);
    color: var(--text-color-light);
    text-decoration: none;
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 6px 12px rgba(var(--primary-color-rgb), 0.25), 0 2px 4px rgba(0,0,0,0.1);
    outline: none; 
}
.cta-button-secondary {
    background-color: var(--accent-color);
    color: var(--primary-color); /* Aangepast voor beter contrast met goud */
}
.cta-button-secondary:hover, .cta-button-secondary:focus {
    background-color: var(--accent-color-darker);
    color: var(--primary-color); 
    text-decoration: none;
}

/* === Hero Section === */
.hero {
    position: relative;
    background: url('../images/voicebox-hero-bg.jpg') no-repeat center center/cover; 
    color: var(--text-color-light);
    padding: 10rem 0 6rem; 
    text-align: center;
    min-height: 80vh; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7); 
}
.hero-content-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}
.hero h1 {
    font-size: 3rem; 
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

/* === General Section Styling === */
section {
    padding: var(--section-padding);
}
section:nth-of-type(even) { 
    background-color: var(--background-grey);
}

/* === Concept Section (Pimped) === */
.concept-section h2 { margin-bottom: 3rem; }
.concept-explanation {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Lijn items bovenaan uit */
    gap: 2.5rem; /* Iets meer ruimte */
}
.concept-text {
    flex: 1;
    min-width: 300px; /* Behoud voor wrapping */
}
.concept-text p.concept-intro-paragraph {
    font-size: 1.15rem; 
    color: var(--secondary-color);
    font-weight: 400; /* Lato regular */
    margin-bottom: 2rem; 
    line-height: 1.75;
}
.concept-paragraph-item {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 1.5rem; 
}
.concept-paragraph-icon {
    font-size: 1.6rem; /* Iets kleiner, verfijnder */
    color: var(--accent-color); 
    margin-right: 1.2rem; 
    margin-top: 0.2em; /* Fijnafstelling voor Lato */
    flex-shrink: 0; 
    width: 28px; /* Iets smaller */
    text-align: center;
}
.concept-text .keyword-highlight { 
    /* Behoud de bestaande .keyword-highlight styling */
    /* Als je het hier specifiek anders wilt, voeg dan hier regels toe */
}
.concept-cta-link {
    margin-top: 2.5rem;
    font-size: 1.05rem;
    text-align: left; /* Of center als je dat mooier vindt */
}
.concept-cta-link a {
    font-weight: 600;
    color: var(--primary-color); /* Maak CTA linkjes in primaire kleur */
}
.concept-cta-link a:hover {
    color: var(--primary-color-darker);
}
.concept-visual {
    flex: 1;
    min-width: 300px; /* Behoud dit voor wrapping */
    width: 100%; /* Zorg dat het de kolombreedte neemt */
    max-width: 500px; /* Maximale breedte voor de slider, pas aan indien nodig */
    margin-left: auto; /* Centreert als de kolom breder is */
    margin-right: auto;
}

.concept-image-swiper { /* De Swiper container zelf */
    width: 100%;
    height: auto; /* Laat hoogte bepalen door afbeelding */
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    overflow: hidden; /* Belangrijk voor afgeronde hoeken op slides */
}

.concept-slider-image {
    display: block;
    width: 100%;
    height: 350px; /* Vaste hoogte voor de afbeeldingen in de slider, pas aan! */
    object-fit: cover; /* Zorgt dat afbeeldingen de ruimte vullen */
}

.concept-swiper-pagination .swiper-pagination-bullet {
    background-color: var(--primary-color); /* Gebruik je primaire kleur */
    opacity: 0.7;
}

.concept-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color-darker); /* Donkerder voor actieve */
}

/* Op kleinere schermen, maak de tekst en visual onder elkaar */
@media (max-width: 991px) { /* Of het breakpoint waar je 2-koloms layout verandert */
    .concept-explanation {
        flex-direction: column;
        gap: 2rem;
    }
    .concept-visual {
        max-width: 100%; /* Volledige breedte op kleinere schermen */
        margin-top: 2rem; /* Ruimte tussen tekst en slider */
    }
    .concept-slider-image {
        height: 300px; /* Iets lagere afbeeldingen op mobiel/tablet */
    }
}
/* === How It Works Section === */
.how-it-works .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.how-it-works .step {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    text-align: center;
    transform: translateY(30px); /* Start iets lager */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.how-it-works .step.is-visible { /* Class toegevoegd door JS */
    opacity: 1;
    transform: translateY(0);
}

.how-it-works .step:hover {
    transform: translateY(-6px); /* Iets meer lift */
    box-shadow: 0 10px 28px rgba(0,0,0,0.12); /* Iets meer schaduw */
}

.how-it-works-visual {
    /* ... bestaande styling ... */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s; /* Delay zodat het na de stappen komt */
}
.how-it-works-visual.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.step-header {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-number {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(var(--primary-color-rgb), 0.1); 
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    display: inline-block; 
}
.step-icon-fa {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.how-it-works .step h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem; 
}
.how-it-works-visual {
    margin: 2rem auto 0;
    max-width: 700px;
}
.how-it-works-visual .section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
}
.how-it-works-visual figcaption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color-medium);
    margin-top: 0.75rem;
    font-style: italic;
}

/* === Why Choose Section === */
.why-choose .reason-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.why-choose .reason {
    background-color: var(--background-light); 
    padding: 2rem;
    text-align: center;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Toegevoegd voor hover */
}
.why-choose .reason:hover { /* Toegevoegd hover effect */
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.why-choose .reason i {
    font-size: 2.8rem; 
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.why-choose .reason h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

/* === Packages Section === (CSS van vorige iteratie, al goed) */
.packages {
    background-color: var(--background-light);
}
.packages h2 + p { 
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-medium);
}
.package-container {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem; 
}
.package {
    background-color: var(--background-light); 
    border-radius: var(--border-radius-md); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.07); 
    display: flex;
    flex-direction: column; 
    overflow: hidden; 
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    max-width: 500px; 
    margin-left: auto; 
    margin-right: auto;
}
.package:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.package-visual {
    position: relative; 
    background-color: var(--background-grey); 
    padding: 1.5rem 1.5rem 0; 
    text-align: center; 
    padding-bottom: 35px; 
    min-height: 300px; 
    display: flex; 
    align-items: flex-end; 
    justify-content: center;
}
.package-image { 
    width: auto; 
    max-height: 450px; 
    margin: 0 auto; 
    object-fit: contain; 
}
.package-price { 
    position: absolute;
    bottom: -25px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; 
}
.package-price .price-amount {
    display: inline-block;
    background-color: var(--primary-color); 
    color: var(--text-color-light);
    font-size: 1.7rem; 
    font-weight: 700;
    padding: 0.8rem 1.5rem; 
    border-radius: 50px; 
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.4);
    border: 3px solid var(--background-light); 
}
.package-content {
    padding: 3.5rem 2rem 2rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    text-align: center; 
}
.package-content h3 {
    font-size: 2rem; 
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center; 
}
.package-description {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-color-medium);
    min-height: 60px; 
}
.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: left; 
    max-width: 300px; 
    margin-left: auto;  
    margin-right: auto; 
}
.package-features li {
    margin-bottom: 0.9rem; 
    padding-left: 1.8rem; 
    position: relative;
    font-size: 0.9rem;
    color: var(--text-color-dark);
}
.package-features li::before {
    content: '\f00c'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color); 
    position: absolute;
    left: 0;
    top: 3px; 
    font-size: 0.9em; 
}
.package-features strong {
    font-weight: 600; 
    color: var(--secondary-color);
}
.package .cta-button-secondary {
    display: inline-block; 
    width: auto; 
    padding: 0.9rem 2rem; 
    margin-top: auto; 
    font-weight: 600;
    align-self: center; 
}
.transport-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: var(--text-color-medium);
}
@media (min-width: 768px) {
    .package {
        max-width: 480px; 
    }
    .package-visual {
        min-height: 350px; 
    }
    .package-image {
        max-height: 500px; 
    }
}

/* === Gallery Section === */
.gallery h2 + p { text-align: center; margin-bottom: 2.5rem; font-size: 1.1rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem; 
    margin-bottom: 3rem;
}
.gallery-grid img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.audio-examples-section {
    margin-top: 4rem; 
    padding-top: 2rem;
}
.audio-examples-section h3 {
    text-align: center;
    margin-bottom: 1rem; /* Minder marge als er nog een P onder komt */
    font-size: 1.9rem; 
    color: var(--primary-color);
}
.audio-examples-section > p { /* De introductieparagraaf voor audio */
    text-align: center; 
    margin-bottom: 2.5rem; 
    font-size: 1.1rem; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.audio-example-container.cool-audio-players {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
}
.audio-example {
    background-color: var(--background-light); 
    padding: 1rem; 
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06); 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 80px; 
}
.audio-example:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.voicebox-audio-player {
    width: 100%; 
    border-radius: 25px; 
    outline: none; 
}
.voicebox-audio-player::-webkit-media-controls-panel {
    background-color: rgba(var(--primary-color-rgb), 0.05); 
    border-radius: 25px;
}
@media (max-width: 767px) {
    .audio-example-container.cool-audio-players {
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    .audio-example {
        padding: 0.8rem; 
    }
}

/* === Testimonials Section (SwiperJS) === */
.testimonials {
    background-color: var(--background-grey); 
    padding-top: 2.5rem; 
    padding-bottom: 2.5rem; 
}
.testimonial-swiper-container {
    width: 100%;
    padding-bottom: 60px; /* Meer ruimte voor paginatie en navigatieknoppen */
    position: relative;
    overflow: hidden; /* Voorkom dat pijlen buiten de sectie vallen */
}
.testimonial-item.swiper-slide { 
    height: auto !important; 
    display: flex; 
    align-items: stretch; 
    padding: 0 10px; /* Zorg dat slides niet tegen randen van container komen */
}
.testimonial-item { 
    background-color: var(--accent-color); 
    color: var(--text-color-light);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    width: 100%; /* Volledige breedte binnen de slide padding */
    max-width: 480px; 
    margin: 0 auto; 
    display: flex;
    flex-direction: column;
    height: 100%; /* Zorg dat items de autoHeight van Swiper vullen */
}
.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative; 
    padding-left: 3.5rem; 
    flex-grow: 1;
    text-align: left; 
}
.testimonial-content::before { 
    content: '\f10d'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2.8rem; 
    color: rgba(255,255,255,0.2); 
    position: absolute;
    top: 0; 
    left: 0; 
    line-height: 1; 
}
.testimonial-rating {
    margin-bottom: 0.75rem; 
    text-align: left; 
    position: relative; 
    z-index: 1; 
}
.testimonial-rating .stars {
    color: #FFD700; 
    font-size: 1.2rem;
}
.testimonial-body { 
    font-style: italic;
    line-height: 1.7; 
    color: rgba(255,255,255,0.95);
    margin-bottom: 0; 
    padding-top: 0.5rem; 
}
.testimonial-author {
    text-align: right;
    font-weight: 600;
    margin-top: auto; 
    padding-top: 1rem; 
}
.testimonial-author cite {
    font-style: normal;
    color: rgba(255,255,255,0.85);
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color); 
    width: 40px; 
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9); /* Iets minder transparant */
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); 
    transition: var(--default-transition);
    top: 50%; 
    transform: translateY(-50%); 
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--text-color-light); 
    color: var(--primary-color-darker);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05); 
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.1rem; 
    font-weight: 900; 
}
.swiper-button-prev {
    left: 10px; 
}
.swiper-button-next {
    right: 10px; 
}
.swiper-pagination {
    bottom: 15px !important; 
    position: absolute;
    width: 100%;
    left: 0;
}
.swiper-pagination-bullet {
    width: 10px; 
    height: 10px;
    background-color: var(--primary-color); 
    opacity: 0.5; 
    margin: 0 5px !important; 
    transition: var(--default-transition);
    outline: none; 
}
.swiper-pagination-bullet-active {
    background-color: var(--primary-color-darker); 
    opacity: 1;
    transform: scale(1.25); 
}
@media (max-width: 991px) and (min-width: 768px) {
    .testimonial-item {
        max-width: 550px; 
    }
}
@media (max-width: 576px) { /* Aangepast breakpoint voor verbergen pijlen */
    .swiper-button-next,
    .swiper-button-prev {
        display: none; 
    }
    .testimonial-item {
        width: 95%; 
        padding: 1.5rem; 
    }
    .testimonial-content::before {
        font-size: 2rem; 
    }
}

/* === FAQ Section === */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--background-grey); 
}
.faq-section h2 {
    margin-bottom: 1.5rem; 
}
.faq-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.05rem;
    color: var(--text-color-medium);
}
.faq-container {
    max-width: 800px; 
    margin: 0 auto;
}
.faq-item {
    background-color: var(--background-light);
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow-light);
    transition: box-shadow 0.3s ease;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem 1.5rem; 
    background-color: transparent; 
    border: none;
    text-align: left;
    font-family: var(--font-family-heading); /* Gebruik heading font */
    font-size: 1.1rem; 
    font-weight: 600; 
    color: var(--secondary-color); 
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.faq-question:hover,
.faq-question:focus {
    color: var(--primary-color);
    outline: none;
}
.faq-question .faq-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--text-color-medium); 
}
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color); 
}
.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem; 
    border-top: 1px solid var(--border-light); 
    animation: fadeInAnswer 0.4s ease-out; /* Iets snellere animatie */
}
.faq-answer p,
.faq-answer ul {
    font-family: var(--font-family-body); /* Zorg dat body font hier gebruikt wordt */
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: var(--text-color-medium);
}
.faq-answer ul {
    list-style: disc;
    padding-left: 1.5rem; 
}
.faq-answer ul li {
    margin-bottom: 0.4rem;
}
.faq-answer p:last-child,
.faq-answer ul:last-child {
    margin-bottom: 0;
}
@keyframes fadeInAnswer {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Voice Box Locaties Sectie (#voicebox-op-locatie) === */
.locaties-section {
    padding: var(--section-padding);
    background-color: var(--background-grey); 
}
.locaties-section h2 {
    margin-bottom: 1.5rem;
}
.locaties-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color-medium);
}
.locaties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2.5rem; 
}
.locatie-item {
    background-color: var(--background-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light); 
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}
.locatie-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1); 
}
.locatie-item-image-wrapper {
    width: 100%;
    height: 260px; 
    overflow: hidden; 
    position: relative; 
    background-color: var(--background-grey); 
}
.locatie-item-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.locatie-item:hover .locatie-item-image-wrapper img {
    transform: scale(1.1); 
}
.locatie-pin-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(var(--primary-color-rgb), 0.85); 
    color: var(--text-color-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: var(--default-transition);
}
.locatie-item:hover .locatie-pin-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
}
.locatie-item-content {
    padding: 1.5rem 1.8rem 1.8rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}
.locatie-item-content h3 {
    font-size: 1.5rem; 
    color: var(--primary-color); 
    margin-bottom: 0.4rem;
    font-weight: 700; 
}
.locatie-plaats {
    font-size: 0.9rem; 
    color: var(--text-color-medium);
    margin-bottom: 0.25rem; 
}
.locatie-plaats .icon-left {
    margin-right: 0.4rem;
    color: var(--accent-color); 
    font-size: 0.9em; 
}
.locatie-koppels { 
    font-size: 0.85rem;
    color: var(--accent-color-darker); 
    margin-bottom: 1rem; 
    font-style: italic;
    flex-grow: 1; /* Laat dit element de beschikbare ruimte vullen */
}
.locatie-website-link { 
    display: inline-block;
    margin-top: auto; 
    color: var(--accent-color); 
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--default-transition);
}
.locatie-website-link:hover {
    color: var(--accent-color-darker);
    text-decoration: underline;
}
.locaties-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light); 
}
.locaties-cta-wrapper p { /* Styling voor de #noMoreLocatiesMsg */
    margin-bottom: 1.5rem;
    font-size: 1.05rem; /* Iets kleiner dan de H2 intro */
    color: var(--text-color-medium); 
}
.locaties-cta-wrapper button#loadMoreLocatiesBtn {
    margin-bottom: 1.5rem; /* Ruimte tussen knop en eventueel bericht */
}
.locaties-final-cta { /* Voor de optionele tweede CTA knop onderaan locaties */
    text-align: center;
    margin-top: 2.5rem;
}
.locatie-item-hidden {
    display: none !important; 
}

@media (max-width: 767px) {
    .locaties-grid {
        grid-template-columns: 1fr; 
    }
    .locatie-item-image-wrapper {
        height: 230px; 
    }
    .locatie-item-content h3 {
        font-size: 1.35rem;
    }
}


/* === Contact Section === */
.contact h2 + p { text-align: center; margin-bottom: 2.5rem; font-size: 1.1rem; }
.contact-form {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-family-body); /* Consistentie */
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-body); /* Gebruik body font */
    font-size: 1rem;
    transition: border-color 0.2s ease;
    color: var(--text-color-dark); /* Zorg dat input tekst donker is */
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="date"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.15); /* Iets duidelijkere focus */
}
.contact-form input[type="submit"].cta-button { width: 100%; font-size: 1.1rem;}

.form-status-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-family: var(--font-family-body);
}
.form-status-message.success { background-color: #d1e7dd; color: #0f5132; border: 1px solid #badbcc;} /* Bootstrap-achtige kleuren */
.form-status-message.error   { background-color: #f8d7da; color: #842029; border: 1px solid #f5c2c7;}

.contact-info {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem; /* Ruimte na het formulier */
}
.contact-info p { margin-bottom: 0.5rem; font-family: var(--font-family-body); }
.contact-info a { font-weight: 600; color: var(--primary-color); } /* Maak e-mail link in primaire kleur */
.contact-info a:hover { color: var(--primary-color-darker); }

/* Honeypot field (voor spam preventie) */
.hp-field {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    left: -5000px;
}

/* === Footer === */
.footer {
    background-color: var(--background-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0;
    text-align: center;
    font-family: var(--font-family-body);
}
.footer .social-links {
    margin-bottom: 1.5rem;
}
.footer .social-links p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
}
.footer .social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem; 
    margin: 0 0.75rem;
}
.footer .social-links a:hover {
    color: var(--text-color-light);
    transform: scale(1.1); /* Lichte hover op social icons */
}
.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}
.footer p:last-child {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.social-icons-container {
    margin-top: 0.75rem; /* Ruimte tussen de tekst en de iconen */
}

.footer .social-links a { /* Override de algemene link styling in de footer specifiek voor deze iconen */
    color: rgba(255,255,255,0.7); /* Kleur van de iconen */
    font-size: 1.6rem; /* Grootte van de iconen */
    margin: 0 0.8rem; /* Ruimte tussen de iconen */
    display: inline-block; /* Zorgt dat transform werkt */
    transition: color 0.3s ease, transform 0.3s ease; /* Voeg transform toe aan transitie */
}

.footer .social-links a:hover {
    color: var(--text-color-light); /* Iconen worden helderder wit bij hover */
    transform: scale(1.15) translateY(-2px); /* Lichte schaalvergroting en lift */
    text-decoration: none; /* Geen onderlijning voor iconen */
}

/* === Animation Helper Classes (gebruikt door script.js) === */
.animate-in-left, .animate-in-right, .why-choose .reason {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-in-left {
    opacity: 0;
    transform: translateX(-40px); /* Iets meer offset */
}
.animate-in-right {
    opacity: 0;
    transform: translateX(40px); /* Iets meer offset */
}
.animate-in-left.is-visible, 
.animate-in-right.is-visible { 
    opacity: 1;
    transform: translateX(0);
}

.why-choose .reason { 
    opacity: 0;
    transform: translateY(40px); /* Iets meer offset */
    transition-delay: 0s; 
}
.why-choose .reason.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.why-choose .reason:nth-child(1).is-visible { transition-delay: 0.0s; }
.why-choose .reason:nth-child(2).is-visible { transition-delay: 0.1s; }
.why-choose .reason:nth-child(3).is-visible { transition-delay: 0.2s; }
.why-choose .reason:nth-child(4).is-visible { transition-delay: 0.3s; }
.why-choose .reason:nth-child(5).is-visible { transition-delay: 0.4s; }
.why-choose .reason:nth-child(6).is-visible { transition-delay: 0.5s; }


/* === Media Queries voor Responsiveness === */
@media (max-width: 1024px) { /* Aangepast breakpoint voor nav items */
    .nav li {
        margin-left: 0.5rem; 
    }
    .nav a {
        padding: 0.5rem 0.3rem; 
        font-size: 0.85rem; /* Nog iets kleiner voor meer items */
    }
}

@media (max-width: 991px) { /* Tablet en kleiner, waar mobiel menu meestal start */
    /* Stijlen voor .package, .audio-example, .testimonial-item voor tablet worden nu door hun 
       algemene styling en de .package-container grid afgehandeld. 
       De specifieke 1-kolom layout voor mobiel komt hieronder. */
    .package-container {
        /* Blijft grid, maar met 1 kolom als items te smal worden */
    }
    .testimonial-item {
        max-width: 550px; 
    }
}


@media (max-width: 767px) { /* Mobiel */
    h1 { font-size: 2.2rem; } /* Iets kleiner voor mobiel */
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .header .container {
        position: relative; 
    }
    .menu-toggle {
        display: flex; 
    }
    
    .nav {
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background-color: var(--background-light);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0; 
        overflow-y: auto; /* Scrollbaar als menu te lang is */
        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Soepelere transitie */
    }
    .nav.menu-open { 
        max-height: calc(100vh - 70px); /* Max hoogte minus header hoogte (pas 70px aan) */
    }
    .nav ul {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0; 
    }
    .nav li {
        margin: 0.8rem 0; 
        width: 100%;
        text-align: center;
    }
    .nav a {
        display: block; 
        padding: 0.8rem 1rem; 
        border-bottom: none; 
        font-size: 1rem; 
    }
    .nav a:hover, .nav a.active {
        background-color: var(--background-grey);
        border-bottom: none;
    }

    .hero { padding: 8rem 0 4rem; min-height: 70vh; } /* Iets meer hoogte */
    .hero h1 { font-size: 2rem; }
    .hero .subtitle { font-size: 1.05rem; }

    .concept-explanation { flex-direction: column; gap: 1.5rem; }
    .concept-text, .concept-visual { text-align: center; }

    .how-it-works .steps {
        grid-template-columns: 1fr; 
    }
    .how-it-works .step { margin-bottom: 1.5rem; padding: 1.5rem; }
    .how-it-works .section-image { max-width: 90%; margin: 0 auto; }

    .package-container {
        grid-template-columns: 1fr; /* Forceer 1 kolom */
    }
    .package {
        max-width: 400px; /* Max breedte op mobiel */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }
     .package:last-child {
        margin-bottom: 0;
    }

    .why-choose .reason-container {
        grid-template-columns: 1fr; 
    }
    .why-choose .reason { padding: 1.5rem; }

    .audio-example-container.cool-audio-players {
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    .audio-example {
        padding: 0.8rem; 
    }

    .testimonial-item {
        min-width: 0; /* Reset min-width */
        width: 100%; /* Volledige breedte binnen de slide padding */
        max-width: none; /* Reset max-width */
        padding: 1.5rem; 
    }
    .testimonial-content::before {
        font-size: 2rem; 
    }

    .locaties-grid {
        grid-template-columns: 1fr; 
    }
    .locatie-item-image-wrapper {
        height: 230px; 
    }
    .locatie-item-content h3 {
        font-size: 1.35rem;
    }

    .contact-form {
        width: 100%; 
        padding: 2rem 1.5rem;
    }
}