/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2b6cb0;
    --accent-orange: #f56565;
    --neutral-gray: #f7fafc;
    --text-dark: #2b6cb0;
    --white: #FFFFFF;
    --light-blue: #2b6cb0;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(26, 54, 93, 0.1);
    --shadow-hover: 0 8px 25px rgba(26, 54, 93, 0.15);
    --accent-red: #e53e3e;
    --accent-yellow: #f6ad55;
    --van-gray: #6b7280;
    --van-dark-gray: #374151;
    --van-light-gray: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--accent-orange);
    text-decoration: none;
}

/* Sticky Call Button */
.sticky-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.sticky-call-btn:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--white) 0%, var(--neutral-gray) 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(247, 250, 252, 0.1) 100%);
    backdrop-filter: blur(10px);
}

.nav-brand:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(247, 250, 252, 0.2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.1);
}



.nav-logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(26, 54, 93, 0.4));
    animation-play-state: paused;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(26, 54, 93, 0.2));
    animation: logoFloat 3s ease-in-out infinite, logoPulse 4s ease-in-out infinite;
}

.nav-brand h1,
.nav-brand h2 {
    color: #2b6cb0;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(26, 54, 93, 0.1);
    max-width: 250px;
    line-height: 1.2;
}

.nav-brand:hover h1,
.nav-brand:hover h2 {
    color: #2b6cb0;
    text-shadow: 0 2px 4px rgba(26, 54, 93, 0.2);
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

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

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    background: linear-gradient(135deg, #1877f2 0%, #0d5bb8 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 5px;
    flex-shrink: 0;
}

.nav-social-link svg {
    width: 16px;
    height: 16px;
    display: block;
}

.nav-social-link:hover {
    background: linear-gradient(135deg, #0d5bb8 0%, #1877f2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(43, 108, 176, 0.9) 100%), url('../resources/sewer_nozzle.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--van-gray);
    transition: all 0.3s ease;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.badge-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Tarieftabel */
.tarieven-section {
    margin-top: 80px;
    padding-top: 60px;
    position: relative;
}

.tarieven-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.tarief-info {
    background: var(--neutral-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tarief-info p {
    margin: 5px 0;
    color: var(--text-dark);
}

.tarieven-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    position: relative;
}

.tarieven-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

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

.tarief-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--van-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.tarief-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}

.tarief-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tarief-tijd {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.tarief-prijzen {
    margin-bottom: 25px;
}

.tarief-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.tarief-item:last-child {
    border-bottom: none;
}

.tarief-label {
    color: var(--text-dark);
    font-weight: 500;
}

.tarief-prijs {
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.tarief-inclusief {
    background: var(--neutral-gray);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.tarief-inclusief p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* Realisatie overlays */
.realisatie-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(26, 54, 93, 0.9);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 500;
}

.overlay-location,
.overlay-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials */
.testimonials-section {
    margin-top: 80px;
    padding: 60px 0 100px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--van-light-gray);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-rating {
    margin-bottom: 20px;
    text-align: center;
}

.star {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: center;
}

.testimonial-author {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.author-location {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.testimonials-cta {
    text-align: center;
}

/* Buttons */
.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

/* Diensten Section */
.diensten {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
}

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

.dienst-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
    display: flex;
    flex-direction: column;
}

.dienst-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.dienst-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dienst-icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.dienst-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.dienst-card p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dienst-card ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.dienst-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.dienst-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Ensure the call-to-action button aligns at the bottom across cards */
.dienst-card .btn-outline {
    margin-top: auto;
    align-self: center;
}

/* Realisaties Section */
.realisaties {
    padding: 100px 0;
}

.realisaties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.realisatie-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.realisatie-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.realisatie-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.realisatie-content {
    padding: 25px;
}

.realisatie-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.realisatie-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.realisatie-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 500;
}

/* Over Ons Section */
.over-ons {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
    position: relative;
}

.over-ons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

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

.over-ons-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.waarde {
    text-align: center;
    padding: 20px;
}

.waarde-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.waarde h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.over-ons-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Regio Section */
.regio {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--van-light-gray) 100%);
    position: relative;
}

.regio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.regio-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.regio-overview {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.regio-main h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
}

.regio-dorpen {
    display: grid;
    gap: 30px;
}

.regio-groep h4 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 20px;
    background: rgba(255, 152, 0, 0.1);
    border-radius: 20px;
    display: inline-block;
    width: 100%;
}

.dorp-lijst {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.dorp-item {
    background: var(--white);
    padding: 10px 18px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.dorp-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--accent-orange);
}

.regio-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.regio-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.regio-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-orange);
}

.feature-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.regio-feature h4 {
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.regio-feature p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.regio-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
}

.regio-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* FAQ Section */
.faq {
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, var(--van-light-gray) 0%, var(--white) 100%);
    position: relative;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--van-light-gray);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: var(--neutral-gray);
    border-left-color: var(--accent-orange);
    padding-left: 30px;
}

.faq-question h3 {
    color: var(--primary-blue);
    margin: 0;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    flex: 1;
    margin-right: 20px;
}

.faq-question:hover h3 {
    color: var(--accent-orange);
}

.faq-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-plus,
.faq-minus {
    position: absolute;
    transition: all 0.3s ease;
    font-weight: bold;
    color: var(--accent-orange);
    font-size: 1.5rem;
}

