/* Service tile styling geïnspireerd op uploads/services_responsieve_grid_mobile_pager.html */
.service-tile { width: 100%; height: 100%; display:flex; }
.service-tile .tile-link{
  display:flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-decoration:none;
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, 0.20);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.service-tile .tile-link:hover{
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.30);
}
.service-tile .tile-media{ height:96px; background: linear-gradient(130deg, rgba(36,165,222,.35), rgba(28,134,181,.35)); }
.service-tile .tile-body{ padding:14px; text-align:left; display:flex; flex-direction:column; flex:1 1 auto; }
.service-tile .tile-title{ font-size:20px; font-weight:700; line-height:1.3; margin:0 0 6px 0; color:#ffffff; text-align:left; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.service-tile .tile-sub{ margin:0 0 12px 0; font-size:16px; color: rgba(255,255,255,.9); text-align:left; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.service-tile .tile-benefits{ list-style:none; padding:0; margin:0 0 12px 0; display:grid; gap:6px; font-size:16px; color:#ffffff; text-align:left; }
.service-tile .tile-benefits .dot{ display:inline-block; width:8px; height:8px; border-radius:999px; background: currentColor; margin-right:8px; transform: translateY(1px); }
.service-tile .tile-cta{ display:inline-flex; align-items:center; gap:8px; background:#EF4723; color:#fff; font-weight:600; font-size:15px; padding:10px 14px; border-radius: 12px; box-shadow: 0 4px 12px rgba(239,71,35,.25); margin-top:auto; }
.service-tile .tile-cta .cta-ico{ width:18px; height:18px; }
/* Aangepast: @font-face verwijderd om 404's te voorkomen; val terug op systeemfonts */

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

/* iOS Safari viewport variables en gradient */
:root {
    --vh: 1vh;
    --color-fullscreen-gradient: radial-gradient(ellipse at center, rgba(15, 65, 90, 1) 0%, rgba(12, 50, 70, 1) 40%, rgba(8, 35, 50, 1) 70%, rgba(5, 25, 35, 1) 100%);
}

html {
    scroll-behavior: smooth;
    overflow: hidden; /* Voorkom standaard scroll */
    /* iOS Safari viewport fix */
    height: 100%;
    -webkit-text-size-adjust: 100%;
    background-color: #0a2d41;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background: var(--color-fullscreen-gradient);
    background-attachment: fixed;
    overflow: hidden;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* iOS viewport fix */
    height: 100dvh; /* Dynamic viewport height voor modern browsers */
    /* iOS Safari specifieke fixes */
    -webkit-overflow-scrolling: touch;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    /* Font rendering optimalisatie */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* iOS Safari viewport fix */
@supports (-webkit-touch-callout: none) {
    body {
        height: -webkit-fill-available;
    }
}

/* Header Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* iOS touch optimalizatie */
    -webkit-user-select: none;
    user-select: none;
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

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

/* Logo SVG styling */
.logo-svg {
    height: 40px;
    width: auto;
    /* Override logo colors - wit voor letters, wit voor accent */
    --logo-color: #ffffff;
    --logo-accent: #ffffff;
    transition: opacity 0.3s ease;
}

.logo-svg:hover {
    opacity: 0.8;
}

/* Legacy h1 styling (voor fallback) */
.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

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

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-family: 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
    position: relative;
    /* iOS touch verbetering */
    -webkit-tap-highlight-color: transparent;
    padding: 0.5rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff; /* Wit voor betere contrast */
    font-weight: 600; /* Vet gedrukt voor betere zichtbaarheid */
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff; /* Wit voor consistentie met tekst */
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    /* iOS touch verbetering */
    -webkit-tap-highlight-color: transparent;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Scroll Progress Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
}

.scroll-progress {
    height: 100%;
    background: url('../images/footer5.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    width: 20%; /* Start bij 20% voor eerste sectie */
    transition: width 0.5s ease;
    /* Fallback gradient */
    background-image: 
        url('../images/footer5.svg'),
        linear-gradient(90deg, #2f5f98, #2d8bba, #41b8d5, #6ce5e8);
}

/* Main Content - Full Page Setup */
.main-content {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* iOS viewport fix */
    height: 100dvh; /* Dynamic viewport height */
    position: relative;
    overflow: hidden;
    /* iOS Safari specifieke fixes */
    -webkit-overflow-scrolling: touch;
}

/* iOS Safari viewport fix */
@supports (-webkit-touch-callout: none) {
    .main-content {
        height: -webkit-fill-available;
    }
}

/* Section Base Styling */
.section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100); /* iOS viewport fix */
    height: 100dvh; /* Dynamic viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: none;
    z-index: 1;
    /* iOS touch optimalizatie */
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* iOS Safari viewport fix */
@supports (-webkit-touch-callout: none) {
    .section {
        height: -webkit-fill-available;
    }
}

.section.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    z-index: 10;
    -webkit-user-select: auto;
    user-select: auto;
}

/* Scroll hint - subtiele styling */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 100;
    /* iOS touch verbetering */
    -webkit-tap-highlight-color: transparent;
    /* Subtiele styling - alleen kleur consistent houden */
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.scroll-hint:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(-50%) translateY(-2px);
}

.section-content {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
    /* iOS scroll verbetering */
    -webkit-overflow-scrolling: touch;
}

/* Home Section */
.section-home {
    /* Geen achtergrond - laat gradient doorheen */
    color: #333;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.text-center h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.2;
}

.text-center p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    /* iOS touch verbetering */
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    min-height: 44px; /* iOS minimale touch target */
}

