/* Variables */
:root {
    --primary-color: #3cb64a;
    --secondary-color: #000;
    --accent-color: #3cb64a;
    --text-dark: #fff;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --bg-dark: #000;
    --border-color: #eee;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition-speed: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.3;
    transition: color var(--transition-speed);
}

h1 {
    font-size: 2.4rem;
    color: var(--primary-color);
    padding-bottom: 0.3em;	
	position: relative;
    padding-left: 20px;
}

h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    display: inline-block; /* Zorgt dat h2 breedte is zoals tekst */
    position: relative;    /* Nodig voor ::before positionering */
    padding-left: 15px;    /* Ruimte voor de border */
    text-align: center;    /* Optioneel, maar inline-block zorgt al voor centrering als parent text-align:center is */
}

h2::before,h1::before  {
    content: "";
    position: absolute;
    left: 0;               /* Direct aan de linkerkant van de tekst */
    top: 0;
    bottom: 0;
    width: 5px;            /* Breedte van de border */
    background-color: var(--accent-color);
}


h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

h5 {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
}

h6 {
    font-size: 0.95rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

p {
    margin-bottom: 1em;
    font-size: 1rem;
    color: var(--text-light);
}

ul, ol {
    margin: 1em 0 1em 2em;
}

ul li, ol li {
    margin-bottom: 0.5em;
    transition: color var(--transition-speed);
}

ul li::marker {
    color: var(--primary-color);
}

ol li::marker {
    color: var(--secondary-color);
    font-weight: bold;
}

ul li:hover, ol li:hover {
    color: var(--primary-color);
}

.divider {
    height:20px;
    width:100%; 
}

ul {
    list-style: none;
    margin: 1em 0 1em 0;
    padding-left: 0;
}

code {
    background: #fff6f9;
    color: var(--primary-color);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px solid var(--border-color);
}

hr {
    border: 0;
    border-top: 2px solid var(--border-color);
    margin: 2em 0;
}

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

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--secondary-color);
}

.adres-icon,
.telefoon-icon,
.email-icon {
  display: flex;
  align-items: center;
  gap: 8px;
	margin-bottom:0;
}

/* Icons */
.adres-icon::before {
  font-family: 'Line Awesome Free';
  content: "\f041";
  font-weight: 900;
  font-size: 35px;
  color: #3cb64a;
}

.telefoon-icon::before {
  font-family: 'Line Awesome Free';
  content: "\f095";
  font-weight: 900;
  font-size: 35px;
  color: #3cb64a;
}

.email-icon::before {
  font-family: 'Line Awesome Free';
  content: "\f0e0";
  font-weight: 900;
  font-size: 35px;
  color: #3cb64a;
}


.btn {
    display: inline-block;
    background: #3cb64a;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: background-color var(--transition-speed);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #cddc29;
    color: #000;
}

.btn-dark {
    background-color: var(--bg-dark);
    color: #fff;
}

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

.btn-sm {
    padding: 8px 15px;
    font-size: 0.9em;
    margin: 5px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    background-color: #f5f5f5;
}

.logo-card {
    width: 150px;
    height: 150px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-card img {
    max-width: 80%;
    max-height: 80%;
    display: block;
}

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

/* ==========================
   STICKY MENU STYLING
   ========================== */

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
    isolation: isolate;
}

.top-bar {
    background: linear-gradient(to right, #3cb64a, #cddc28);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85em;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-links a,
.social-media a {
    color: #fff;
    margin-right: 15px;
}

.top-links a:last-child,
.social-media a:last-child {
    margin-right: 0;
}

.top-links i,
.social-media i {
       margin-right: 3px;
    font-size: 18px;
    color: #000;
}
.header-bottom {background-color:#000;}
/* Fixed position als fallback */
.header-bottom.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
	
}

/* Styling wanneer er gescrolled is */
.header-bottom.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo styling met transitie */
.logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.header-bottom.scrolled .logo img {
    height: 40px;
}

/* Contact info styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: font-size 0.3s ease;
}
.contact-info a {color:#fff;}
.contact-info a:hover {color:#cddc28;}

.header-bottom.scrolled .contact-info {
    font-size: 0.9em;
}

.contact-info i {
    font-size: 1.2em;
    color: var(--primary-color);
}

/* ==========================
   TOP-BAR OPTIONEEL VERBERGEN BIJ SCROLLEN
   ========================== */
/* Uncomment onderstaande code als je de top-bar wilt verbergen bij scrollen */

.top-bar {
    transition: all 0.3s ease;
    max-height: 50px;
    overflow: hidden;
}

body.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
}


/* Page Header met foto en CTA knop */
.page-header {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.page-header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
}

.page-header-content h2 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border-bottom: none;
}

