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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004999;
    --secondary-color: #00a8e8;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e9ecef;
    --success-color: #28a745;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
    background: var(--darker-bg);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ===========================
   Header & Navigation
   =========================== */
header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-overlay {
    display: none;
}

.header-blur-bottom {
    display: none;
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

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

.logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.main-nav a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    padding: 300px 250px;
    overflow: hidden;
    min-height: calc(100vh - 48px); /* Volledige schermhoogte min top-bar */
    display: flex;
    align-items: center;
    margin-top: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.5) 0%, rgba(0, 102, 204, 0.4) 100%);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4);
}

.scroll-indicator {
    margin-top: 3rem;
    animation: bounce 2s infinite;
    text-align: center;
}

.scroll-indicator a {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.scroll-indicator a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(5px);
}

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

/* ===========================
   Section Styles
   =========================== */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 1rem;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

/* ===========================
   About Section
   =========================== */
.about {
    background-color: white;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.expertise-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.expertise-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ===========================
   Diensten Section
   =========================== */
.diensten {
    background-color: var(--light-bg);
}

.dienst-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
    padding: 2rem 1rem;
    margin: -2rem -1rem;
}

.dienst-grid:first-child {
    margin-left: 0;
    padding-left: 1rem;
}

.dienst-grid:last-child {
    margin-right: 0;
    padding-right: 1rem;
}

.dienst-grid::-webkit-scrollbar {
    height: 8px;
}

.dienst-grid::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.dienst-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dienst-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.dienst-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
    width: calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.dienst-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.dienst-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.dienst-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dienst-icon i {
    font-size: 2rem;
    color: white;
}

.dienst-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.dienst-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.dienst-card ul {
    list-style: none;
}

.dienst-card ul li {
    color: var(--text-light);
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
}

.dienst-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* ===========================
   Technologie Section
   =========================== */
.technologie {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: white;
}

.technologie .section-label {
    color: var(--secondary-color);
}

.technologie h2 {
    color: white;
}

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

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-category:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.tech-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.tech-category h3 i {
    margin-right: 12px;
    color: var(--secondary-color);
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-items span {
    background: rgba(0, 168, 232, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 168, 232, 0.3);
}

/* ===========================
   Partners Section
   =========================== */
.partners {
    background-color: white;
}

.partners-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.partner-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.partner-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button-secondary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background-color: var(--light-bg);
}

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

.contact-info-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-owner {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.contact-details i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.opening-hours {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.emergency-support {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 168, 232, 0.1));
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.emergency-support i {
    margin-right: 8px;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.cert-badge {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 600;
    border-left: 3px solid var(--success-color);
}

.cert-badge i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* ===========================
   Footer
   =========================== */
footer {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-section ul li a[href^="tel:"],
.footer-section ul li a[href^="mailto:"] {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a[href^="tel:"]:hover,
.footer-section ul li a[href^="mailto:"]:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-section ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .dienst-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav a {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .main-nav a:after {
        display: none;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .top-bar {
        font-size: 1rem;
        padding: 8px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .top-bar-left{
        gap: 1rem;
        font-size: 0.75rem;
    }

    .top-bar-right {
        gap: 1rem;
        font-size: 0;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 14px 35px;
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    .about-text .lead {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .dienst-card h3 {
        font-size: 1.3rem;
    }
    
    .dienst-card p {
        font-size: 0.95rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button-secondary {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .dienst-grid {
        gap: 1rem;
    }
    
    .dienst-card {
        width: calc(100vw - 4rem);
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-areas {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .expertise-item {
        padding: 1.2rem;
    }
    
    .expertise-item i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .expertise-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .expertise-item p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
    
    /* Inklapbare content op mobiel */
    .dienst-card {
        cursor: pointer;
        position: relative;
        padding: 1.5rem;
    }
    
    .dienst-card h3 {
        font-size: 1.1rem;
    }
    
    .dienst-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .dienst-icon i {
        font-size: 1.5rem;
    }
    
    /* Technologie stack horizontal scroll */
    .tech-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .tech-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .tech-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .tech-grid::-webkit-scrollbar-thumb {
        background: var(--secondary-color);
        border-radius: 10px;
    }
    
    .tech-category {
        flex: 0 0 calc(100% - 40px);
        scroll-snap-align: start;
        padding: 1.5rem;
    }
    
    .tech-category h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .tech-items {
        gap: 0.5rem;
    }
    
    .tech-items span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Partner cards horizontal scroll */
    .partners-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .partners-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .partners-grid::-webkit-scrollbar-track {
        background: var(--border-color);
        border-radius: 10px;
    }
    
    .partners-grid::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    .partner-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        padding: 1.5rem;
    }
    
    .partner-card i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .partner-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .partner-card p {
        font-size: 0.85rem;
    }
    
    .partners-intro {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Horizontal scroll containers met scroll indicator */
    .scroll-container {
        position: relative;
    }
    
    .scroll-indicator-left {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 100%;
        background: linear-gradient(270deg, transparent 0%, rgba(248, 249, 250, 0.95) 100%);
        display: none;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 5;
        transition: opacity 0.3s ease;
    }
    
    .scroll-indicator-left i {
        font-size: 1.5rem;
        color: var(--primary-color);
        animation: pulseArrowLeft 2s ease-in-out infinite;
    }
    
    .scroll-indicator-right {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 100%;
        background: linear-gradient(90deg, transparent 0%, rgba(248, 249, 250, 0.95) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 5;
        transition: opacity 0.3s ease;
    }
    
    .scroll-indicator-right i {
        font-size: 1.5rem;
        color: var(--primary-color);
        animation: pulseArrow 2s ease-in-out infinite;
    }
    
    .scroll-indicator-right.hidden {
        opacity: 0;
    }
    
    /* Dark background voor technologie sectie */
    .technologie .scroll-indicator-right {
        background: linear-gradient(90deg, transparent 0%, rgba(26, 26, 46, 0.95) 100%);
    }
    
    .technologie .scroll-indicator-left {
        background: linear-gradient(270deg, transparent 0%, rgba(26, 26, 46, 0.95) 100%);
    }
    
    @keyframes pulseArrowLeft {
        0%, 100% { opacity: 0.5; transform: translateX(0); }
        50% { opacity: 1; transform: translateX(-5px); }
    }
    
    @keyframes pulseArrow {
        0%, 100% { opacity: 0.5; transform: translateX(0); }
        50% { opacity: 1; transform: translateX(5px); }
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .footer-logo i {
        font-size: 2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 420px) {
    .hero h2 {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .dienst-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
}