.faq-toggle:hover .faq-plus,
.faq-toggle:hover .faq-minus {
    color: var(--accent-red);
    transform: scale(1.1);
}

.faq-minus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 300px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--van-light-gray) 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form h3,
.contact-info h3 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-blue);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-top: 5px;
}

.contact-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--accent-orange);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 60px 0 0;
}

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

.footer-brand-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .footer-brand-content {
        justify-content: center;
        flex-direction: column;
    }
    
    .footer-brand-content .social-links {
        justify-content: center;
    }
}

.footer-brand-section p {
    margin-bottom: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand-section p {
        text-align: left;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    flex-wrap: wrap;
    min-width: 0;
    width: fit-content;
    max-width: 100%;
}

.footer-brand:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.3));
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.5));
}

.footer-section h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-brand h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex-shrink: 1;
    min-width: 0;
}

.footer-brand:hover h3 {
    color: var(--accent-red);
    transform: scale(1.02);
}

.footer-section {
    min-width: 0;
    overflow: hidden;
}

.footer-section p {
    margin-bottom: 15px;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

/* Email link styling */
.email-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: var(--white) !important;
    font-size: 0.9rem;
}

.email-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-orange);
    color: var(--accent-orange) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Facebook specific styling */
.social-link.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%);
    border-color: #1877f2;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1565c0 0%, #1976d2 100%);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-link.facebook svg {
    color: white;
}

/* Instagram specific styling */
.social-link.instagram {
    background: linear-gradient(135deg, #e4405f 0%, #f77737 50%, #fca326 100%);
    border-color: #e4405f;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f57c00 50%, #f9a825 100%);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.social-link.instagram svg {
    color: white;
}

/* Hover effects for icons */
.social-link:hover svg {
    transform: scale(1.1);
}

/* Responsive Footer Brand */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1.2fr repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-brand {
        padding: 20px 25px;
    }
    
    .footer-brand h3 {
        font-size: 1.4rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-brand {
        padding: 25px 30px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(26, 54, 93, 0.3);
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 80px 0;
    background-color: var(--neutral-gray);
}

.blog-article {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--van-light-gray);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    position: relative;
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 40px 40px 20px;
    line-height: 1.2;
}

.article-body {
    padding: 0 40px 40px;
}

.article-body h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 30px 0 15px;
    border-left: 4px solid var(--accent-orange);
    padding-left: 15px;
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
}

.article-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.nav-link.active {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Blog Preview Styles */
.blog-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--neutral-gray) 0%, #f1f5f9 100%);
    position: relative;
}

.blog-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    opacity: 0.8;
}

.blog-preview-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--van-light-gray);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    transition: all 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-preview-image {
    position: relative;
    overflow: hidden;
}

.blog-preview-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-preview-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-preview-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-preview-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-preview-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-category {
    background: var(--accent-orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-read-time {
    color: var(--text-dark);
    font-size: 0.9rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(0);
        transition: all 0.3s ease;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }

    .tarieven-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tarief-info {
        margin: 0 20px 30px;
        padding: 15px;
    }

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

    .faq-list {
        max-width: 100%;
        padding: 0 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question:hover {
        padding-left: 25px;
    }

    .over-ons-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .regio-overview {
        gap: 30px;
    }

    .dorp-lijst {
        justify-content: center;
    }

    .regio-feature {
        padding: 20px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .sticky-call-btn span {
        display: none;
    }

    .sticky-call-btn {
        padding: 15px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .dienst-card,
    .realisatie-card,
    .tarief-card,
    .testimonial-card {
        padding: 25px 20px;
    }

    .regio-feature {
        padding: 20px 15px;
    }

    .dorp-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-badge {
        padding: 12px 18px;
        font-size: 0.9rem;
        min-height: 50px;
    }

    .tarieven-title,
    .testimonials-title {
        font-size: 1.5rem;
    }

    .tarief-card {
        padding: 25px 20px;
    }

    .tarief-tijd {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question:hover {
        padding-left: 20px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }

    .faq-toggle {
        width: 20px;
        height: 20px;
    }

    .faq-plus,
    .faq-minus {
        font-size: 1.3rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles voor toegankelijkheid */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Loading states */
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success states */
.form-group.success input,
.form-group.success textarea {
    border-color: #28a745;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
}

.success-message {
    color: #28a745;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Privacy Page Styling */
.privacy-content {
    padding: 100px 0;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-text h2 {
    color: var(--primary-blue);
    margin: 40px 0 20px 0;
    font-size: 1.5rem;
}

.privacy-text p {
    margin-bottom: 20px;
}

.privacy-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-text li {
    margin-bottom: 10px;
}

.privacy-cta {
    margin-top: 50px;
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog responsive styling */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }

    .blog-hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .article-title {
        font-size: 1.8rem;
        margin: 30px 20px 20px;
    }

    .article-body {
        padding: 0 20px 30px;
    }

    .article-body h2 {
        font-size: 1.3rem;
    }

    .article-body p {
        font-size: 1rem;
    }

    .article-cta {
        padding: 20px;
        margin-top: 30px;
    }

    .article-cta p {
        font-size: 1.1rem;
    }

    /* Blog preview responsive */
    .blog-preview-card {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .blog-preview-content {
        padding: 20px;
    }

    .blog-preview-content h3 {
        font-size: 1.3rem;
    }

    .blog-preview-content p {
        font-size: 0.95rem;
    }

    .blog-preview-meta {
        flex-direction: column;
        gap: 8px;
    }
}