.page-header-content p {
    font-size: 1.5em;
    color: inherit;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-header-content .btn {
    font-size: 1.1em;
    padding: 15px 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Content sectie gesplitst in 2 delen */
.split-content-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.split-content-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color:#fff;
}

.content-column {
    color: var(--text-light);
}

.content-column h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.content-column h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-column p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-column img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Content sectie 100% breed binnen container */
.full-width-content {
    padding: 25px 0;
    color: var(--text-light);
    background-color: var(--bg-light);
    margin: 40px 0;
}

.full-width-content .container {
    max-width: 1200px;
}

.full-width-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.full-width-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.full-width-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.full-width-content .btn {
    margin-top: 20px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    isolation: isolate;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    position: relative;
    opacity: 1;
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}

.slider-content h2 {
    font-family: var(--font-heading);
    color:inherit;
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-content p {
    font-size: 1.5em;
    color:inherit;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    /*display: flex;*/
	   display: none;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 3;
}

.nav-btn {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px 20px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color var(--transition-speed);
}

.nav-btn:hover {
    background: rgba(0,0,0,0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.slider-dots .dot.active {
    background: var(--primary-color);
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(to right, #3cb64a, #cddc28);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.promo-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.promo-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.8em;
    margin: 0;
    color:inherit;
}

/* Info Blocks */
.info-blocks, .content-vervolg {
    padding: 40px 0;
    background-color: var(--bg-light);
    margin-bottom: 40px;
}

.info-blocks .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
}

.info-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3em;
    font-weight:bold;
    color: #000;
    margin-bottom: 15px;
    padding: 0 20px;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    padding: 0 20px;
}

.info-card ul {
    margin-bottom: 20px;
    text-align: left;
    padding: 0 40px;
}

.info-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-card ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.info-card a.btn {
    margin-top: auto;
    display: inline-block;
    padding: 5px 10px;
    width: auto;
    align-self: center;
}

/* Projects Section */
.projects-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: #fff;
    margin-bottom: 40px;
}

.projects-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.projects-section h3 {
    font-family: var(--font-heading);
    font-size: 2em;
    color: var(--primary-color);
    margin: 0;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-filters .filter-btn {
    background-color: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed), border-color var(--transition-speed);
    font-size: 0.9em;
}

.project-filters .filter-btn:hover,
.project-filters .filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover img {
    transform: scale(1.05);
}

.talk-to-us {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative; /* Belangrijk voor het positioneren van de ::after */
    z-index: 1; /* Zorgt dat de tekst boven de pseudo-elementen blijft */
}

.talk-to-us::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40%;
    height: 100%;
    background-image: url(../images/kwast.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
    z-index: -1; /* Plaatst de kwast achter de tekst */
}



.talk-to-us p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews Slider Styles */
.reviews-slider-wrapper {
    background-color: var(--primary-color);
    padding: 60px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    color: #fff;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.reviews-slider-wrapper h4 {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.reviews-slider {
    position: relative;
    height: 200px;
    margin-bottom: 30px;
}

.review-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    padding: 0 50px;
}

.review-item.active {
    opacity: 1;
    position: relative;
}

.review-text {
    font-size: 1.2em;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.1em;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
}

.reviews-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
}

.review-nav-btn {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color var(--transition-speed);
}

.review-nav-btn:hover {
    background: rgba(255,255,255,0.4);
}

.reviews-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.reviews-slider-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.reviews-slider-dots .dot.active {
    background: #cedc27;
}

