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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #234052;
    background-color: #f5efe6;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    background-blend-mode: multiply;
    background-repeat: repeat;
    background-size: auto;
    overflow-x: hidden;
    padding-top: 110px; /* ruimte voor grote logo/header */
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    background-image: none;
    box-shadow: none;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hide-navbar {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
    padding-left: 0;
    height: 100%;
    background: none;
}

.logo {
    width: auto;
    height: 160px;
    max-height: 28vw;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: none;
    background: none;
    padding: 0;
    transition: none;
    display: block;
}

.logo:hover {
    transform: none;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #234052;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #234052;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #234052;
    border-bottom: 2px solid #234052;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: #234052;
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link.active {
    color: #234052;
    border-bottom: 2px solid #234052;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #234052;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #e94560 0%, #f5efe6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #234052;
    position: relative;
    overflow: hidden;
    background-image: none;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(233,69,96,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: -120px;
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: -70px;
  }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 18px;
    background: none;
    -webkit-text-fill-color: #234052;
    color: #234052;
    animation: none;
    transition: none;
    padding: 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 24px;
    opacity: 0.9;
    animation: none;
    transition: none;
    line-height: 1.8;
    padding: 0;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #234052;
    color: #f5efe6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s both;
    box-shadow: 0 4px 16px rgba(35, 64, 82, 0.12);
    margin-top: 40px;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #19303e;
}

/* Sections */
.section {
    padding: 60px 0 60px 0;
    margin-top: 0;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    background-blend-mode: multiply;
    background-repeat: repeat;
    background-size: auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: #234052;
    position: relative;
    font-weight: 700;
}

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

.bg-light {
    background: #f5efe6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 0;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.about-divider {
    width: 100%;
    margin-top: -60px;
    margin-bottom: -2px;
    line-height: 0;
    z-index: 1;
    position: relative;
}

.about-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.about-divider-bottom {
    width: 100%;
    margin-top: -2px;
    line-height: 0;
    z-index: 1;
    position: relative;
}

.about-divider-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.about-card {
    background: rgba(245, 239, 230, 0.55);
    border-radius: 32px 12px 32px 12px / 18px 32px 12px 32px;
    box-shadow: 0 8px 32px rgba(35,64,82,0.10);
    padding: 36px 32px;
    margin-bottom: 24px;
    max-width: 600px;
    font-size: 1.15rem;
    color: #234052;
    border: 2.5px solid;
    border-image: linear-gradient(135deg, #234052 0%, #e5e0d6 100%) 1;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s, border 0.3s;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -32px;
    left: -32px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 60% 40%, #23405222 0%, #f5efe600 80%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 120px;
    height: 120px;
    background: url('data:image/svg+xml;utf8,<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="60" cy="60" rx="60" ry="20" fill="%23e5e0d6" fill-opacity="0.5"/><ellipse cx="60" cy="80" rx="30" ry="10" fill="%23234052" fill-opacity="0.12"/></svg>');
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

.about-card > * {
    position: relative;
    z-index: 2;
}

.about-card:hover {
    box-shadow: 0 16px 48px rgba(35,64,82,0.13);
    border-image: linear-gradient(135deg, #234052 0%, #e5e0d6 100%) 1;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 0;
}

.stat {
    background: rgba(245, 239, 230, 0.65);
    border-radius: 24px 8px 24px 8px / 12px 24px 8px 24px;
    box-shadow: 0 8px 32px rgba(35,64,82,0.10);
    padding: 32px 18px;
    text-align: center;
    border: 2.5px solid;
    border-image: linear-gradient(135deg, #234052 0%, #e5e0d6 100%) 1;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
    transition: box-shadow 0.3s, border 0.3s;
}

.stat::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at 60% 40%, #23405222 0%, #f5efe600 80%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.stat::after {
    content: '';
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 48px;
    height: 48px;
    background: url('data:image/svg+xml;utf8,<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="24" cy="24" rx="24" ry="8" fill="%23e5e0d6" fill-opacity="0.5"/><ellipse cx="24" cy="32" rx="12" ry="4" fill="%23234052" fill-opacity="0.12"/></svg>');
    background-size: cover;
    z-index: 1;
    pointer-events: none;
}

.stat > * {
    position: relative;
    z-index: 2;
}

.stat:hover {
    box-shadow: 0 16px 48px rgba(35,64,82,0.13);
    border-image: linear-gradient(135deg, #234052 0%, #e5e0d6 100%) 1;
}

.stat h3 {
    font-size: 1.5rem;
    color: #234052;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -1px;
    word-break: break-word;
    line-height: 1.1;
    max-width: 100%;
}

.stat p {
    color: #1a1a2e;
    font-weight: 600;
    font-size: 1rem;
    word-break: break-word;
    line-height: 1.3;
    max-width: 100%;
}

.about-highlight {
    color: #234052;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: left;
    display: block;
    position: relative;
}

.about-highlight::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #234052;
    border-radius: 2px;
    margin-top: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
    margin-top: 0;
}

.service-card {
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(35,64,82,0.10);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #b89c6c, #f5efe6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(35, 64, 82, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: #234052;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #f5efe6;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(35, 64, 82, 0.08);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #234052;
    font-weight: 700;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    margin-top: 0;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #234052;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 35px;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #555;
    font-size: 1.05rem;
}

.contact-item i {
    width: 25px;
    color: #234052;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(35,64,82,0.10);
    border: 1px solid #e0dbd1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #234052;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0dbd1;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f5efe6;
    color: #234052;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #234052;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(35,64,82,0.10);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: #234052;
    color: #f5efe6;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(35,64,82,0.12);
}

.submit-button:hover {
    transform: translateY(-2px);
    background: #19303e;
}

/* Footer */
.footer {
    background: #234052;
    color: #f5efe6;
    padding: 80px 0 30px;
    background-image: none;
}

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

.footer-section h3 {
    margin-bottom: 25px;
    color: #f5efe6;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 20px;
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #f5efe6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    color: #e0dbd1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #f5efe6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #234052;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: #e0dbd1;
    color: #234052;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    color: #234052;
}

.newsletter-form input::placeholder {
    color: #bdc3c7;
}

.newsletter-form button {
    padding: 12px 25px;
    background: #234052;
    color: #f5efe6;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(35,64,82,0.12);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    background: #19303e;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0dbd1;
    color: #e0dbd1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background-color: #f5efe6;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo {
        padding-left: 12px;
    }

    .logo {
        height: 90px;
        max-height: 32vw;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }
    .hero-subtitle {
        font-size: 1.1rem !important;
    }

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 40px 30px;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .lang-switch {
        display: none;
    }
    .lang-switch-mobile-li {
        display: block;
        margin-top: 18px;
    }
    .lang-switch-mobile {
        display: block;
        margin: 0 auto;
        padding: 5px 12px;
        font-size: 0.92rem;
        font-weight: 700;
        color: #234052;
        background: #f5efe6;
        border: 2px solid #234052;
        border-radius: 22px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
        box-shadow: 0 1px 4px rgba(35,64,82,0.08);
        outline: none;
        letter-spacing: 1px;
        width: 60%;
        max-width: 120px;
        text-align: center;
    }
    .lang-switch-mobile:hover, .lang-switch-mobile:focus {
        background: #234052;
        color: #f5efe6;
        border-color: #234052;
        box-shadow: 0 2px 8px rgba(35,64,82,0.13);
    }
}

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

    .nav-container {
        padding: 0 15px;
        height: 70px;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .section {
        padding: 80px 0;
    }

    .service-card {
        padding: 40px 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 900px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-card {
        padding: 24px 12px;
        border-radius: 24px 10px 24px 10px / 12px 24px 10px 24px;
    }
    .about-card::before, .about-card::after {
        width: 64px;
        height: 64px;
        top: -12px;
        left: -12px;
        bottom: -12px;
        right: -12px;
    }
    .stat {
        padding: 24px 10px;
        border-radius: 16px 6px 16px 6px / 8px 16px 6px 16px;
    }
    .stat::before, .stat::after {
        width: 32px;
        height: 32px;
        top: -8px;
        left: -8px;
        bottom: -8px;
        right: -8px;
    }
}

@media (max-width: 600px) {
    .about-divider svg {
        height: 40px;
    }
    .about-card {
        padding: 16px 6px;
        font-size: 1rem;
        border-radius: 16px 8px 16px 8px / 8px 16px 8px 16px;
    }
    .about-card::before, .about-card::after {
        width: 32px;
        height: 32px;
        top: -8px;
        left: -8px;
        bottom: -8px;
        right: -8px;
    }
    .about-highlight {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    .about-highlight::after {
        width: 36px;
        height: 3px;
        margin-top: 6px;
    }
    .stat {
        padding: 14px 4px;
        border-radius: 10px 4px 10px 4px / 4px 10px 4px 10px;
    }
    .stat::before, .stat::after {
        width: 18px;
        height: 18px;
        top: -4px;
        left: -4px;
        bottom: -4px;
        right: -4px;
    }
    .about-divider-bottom svg {
        height: 40px;
    }
}

#diensten {
    background: linear-gradient(135deg, #e94560 0%, #f5efe6 100%) !important;
    background-image: none !important;
}

a:focus, a:active, .nav-link:focus, .nav-link:active, .cta-button:focus, .cta-button:active, .submit-button:focus, .submit-button:active, .newsletter-form button:focus, .newsletter-form button:active {
    outline: 2px solid #234052 !important;
    box-shadow: 0 0 0 3px rgba(35,64,82,0.15) !important;
}

button:focus, input:focus, textarea:focus {
    outline: 2px solid #234052 !important;
    box-shadow: 0 0 0 3px rgba(35,64,82,0.10) !important;
}

.lang-switch {
    margin-left: 32px;
    padding: 10px 22px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #234052;
    background: #f5efe6;
    border: 2px solid #234052;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(35,64,82,0.08);
    outline: none;
    letter-spacing: 1px;
}
.lang-switch:hover, .lang-switch:focus {
    background: #234052;
    color: #f5efe6;
    border-color: #234052;
    box-shadow: 0 4px 16px rgba(35,64,82,0.13);
}

@media (max-width: 900px) {
    .lang-switch {
        margin-left: 12px;
        padding: 8px 16px;
        font-size: 0.98rem;
    }
}

.lang-switch-mobile {
    display: none;
}

@media (max-width: 768px) {
    .lang-switch {
        display: none;
    }
    .lang-switch-mobile {
        display: block;
        margin: 10px auto 0 auto;
        padding: 5px 12px;
        font-size: 0.92rem;
        font-weight: 700;
        color: #234052;
        background: #f5efe6;
        border: 2px solid #234052;
        border-radius: 22px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
        box-shadow: 0 1px 4px rgba(35,64,82,0.08);
        outline: none;
        letter-spacing: 1px;
        width: 60%;
        max-width: 120px;
        text-align: center;
    }
    .lang-switch-mobile:hover, .lang-switch-mobile:focus {
        background: #234052;
        color: #f5efe6;
        border-color: #234052;
        box-shadow: 0 2px 8px rgba(35,64,82,0.13);
    }
}

.lang-switch-mobile-li {
    display: none;
}

@media (max-width: 768px) {
    .lang-switch {
        display: none;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background-color: #f5efe6;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .lang-switch-mobile-li {
        display: block;
        margin-top: 18px;
    }
    .lang-switch-mobile {
        display: block;
        margin: 0 auto;
        padding: 5px 12px;
        font-size: 0.92rem;
        font-weight: 700;
        color: #234052;
        background: #f5efe6;
        border: 2px solid #234052;
        border-radius: 22px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
        box-shadow: 0 1px 4px rgba(35,64,82,0.08);
        outline: none;
        letter-spacing: 1px;
        width: 60%;
        max-width: 120px;
        text-align: center;
    }
    .lang-switch-mobile:hover, .lang-switch-mobile:focus {
        background: #234052;
        color: #f5efe6;
        border-color: #234052;
        box-shadow: 0 2px 8px rgba(35,64,82,0.13);
    }
}

.stat:nth-child(1), .stat:nth-child(3) {
    border-image: linear-gradient(to bottom, #234052 0%, #e5e0d6 100%) 1 !important;
}

.stat:nth-child(2) {
    border-image: linear-gradient(to top, #234052 0%, #e5e0d6 100%) 1 !important;
}

.diensten-divider-top {
    width: 100%;
    margin-bottom: -2px;
    line-height: 0;
    z-index: 1;
    position: relative;
}

.diensten-divider-top svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (max-width: 600px) {
    .diensten-divider-top svg {
        height: 40px;
    }
}

.hero + .section {
    padding-top: 30px;
}

/* Mouse follower ball */
#mouse-follower {
    position: fixed;
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#mouse-follower:hover {
    transform: translate(-50%, -50%) scale(1.5);
} 

.lees-meer {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1.2em;
  background-color: #b89c6c;
  color: #fff;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.lees-meer:hover, .lees-meer:focus {
  background-color: #a4844a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  text-decoration: none;
} 

@media (max-width: 900px) {
  #mouse-follower {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
  }
}
@media (max-width: 768px) {
  .logo, .nav-logo img.logo {
    height: 180px !important;
    max-height: none !important;
    width: auto !important;
    display: block !important;
  }
  .hero {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
    margin-top: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
}
@media (max-width: 480px) {
  .logo, .nav-logo img.logo {
    height: 140px !important;
    max-height: none !important;
    width: auto !important;
    display: block !important;
  }
  .hero {
    padding-top: 70px !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
} 

@media (max-width: 768px) {
  .cta-button {
    font-size: 1.2rem !important;
    padding: 22px 48px !important;
    margin-top: 32px !important;
  }
}
@media (max-width: 480px) {
  .cta-button {
    font-size: 0.88rem !important;
    padding: 8px 12px !important;
  }
} 

@media (max-width: 1200px) {
  .stat h3 { font-size: 1.5rem; }
  .stat p { font-size: 1rem; }
}
@media (max-width: 900px) {
  .stat h3 { font-size: 1.2rem; }
  .stat p { font-size: 0.95rem; }
}
@media (max-width: 600px) {
  .stat h3 { font-size: 1rem; }
  .stat p { font-size: 0.85rem; }
} 

@media (max-width: 768px) {
  .hero {
    padding-bottom: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: center !important;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
  }
  .hero-title, .hero-subtitle, .cta-button {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
} 