/*
Theme Name: UnLimiteD Hulpverlening
Theme URI: https://unlimitedhulpverlening.nl/
Author: UnLimiteD
Author URI: https://unlimitedhulpverlening.nl/
Description: Custom WordPress theme voor UnLimiteD Hulpverlening, modern en responsive.
Version: 1.0
Text Domain: unlimited-hulpverlening
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
}

.hamburger .bar {
    height: 4px;
    width: 100%;
    background: #1e293b;
    border-radius: 2px;
    margin: 4px 0;
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    display: block;
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
}

@media (min-width: 901px) {
    .hamburger {
        display: none;
    }
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0 0 0;
    overflow: hidden;
}

.hero::before {
    content: none;
}

.hero > *:not(.hero-background):not(.scroll-indicator) {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.7), rgba(74, 144, 226, 0.5));
    z-index: 0;
}

/* Hero Content */
.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    z-index: 2;
    margin-bottom: 120px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease 0.5s both;
    margin-top: 0;
}

.hero-logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0 20px;
    flex-wrap: wrap;
    width: 100%;
    overflow: visible;
    text-align: center;
    box-sizing: border-box;
}

.typewriter-text {
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    display: block;
    width: 100%;
    overflow: visible;
    text-align: center;
    opacity: 0;
    font-family: inherit;
    font-size: 3.2rem;
    transition: opacity 0.2s;
}

/* Fallback animation for when JavaScript is disabled */
.no-js .typewriter-text {
    animation: typewriter 3s steps(20) 1s both;
}

.cursor {
    font-weight: 300;
    animation: blink 1s infinite;
    color: #4a90e2;
    text-shadow: 0 0 10px #4a90e2;
    opacity: 0;
}

@keyframes typewriter {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 1.5s both;
}

