/* ====== Design tokens ====== */
:root {
    --main: #383E42;
    --main-600: #2e3336;
    --main-400: #4a5568;
    --text: #202124;
    --muted: #6b7280;
    --bg: #f6f7f9;
    --card: #ffffff;
    --accent: #ffffff;
    --ok: #10b981;
    --warn: #f59e0b;
    --err: #ef4444;
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

/* ====== Reset & base ====== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    height: 100%
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

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

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

ul {
    padding-left: 1.2rem;
    list-style: none;
}

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

/* ====== Loading animatie ====== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid var(--main);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.loaded .loader {
    opacity: 0;
}

/* ====== Layout helpers ====== */
.grid {
    display: grid;
    gap: 1rem
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

@media (max-width:980px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (max-width:680px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    transition: var(--transition);
}

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

.card h3 {
    color: var(--main);
    margin-bottom: .5rem
}

/* ====== Page header ====== */
.page-header {
    background: var(--gradient);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: white;
    text-decoration: underline;
}

/* ====== Contact section ====== */
.contact-section {
    padding: 4rem 0;
    background: var(--bg);
}

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

@media (max-width: 768px) {
    .brand .logo {
        height: 60px;
    }
    
    .brand .brand-name {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info h2,
.contact-form-container h2 {
    color: var(--main);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--main);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.contact-details a {
    color: var(--primary);
}

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

.openingstijden-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.openingstijd-item {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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



/* ====== Contact form ====== */
.contact-form-container {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--main);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem;
    border: 2px solid #e7e7e7;
    border-radius: 12px;
    background: #fff;
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--err);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--primary-dark);
}

/* ====== Map section ====== */
.map-section {
    padding: 4rem 0;
    background: var(--card);
}

.map-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.map-section .lead {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    margin-bottom: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map {
    width: 100%;
    height: 450px;
    border: 0;
}

.directions h3 {
    color: var(--main);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.direction-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
}

.direction-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.direction-item h4 {
    color: var(--main);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.direction-item p {
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ====== FAQ section ====== */
.faq-section {
    padding: 4rem 0;
    background: var(--bg);
}

.faq-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    background: var(--card);
}

.faq-question:hover {
    background: var(--bg);
}

.faq-question h3 {
    color: var(--main);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    font-size: 1rem;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted);
    line-height: 1.6;
    display: none;
}

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

/* ====== Header & nav ====== */
header {
    background: var(--main);
    color: var(--accent);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    padding: 0.2rem 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.brand {
    font-weight: 800;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    padding: 0.5rem 0;
}

.brand .logo {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    padding: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.brand .logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.brand .brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--main);
    margin-left: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    gap: .35rem;
    align-items: center
}

nav a {
    color: #fff;
    font-weight: 600;
    display: block;
    padding: .55rem .7rem;
    border-radius: 10px;
    white-space: nowrap;
    transition: var(--transition);
}

nav a:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-1px);
}

nav a.active {
    background: rgba(255, 255, 255, .2)
}

/* ====== Hamburger & mobile drawer ====== */
.hamburger {
    display: none;
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.hamburger:focus {
    outline: 2px solid #fff;
    outline-offset: 4px;
    border-radius: 8px
}

.hamburger .bar {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    margin: 5px 0;
    display: block;
    transition: var(--transition);
}

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

    nav {
        position: relative
    }

    nav ul {
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--main);
        flex-direction: column;
        padding: 1rem 1rem 2rem;
        gap: .25rem;
        display: none;
    }

    nav ul.open {
        display: flex
    }

    nav a {
        padding: .9rem 1rem;
        font-size: 1.05rem
    }
}

/* ====== Hero ====== */
.hero {
    background: var(--gradient);
    color: #fff;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero .kicker {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: .5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    opacity: .98;
    max-width: 880px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.03);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ====== Features ====== */
.features {
    padding: 4rem 0;
    background: var(--card);
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.feature-item h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* ====== Services ====== */
.services {
    padding: 4rem 0;
    background: var(--bg);
}

.services h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: .75rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.lead {
    color: var(--muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tag {
    background: var(--bg);
    color: var(--main);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-timing {
    margin-top: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.service-timing small {
    color: var(--dark);
    font-weight: 600;
}



/* ====== Dealer Logos ====== */
.dealer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.dealer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
}

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

.dealer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.dealer-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .dealer-logos {
        gap: 1rem;
    }
    
    .dealer-logo {
        min-width: 100px;
        padding: 0.75rem;
    }
    
    .dealer-logo-img {
        height: 50px;
    }
    
    .dealer-name {
        font-size: 0.8rem;
    }
}

/* ====== Testimonials ====== */
.testimonials {
    padding: 4rem 0;
    background: var(--card);
    position: relative;
}

.testimonials h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.testimonial-card {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-stars {
    color: var(--warn);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    color: var(--main);
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--muted);
    font-size: 0.9rem;
}

/* Testimonial navigatie */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* ====== CTA ====== */
/* ====== Local Areas Section ====== */
.local-areas {
    padding: 80px 0;
    background: var(--card);
}

.local-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.local-areas .lead {
    text-align: center;
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.area-item {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

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

.area-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.area-item p {
    color: var(--muted);
    line-height: 1.6;
}

.cta {
    padding: 4rem 0;
    background: var(--gradient);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ====== Buttons ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--main);
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: .8rem 1.05rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn:hover {
    background: var(--main-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.btn.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn.white {
    background: #fff;
    color: var(--main)
}

.btn.white:hover {
    background: #f8f9fa;
}

/* ====== Footer ====== */
footer {
    background: var(--main);
    color: #fff;
    margin-top: 0;
}

.footer-inner {
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: var(--primary);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section .service-areas {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    font-style: italic;
}



.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary);
    width: 16px;
}

.openingstijden {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.openingstijd {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ====== Back to top button ====== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ====== Cookie consent ====== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--main);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

/* ====== Tables & forms ====== */
.table {
    width: 100%;
    border-collapse: collapse
}

.table th,
.table td {
    padding: .7rem .6rem;
    border-bottom: 1px solid #ececec;
    text-align: left
}

.table th {
    color: var(--main)
}

input,
textarea,
select {
    width: 100%;
    padding: .85rem;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    background: #fff;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

input.error,
textarea.error,
select.error {
    border-color: var(--err);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

label {
    font-weight: 700;
    display: block;
    margin-bottom: .35rem
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr
}

@media (max-width:700px) {
    .form-row {
        grid-template-columns: 1fr
    }
}

.help {
    font-size: .9rem;
    color: var(--muted)
}

/* ====== Breadcrumbs & utilities ====== */
.breadcrumbs {
    font-size: .95rem;
    margin: 1rem 0;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--muted);
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.mt-1 {
    margin-top: .6rem
}

.mt-2 {
    margin-top: 1rem
}

.mt-3 {
    margin-top: 1.6rem
}

.mt-4 {
    margin-top: 2.2rem
}

.center {
    text-align: center
}

.badge {
    display: inline-block;
    background: #eef2f7;
    color: #1f2937;
    padding: .25rem .55rem;
    border-radius: 999px;
    font-size: .8rem
}

.map {
    border: 0;
    width: 100%;
    height: 420px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

/* ====== Animaties ====== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ====== Responsive adjustments ====== */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .directions-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .brand .logo {
        height: 50px;
    }
    
    .brand .brand-name {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0.8rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .cookie-consent {
        padding: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .direction-item {
        padding: 1rem;
    }
    
    .story-content h2,
    .values-section h2,
    .team-section h2,
    .history-section h2,
    .certifications-section h2 {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 1rem;
        margin-left: 2.5rem;
    }
    
    .team-member,
    .certification-item {
        padding: 1.5rem;
    }
}

/* ====== Story section ====== */
.story-section {
    padding: 4rem 0;
    background: var(--card);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.story-content h2 {
    color: var(--main);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.story-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ====== Values section ====== */
.values-section {
    padding: 4rem 0;
    background: var(--bg);
}

.values-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.value-item {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.value-item h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.value-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* ====== Team section ====== */
.team-section {
    padding: 4rem 0;
    background: var(--card);
}

.team-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.team-member {
    background: var(--bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.member-photo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.member-info h3 {
    color: var(--main);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

.member-role {
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--card);
    color: var(--main);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* ====== History section ====== */
.history-section {
    padding: 4rem 0;
    background: var(--bg);
}

.history-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
}

.timeline-year {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    z-index: 2;
    box-shadow: var(--shadow);
}

.timeline-content {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 2rem;
    flex: 1;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: 100%;
    border-width: 8px 8px 8px 0;
    border-color: transparent var(--card) transparent transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: 100%;
    border-width: 8px 0 8px 8px;
    border-color: transparent transparent transparent var(--card);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .timeline-content::before {
        left: 100% !important;
        border-width: 8px 0 8px 8px !important;
        border-color: transparent transparent transparent var(--card) !important;
    }
    
    .timeline-content {
        margin-left: 3rem;
        margin-right: 0;
    }
}

.timeline-content h3 {
    color: var(--main);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ====== Certifications section ====== */
.certifications-section {
    padding: 4rem 0;
    background: var(--card);
}

.certifications-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.certification-item {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.certification-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.certification-item h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.certification-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* ====== Service hero section ====== */
.service-hero {
    padding: 4rem 0;
    background: var(--bg);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-hero-content h2 {
    color: var(--main);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-weight: 800;
}

.service-hero-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-features-list .feature-item i {
    color: var(--ok);
    font-size: 1.1rem;
}

.service-features-list .feature-item span {
    color: var(--text);
    font-weight: 500;
}

.service-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ====== Services overview ====== */
.services-overview {
    padding: 4rem 0;
    background: var(--card);
}

.services-overview h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.service-item {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-item h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-item p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}



.duration {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ====== Process section ====== */
.process-section {
    padding: 4rem 0;
    background: var(--bg);
}

.process-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.step-content h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content p {
    color: var(--muted);
    line-height: 1.6;
}

/* ====== Materials section ====== */
.materials-section {
    padding: 4rem 0;
    background: var(--card);
}

.materials-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.materials-section .lead {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.material-item {
    background: var(--bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.material-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow);
}

.material-item h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.material-item p {
    color: var(--muted);
    line-height: 1.6;
}

/* ====== Care tips section ====== */
.care-tips-section {
    padding: 4rem 0;
    background: var(--bg);
}

.care-tips-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

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

.care-tip {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.care-tip:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow);
}

.care-tip h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.care-tip p {
    color: var(--muted);
    line-height: 1.6;
}

/* ====== reCAPTCHA styling ====== */
.g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

.g-recaptcha > div {
    transform: scale(1);
    transform-origin: 0 0;
}

@media (max-width: 480px) {
    .g-recaptcha > div {
        transform: scale(0.9);
    }
}

/* reCAPTCHA error styling */
.g-recaptcha-error {
    border: 2px solid var(--err) !important;
    border-radius: 4px;
}

/* reCAPTCHA success styling */
.g-recaptcha-success {
    border: 2px solid var(--ok) !important;
    border-radius: 4px;
}

/* Gedeactiveerde submit knop styling */
.btn-disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow) !important;
}

/* reCAPTCHA foutmelding styling */
.recaptcha-error-message {
    animation: fadeIn 0.3s ease-in;
}

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

/* ====== WhatsApp Button styling ====== */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    font-size: 28px;
}

.whatsapp-button i {
    transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button a {
        font-size: 24px;
    }
}

/* ====== Gespecialiseerde Sloten Sectie ====== */
.specialized-locks {
    padding: 4rem 0;
    background: var(--bg);
}

.specialized-locks h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.specialized-locks .lead {
    color: var(--muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.specialized-item {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.specialized-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.specialized-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.specialized-item h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.specialized-item p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.specialized-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--bg);
    color: var(--main);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* ====== Autosleutel Reparatie Sectie ====== */
.key-repair-section {
    padding: 4rem 0;
    background: var(--card);
}

.key-repair-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.key-repair-section .lead {
    color: var(--muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== Kwijtgeraakte Sleutels Sectie ====== */
.lost-keys-section {
    padding: 4rem 0;
    background: var(--card);
}

.lost-keys-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.lost-keys-section .lead {
    color: var(--muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.car-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.car-brand-item {
    background: var(--bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.car-brand-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.car-brand-item:hover .brand-link {
    opacity: 1;
    transform: translateY(0);
}

.car-brand-item:hover .brand-link i {
    transform: translateX(5px);
}

.car-brand-item h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.car-brand-item ul {
    list-style: none;
    padding: 0;
}

.car-brand-item li {
    color: var(--muted);
    padding: 0.3rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.car-brand-item li:last-child {
    border-bottom: none;
}

.brand-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.brand-link i {
    transition: var(--transition);
}

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

.lost-keys-info .info-box {
    background: var(--bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lost-keys-info .info-box:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.lost-keys-info .info-box h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lost-keys-info .info-box h3 i {
    color: var(--primary);
    font-size: 1.2rem;
}

.lost-keys-info .info-box p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive design voor kwijtgeraakte sleutels sectie */
@media (max-width: 768px) {
    .car-brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .car-brand-item {
        padding: 1.2rem;
    }
    
    .car-brand-item h3 {
        font-size: 1.2rem;
    }
    
    .lost-keys-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lost-keys-info .info-box {
        padding: 1.5rem;
    }
}

/* ====== Automerken Pagina's Styling ====== */
.german-brands-section {
    padding: 4rem 0;
    background: var(--bg);
}

.german-brands-section h2 {
    color: var(--main);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.german-brands-section .lead {
    color: var(--muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.brand-card {
    background: var(--card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.brand-header h3 {
    color: var(--main);
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-models, .brand-services {
    margin-bottom: 1.5rem;
}

.brand-models h4, .brand-services h4 {
    color: var(--main);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.brand-models ul, .brand-services ul {
    list-style: none;
    padding: 0;
}

.brand-models li, .brand-services li {
    color: var(--muted);
    padding: 0.2rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-models li:last-child, .brand-services li:last-child {
    border-bottom: none;
}

.brand-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.brand-info .duration {
    background: var(--primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.brand-info .price {
    background: var(--ok);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-info-section {
    padding: 4rem 0;
    background: var(--card);
}

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

.info-card {
    background: var(--bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.info-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    color: var(--main);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 4rem 0;
    background: var(--gradient);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb-section {
    padding: 1rem 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: var(--muted);
}

/* Responsive design voor automerken pagina's */
@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .brand-card {
        padding: 1.5rem;
    }
    
    .brand-header h3 {
        font-size: 1.3rem;
    }
    
    .service-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}