/* ==========================================================================
   Project Naam: [Niet gespecificeerd in de code]
   Stylesheet: Hoofdstijl
   Versie: 1.0
   ========================================================================== */

/*
        <link href="https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap" rel="stylesheet">
        <link rel="stylesheet" href="css/styles.css">
*/

/* === Variabelen / Root === */
:root {
    --primary-color: #fe564a;
    --accent-color: #54595F;
    --text-color-dark: #333333;
    --text-color-light: #F0F0F0;
    --background-light: #F9F9F9;
    --white: #FFFFFF;
    --header-dark: #222222;
    --header-light-bg: #33383D;
    --partner-bg-gradient: linear-gradient(180deg, #f5f6f8 0%, #e0e3e8 100%);
    --partner-card-border: rgba(84, 89, 95, 0.15);
    --partner-card-shadow: rgba(84, 89, 95, 0.1);
    --partner-card-shadow-hover: rgba(84, 89, 95, 0.25);
}

/* === Basis & Algemene Stijlen === */
/* Basis */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color-dark);
    line-height: 1.65;
    background-color: var(--white);
}

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

/* Algemene Links */
footer a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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


/* === Knoppen (CTA) === */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9em;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(228, 77, 38, 0.4);
    border: 2px solid var(--primary-color);
    margin-left: 5px;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #c93e1e;
    box-shadow: 0 6px 15px rgba(228, 77, 38, 0.6);
}

/* Secundaire Knop */
.cta-button.secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--accent-color);
    box-shadow: none;
}

/* Contextuele Knop Marges */
.hero .cta-button:first-of-type {
    margin-left: 0;
}

.contact-cta .cta-button {
    margin-left: 0;
}

/* Service Button (Link in Service Item) */
.service-button {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
    padding-bottom: 2px;
    font-size: 0.9em;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.1s ease;
}

.service-button:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}


/* === Navigatie / Header === */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
}

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

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

.nav-links a:not(.cta-button) {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:not(.cta-button):hover {
    color: var(--primary-color);
}

/* Hotline */
.header-hotline {
    background-color: var(--header-light-bg);
    border-radius: 4px;
    padding: 8px 15px;
    margin-right: 15px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-hotline:hover {
    background-color: #444b52;
}

.header-phone {
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95em;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.header-phone i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.1em;
}

/* Hamburger Menu Icoon */
.hamburger {
    display: none;
    font-size: 1.8em;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1001;
    background: transparent;
    border: none;
}


/* === Hero Sectie === */
.hero {
            background-size: cover;
            background-attachment: fixed;
            padding: 150px 0 100px;
            color: var(--white);
            text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.rotating-word-wrapper {
    display: inline-block;
    overflow: hidden;
    height: 1.3em;
    vertical-align: top;
}

.rotating-word-wrapper span {
    display: block;
    transform: translateY(0);
    text-transform: none;
}

.hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
}


/* === Value-cards homepage === */
.value-propositions {
    padding: 60px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;

    position: relative;
    z-index: 10;

    margin-top: -140px; /* schuift de hele grid iets omhoog */
}


.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--primary-color);
}

.value-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--accent-color);
    font-size: 1.25em;
    margin-top: 0;
}


/* === Value-cards Ons verhaal === */
.value-propositions {
    padding: 60px 0;
}

.value-grid-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;

    position: relative;
    z-index: 10;
}


.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 4px solid var(--primary-color);
}

.value-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--accent-color);
    font-size: 1.25em;
    margin-top: 0;
}



/* === Diensten Overzicht (Services Overview) === */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.service-item {
    background-color: var(--white);
    padding: 25px;
    border-left: 5px solid var(--accent-color);
    border-radius: 4px;
    transition: border-left-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.service-item:hover {
    border-left-color: var(--primary-color);
}

.service-item i {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--primary-color);
    font-size: 1.5em;
}

.service-item h4 {
    margin-top: 0;
    padding-right: 40px;
    font-size: 1.1em;
    line-height: 1.2;
    min-height: 48px;
}