/* Bottom Widgets */
.bottom-widgets {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.bottom-widgets .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.widget {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
}

.widget-header i {
    font-size: 1.8em;
    color: var(--primary-color);
}

.widget-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5em;
    color: var(--text-dark);
    margin: 0;
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.partner-logo-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.partner-logo-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: filter var(--transition-speed), opacity var(--transition-speed);
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.news-item:last-of-type {
    border-bottom: none;
    margin-bottom: 30px;
    padding-bottom: 0;
}

.news-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1em;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.news-item p {
    font-size: 0.9em;
    color: var(--text-light);
    margin-bottom: 10px;
}

.news-item .read-more {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    transition: background-color var(--transition-speed);
}

.news-item .read-more:hover {
    background-color: var(--primary-color);
    text-decoration: none;
}

.btn-more-news {
    background-color: var(--bg-dark);
    color: #fff;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.btn-more-news:hover {
    background-color: var(--primary-color);
}

/* Footer */
.main-footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding-top: 50px;
    font-size: 0.9em;
}

.main-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-footer .footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.main-footer .footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.main-footer .footer-col ul {
    list-style: none;
}

.main-footer .footer-col ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-col.col2 ul li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 0.5em;
}

.footer-col.col2 ul li::before {
    content: "✔"; 
    position: absolute;
    left: 0;
    top: 0;
    color:#3cb64a; 
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1;
}

.main-footer .footer-col ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1em;
    min-width: 20px;
}

.main-footer .footer-col ul li a {
    color: #ccc;
    transition: color var(--transition-speed);
}