.gradient-text {
    background: linear-gradient(135deg, #4a90e2, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 2.5s both;
    margin-bottom: 4rem;
}

/* Neon Buttons */
.neon-btn {
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.neon-btn:hover::before {
    left: 100%;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary .btn-glow {
    box-shadow: 0 0 20px rgba(44, 90, 160, 0.6);
}

.btn-secondary .btn-glow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.neon-btn:hover .btn-glow {
    opacity: 1;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1s ease 3s both;
    flex-wrap: wrap;
    margin-top: 2rem;
    width: 100%;
    max-width: 800px;
    margin-bottom: 64px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
    flex: 1;
    max-width: 200px;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    animation: fadeInUp 1s ease 3.5s both;
    pointer-events: none;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: white;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3f6b, #2c5aa0);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    border-radius: 50px;
    font-weight: 600;
    padding: 15px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.08);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover, .btn-secondary:focus {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: #fff;
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.18);
    border-color: #2c5aa0;
    text-decoration: none;
}

.btn-secondary:hover::after, .btn-secondary:focus::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    box-shadow: 0 0 16px 4px #4a90e2;
    opacity: 0.25;
    pointer-events: none;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #4a90e2);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.feature-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8), rgba(74, 144, 226, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    color: white;
    font-size: 3rem;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.service-features i {
    color: #2c5aa0;
    font-size: 0.9rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 90, 160, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin: 0;
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.stat-content h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-content p {
    color: #666;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2c5aa0;
    opacity: 0.2;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid #2c5aa0;
}

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

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #2c5aa0;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Signup Section */
.signup {
    padding: 80px 0;
    background: #f8f9fa;
}

.signup-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.signup-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.signup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
}

.signup-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.signup-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-image {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    margin: 0;
}

.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7-form input[type="submit"] {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wpcf7-form input[type="submit"]:hover {
    background: #1e88e5;
}

.wpcf7-form input[type="checkbox"] {
    margin-right: 8px;
}

.wpcf7-form .wpcf7-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
    margin-top: 2px;
}

.wpcf7-form .wpcf7-checkbox span {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Form 7 Success/Error Messages */
.wpcf7-response-output {
    margin: 1.5rem 0 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
}

.wpcf7-mail-sent-ok {
    background: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
}

.wpcf7-validation-errors {
    background: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
}

.wpcf7-spam-blocked {
    background: #fff3cd !important;
    color: #856404 !important;
    border: 1px solid #ffeaa7 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    margin-top: 4px !important;
}

/* Footer */
.footer {
    background: #2c5aa0;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    align-items: flex-start;
}

.footer-section {
    flex: 1 1 180px;
    min-width: 180px;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo-section {
    min-width: 220px;
    max-width: 260px;
}

.footer-logo-img {
    max-width: 200px;
    max-height: 80px;
    height: auto;
    margin-bottom: 1.2em;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-title {
    margin: 0 0 1.2em 0;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 0.01em;
    display: block;
    min-height: 60px;
    line-height: 60px;
}

.footer-description {
    font-size: 0.98em;
    color: #fff;
    margin: 1.2em 0 1.5em 0;
    line-height: 1.5;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-section ul li {
    margin-bottom: 0.7em;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
    transition: color 0.2s, opacity 0.2s;
    text-align: left;
    display: block;
}

.footer-section ul li a:hover {
    color: #0077b5;
    opacity: 1;
}

.certificates-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2em 1.5em;
    align-items: flex-start;
    justify-content: flex-start;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    margin-bottom: 0.5em;
}

.certificate-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    margin-bottom: 0.4em;
}

.certificate-title {
    font-size: 0.92em;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.footer-social-wrapper {
    margin-top: 1.2em;
}

.social-links {
    display: flex;
    gap: 0.7em;
}

.social-links a {
    font-size: 1.4em;
    color: #fff;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s;
}

.social-links a:hover {
    color: #0077b5;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2.5em;
    color: #fff;
    font-size: 0.98em;
    opacity: 0.85;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    .footer-section {
        min-width: 0;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    .footer-logo-img {
        max-width: 110px;
        max-height: 40px;
    }
    .certificate-item {
        width: 70px;
    }
    .certificate-img {
        width: 50px;
        height: 50px;
    }
    .certificate-title {
        font-size: 0.8em;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding-top: 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        min-height: calc(100vh - 100px);
        padding: 0 20px;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        padding: 0 5px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .typewriter-text {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0;
        text-align: center;
        width: 100%;
        max-width: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        width: 100%;
        max-width: 400px;
    }
    
    .stat-card {
        max-width: none;
        min-width: auto;
        width: 100%;
    }
    
    .scroll-indicator {
        font-size: 0.9rem;
        bottom: 16px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid,
    .signup-content,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        min-height: calc(100vh - 80px);
        padding: 0 15px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo {
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .hero-logo-img {
        height: 70px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        padding: 0 2px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .typewriter-text {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
        line-height: 1.6;
        text-align: center;
        width: 100%;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .hero-stats {
        gap: 0.8rem;
        margin-top: 0.5rem;
        width: 100%;
    }
    
    .stat-card {
        padding: 1rem 1.5rem;
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        font-size: 0.8rem;
        bottom: 8px;
    }
    
    .feature-card,
    .signup-card,
    .service-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-logo-img {
        height: 60px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
        margin: 0 auto 1rem auto;
        display: flex;
    }
    .certificates {
        align-items: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .certificate {
        justify-content: center;
        display: flex;
        align-items: center;
    }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* --- Workflow Section --- */
.workflow {
  background: #f7f9fb;
  padding: 60px 0 40px 0;
}

/* Workflow Timeline (Onze werkwijze) - premium uitlijning */
.workflow-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin: 64px auto 0 auto;
  max-width: 700px;
  width: 100%;
}
.workflow-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: 120px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.timeline-col {
  position: relative;
  width: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}
.timeline-dot {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 4px solid #1e88e5;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #1e88e5;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
}
.timeline-dot.active {
  background: #1e88e5;
  border-color: #42a5f5;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(66,165,245,0.15), 0 2px 8px rgba(30,136,229,0.12);
}
.timeline-line { display: none !important; }
.workflow-step:not(:last-child) .timeline-line {
  height: calc(100% + 28px); /* 28px = helft dot + extra ruimte */
}
.workflow-step:first-child .timeline-line {
  top: 50%;
  height: calc(100% + 28px);
}
.workflow-step:last-child .timeline-line {
  display: none;
}
.workflow-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30,136,229,0.06);
  padding: 24px 32px;
  margin-left: 16px;
  flex: 1;
  min-width: 0;
}
.workflow-content h4 {
  margin: 0 0 6px 0;
  font-size: 1.15rem;
  color: #1e88e5;
}
.workflow-content p {
  margin: 0;
  color: #374151;
  font-size: 1rem;
}
@media (max-width: 700px) {
  .workflow-timeline {
    max-width: 98vw;
    gap: 36px;
  }
  .workflow-content {
    padding: 16px 12px;
    font-size: 0.98rem;
  }
  .timeline-col {
    width: 40px;
  }
  .timeline-dot {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .timeline-line {
    left: 14px;
    top: 14px;
    width: 3px;
    height: calc(100% - 28px);
  }
}

/* --- FAQ Section --- */
.faq {
  background: #fff;
  padding: 60px 0 40px 0;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1e293b;
  transition: color 0.2s;
}
.faq-question.active, .faq-question:focus {
  color: #1e88e5;
}
.faq-answer {
  display: none;
  padding: 0 0 16px 0;
  color: #374151;
  font-size: 1rem;
}
.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s;
}
.faq-toggle {
  margin-left: 12px;
  font-size: 1.1em;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}
@media (max-width: 600px) {
  .faq-list {
    padding: 0 8px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 14px 0;
  }
}

/* --- Partners Section --- */
.partners {
  background: #f7f9fb;
  padding: 60px 0 40px 0;
}
.partners-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  justify-items: center;
  align-items: stretch;
  margin-top: 32px;
}
.partner-logo {
  background: rgba(255,255,255,0.35);
  box-shadow: 0 8px 32px 0 rgba(44,90,160,0.10);
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border-radius: 20px;
  padding: 32px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  min-width: 120px;
  max-width: 180px;
  position: relative;
}
.partner-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: transparent;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(44,90,160,0.08);
  transition: transform 0.3s;
}
.partner-logo span {
  font-size: 1rem;
  color: #2c5aa0;
  text-align: center;
  font-weight: 500;
  margin-top: 4px;
}
.partner-logo:hover, .partner-logo:focus {
  box-shadow: 0 0 0 4px #4a90e2, 0 8px 32px 0 rgba(44,90,160,0.18);
  transform: translateY(-6px) scale(1.04);
  z-index: 2;
}
.partner-logo:hover img, .partner-logo:focus img {
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .partners-logos {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .partner-logo {
    padding: 20px 8px 10px 8px;
  }
  .partner-logo img {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 600px) {
  .partners-logos {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .partner-logo {
    padding: 12px 4px 4px 4px;
  }
  .partner-logo img {
    width: 48px;
    height: 48px;
  }
}

/* --- Slider Dots/Arrows --- */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfd8dc;
  border: none;
  margin: 0 2px;
  transition: background 0.2s;
  cursor: pointer;
}
.slider-dot.active {
  background: #1e88e5;
}
.slider-arrow {
  background: none;
  border: none;
  font-size: 1.4em;
  color: #1e88e5;
  cursor: pointer;
  padding: 0 8px;
}

/* --- Services Slider Mobiel --- */
@media (max-width: 600px) {
  .services-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }
  .service-card {
    min-width: 90vw;
    max-width: 90vw;
    flex: 0 0 90vw;
    scroll-snap-align: center;
    margin: 0 5vw 0 0;
  }
}

/* --- Testimonials Slider Mobiel --- */
@media (max-width: 600px) {
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-card {
    min-width: 90vw;
    max-width: 90vw;
    flex: 0 0 90vw;
    scroll-snap-align: center;
    margin: 0 5vw 0 0;
  }
}

/* Swipe hint (mobiel) */
.swipe-hint {
  text-align: center;
  font-size: 0.98em;
  color: #888;
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  display: block;
}
@media (min-width: 601px) {
  .swipe-hint { display: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Mobile Overlay Menu --- */
.mobile-menu-overlay {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(8px) saturate(1.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #1e88e5;
}
.mobile-menu-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
  animation: menuSlideIn 0.5s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-menu-link {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 32px;
  border-radius: 32px;
  transition: background 0.2s, color 0.2s;
  display: block;
}
.mobile-menu-link:hover, .mobile-menu-link:focus {
  background: rgba(30,136,229,0.12);
  color: #1e88e5;
}
.mobile-menu-social {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}
.mobile-menu-social a {
  color: #fff;
  font-size: 1.7rem;
  transition: color 0.2s;
}
.mobile-menu-social a:hover {
  color: #1e88e5;
}
@media (min-width: 901px) {
  .mobile-menu-overlay { display: none !important; }
}
@keyframes menuSlideIn {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 900px) {
  .navbar .nav-menu {
    display: none !important;
  }
  .mobile-menu-overlay.active ~ .navbar .nav-menu {
    display: none !important;
  }
}

.partners-logos, .services-grid, .testimonials-grid {
  touch-action: auto;
  -ms-touch-action: auto;
}

@media (max-width: 900px) {
  .hero-content {
    margin-bottom: 90px;
  }
  .scroll-indicator {
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    margin-bottom: 60px;
  }
  .scroll-indicator {
    bottom: 10px;
  }
  .hero {
    padding-top: 100px;
  }
}

/* Progress Bar bovenaan */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 5px;
  background: transparent;
  z-index: 10000;
}
.progress-bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #1e88e5 0%, #42a5f5 100%);
  border-radius: 0 4px 4px 0;
  transition: width 0.15s cubic-bezier(.4,0,.2,1);
}

/* SVG golf onderaan hero */
.hero-svg-wave { display: none !important; }

@media (max-width: 600px) {
  .hero-svg-wave {
    height: 48px;
  }
}

/* --- TEAM PAGINA --- */
.team-main {
    background: #f8f9fa;
    min-height: 100vh;
}
.team-hero {
    background: linear-gradient(135deg, #e3f2fd 60%, #4a90e2 100%);
    padding: 80px 0 40px 0;
    text-align: center;
}
.team-hero h1 {
    color: #2c5aa0;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.team-hero p {
    color: #2c5aa0;
    font-size: 1.2rem;
    font-weight: 400;
}
.team-contact-cards {
    padding: 40px 0 60px 0;
}
.team-search-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 0%;
  min-width: 0;
}
#teamSearch {
  padding: 12px 18px 12px 38px;
  border-radius: 30px;
  border: 2px solid #e3f2fd;
  font-size: 1rem;
  min-width: 0;
  width: 100%;
  flex: 1 1 0%;
  outline: none;
  transition: border-color 0.2s;
  background: #f8f9fa;
  box-shadow: none;
}
#teamFilter {
  padding: 12px 18px;
  border-radius: 30px;
  border: 2px solid #e3f2fd;
  font-size: 1rem;
  outline: none;
  background: #f8f9fa;
  box-shadow: none;
  color: #555;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  min-width: 160px;
  margin-left: 0.5rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%234a90e2" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
}
#teamFilter:focus {
  border-color: #2c5aa0;
  background: #fff;
  color: #2c5aa0;
}
@media (max-width: 600px) {
  .team-search-panel {
    flex-direction: column;
    gap: 0.5rem;
  }
  #teamSearch, #teamFilter {
    width: 100%;
    min-width: 0;
  }
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.team-department {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
    margin-top: 2.5rem;
    text-align: left;
}
.team-department h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.team-card {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px 0 rgba(44,90,160,0.10);
    border-radius: 22px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    animation: teamCardFadeIn 0.6s cubic-bezier(.4,0,.2,1) forwards;
}
.team-card:hover, .team-card:focus-within {
    box-shadow: 0 0 0 5px #4a90e2, 0 12px 36px 0 rgba(44,90,160,0.18);
    transform: translateY(-8px) scale(1.03);
    background: rgba(227,242,253,0.95);
    border: 2px solid #4a90e2;
    z-index: 2;
}
.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 12px rgba(44,90,160,0.10);
    background: linear-gradient(135deg, #e3f2fd 60%, #4a90e2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #2c5aa0;
    font-weight: 700;
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.team-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.2rem;
    color: #2c5aa0;
    font-weight: 700;
}
.team-info h3 {
    margin: 0 0 0.3rem 0;
    color: #2c5aa0;
    font-size: 1.25rem;
    font-weight: 700;
}
.team-role {
    color: #4a90e2;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.7rem;
    display: block;
}
.team-icons {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  margin-top: 0.7em;
}
.icon-tooltip {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.icon-tooltip a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3f2fd;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,90,160,0.08);
  font-size: 1.7em;
  color: #2c5aa0;
  position: relative;
  z-index: 1;
}
.icon-tooltip a:hover, .icon-tooltip a:focus {
  background: #4a90e2;
  color: #fff;
  box-shadow: 0 4px 16px rgba(44,90,160,0.18);
  outline: none;
}
.icon-tooltip i {
  pointer-events: none;
}
.team-tooltip-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  background: #fff;
  color: #2c5aa0;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44,90,160,0.18);
  padding: 0.8em 1.3em;
  font-size: 1.08em;
  font-weight: 500;
  max-width: 320px;
  min-width: 120px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(.4,0,.2,1);
}
.team-tooltip-popup .tooltip-content {
  display: block;
  word-break: break-all;
}
.team-tooltip-popup .tooltip-arrow {
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(0 2px 4px rgba(44,90,160,0.10));
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 600px) {
  .team-tooltip-popup {
    font-size: 0.98em;
    padding: 0.8em 1em;
    min-width: 100px;
    max-width: 90vw;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44,90,160,0.25);
    pointer-events: auto; /* Zorgt ervoor dat tooltip klikbaar is op mobiel */
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 999999;
  }
  .team-tooltip-popup .tooltip-arrow {
    display: none; /* Verberg pijl op mobiel */
  }
  .team-tooltip-popup .tooltip-content {
    text-align: center;
    font-weight: 600;
  }
}

/* Nieuwe hero met blob en team icoon */
.new-hero {
  position: relative;
  background: none;
  padding: 0 0 60px 0;
  overflow: hidden;
  min-height: 420px;
}
.hero-bg-blob-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 320px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-blob-svg {
  display: block;
  width: 100vw;
  height: 320px;
  min-width: 100vw;
  max-width: 100vw;
}
.hero-content-fadein {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 0;
  padding-top: 80px;
  padding-bottom: 30px;
  animation: fadeInUp 1.2s cubic-bezier(.4,0,.2,1);
}
.hero-content-fadein h1 {
  color: #2c5aa0;
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px #e3f2fd;
}
.hero-content-fadein p {
  color: #2c5aa0;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.hero-team-icon {
  background: linear-gradient(135deg, #e3f2fd 60%, #4a90e2 100%);
  box-shadow: 0 8px 32px 0 rgba(44,90,160,0.10);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  color: #2c5aa0;
  margin: 0 auto;
}
.hero-team-icon-content {
  position: static;
  margin-top: 0.5rem;
  margin-bottom: 2.2rem;
  z-index: 2;
  animation: fadeInDown 1.1s cubic-bezier(.4,0,.2,1), heroIconBounce 1.2s 1.1s cubic-bezier(.4,0,.2,1) 1;
}
@keyframes heroIconBounce {
  0% { transform: scale(1) translateY(0); }
  20% { transform: scale(1.12, 0.92) translateY(-8px); }
  40% { transform: scale(0.96, 1.08) translateY(4px); }
  60% { transform: scale(1.04, 0.98) translateY(-2px); }
  80% { transform: scale(0.98, 1.02) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}
.search-input-wrapper.pulse-typing i {
  animation: searchPulse 0.7s infinite alternate;
}
@keyframes searchPulse {
  from { color: #4a90e2; transform: scale(1); }
  to { color: #2c5aa0; transform: scale(1.18); }
}
.team-search-panel {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 4px 24px 0 rgba(44,90,160,0.10);
  padding: 0.5rem 1.2rem 0.5rem 1.2rem;
  margin: 0 auto 2rem auto;
  max-width: 540px;
  min-width: 260px;
  position: sticky;
  top: 80px;
  z-index: 100;
  animation: fadeInUp 1.5s cubic-bezier(.4,0,.2,1);
  backdrop-filter: blur(10px);
}
@media (max-width: 900px) {
  .hero-content-fadein {
    margin-top: 120px;
  }
  .hero-bg-blob-svg, .hero-bg-blob-outer {
    height: 180px;
    min-height: 120px;
    max-height: 200px;
  }
  .hero-team-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    top: 30px;
  }
  .team-search-panel {
    max-width: 98vw;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    box-shadow: 0 6px 28px 0 rgba(44,90,160,0.12);
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.92);
  }
}
@media (max-width: 600px) {
  .hero-content-fadein h1 {
    font-size: 1.3rem;
  }
  .hero-content-fadein {
    margin-top: 70px;
  }
  .hero-bg-blob-svg, .hero-bg-blob-outer {
    height: 90px;
    min-height: 60px;
    max-height: 100px;
  }
  .team-search-panel {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(44,90,160,0.15);
    backdrop-filter: blur(15px);
    background: rgba(255,255,255,0.95);
  }
  #teamSearch, #teamFilter {
    min-width: 0;
    width: 100%;
    padding: 16px 20px;
    font-size: 1.1rem;
    border-radius: 15px;
    border: 2px solid #e3f2fd;
    background: #fff;
    box-shadow: 0 2px 8px rgba(44,90,160,0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
  #teamSearch:focus, #teamFilter:focus {
    border-color: #4a90e2;
    box-shadow: 0 4px 16px rgba(74,144,226,0.2);
    transform: translateY(-2px);
  }
  .search-input-wrapper {
    position: relative;
  }
  .search-input-wrapper::before {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a90e2;
    font-size: 1.1rem;
    z-index: 2;
  }
  #teamSearch {
    padding-left: 50px;
    padding-right: 50px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  #teamSearch::placeholder {
    font-size: 1rem;
    color: #94a3b8;
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes teamCardFadeIn {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Specifieke stijl voor de 'Neem contact op' knop in de hero */
.hero-contact-btn {
  color: #fff !important;
  border: 3px solid #fff !important;
  background: transparent !important;
}
.hero-contact-btn .btn-text {
  color: #fff !important;
}
.hero-contact-btn .btn-glow {
  background: rgba(255,255,255,0.2) !important;
}
.hero-contact-btn:hover, .hero-contact-btn:focus {
  background: #fff !important;
  color: #2c5aa0 !important;
}
.hero-contact-btn:hover .btn-text, .hero-contact-btn:focus .btn-text {
  color: #2c5aa0 !important;
}
.hero-contact-btn:hover .btn-glow, .hero-contact-btn:focus .btn-glow {
  background: rgba(44,90,160,0.15) !important;
}

/* Responsive zichtbaarheid */
.mobile-only {
  display: none;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
@media (max-width: 900px) {
  .mobile-only {
    display: block !important;
    height: auto !important;
    overflow: visible !important;
    margin: initial !important;
    padding: initial !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }
}
/* Swiper custom styling voor mobiel */
@media (max-width: 900px) {
  .swiper {
    width: 100%;
    padding-bottom: 40px;
  }
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
  }
  .services-swiper .swiper-slide,
  .testimonials-swiper .swiper-slide,
  .partners-swiper .swiper-slide {
    /* Zorg dat de kaarten/slides mooi centreren */
    width: 90vw;
    max-width: 400px;
    margin: 0 auto;
  }
  .swiper-pagination {
    bottom: 10px !important;
  }
  .swiper-button-prev, .swiper-button-next {
    color: #2c5aa0;
    top: 50%;
    width: 36px;
    height: 36px;
    margin-top: -18px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(44,90,160,0.08);
  }
  .swiper-button-prev:after, .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
  }
  /* Optie 1: Kaarten met schaduw en afgeronde hoeken */
  .swiper-slide > .service-card,
  .swiper-slide > .testimonial-card,
  .swiper-slide > .partner-logo {
    box-shadow: 0 6px 24px rgba(44,90,160,0.10);
    border-radius: 18px;
    background: #fff;
    margin: 0 8px;
  }
  /* Optie 2: Swiper-paginatie (dots) customizen */
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cfd8dc;
    opacity: 1;
    margin: 0 4px !important;
    transition: background 0.3s;
  }
  .swiper-pagination-bullet-active {
    background: #2c5aa0;
    box-shadow: 0 0 0 3px #4a90e233;
  }
  /* Verberg Swiper-pijltjes */
  .swiper-button-prev, .swiper-button-next {
    display: none !important;
  }
}
/* Verwijder oude slider/mobile-only CSS voor deze secties */
.services-grid, .testimonials-grid, .partners-logos {
  /* desktop-only blijft grid/flex */
}
@media (max-width: 900px) {
  .services-grid, .testimonials-grid, .partners-logos {
    display: none !important;
  }
  .slider-controls, .swipe-hint {
    display: none !important;
  }
}

@media (max-width: 900px) {
  html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
  }
  .swiper,
  .swiper-wrapper,
  .swiper-slide {
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .swiper {
    overflow-x: hidden !important;
  }
  /* Zorg dat slides nooit buiten het scherm komen */
  .services-swiper .swiper-slide,
  .testimonials-swiper .swiper-slide,
  .partners-swiper .swiper-slide {
    width: 100vw;
    max-width: 100vw;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  /* Partner cards altijd gelijke grootte in swiper */
  .partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 48vw !important;
    max-width: 200px;
    min-width: 140px;
    height: 170px;
    box-sizing: border-box;
  }
  .partners-swiper .partner-logo {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
  /* Dots altijd onder de cards, binnen de sectie */
  .partners-swiper .swiper-pagination {
    position: relative;
    bottom: 0 !important;
    margin-top: 12px;
    margin-bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .partners-swiper {
    padding-bottom: 36px !important;
  }
  .partners-swiper .swiper-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px !important;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    pointer-events: auto;
  }
  .partners-swiper {
    position: relative;
  }
}

/* --- TEAMLEDEN PAGINA --- */
.team-hero {
  position: relative;
  background: linear-gradient(180deg, #e0e7ff 0%, #f8fafc 100%);
  padding: 60px 0 40px 0;
  text-align: center;
  margin-top: 80px; /* Ruimte voor de fixed navbar */
}
/* Hero blob bg verwijderd - niet meer nodig */

/* Mobiele aanpassingen voor team hero */
@media (max-width: 768px) {
  .team-hero {
    padding: 15px 0 10px 0;
    margin-top: 70px; /* Minder ruimte voor navbar op mobiel */
  }
  /* Hero blob bg min-height verwijderd */
}

@media (max-width: 480px) {
  .team-hero {
    padding: 10px 0 8px 0;
    margin-top: 60px; /* Nog minder ruimte voor navbar op kleine mobiel */
  }
  /* Hero blob bg min-height verwijderd */
}
/* Hero blob svg verwijderd - niet meer nodig */
.team-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

/* Team hero content overschrijft algemene hero-content regels */
.team-hero .hero-content {
  flex: none !important;
  margin-bottom: 0 !important;
  height: auto !important;
  min-height: auto !important;
  z-index: 2 !important; /* Terug naar normale z-index */
}

/* Mobiele aanpassingen voor hero content */
@media (max-width: 768px) {
  .team-hero .hero-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .team-hero .hero-content {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.team-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.team-hero p {
  color: #64748b;
  font-size: 1.2rem;
}
.team-icon {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.team-search-section {
  display: flex;
  justify-content: center;
  margin: 30px 0 10px 0;
}
.team-search-bar {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(30,41,59,0.07);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  min-width: 320px;
  max-width: 400px;
}
.team-search-bar input[type="text"] {
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  flex: 1;
  padding: 8px 0;
}
.team-search-bar .search-icon {
  color: #3b82f6;
  font-size: 1.2rem;
  margin-left: 8px;
}

.team-section {
  padding: 0 0 60px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
}
.team-department {
  grid-column: 1/-1;
  margin: 40px 0 10px 0;
  text-align: left;
}
.team-department h3 {
  font-size: 1.3rem;
  color: #3b82f6;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.team-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.08);
  padding: 38px 24px 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.15rem;
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e0e7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 18px;
  overflow: hidden;
}
.team-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #1e293b;
}
.team-role {
  font-size: 1.08rem;
  color: #64748b;
  margin-bottom: 12px;
  display: block;
}
.team-icons {
  gap: 18px;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .team-hero h1 { font-size: 1.2rem; }
  .team-hero p { font-size: 0.98rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-section { padding-bottom: 20px; }
  .team-card {
    min-height: 180px;
    padding: 28px 10px 18px 10px;
    font-size: 1rem;
  }
  .team-avatar {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .team-info h3 { font-size: 1.05rem; }
  .team-role { font-size: 0.95rem; }
  .team-icons { gap: 12px; margin-top: 10px; }
}

@media (max-width: 700px) {
  .team-hero h1 { font-size: 1.5rem; }
  .team-hero p { font-size: 1rem; }
  .team-grid { grid-template-columns: 1fr; }
  .team-section { padding-bottom: 30px; }
}

/* --- EINDE TEAMLEDEN PAGINA --- */

.footer-row-top {
  display: flex;
  align-items: flex-end;
  gap: 2.5rem;
}
.footer-row-content {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.footer-logo-align {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.footer-logo-img {
  max-width: 200px;
  max-height: 80px;
  height: auto;
  margin-bottom: 0;
}
.footer-description {
  font-size: 0.98em;
  color: #fff;
  margin: 1.2em 0 1.5em 0;
  line-height: 1.5;
  text-align: left;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.footer-section ul li {
  margin-bottom: 0.7em;
}
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.95;
  transition: color 0.2s, opacity 0.2s;
  text-align: left;
  display: block;
}
.footer-section ul li a:hover {
  color: #0077b5;
  opacity: 1;
}
.footer-title {
  margin: 0 0 0.2em 0;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: block;
}
.certificates-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.2em 1.5em;
  align-items: flex-start;
  justify-content: flex-start;
}
.certificate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90px;
  margin-bottom: 0.5em;
}
.certificate-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  margin-bottom: 0.4em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certificate-img.certificate-lightbox-trigger:hover {
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  cursor: pointer;
}
.certificate-title {
  font-size: 0.92em;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}
.footer-social-wrapper {
  margin-top: 1.2em;
}
.social-links {
  display: flex;
  gap: 0.7em;
}
.social-links a {
  font-size: 1.4em;
  color: #fff;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.social-links a:hover {
  color: #0077b5;
  opacity: 1;
}
.footer-bottom {
  text-align: center;
  margin-top: 2.5em;
  color: #fff;
  font-size: 0.98em;
  opacity: 0.85;
}
@media (max-width: 900px) {
  .footer-row-top,
  .footer-row-content {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .footer-logo-img {
    max-width: 160px;
    max-height: 65px;
  }
  .certificate-item {
    width: 70px;
  }
  .certificate-img {
    width: 50px;
    height: 50px;
  }
  .certificate-title {
    font-size: 0.8em;
  }
  .footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 1.5em 0 2em 0;
  }
  .footer-title {
    font-size: 1.2em;
    margin-bottom: 0.8em;
  }
  .footer-section ul li {
    margin-bottom: 0.8em;
  }
  .footer-section ul li a {
    font-size: 1rem;
    padding: 0.3em 0;
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer-row-top,
  .footer-row-content {
    gap: 1.5rem;
  }
  .footer-logo-img {
    max-width: 140px;
    max-height: 55px;
  }
  .footer-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1.2em 0 1.8em 0;
  }
  .footer-title {
    font-size: 1.1em;
    margin-bottom: 0.6em;
  }
  .footer-section ul li {
    margin-bottom: 0.6em;
  }
  .footer-section ul li a {
    font-size: 0.95rem;
    padding: 0.2em 0;
  }
  .certificate-item {
    width: 60px;
  }
  .certificate-img {
    width: 45px;
    height: 45px;
  }
  .certificate-title {
    font-size: 0.75em;
  }
  .social-links {
    gap: 0.8em;
  }
  .social-links a {
    font-size: 1.3em;
  }
  .footer-bottom {
    margin-top: 2em;
    font-size: 0.9em;
  }
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.partner-card {
  background: #f7f7fa;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  text-align: center;
  width: 200px;
  text-decoration: none;
  color: #222;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.partner-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.03);
}
.partner-logo img {
  max-height: 60px;
  max-width: 120px;
  margin-bottom: 1.2em;
  object-fit: contain;
  width: auto;
  display: block;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.partner-name {
  font-size: 1.08em;
  font-weight: 500;
  color: #222;
  margin-top: 0.2em;
  text-decoration: none;
}
.partner-card:visited,
.partner-card:active,
.partner-card:focus {
  color: #222;
  text-decoration: none;
}
.partner-card .partner-name:hover,
.partner-card .partner-name:focus {
  color: #0077b5;
  text-decoration: none;
}
@media (max-width: 900px) {
  .partners-grid {
    gap: 1.2rem;
  }
  .partner-card {
    width: 140px;
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  }
  .partner-logo img {
    max-height: 40px;
    max-width: 80px;
    margin-bottom: 0.7em;
  }
  .partner-name {
    font-size: 0.98em;
  }
}

.news-updates {
    padding: 80px 0;
    background: #f8f9fa;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.news-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,90,160,0.07);
    padding: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.2s, transform 0.2s;
    height: 100%;
    overflow: hidden;
}
.news-card:hover {
    box-shadow: 0 16px 40px rgba(44,90,160,0.13);
    transform: translateY(-4px) scale(1.02);
}
.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    margin-bottom: 1.5rem;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-content {
    padding: 0 2rem;
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.news-title {
    color: #2c5aa0;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.news-date {
    color: #999;
    font-size: 0.98rem;
    margin-bottom: 1rem;
}
.news-excerpt {
    color: #444;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}
.news-link {
    color: #2c5aa0;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
    transition: color 0.2s;
    font-size: 1.05rem;
}
.news-link:hover {
    color: #4a90e2;
    text-decoration: underline;
}
.no-news {
    text-align: center;
    color: #999;
    margin-top: 2rem;
    font-size: 1.1rem;
}
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .news-content {
        padding: 0 1.2rem;
    }
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }
}

.complaint-section {
    padding: 80px 0;
    background: #f8f9fa;
    margin-top: 0;
}
.complaint-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.complaint-form {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,90,160,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.complaint-form .form-group {
    margin-bottom: 1.5rem;
}
.complaint-form label {
    font-weight: 500;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    display: block;
}
.complaint-form input[type="text"],
.complaint-form input[type="email"],
.complaint-form input[type="tel"],
.complaint-form input[type="url"],
.complaint-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7fafd;
    margin-top: 0.2rem;
    transition: border 0.2s;
}
.complaint-form input:focus,
.complaint-form textarea:focus {
    border-color: #2c5aa0;
    outline: none;
}
.complaint-form button {
    margin-top: 0.5rem;
    width: 100%;
}
.complaint-form input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}
@media (max-width: 900px) {
    .complaint-form {
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    }
}

/* Lightbox voor certificaten */
.certificate-lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.certificate-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  background: #fff;
  padding: 10px;
}
.certificate-lightbox-close {
  color: #fff;
  font-size: 2.5em;
  font-weight: bold;
  position: absolute;
  top: 30px;
  right: 50px;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
}
.certificate-lightbox-close:hover {
  color: #ffb300;
}

/* Lightbox voor nieuwsbijlage */
.news-viewer-lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.news-viewer-frame-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.news-viewer-frame {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  background: #fff;
}
.news-viewer-lightbox-close {
  color: #fff;
  font-size: 2.5em;
  font-weight: bold;
  position: absolute;
  top: 30px;
  right: 50px;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.2s;
}
.news-viewer-lightbox-close:hover {
  color: #ffb300;
}
.news-viewer-btn {
  background: #2c5aa0;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7em 1.4em;
  font-size: 1.08em;
  cursor: pointer;
  margin-right: 1em;
  transition: background 0.2s;
}
.news-viewer-btn:hover {
  background: #1e88e5;
}
.news-download-link {
  color: #2c5aa0;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.08em;
}