.service-item h4 a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.service-item h4 a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.service-item p {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-right: 40px;
    flex-grow: 1;
}


/* === Pakket Introductie === */
.package-intro {
    padding: 80px 0 40px;
    text-align: center;
}

.package-intro h2 {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.package-intro p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color-dark);
}

/* Core & Optional Stack Services */
.package-services {
    display: grid;
    /* Aangepast naar 1fr voor strikte gelijke breedte op desktop */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 80px !important;
}

/* Force 3 columns for optional stack on wide screen if there are 3 items */
.optional-stack .package-services {
     /* Overridden door de algemene rule, maar zorgt ervoor dat 3 kolommen altijd de ruimte delen */
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}


.service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px 20px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1em;
    color: var(--text-color-dark);
    margin-bottom: 20px;
}

.service-card a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration-line: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}


/* === Prijzen Sectie (Pricing Table) === */
.pricing-section {
    padding: 40px 0 80px;
    background-color: var(--background-light);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch; /* Zorgt dat de kaarten even hoog worden */
}

.price-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
    border-top: 5px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* ✨ OPLOSSING VOOR GELIJKE HOOGTE (FLEX) */
    display: flex;
    flex-direction: column;
}

/* Featured Kaart */
.price-card.featured {
    border-top-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(228, 77, 38, 0.2);
}

.price-card h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.price-card.featured h3 {
    color: var(--primary-color);
}

.price-card p.description {
    color: #777;
    margin-bottom: 25px;
    min-height: 40px;
    font-size: 1em;
}

.price-card .price {
    font-size: 2.5em;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.1;
}

.price-card .price-label {
    font-size: 1.2em;
    color: var(--text-color-dark);
    font-weight: 500;
}

.price-card .billing-cycle {
    font-size: 0.9em;
    color: var(--text-color-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.price-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;

    /* ✨ OPLOSSING VOOR GELIJKE HOOGTE (FLEX) */
    flex-grow: 1; /* Neemt de beschikbare verticale ruimte in */
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: flex-start;
    font-size: 0.95em;
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-card ul li i {
    color: #4CAF50; /* Groen vinkje */
    margin-right: 10px;
    font-size: 1.1em;
    padding-top: 3px;
}

/* Specifieke Iconen */
.price-card.featured ul li i.advanced-icon {
    color: #ffb333;
}

.price-card ul li i.basic-icon {
    color: var(--accent-color);
}

      .popular-badge {
    position: absolute;
    top: 15px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), #ff6b45);
    color: var(--white);
    padding: 10px 20px 10px 25px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
    border-radius: 5px 0 0 5px;
    white-space: nowrap;
}


/* Driehoekje voor "omgevouwen" effect onderaan - naar links omgevouwen */
.popular-badge::before {
    content: '';
    position: absolute;
    left: 310px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 20px;
    border-color: transparent transparent transparent #8b2a14;
    filter: brightness(0.7);
}

.popular-badge i {
    margin-right: 6px;
    font-size: 1em;
}

/* Knop Styling */
.price-card .cta-button {
    padding: 15px 35px;
    margin: 20px auto 0 auto;
    /* ✨ OPLOSSING VOOR GELIJKE HOOGTE (FLEX) */
    margin-top: auto; /* Duwt de knop naar de onderkant */
}

.price-card.not-featured .cta-button {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(84, 89, 95, 0.4);
}

.price-card.not-featured .cta-button:hover {
    background-color: #43474b;
    border-color: #43474b;
    box-shadow: 0 6px 15px rgba(84, 89, 95, 0.6);
}


/* === Optional Plus Stack (Donkere Sectie) === */
.optional-stack {
    background-color: #33383D;
    padding: 80px 0;
}

.optional-stack h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.optional-stack > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #f0f0f0;
    font-size: 1.2em;
}

.optional-stack .package-services {
    padding-top: 0;
}

.optional-stack .service-card {
    background-color: #44484D;
    color: #f0f0f0;
}

.optional-stack .service-card h3 {
    color: #FFFFFF;
}