.btn-primary {
    background: #2d8bba; /* Middenblauw uit SVG patroon */
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #2d8bba; /* Middenblauw uit SVG patroon */
    border: 2px solid #2d8bba;
}

.btn-secondary:hover,
.btn-secondary:active {
    background: #2d8bba; /* Middenblauw uit SVG patroon */
    color: #fff;
    transform: translateY(-3px);
}

.scroll-arrow-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem auto 0;
    display: block;
    transition: all 0.3s ease;
}

.scroll-hint:hover .scroll-arrow-icon {
    color: rgba(255, 255, 255, 1);
    transform: translateY(2px);
}

/* Teaser Section */
.section-teaser {
    /* Geen achtergrond - laat gradient doorheen */
}

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

.teaser-text {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.teaser-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #24a5de;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    border-bottom: 1px solid transparent;
}

.teaser-cta:hover {
    border-bottom-color: #24a5de;
}

.teaser-cta::after {
    content: '→';
    transition: transform 0.3s ease;
}

.teaser-cta:hover::after {
    transform: translateX(4px);
}

/* Page transition fade */
body.fade-out .main-content {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

body.fade-in .main-content {
    opacity: 1;
    transition: opacity 0.3s ease-in;
}

/* About Section */
.section-about {
    /* Geen achtergrond - laat gradient doorheen */
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-photo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
}

.wouter-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.wouter-photo:hover {
    transform: scale(1.05);
}

/* Circulaire tekst styling verwijderd */

.profile-name h3 {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    margin: 0;
}

.about-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-quote blockquote {
    font-size: 2.2rem;
    font-weight: 300;
    font-family: 'Segoe UI', sans-serif;
    color: #ffffff;
    line-height: 1.4;
    text-align: left;
    margin: 0;
    padding: 3rem 2.5rem 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.about-quote .quote-text {
    margin: 0;
    padding: 0;
}

/* Decoratieve quote marks in de hoeken van het kader */
.quote-mark {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: Georgia, serif;
    line-height: 1;
    user-select: none;
    position: absolute;
}

.quote-mark-open {
    top: 0.5rem;
    left: 1rem;
}

.quote-mark-close {
    bottom: 2rem;
    right: 1rem;
}

.quote-author {
    text-align: right;
    color: #ffffff;
    font-weight: 300;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-style: italic;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Legacy styling voor backwards compatibility */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.lead {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #41b8d5; /* Lichtblauw uit SVG patroon */
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.image-placeholder {
    background: rgba(233, 236, 239, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #666;
    font-size: 1.1rem;
}

/* Services Section */
.section-services {
    /* Geen achtergrond - laat gradient doorheen */
    color: #333;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
}

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

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card:hover,
.service-card:active {
    transform: translateY(-10px);
}

/* Modal (diensten) */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal-overlay[hidden] {
    display: none !important;
}

.modal-window {
    width: min(900px, 92vw);
    max-height: min(80vh, 800px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #2c3e50;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-content {
    padding: 1.5rem 1.5rem 0 1.5rem;
    overflow: auto;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.modal-content p {
    color: #2c3e50;
}

.modal-content ul {
    margin: 0.5rem 0 1rem 1rem;
}

.modal-content li::before {
    content: '• ';
    color: #2d8bba;
    font-weight: 600;
}

.service-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hook-styling binnen services, gelijkend aan quote-styling in section 2 */
.service-card .service-hook {
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.4;
    text-align: left;
    margin: 0 0 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card .service-hook::before,
.service-card .service-hook::after {
    content: '"';
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
}

.service-card .service-hook::before {
    top: -8px;
    left: 12px;
    font-size: 2rem;
}

.service-card .service-hook::after {
    bottom: -20px;
    right: 12px;
    font-size: 2rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.3rem 0;
    opacity: 0.9;
}

.service-card li::before {
    content: '✓ ';
    color: #2ecc71;
    font-weight: bold;
}

/* Portfolio Section */
.section-portfolio {
    /* Geen achtergrond - laat gradient doorheen */
    color: #333;
}

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

.portfolio-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover,
.portfolio-item:active {
    transform: scale(1.05);
}

.portfolio-image {
    height: 200px;
}

.portfolio-content {
    padding: 1.5rem;
    text-align: left;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    background: #2d8bba; /* Middenblauw uit SVG patroon */
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Contact Section */
.section-contact {

    flex-direction: column;
}

.section-contact * {
    color: #ffffff !important;
}

.section-contact .section-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-contact .contact-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.section-contact .contact-center svg.logo-svg {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.section-contact .contact-center h1 {
    font-size: 3.5rem; /* Zelfde als home page */
    font-weight: 700; /* Zelfde als home page */
    font-family: 'Segoe UI', sans-serif;
    margin-bottom: 2rem; /* Zelfde als home page */
    color: #ffffff !important;
    line-height: 1.2; /* Zelfde als home page */
}

.section-contact .contact-center p {
    font-size: 1.3rem; /* Zelfde als home page */
    margin-bottom: 1.5rem; /* Zelfde als home page */
    color: #ffffff !important;
    line-height: 1.6; /* Zelfde als home page */
    opacity: 0.9;
    max-width: 600px;
}

.section-contact .contact-details {
    width: 100%;
    padding: 0.75rem 0; /* Verkleind van 1.5rem naar 0.75rem */
    background: rgba(15, 65, 90, 0.8);
    backdrop-filter: blur(15px);
    color: #ffffff !important;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-contact .contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.section-contact .copyright-row {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    font-size: 0.75rem;
    opacity: 0.8;
    flex-wrap: wrap;
}

.section-contact .company-details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-contact .copyright-text {
    white-space: nowrap;
}

.section-contact .contact-item {
    display: flex;
    align-items: center;
    margin: 0 0.5rem;
    color: #ffffff !important;
}

.section-contact .contact-item span {
    color: #ffffff !important;
}

.section-contact .contact-item i {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: #24a5de !important;
}

.section-contact .separator {
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    /* iOS styling fixes */
    -webkit-appearance: none;
    -webkit-border-radius: 8px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #41b8d5; /* Lichtblauw uit SVG patroon */
}

/* Footer */
.footer {
    background: rgba(15, 65, 90, 0.5);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1rem 0;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer .contact-item {
    display: flex;
    align-items: center;
    margin: 0 0.5rem;
}

.footer .contact-item i {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: #24a5de; /* Accent kleur */
}

.footer .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
}

.footer .copyright-row {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Navigation Controls */
.nav-controls {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    /* iOS touch verbetering */
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    /* Lucide icon centering */
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn i {
    width: 20px;
    height: 20px;
}

.nav-btn:hover,
.nav-btn:active {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.nav-btn:disabled {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.4;
    cursor: not-allowed;
}

/* Section Indicators */
.section-indicators {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    /* Rechtopstaande ovaal achtergrond */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 1.25rem 0.625rem; /* 0.625rem = 10px, past bij 24px button + 44px container */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 44px;
}

.indicator {
    width: 24px; /* Touch target grootte */
    height: 24px;
    border: none;
    border-radius: 50%;
    background: transparent; /* Button onzichtbaar */
    cursor: pointer;
    transition: all 0.3s ease;
    /* iOS touch verbetering */
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.indicator.active::before {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%) scale(1.5);
}

.indicator:hover::before {
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.3);
}

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

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

/* Floating Elements verwijderd */

/* iOS Safari specifieke fixes */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari address bar fix */
    .section {
        min-height: -webkit-fill-available;
    }
    
    .main-content {
        min-height: -webkit-fill-available;
    }
    
    body {
        min-height: -webkit-fill-available;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .nav-toggle {
        display: none; /* Hamburger menu verbergen op mobiel */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .text-center h1 {
        font-size: 2.5rem;
    }
    
    .text-center p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid,
    .contact-grid,
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .wouter-photo {
        width: 250px;
        height: 250px;
    }
    
    /* Circulaire tekst styling verwijderd */
    
    /* Margin niet meer nodig */
    
    .profile-name h3 {
        font-size: 1.5rem;
    }
    
    .about-quote blockquote {
        font-size: 1.8rem;
        padding: 1.5rem;
    }
    
    .quote-author {
        font-size: 1rem;
        margin-top: 0;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-controls,
    .section-indicators {
        display: none;
    }
    
    .section-content {
        padding: 1rem;
    }
    
    /* iOS Safari mobile fixes */
    .section {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .text-center h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .text-center p {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .wouter-photo {
        width: 200px;
        height: 200px;
    }
    
    /* Circulaire tekst styling verwijderd */
    
    /* Margin niet meer nodig */
    
    .profile-name h3 {
        font-size: 1.3rem;
    }
    
    .about-quote blockquote {
        font-size: 1.4rem;
        padding: 1rem;
    }
    
    .about-quote blockquote::before,
    .about-quote blockquote::after {
        font-size: 3rem;
    }
    
    .quote-author {
        font-size: 0.9rem;
        margin-top: 0;
    }
    
    /* Extra iOS mobile optimalizaties */
    .btn {
        min-height: 48px;
        font-size: 1.1rem;
    }
    
    .indicator {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Scroll hint compacter op mobiel */
    .scroll-hint {
        font-size: 0.75rem;
        bottom: 1.5rem;
    }
    
    .scroll-arrow-icon {
        width: 16px;
        height: 16px;
        margin: 0.25rem auto 0;
    }
    
    /* Contact center styling consistent met home page op mobiel */
    .section-contact .contact-center h1 {
        font-size: 2rem !important; /* Zelfde als home page mobiel */
        margin-bottom: 1.5rem !important; /* Zelfde als home page mobiel */
        line-height: 1.1 !important; /* Zelfde als home page mobiel */
    }
    
    .section-contact .contact-center p {
        font-size: 1rem !important; /* Zelfde als home page mobiel */
        margin-bottom: 1rem !important; /* Zelfde als home page mobiel */
        line-height: 1.5 !important; /* Zelfde als home page mobiel */
    }
    
    /* Footer compacter maken op mobiel */
    .section-contact .contact-details {
        padding: 0.25rem 0 !important; /* Veel compacter dan 0.5rem */
        font-size: 0.7rem !important; /* Kleinere tekst */
    }
    
    .section-contact .contact-row {
        margin-bottom: 0.25rem !important; /* Kleinere marges */
        gap: 0.25rem !important;
    }
    
    .section-contact .copyright-row {
        flex-direction: column !important; /* Verticaal op mobiel */
        gap: 0.25rem !important;
        align-items: center !important;
    }
    
    .section-contact .desktop-separator {
        display: none !important;
    }
    
    .section-contact .company-details .separator {
        display: none !important;
    }
    
    .section-contact .company-details {
        gap: 0.2rem !important; /* Nog minder ruimte op mobiel */
    }
    
    .section-contact .contact-item {
        margin: 0 0.25rem !important; /* Kleinere marges */
    }
    
    .section-contact .contact-item i {
        width: 0.8rem !important; /* Kleinere icons */
        height: 0.8rem !important;
        margin-right: 0.3rem !important;
    }
} 

/* Responsive aanpassingen voor contact sectie */
@media (max-width: 768px) {
    .section-contact .contact-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-contact .copyright-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .section-contact .desktop-separator {
        display: none;
    }
    
    .section-contact .contact-row .separator {
        display: none;
    }
    
    .section-contact .company-details .separator {
        display: none;
    }
    
    .section-contact .company-details {
        gap: 0.25rem;
    }
    
    .section-contact .contact-center svg.logo-svg {
        max-width: 250px;
    }
    
    .section-contact .contact-center h1 {
        font-size: 2.5rem; /* Zelfde als home page tablet */
    }
    
    .section-contact .contact-center p {
        font-size: 1.1rem; /* Zelfde als home page tablet */
    }
    
    /* Nog subtielere footer padding op mobiel */
    .section-contact .contact-details {
        padding: 0.5rem 0; /* Van 0.75rem naar 0.5rem op mobiel */
    }
} 