.main-footer .footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom-bar {
    background: linear-gradient(to right, #3cb64a, #cddc28);
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8em;
}

.footer-bottom-bar a {
    color: #aaa;
    font-weight: 600;
}

.footer-bottom-bar a:hover {
    color: var(--secondary-color);
}

/* Flipcard Grid Section */
.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

/* Flipcard Grid */

.flipcard-back {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flipcard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

/* Flipcard Item */
.flipcard-item {
    perspective: 1000px;
    height: 350px;
    cursor: pointer;
}

.flipcard-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flipcard-item:hover .flipcard-inner {
    transform: rotateY(180deg);
}

.flipcard-front,
.flipcard-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Front Side */
.flipcard-front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.flipcard-front img {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.flipcard-front-content {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flipcard-front-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

/* Back Side */
.flipcard-back {
    background: linear-gradient(135deg, var(--secondary-color), #222);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    color: #fff;
}

.flipcard-back h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: center;
}

.flipcard-back p {
    font-size: 1rem;
    color: #ccc;
    text-align: center;
    line-height: 1.8;
}

.flipcard-back .badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

/*flipcard leeg*/

/* Grid */
.flipcardleeg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

/* Card */
.flipcardleeg-grid .flipcardleeg-item {
    height: 350px;
}

/* Front - alleen functioneel, geen styling als leeg */
.flipcardleeg-grid .flipcard-front {
    width: 100%;
    height: 100%;
}

/* Alleen als er een afbeelding bestaat */
.flipcardleeg-grid .flipcard-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Verberg afbeeldingen zonder bron */
 .flipcardleeg-grid .flipcard-front img[src=""],
 .flipcardleeg-grid .flipcard-front img:not([src]) {
    display: none;
}



/* ==========================
   RESPONSIVE DESIGN
   ========================== */

/* Responsive aanpassingen voor nieuwe secties */
@media (max-width: 991px) {
    .split-content-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-header {
        height: 350px;
    }

    .page-header-content h1 {
        font-size: 2.5em;
    }

    .header-bottom .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .contact-info {
        order: 2;
        margin-top: 0;        display: none;
    }

    .logo {
        order: 1;
    }
    
    .promo-banner .container {
        flex-direction: column;
        gap: 20px;
    }

    .promo-banner h3 {
        font-size: 1.5em;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-blocks .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-blocks .container .info-card:nth-child(3):last-child {
        grid-column: 1 / -1;
    }

    .info-blocks .container .info-card:nth-child(3):last-child img {
        display: none;
    }
	
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
    .main-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-footer .footer-col:nth-child(odd):last-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .main-footer .footer-col:nth-child(odd):last-child h4 {
        text-align: center;
    }

    .main-footer .footer-col:nth-child(odd):last-child ul {
        display: inline-block;
        text-align: left;
    }

    /* Flipcard responsive */
	
	
    .flipcard-grid, .flipcardleeg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .flipcard-item, .flipcardleeg-item {
        height: 320px;
    }

    /* Mobiel menu z-index voor sticky */
    .main-nav {
        z-index: 1001 !important;
    }
    
    .menu-overlay {
        z-index: 1000;
    }
}

@media (max-width: 767px) {
    .top-bar .container {
       
        gap: 10px;
    }

    .top-links, .social-media {
        margin-right: 0;
    }

    .slider-content h2 {
        font-size: 2.5em;
    }

    .slider-content p {
        font-size: 1.2em;
    }

    .hero-slider {
        height: 400px;
    }

    .slider-item {
        height: 400px;
    }

    .info-blocks .container,
    .bottom-widgets .container {
        grid-template-columns: 1fr;
    }

    .widget-header {
        justify-content: center;
    }

    .widget-header h3 {
        text-align: center;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
	
    .main-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-footer .footer-col h4 {
        text-align: center;
    }

    .main-footer .footer-col ul {
        display: inline-block;
        text-align: left;
    }

    .main-footer .footer-col:nth-child(odd):last-child {
        grid-column: auto;
    }

    .page-header {
        height: 300px;
    }

    .page-header-content h1 {
        font-size: 2em;
    }

    .page-header-content .btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    /* Flipcard responsive */
    .flipcard-grid, .flipcardleeg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flipcard-item, .flipcardleeg-item {
        height: 380px;
    }

    .flipcard-back {
        padding: 25px;
    }

    /* Reviews slider responsive */
    .reviews-slider-wrapper {
        padding: 40px 15px;
        margin-top: 30px;
    }

    .reviews-slider-wrapper h4 {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .review-item {
        padding: 0 20px;
    }

    .review-text {
        font-size: 1em;
    }

    .review-nav-btn {
        padding: 8px 12px;
        font-size: 1em;
    }

    .reviews-slider {
        height: 220px;
    }
}

@media (max-width: 680px) {
	
	.section-header h2 {

    font-size: 1.8rem;
  
}
	
	    .slider-content h2 {
        font-size: 2.0em;
    }
	.page-header-content h2 {
   
    font-size: 2.0em;
	}
	
    .main-footer .footer-col h4 {
        text-align: left;
    }
	
    .main-footer .footer-col:nth-child(odd):last-child h4 {
        text-align: left;
    }
	
    .main-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .main-footer .footer-col:nth-child(odd):last-child {
        grid-column: 1 / -1;
        text-align: left;
    }
	
    .info-blocks .container .info-card:nth-child(3):last-child img {
        display:inherit;
    }

    .info-blocks .container .info-card:nth-child(3):last-child {
        grid-column: inherit;
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    .flipcard-item, .flipcardleeg-item {
        height: 350px;
    }

    .flipcard-front-content h3 {
        font-size: 1.1rem;
    }

    .flipcard-back h3 {
        font-size: 1.3rem;
    }

    .flipcard-back p {
        font-size: 0.95rem;
    }
}

@media (max-width: 320px) {
	
	h1 {
    font-size: 1.2rem;
    color: var(--primary-color);
    padding-bottom: 0.3em;
}
	
    .header-bottom .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .contact-info {
        margin-bottom: 15px;
    }

    .slider-content h2 {
        font-size: 1.8em;
    }

    .slider-content p {
        font-size: 1em;
    }

    .hero-slider {
        height: 300px;
    }

    .slider-item {
        height: 300px;
    }

    .nav-btn {
        padding: 10px 15px;
        font-size: 1.2em;
    }

    .page-header {
        height: 250px;
    }

    .page-header-content h1 {
        font-size: 1.5em;
    }
}