.optional-stack .service-card p {
    color: #f0f0f0;
}

.optional-stack .service-card i {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* SEGMENTS */
/* ------------------------- */
/* Segmenten Sectie          */
/* ------------------------- */
.segments { 
    padding: 60px 0;
    background: var(--background-light);
       text-align: center;
}

.segments h2 {
    font-size: 2.4em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.segments-intro {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.1em;
}

.segments .segment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.segment-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.segment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.segment-card i {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.segment-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.segment-card p {
    font-size: 1em;
    line-height: 1.5;
    color: var(--text-color-dark);
}


/* ------------------------- */
/* Waarom WeQonnect Sectie   */
/* ------------------------- */
.why-segments {
    padding: 60px 0;
}

.why-segments h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 30px;
    color: var(--accent-color);
}

.why-segments p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    color: var(--text-color-dark);
}

/* ------------------------- */
/* Testimonials Sectie       */
/* ------------------------- */
.testimonials {
    position: relative;
    padding: 60px 20px;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}

.testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40); /* blijft constant */
    z-index: 1; /* boven de background, onder content */
}

.testimonials::after {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px); /* blijft constant */
    z-index: 1;
}

/* fade layer die we dynamisch toevoegen via JS */
.testimonials .fade-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0; 
    opacity: 0;
    transition: opacity 1s ease-in-out; /* hier de fade */
}

.testimonials .container {
    position: relative;
    z-index: 2; /* content boven overlay */
}

.testimonials .container {
    position: relative;
    z-index: ;
    text-align: center; /* zorgt dat h2 + slider gecentreerd zijn */
}

.testimonials h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 1s ease-in-out;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    font-size: 1.1em;
    line-height: 1.6;
    color: white;
}

.testimonial .author {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial .title {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;   /* toegevoegde regel */
    z-index: 2;           /* boven overlay/blur */
}
.testimonial-dots span {
    width: 12px;
    height: 12px;
    background-color: #777;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.testimonial-dots span.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* === Contact Call-to-Action (AANGEPAST CONTACT-CTA) === */
.contact-cta {
    background: linear-gradient(45deg, #fe564a 25%, #ffb333 100%);
    padding: 40px 0 0; /* Padding boven behouden, onder verwijderd */
    min-height: 250px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
    display: flex;
    align-items: flex-end; /* Align content to the bottom */
    text-align: left;
}

.contact-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 0 25px;
}

/* Wrapper voor tekst en knop */
.cta-content {
    padding-bottom: 60px;
    max-width: 60%;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.contact-cta h2,
.contact-cta p {
    text-shadow: 0 2px 6px rgba(0,0,0,0.18);
    text-align: left;
    margin-bottom: 15px;
}

.contact-cta h2 {
    margin-top: 0;
    font-size: 1.8em;
}

.contact-cta .cta-button {
    background-color: #ffffff;
    color: var(--accent-color);
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease;
    margin: 5px 0 5px 0;
}

.contact-cta .cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.22);
    background-color: #ffffff;
}

/* Blokje collega - Afbeelding en Info */
.colleague-block {
    position: relative;
    text-align: center;
    margin-right: 25px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.colleague-block img {
    max-height: 300px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Zwevende tekst over de collega */
.colleague-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    text-align: center;

    /* Styling voor de "transparante knop" look */
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 8px 15px;
    line-height: 1.3;
    width: max-content;
    max-width: fit-content;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.colleague-info p {
    margin: 0;
    padding: 0;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
    white-space: nowrap;
}

.colleague-info .name {
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 2px;
    font-family: 'Caveat', cursive;

}
.colleague-info .title::before {
    content: " \00B7 "; /* Dit is de middelpunt-dot (⋅) */
    margin: 0 5px;
    font-weight: 500;
}

/* optionele glans overlay */
.contact-cta::after {
    content: "";
    position: absolute;
    left: -20%;
    top: -40%;
    width: 60%;
    height: 180%;
    background: rgba(255,255,255,0.06);
    transform: rotate(-25deg);
    pointer-events: none;
}

/* === CONTACT === */


        /* === Contact Layout === */
        .contact-section {
            background-color: var(--background-light);
            padding: 80px 0;
        }

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

        .contact-form-wrapper {
            background: var(--white);
            padding: 36px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    flex: 1;
        }

        .contact-form-wrapper h2 {
            margin-top: 0;
        }

        label { display:block; font-weight:600; margin-bottom:6px; }
        input, textarea {
            width:100%;
            padding:10px 12px;
            border:1px solid #d0d4d9;
            border-radius:6px;
            font-size:1rem;
            font-family:inherit;
            margin-bottom:14px;
        }
        input:focus, textarea:focus {
            border-color: var(--primary-color);
            outline: none;
        }

        .turnstile-placeholder {
            margin-top: 12px;
            text-align:center;
            color:#666;
            font-style: italic;
        }

button[type="submit"] {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer; /* standaard cursor voor actieve button */
    opacity: 1;      /* standaard opacity */
    transition: opacity 0.2s, cursor 0.2s; /* mooie overgang */
}

/* Disabled state */
button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contactform feedback */
.form-feedback {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    display: none;
}

/* Succes melding */
.form-feedback.success {
    display: block;
    background-color: #ecfdf3;
    border: 1px solid #16a34a;
    color: #166534;
}

/* Error melding */
.form-feedback.error {
    display: block;
    background-color: #fef2f2;
    border: 1px solid #dc2626;
    color: #7f1d1d;
}

.required-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px; /* bolletje komt achter de tekst */
    border-radius: 50%;
    background-color: var(--primary-color);
    vertical-align: middle;
}



        /* === Contact Cards rechts === */
        .contact-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-card {
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--primary-color);
            text-align: center;
        }

        .contact-card i {
            font-size: 2em;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .contact-card h3 {
            color: var(--accent-color);
            margin-bottom: 8px;
        }


      select {
            width:100%;
            padding:10px 12px;
            border:1px solid #d0d4d9;
            border-radius:6px;
            font-size:1rem;
            font-family:inherit;
            margin-bottom:14px;
            background-color:#fff;
        }
        select:focus {
            border-color: var(--primary-color);
            outline:none;
        }


        /* === Bedrijfsgegevens === */
        .company-details {
            max-width: 700px;
            margin: 60px auto 0;
            background: var(--white);
            padding: 28px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }

        .company-details ul {
            list-style: none;
            padding: 0;
            margin: 0;
            line-height: 1.8;
        }

        .company-details li strong {
            display: inline-block;
            min-width: 140px;
        }


/* === Probleemstelling Checklist === */
.problem-statement {
    padding: 60px 20px;
    background-color: var(--background-light, #f9f9f9);
}

.problem-statement .container {
    max-width: 800px;
    margin: 0 auto;
}

.problem-intro {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--accent-color, #54595F);
    margin-bottom: 25px;
    text-align: center
}

/* Checklist stijl */
.problem-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.problem-checklist li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.5;
    color: var(--text-color-dark, #333);
}

/* Custom checkmark */
.problem-checklist li::before {
    content: "\2713"; /* ✓ */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color, #E44D26);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.2;
}


/* === Partner Sectie === */
.partner-stack {
    background: var(--partner-bg-gradient);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.partner-stack h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.partner-stack p {
    color: var(--text-color-dark);
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2em;
}

.partner-stack .partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    margin-top: 40px;
}

.partner-stack .partner img {
    max-width: 150px;
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.partner-stack .partner:hover img {
    transform: scale(1.05);
}


/* === FAQ Sectie === */
.faq-section {
    background-color: var(--background-light);
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    color: var(--accent-color);
    font-size: 2em;
    margin-bottom: 40px;
    font-weight: 800;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05em;
    color: var(--accent-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    padding-bottom: 18px;
    color: var(--text-color-dark);
    font-size: 1em;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item i {
    transition: transform 0.3s ease;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* === Vacatures === */
        .hero-vacature {
            background: linear-gradient(rgba(34,34,34,0.85), rgba(34,34,34,0.85)),
                        url('/wq/img/hero/work.jpg') no-repeat center center;
            background-size: cover;
            padding: 140px 0;
            text-align: center;
            color: white;
        }

        .vacature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .vacature-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-top: 5px solid var(--primary-color);
            display: flex;
            flex-direction: column;
        }

        .vacature-card h3 {
            margin-top: 0;
            color: var(--accent-color);
        }

        .vacature-card ul {
            list-style: none;
            padding: 0;
            flex-grow: 1;
        }

        .vacature-card ul li::before {
            content: "✓ ";
            color: var(--primary-color);
            font-weight: bold;
        }

        .vacature-card .cta-button {
            margin-top: 20px;
        }

/* === VACATURE PAGINA === */
        .hero-job {
            background: linear-gradient(rgba(50,50,50,0.85), rgba(50,50,50,0.85)),
                        url('/wq/img/hero/work.jpg') no-repeat center center;
            background-size: cover;
            padding: 120px 0;
            color: white;
            text-align: center;
        }

        .job-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            font-size: 0.95em;
            opacity: 0.9;
            flex-wrap: wrap;
        }

        .job-section {
            padding: 60px 0;
        }

        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .job-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0,0,0,.08);
        }

        .job-card h3 {
            color: var(--accent-color);
        }

        .job-card ul {
            padding-left: 20px;
        }

        .job-card ul li {
            margin-bottom: 8px;
        }


/* === Ons verhaal === */
  .mission {
            padding: 80px 0;
        }

        .mission-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .mission-content img {
            width: 100%;
            max-width: 500px;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .mission-text { flex: 1; }
        .mission-text h2 { font-size: 2em; color: var(--accent-color); margin-bottom: 15px; }
        .mission-text p { margin-bottom: 20px; }

.mission-content a {
    color: var(--primary-color);
    font-weight: bold;
    text-decoration-line: underline;
}


        /* Sectie - Kernwaarden */
        .values {
            background-color: var(--background-light);
            padding: 80px 0;
            text-align: center;
        }

        .values h2 { font-size: 2.2em; color: var(--accent-color); margin-bottom: 40px; }

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

        .value-item {
            background-color: var(--white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            border-bottom: 4px solid var(--primary-color);
            transition: transform 0.3s;
        }

        .value-item:hover { transform: translateY(-5px); }

        .value-item i { font-size: 2.5em; color: var(--primary-color); margin-bottom: 15px; }
        .value-item h3 { color: var(--accent-color); font-size: 1.3em; margin-bottom: 10px; }

        /* Sectie - Ons Team */
        .team { padding: 80px 0; }
        .team h2 { text-align: center; font-size: 2.2em; color: var(--accent-color); margin-bottom: 50px; }

        /* Team grid en lange biografieën */
        .team-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            text-align: left;
        }

        .team-member {
            background-color: var(--background-light);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            align-items: flex-start;
            gap: 30px;
        }

        /* Container voor de gradient-rand (rond de teamfoto's) */
        .team-member .img-container {
            width: 188px; /* 180px (img) + 4px (padding) * 2 */
            height: 188px;
            border-radius: 50%;
            padding: 4px; /* Dient als de "rand" breedte */
            /* AANGEPAST: Gradient startkleur consistent met de nieuwe primary-color */
            background: linear-gradient(45deg, #E44D26 0%, #ffb333 100%); 
            flex-shrink: 0;
            box-sizing: border-box; 
            position: relative;
        }

        .team-member img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: none;
            display: block;
        }
        /* Einde container voor de gradient-rand */


        .member-info { flex-grow: 1; }

        .member-info h4 {
            margin-top: 0;
            color: var(--accent-color);
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .member-info .role {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95em;
            color: var(--accent-color);
            font-weight: 500;
            /* AANGEPAST: Achtergrondkleur in rol-badge consistent met de nieuwe primary-color */
            background-color: rgba(228, 77, 38, 0.08); 
            padding: 5px 12px;
            border-radius: 20px;
            margin-bottom: 8px;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .member-info .role:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.12); }

        .member-info .role i { font-size: 1.1em; color: var(--primary-color); }
        .member-info .role span { font-weight: 700; }

        .bio-text p { margin-bottom: 20px; line-height: 1.8; font-size: 1em; }

/* === Footer === */
footer {
    background-color: #222222;
    color: var(--text-color-light);
    padding: 40px 0;
    font-size: 0.9em;
    text-align: center;
}

/* Footer Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: left;
}

/* Footer Blokken */
.footer-block h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.05em;
}

.footer-block p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-nap {
    font-size: 0.85em;
    opacity: 0.8;
}

/* Lijsten */
.footer-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Contact Accent */
.footer-location {
    margin-top: 10px;
    font-style: italic;
    opacity: 0.8;
}

/* Onderkant Footer */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85em;
    opacity: 0.85;
}


/* === Component Kaarten === */
.components-section {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.components-section h2 {
    font-size: 2.5em;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.components-description {
    font-size: 1.1em;
    color: var(--text-color-dark);
    max-width: 700px;
    margin: 0 auto 50px;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.component-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px 25px 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.component-card i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.component-card h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.component-card p {
    color: var(--text-color-dark);
    font-size: 1em;
    margin-bottom: 20px;
}

.component-card .price {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
}


/* PROCESS en USP */
/* ------------------------- */
/* Process Sectie           */
/* ------------------------- */
.process {
    background-color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.process h2 {
    font-size: 2.4em;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.process-intro {
    max-width: 650px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.1em;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 35px;
}

.process-step {
    background: var(--white);
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.process-step i {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-color-dark);
    font-size: 1em;
}

/* ------------------------- */
/* USP Sectie                */
/* ------------------------- */
.usp {
    background-color: var(--background-light);
    padding: 80px 20px;
    text-align: center;
}

.usp h2 {
    font-size: 2.4em;
    color: var(--accent-color);
    margin-bottom: 40px;
}

.usp h3 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
}

.usp-item {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.usp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.usp-item i {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.usp-item p {
    font-size: 1em;
    color: var(--text-color-dark);
    line-height: 1.5;
}


/* ==========================================================================
   Responsieve Stijlen (Media Queries)
   ========================================================================== */

/* === Desktop/Grote Schermen Verbeteringen (>= 992px) === */
@media (min-width: 992px) {
    /* Maakt de twee Pricing Cards strikt gelijk in breedte en hoogte */
    .price-card {
        max-width: none; /* Verwijdert de max-width van 400px */
        flex: 1; /* Zorgt ervoor dat ze even breed worden */
    }
    .pricing-cards {
        align-items: stretch; /* Zorgt voor gelijke hoogte */
    }
}


/* === Tablet/Kleine Desktop Aanpassingen (<= 1024px) === */
@media (max-width: 1024px) {
    .logo img {
        height: 36px;
    }

    .cta-content {
        max-width: 70%;
    }

    .colleague-block img {
        max-height: 250px;
    }

    .colleague-block {
        margin-right: 15px;
    }

    .colleague-info {
        bottom: 20px; /* Kleinere afstand op kleinere schermen */
    }
}


/* === Mobiele Aanpassingen (<= 768px) === */
@media (max-width: 768px) {
    /* Belangrijke padding op container voor marges op mobiel */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Navigatie aanpassingen */
    nav {
        justify-content: space-between;
        position: relative;
    }

    .hamburger {
        display: block;
        position: static;
        transform: none;
        background: transparent;
        border: none;
    }

    .logo img {
        height: 35px;
    }

    .nav-right {
        flex-grow: 1;
        justify-content: flex-end;
    }

    .header-hotline {
        order: -1;
        margin-right: auto;
        margin-left: 15px;
        padding: 5px 10px;
        font-size: 0.85em;
    }

    .header-hotline i {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--header-dark);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        padding: 20px 0;
        text-align: center;
        box-sizing: border-box;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        padding: 10px 0;
        width: 80%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links .cta-button {
        display: block;
        width: 70%;
        margin: 20px auto 10px;
        padding: 15px 30px;
    }

    /* Hero */
.hero {
        padding: 80px 20px; /* Pas aan naar wens */
        min-height: 300px; /* Zorg dat er genoeg ruimte is voor de hele afbeelding */
        background-size: cover; /* **VERANDERD:** Vult de hele container en wordt bijgesneden indien nodig */
        background-position: center top; /* Focus op het bovenste deel */
        background-repeat: no-repeat; /* Voorkomt herhaling */
        background-attachment: scroll; /* Fixed werkt slecht op mobiel */
    }
    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .value-grid {
        margin-top: 0;
    }

    /* Mobiele Hero CTA: Zorgt dat beide knoppen gecentreerd worden */
    .hero .cta-button {
        display: block;
        margin: 15px auto;
        max-width: 300px;
        padding: 15px 30px;
    }

    .hero .cta-button:first-of-type {
        margin-left: auto;
    }

    .package-services {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pricing-section h2 {
        margin-bottom: 30px;
    }

    .price-card.featured {
        transform: scale(1.0); /* Remove zoom on mobile */
    }

    .service-item {
        margin-left: 0;
        padding: 25px;
        text-align: left;
    }

    .service-item i {
        right: 25px;
    }

            .mission-content { flex-direction: column; }

            .team-member { flex-direction: column; text-align: center; }
            .team-member .img-container { margin: 0 auto 15px auto; } /* Centering op mobiel */

    /* Mobiele CTA aanpassingen */
    .contact-cta {
        padding: 40px 0;
        min-height: 0;
    }

    .contact-cta .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
        padding-bottom: 15px;
        text-align: center;
    }

    .contact-cta h2,
    .contact-cta p {
        text-align: center;
    }

    .contact-cta .cta-button {
        display: block;
        margin: 0 auto 15px;
        width: 85%;
        max-width: 360px;
    }

    /* Verberg het volledige collega-blok op mobiel */
    .colleague-block {
        display: none;
    }

    .problem-intro {
        font-size: 1.15em;
        margin-bottom: 20px;
    }

    .problem-checklist li {
        font-size: 1em;
        padding-left: 30px;
    }

    .problem-checklist li::before {
        font-size: 1.1em;
    }

    /* === FOOTER DESIGN UPGRADE (768px) === */

    footer {
        background: linear-gradient(135deg, #1a1a1a, #252525);
    }

    .footer-block {
        position: relative;
    }

    .footer-block:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 3px;
        width: 30px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

    .footer-block h4 {
        padding-top: 8px;
    }

    /* link emphasis */
    .footer-block ul li a:hover {
        padding-left: 5px;
    }

    /* subtle animation */
    footer a {
        transition: all 0.2s ease;
    }
}

/* Desktop default */
.contact-mobile {
    display: none;
}

/* Mobiel */
@media (max-width: 600px) {
    .contact-layout {
        flex-direction: column;
        align-items: center; /* horizontaal centreren */
        text-align: center; /* tekst in kaarten en formulier centreren */
    }

    .contact-form-wrapper,
    .contact-info-grid {
        width: 100%; /* vul de container volledig of max-width instellen */
        max-width: 500px; /* voorkomt dat het te breed wordt op grotere telefoons */
    }

    .contact-info-grid {
        grid-template-columns: 1fr; /* 1 kolom per kaart */
        gap: 20px;
        margin-top: 20px;
    }
    .contact-desktop {
        display: none !important;
    }

    .contact-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .contact-btn {
        display: flex;
        align-items: center;
        gap: 12px;

        background-color: rgba(255,255,255,0.06);
        padding: 12px 14px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;

        color: var(--white);
        border: 1px solid rgba(255,255,255,0.12);
    }

    /* Font Awesome icoon kleur */
    .contact-btn i {
        color: var(--primary-color);
        font-size: 18px;
        min-width: 22px;
        text-align: center;
    }

    .contact-btn:hover {
        background-color: rgba(255,255,255,0.12);
    }
}
