@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Metropolis';
    src: url('fonts/Metropolis-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'SangBleu Empire';
    src: url('fonts/SangBleuEmpire-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* CSS Variables for drivenbylight design */
:root {
    /* Colors */
    --color-primary: #001427;
    --color-secondary: #001427;
    --color-accent: #3498db;
    --color-background: #f8f9fa;
    --color-white: #ffffff;
    --color-gray: #6c757d;
    --color-overlay: rgba(26, 26, 26, 0.7);
    
    /* Typography */
    --font-serif: 'SangBleu Empire', serif;
    --font-sans: 'Metropolis', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;    /* 16px */
    --spacing-md: 1.5rem;  /* 24px */
    --spacing-lg: 2rem;    /* 32px */
    --spacing-xl: 3rem;    /* 48px */
    --spacing-2xl: 4rem;   /* 64px */
    --spacing-3xl: 6rem;   /* 96px */
    --spacing-4xl: 8rem;   /* 128px */
    
    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FAF9F7;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.highlight-text {
    background-color: #708D81 !important;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}


h3 {
    font-size: 2rem;
}

p {
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    font-size: 24px !important;
    line-height: 1.7;
    color: #001427;
    max-width: 480px;
    text-align: left;
}

a {
    color: #001427;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #001427;
    transition: width 0.3s ease;
}

a:hover {
    color: #001427;
    text-decoration: none;
}

a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 40px !important;
    gap: 48px !important;
    width: 227px !important;
    height: 72px !important;
    background: #FAF9F7 !important;
    border-radius: 80px !important;
    flex: none !important;
    order: 1 !important;
    align-self: stretch !important;
    flex-grow: 0 !important;
    z-index: 1 !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.nav-menu a:active {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 40px !important;
    gap: 48px !important;
    width: 227px !important;
    height: 72px !important;
    background: #FAF9F7 !important;
    border-radius: 80px !important;
    flex: none !important;
    order: 1 !important;
    align-self: stretch !important;
    flex-grow: 0 !important;
    z-index: 1 !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
    transition: all 0.1s ease !important;
    transform: scale(0.95) !important;
}

.nav-menu a.active {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 40px !important;
    gap: 48px !important;
    width: 227px !important;
    height: 72px !important;
    background: #FAF9F7 !important;
    border-radius: 80px !important;
    flex: none !important;
    order: 1 !important;
    align-self: stretch !important;
    flex-grow: 0 !important;
    z-index: 1 !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    transform: scale(1) !important;
    box-shadow: none !important;
}


.scroll-arrow-link:hover {
    color: var(--color-primary) !important;
    text-decoration: none !important;
}

.scroll-arrow-link:hover::after {
    width: 0 !important;
}

.contact-methods a:hover {
    text-decoration: none !important;
}

.contact-methods a:hover::after {
    width: 0 !important;
}

.social-links a:hover {
    text-decoration: none !important;
}

.social-links a:hover::after {
    width: 0 !important;
}

.footer a {
    text-decoration: underline;
    text-underline-offset: 11px;
}

.footer a:hover {
    color: var(--color-primary) !important;
    text-decoration: none !important;
}

.footer a:hover::after {
    width: 100% !important;
}

/* Header and Navigation */
.header {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 216px !important;
    background-color: var(--color-white) !important;
    box-shadow: none !important;
    z-index: 1000 !important;
    transition: none !important;
    transform: none !important;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 160px;
    height: 216px;
}

.nav-brand {
    order: 1;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 72px;
    width: auto;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: rgba(0, 20, 39, 1);
    color: #ffffff;
    padding: 40px;
    border-radius: 24px;
    width: 569px;
    z-index: 1001;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cookie-title {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin: 0;
}

.cookie-text {
    font-family: var(--font-sans);
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-link:hover {
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: auto;
    justify-content: flex-start;
}

.cookie-accept-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 24px 40px;
    width: auto;
    height: 72px;
    border-radius: 80px;
    background-color: transparent;
    color: #ffffff;
    border: none;
    font-family: var(--font-sans);
    font-size: 24px;
    line-height: 24px;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    order: 0;
    flex-grow: 0;
}

.cookie-accept-btn:hover {
    background-color: #ffffff;
    color: #001427;
}

.nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    order: 3;
    z-index: 1001;
}

.nav-toggle-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.nav-toggle-icon:hover {
    transform: scale(1.1);
}

.nav-toggle--active .nav-toggle-icon {
    transform: rotate(90deg);
}

.nav-menu {
    display: none;
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    flex-direction: column;
    padding: var(--spacing-md);
    min-width: auto;
    order: 2;
    border-radius: 0;
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.nav-menu--active {
    display: flex;
}

.nav-menu li {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.nav-menu li:last-child {
    margin-bottom: 0;
}

.nav-menu a {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 40px !important;
    gap: 48px !important;
    width: 227px !important;
    height: 72px !important;
    background: transparent !important;
    border-radius: 80px !important;
    flex: none !important;
    order: 1 !important;
    align-self: stretch !important;
    flex-grow: 0 !important;
    z-index: 1 !important;
    color: var(--color-primary) !important;
    font-family: var(--font-sans) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.nav-menu a::after {
    display: none;
}

.nav-menu a:hover {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 40px !important;
    gap: 48px !important;
    width: 227px !important;
    height: 72px !important;
    background: #FAF9F7 !important;
    border-radius: 80px !important;
    flex: none !important;
    order: 1 !important;
    align-self: stretch !important;
    flex-grow: 0 !important;
    z-index: 1 !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.nav-menu a:active {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 40px !important;
    gap: 48px !important;
    width: 227px !important;
    height: 72px !important;
    background: #FAF9F7 !important;
    border-radius: 80px !important;
    flex: none !important;
    order: 1 !important;
    align-self: stretch !important;
    flex-grow: 0 !important;
    z-index: 1 !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
    transition: all 0.1s ease !important;
    transform: scale(0.95) !important;
}

.nav-menu a.active {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 24px 40px !important;
    gap: 48px !important;
    width: 227px !important;
    height: 72px !important;
    background: #FAF9F7 !important;
    border-radius: 80px !important;
    flex: none !important;
    order: 1 !important;
    align-self: stretch !important;
    flex-grow: 0 !important;
    z-index: 1 !important;
    color: var(--color-primary) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    transform: scale(1) !important;
    box-shadow: none !important;
}

/* Projects Header Section */
.projects-header {
  padding-top: 120px; /* volgens Figma */
}

.projects-carousel {
  position: relative;
  height: 420px; /* ⬅️ MATCH je Figma frame */
  overflow: hidden;
  border-radius: 16px;
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.video-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.video-layer iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects-header-content {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 2;
  color: white;
}

.projects-pagination,
.projects-progress {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 20px;
  z-index: 3;
}

/* Hero Section */
.hero {
    position: relative;
    height: 680px;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    width: 100% !important;
    height: 100% !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: 1;
    min-width: 100vw !important;
    min-height: 100vh !important;
    transform: scale(1.3) !important;
    left: -15% !important;
    width: 130% !important;
    top: 0 !important;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 25px solid #001427;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.hero-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 var(--spacing-md);
}

.service-content {
    max-width: 480px !important;
    text-align: left;
    padding: 0;
}

.hero-content {
    max-width: 600px;
    background-color: var(--color-overlay);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-subtitle {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
}

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

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.scroll-indicator {
    position: relative !important;
    height: 184px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 0 !important;
    z-index: 10 !important;
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
    background-color: #FAF9F7 !important;
  }

.scroll-arrow-link {
    display: inline-block;
    text-decoration: none !important;
    width: 64px;
    height: 64px;
    transition: opacity 0.3s ease !important;
    border-radius: 50%;
    opacity: 1 !important;
}

.scroll-arrow-link:hover {
    background-color: #ffffff;
    text-decoration: none !important;
    opacity: 1 !important;
}

.scroll-arrow-icon {
    width: 64px;
    height: 64px;
    filter: none !important;
    color: #001427 !important;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Projecten Header Section */
.projecten-header {
    width: 100%;
    background-color: var(--color-white);
    height: 540px;
    display: flex;
    align-items: center;
}

.projecten-header-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}

.projecten-header-left {
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
}

.projecten-header-right {
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
}

.projecten-header-title {
    font-family: var(--font-serif);
    font-size: 112px;
    font-weight: 700;
    line-height: 120px !important;
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
}

.projecten-header-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text);
    width: 480px;
    margin: 0;
}

/* Projecten Section */
.projecten {
    padding: 0;
    background-color: var(--color-white);
    margin: 0;
    position: relative;
    overflow: hidden;
    height: 1080px;
}

.projecten-carousel .projecten-video-background {
    position: absolute;
    top: 50%;
    right: 160px;
    transform: translateY(-50%);
    width: 640px;
    height: 360px;
    z-index: 5;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.projecten-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 640px;
    height: 360px;
    border: none;
    border-radius: 0;
    object-fit: cover;
}

.section-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
}

/* Project Carousel - Full Width */
.projecten-carousel {
    position: relative;
    width: 100%;
    height: 1080px;
    z-index: 2;
}

.projecten-carousel .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.projecten-carousel .carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.projecten-carousel .project-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    opacity: 1;
}

.projecten-carousel .project-slide.active {
    opacity: 1;
}

.projecten-carousel .project-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.projecten-carousel .project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    pointer-events: none;
    z-index: 1;
}

.projecten-carousel .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.projecten-carousel .project-content {
    position: absolute;
    top: 50%;
    left: 160px;
    transform: translateY(-50%);
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    z-index: 20 !important;
    pointer-events: none;
}

.projecten-carousel .project-content h3 {
    font-family: var(--font-serif);
    font-size: 112px;
    font-weight: 700;
    line-height: 120px !important;
    color: #ffffff;
    margin-bottom: var(--spacing-lg);
    text-align: left !important;
}

.projecten-carousel .project-title-1,
.projecten-carousel .project-title-2,
.projecten-carousel .project-title-3,
.projecten-carousel .project-title-4,
.projecten-carousel .project-title-5,
.projecten-carousel .project-title-6 {
    font-family: var(--font-serif) !important;
    font-size: 112px !important;
    font-weight: 700 !important;
    line-height: 120px !important;
    color: #ffffff !important;
    margin-bottom: var(--spacing-lg) !important;
    padding-left: 0 !important;
}

.projecten-carousel .project-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
}

.projecten-carousel .carousel-controls {
    position: absolute;
    bottom: 0;
    left: 160px;
    padding: 0 0 160px 0 !important;
    display: flex;
    gap: 24px;
    pointer-events: none;
    z-index: 100 !important;
}

.projecten-carousel .carousel-btn {
    pointer-events: all;
    width: 64px !important;
    height: 64px !important;
    background-color: transparent !important;
    border: 2px solid #ffffff;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: none !important;
}

.projecten-carousel .carousel-btn.prev.hidden {
    pointer-events: none;
}

.projecten-carousel .carousel-btn.next {
    background-color: transparent !important;
    border: 2px solid #ffffff !important;
}

.projecten-carousel .carousel-btn:hover {
    background-color: #001427 !important;
    border-color: transparent !important;
}


.projecten-carousel .carousel-pagination {
    position: absolute;
    bottom: 20px;
    right: 160px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 15 !important;
    padding-bottom: 160px !important;
}

.projecten-carousel .pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    gap: 24px;
}

.projecten-carousel .progress-bar {
    width: 160px !important;
    height: 2px !important;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    overflow: hidden;
    align-self: center;
    order: 2;
}

.projecten-carousel .progress-fill {
    height: 2px !important;
    background-color: #ffffff;
    width: 0%;
    transition: width 0.1s linear;
}

.projecten-carousel .page-number {
    font-size: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.projecten-carousel .page-number:not(:first-child):not(:last-child) {
    display: none;
}

.projecten-carousel .page-number:first-child {
    order: 1;
}

.projecten-carousel .page-number:last-child {
    order: 3;
}

.projecten-carousel .page-number.current {
    font-weight: 700;
    color: #ffffff;
}

.projecten-carousel .carousel-btn {
    transition: opacity 0.3s ease;
}

.projecten-carousel .carousel-btn:hover {
    opacity: 1;
}



/* Dak en Gevelbedekking Section */
.dak-gevel {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.dak-gevel-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/project-photo-01.png') center/cover no-repeat;
    z-index: 1;
}

.dak-gevel-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
}

.dak-gevel-overlay {
    position: relative;
    z-index: 2;
    padding-left: var(--spacing-3xl);
    max-width: 1200px;
}

.dak-gevel-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-white);
    margin: 0;
}

.carousel-controls {
    position: absolute;
    bottom: var(--spacing-lg);
    left: var(--spacing-3xl);
    z-index: 3;
    display: flex;
    gap: var(--spacing-md);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    background-color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.carousel-arrow {
    width: 12px;
    height: 12px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
}

.carousel-btn:hover .carousel-arrow {
    border-color: var(--color-white);
}

.carousel-btn.prev .carousel-arrow {
    transform: rotate(-135deg);
    margin-left: -4px;
}

.carousel-btn.next .carousel-arrow {
    transform: rotate(45deg);
    margin-right: -4px;
}

/* Services Section */
.services {
    padding: 0;
    background-color: var(--color-white);
    margin: 0;
}

.services-container {
    display: flex;
    gap: 0 !important;
    width: 100% !important;
    height: 1080px;
}

.service-column {
    display: flex;
    align-items: center;
    min-height: 400px;
    width: 50% !important;
    flex: none;
}

.photo-services {
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

.video-services {
    justify-content: center;
    padding-left: 0;
}

.photo-services .service-background {
    width: 100%;
    height: 1080px;
    background: url('images/videoservices-photo.png') center/cover no-repeat;
}

.service-content {
    max-width: 600px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 112px !important;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    line-height: 120px !important;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #001427;
}

/* Photo Service Section */
.photo-service-section {
    padding: 0;
    background-color: var(--color-white);
    height: 1080px;
    min-height: 600px;
    margin: 0;
}

.photo-service-container {
    display: flex;
    gap: 0;
    width: 100% !important;
    height: 1080px;
    min-height: 600px;
}

.photo-service-column {
    flex: none;
    min-height: 1080px;
    display: flex;
    align-items: center;
    width: 50% !important;
}

.photo-service-column.photo-column {
    justify-content: flex-start;
}

.photo-service-column.text-column {
    justify-content: center;
    padding-left: 0;
}

/* Photo Carousel */
.photo-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-carousel-track {
    display: flex;
    width: 300vw;
    height: 1080px !important;
    transition: transform 0.6s ease;
    overflow: hidden;
    gap: 0;
}

/* Photo Service Section Carousel */
.photo-service-section .photo-carousel-track {
    display: flex;
    width: 600vw;
    height: 1080px !important;
    transition: transform 0.6s ease;
    overflow: hidden;
    gap: 0;
}

.photo-service-section .photo-carousel-slide {
    width: 50vw;
    transition: opacity 0.6s ease;
    flex-shrink: 0;
    position: relative;
    opacity: 1;
}

.photo-carousel-slide {
    width: 50vw;
    transition: opacity 0.6s ease;
    flex-shrink: 0;
    position: relative;
    opacity: 1;
}

.photo-carousel-slide.active {
    opacity: 1;
    position: relative;
    height: auto !important;
}

.photo-services .photo-carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 1;
    pointer-events: none;
}

.photo-services .photo-carousel-controls {
    position: absolute;
    bottom: 160px;
    left: 160px;
    display: flex;
    gap: 24px;
    pointer-events: all;
    z-index: 20 !important;
}

.photo-services .photo-carousel-progress {
    position: absolute;
    bottom: 160px;
    right: 160px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 20 !important;
}

.photo-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-carousel-controls {
    position: absolute;
    bottom: 160px;
    left: 160px;
    display: flex;
    gap: 24px;
    pointer-events: none;
    padding-bottom: 160px;
}

.photo-carousel-btn {
    pointer-events: all;
    width: 64px !important;
    height: 64px !important;
    background-color: transparent;
    border: 2px solid #ffffff;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.photo-carousel-btn:hover {
    background-color: #001427;
    border-color: transparent;
}

.photo-carousel-arrow {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
}

.photo-carousel-btn:hover .photo-carousel-arrow {
    filter: brightness(0) invert(1);
}

.photo-carousel-progress {
    position: absolute;
    bottom: 160px;
    right: 160px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 160px;
    padding-right: 160px;
}

.photo-carousel-progress .photo-progress-bar {
    order: 2;
}

.photo-carousel-progress .photo-pagination {
    display: contents;
}

.photo-carousel-progress .photo-pagination .photo-page-number:first-child {
    order: 1;
}

.photo-carousel-progress .photo-pagination .photo-page-number:last-child {
    order: 3;
}

.photo-progress-bar {
    width: 160px !important;
    height: 2px !important;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.photo-progress-fill {
    height: 2px !important;
    background-color: #ffffff;
    width: 33.33%;
    transition: width 0.6s ease;
}

.photo-pagination {
    display: flex;
    gap: var(--spacing-md);
}

.photo-pagination .photo-page-number:first-child,
.photo-pagination .photo-page-number:last-child {
    display: block;
}

.photo-pagination .photo-page-number:not(:first-child):not(:last-child) {
    display: none;
}

.photo-page-number {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.photo-page-number:first-child,
.photo-page-number:last-child {
    font-size: 40px;
    color: #ffffff;
}

.photo-page-number.current {
    font-weight: 700;
    color: #ffffff;
}

.photo-service-content {
    max-width: 480px;
    text-align: left;
    padding: 0;
}

.photo-service-title {
    font-family: var(--font-serif);
    font-size: 112px !important;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    line-height: 120px !important;
}

.photo-service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #001427;
}

/* Clients Section */
.clients {
    padding: 0 0 var(--spacing-4xl) 0;
    background-color: #FAF9F7;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 400px;
    padding-left: 160px;
    padding-right: 0;
    overflow: visible;
}

.clients-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 48px;
    width: 100%;
    overflow: visible;
}

.clients-header {
    display: flex;
    align-items: center;
    gap: 48px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-shrink: 0;
}

.clients-title {
    font-family: var(--font-sans);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    color: var(--color-primary);
    margin: 0;
    padding: 0 !important;
    flex-shrink: 0;
}

.clients-grid {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 160px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    width: max-content;
    margin-right: -200px;
}

.clients-grid::-webkit-scrollbar {
    display: none;
}

/* Animation when scrolling to clients section */
.clients.fade-in .clients-grid {
    animation: slideInLogos 1.5s ease-out;
}

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

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-img {
    max-height: 64px;
    width: auto;
    opacity: 1;
    transition: opacity 0.6s ease;
    cursor: default;
}


/* Contact Section */
.contact {
    padding: var(--spacing-4xl) 0;
    background-color: #FAF9F7;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
    height: 100%;
}

.contact-description {
    max-width: 480px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-primary);
    margin: 0;
    white-space: nowrap;
    line-height: 120px !important;
}


.contact-methods {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: var(--spacing-2xl);
    max-width: none;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: 0 40px;
    height: 72px;
    background-color: var(--color-white);
    border: none;
    border-radius: 80px;
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
    background-color: #001427;
    color: var(--color-white);
}

.contact-icon {
    width: 20px;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-full);
}

.contact-btn:hover .contact-icon {
    background-color: var(--color-white);
}

.social-links {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
}

.social-text {
    width: 259px;
    height: 32px;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #001427;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.social-icons-wrapper {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #D9D9D9;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: filter 0.3s ease;
}

.social-link:hover .social-icon {
    filter: brightness(0) invert(0);
}

.social-link.youtube:hover .social-icon {
    filter: brightness(0) sepia(1) saturate(0) hue-rotate(0deg) brightness(1.2) !important;
}

/* Fade in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.clients.fade-in.visible {
    padding-left: 160px;
}

/* Footer */
.footer {
    background-color: #FAF9F7;
    color: #001427;
    text-align: center;
    padding: 80px 0 160px 0;
}

.footer p {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    max-width: none;
    text-align: center;
    color: #001427;
    background-color: #FAF9F7;
    padding: 20px;
    border-radius: 8px;
}

.footer-link {
    color: #001427;
    text-decoration: none;
    position: relative;
    transition: opacity 0.3s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #001427;
}

.footer-link:hover {
    opacity: 0.7;
}

/* Responsive Design */

/* Small Mobile (414px and up) */
@media (max-width: 414px) {
    .hero {
        height: 414px !important;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title,
    .contact-title {
        font-size: 4.5rem;
    }
    
    .dak-gevel-title {
        font-size: 4.5rem;
    }
}

/* Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        background-color: transparent;
        box-shadow: none;
        flex-direction: row;
        padding: 0;
        order: 2;
        min-width: auto;
    }

    .nav-menu li {
        margin-bottom: 0;
        margin-left: var(--spacing-lg);
    }

    .nav-menu a {
        padding: var(--spacing-sm) var(--spacing-md);
        text-align: left;
        font-size: 1.125rem;
    }
    
    .nav-menu a {
        font-size: 1.1875rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title,
    .contact-title {
        font-size: 6rem;
    }
    
    .dak-gevel-title {
        font-size: 6rem;
    }
    
    .service-title {
        font-size: 3.5rem;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .nav-menu a {
        font-size: 1.1875rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title,
    .contact-title {
        font-size: 7rem;
    }
    
    .dak-gevel-title {
        font-size: 7rem;
    }
}

/* Extra Large Desktop (1920px and up) */
@media (min-width: 1920px) {
    .nav-menu a {
        font-size: 1.1875rem;
    }
}

/* Tekstselectie */
::selection {
  background: #708D81;
  color: #ffffff;
}

/* Firefox vereist aparte selector */
::-moz-selection {
  background: #708D81;
  color: #ffffff;
}

.projecten-carousel .project-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
}

/* ================================
   Pagination layout
   ================================ */

.carousel-pagination {
    position: absolute;
    bottom: 0;
    right: 160px;
    padding-bottom: 160px;

    display: flex;
    align-items: center;
    gap: 24px;

    z-index: 15;
}

/* Numbers */
.page-number {
    font-size: 40px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.page-number.current {
    font-weight: 700;
    color: #ffffff;
}

.page-number.total {
    color: #ffffff !important;
}

/* Progress bar BETWEEN numbers */
.progress-bar {
    width: 160px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background-color: #ffffff;
    transition: width 0.6s ease;
}

/* =========================
   TABLET & MOBILE OVERRIDES
   DESKTOP BLIJFT LEIDEND
   ========================= */

/* ---------- Tablet (≤ 810px) ---------- */
@media (max-width: 810px) {

  .projecten-header-content {
    flex-direction: column;
    padding: 0 64px;
    align-items: flex-start;
  }

  .projecten-header-title {
    font-size: 64px;
    line-height: 64px !important;
    white-space: normal;
  }

  .projecten-header-description {
    width: 366px;
  }

  .projecten-carousel .carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 24px;
    padding: 0 !important;
    display: flex;
    gap: 24px;
    pointer-events: none;
    z-index: 100 !important;
  }

  .services-container,
  .photo-service-container {
    flex-direction: column;
    height: auto;
  }

  .service-column.video-services {
    height: 448px;
    order: 1 !important;
    width: 100% !important;
  }

  .service-column.photo-services {
    order: 2 !important;
    width: 100% !important;
  }

  .clients-container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .clients-header {
    text-align: center;
    align-self: center;
    width: 100%;
  }

  .clients {
    height: 224px !important;
    min-height: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
  }

  .clients-title {
    text-align: center !important;
  }

  .projecten-carousel .project-content {
    top: unset !important;
    transform: none !important;
  }

  .projecten-carousel .project-content h3 {
    text-align: left !important;
  }

  .video-services .service-column {
    margin: 24px;
  }

  .service-title,
  .photo-service-title {
    font-size: 64px !important;
    line-height: 72px !important;
  }
  
  /* Tablet projecten content positioning */
  .projecten-carousel .project-content {
    left: 80px !important;
  }
  
  /* Tablet carousel controls positioning */
  .projecten-carousel .carousel-controls {
    left: 80px !important;
  }
  
  /* Tablet video background positioning */
  .projecten-carousel .projecten-video-background {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  /* Tablet contact methods - 2 per row */
  .contact-methods {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: none !important;
  }
  
  /* Tablet contact button padding */
  .contact-btn {
    padding: 0 40px !important;
  }
  
  /* Tablet social links layout */
  .social-links {
    flex-direction: column !important;
    gap: 24px !important;
  }
  
  /* Tablet footer break after dash */
  .footer .tablet-break {
    display: block !important;
    margin-bottom: 8px !important;
  }
  
  /* Tablet footer break after privacy link */
  .footer .tablet-break-privacy {
    display: block !important;
    margin-bottom: 8px !important;
  }
  
  /* Tablet photo services full width slides */
  .photo-services .photo-carousel-slide {
    width: 100vw !important;
  }
  
  .photo-services .photo-carousel-track {
    width: 600vw !important;
  }
  
  /* Tablet service-column photo services full width slides */
  .service-column.photo-services .photo-carousel-slide {
    width: 100vw !important;
  }
  
  .service-column.photo-services .photo-carousel-track {
    width: 600vw !important;
  }
  
  /* Tablet all photo carousel slides full width */
  .photo-carousel-slide {
    width: 100vw !important;
  }
  
  /* Tablet photo carousel progress padding */
  .photo-carousel-progress {
    padding-right: 80px !important;
    padding-bottom: 80px !important;
  }
}
/* ---------- Mobile (≤ 414px) ---------- */
@media (max-width: 414px) {

  /* Ensure no horizontal overflow */
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .nav {
    padding: 24px;
    height: 88px !important;
  }

  .header {
    height: 88px !important;
  }

  .nav-logo {
    height: 40px;
  }

  .hero-background {
    width: 100vw !important;
    height: 680px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .hero {
    height: 414px !important;
    width: 100vw !important;
  }

  .hero-video {
    position: absolute !important;
    top: 25% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.5) !important;
    width: 150vw !important;
    height: 150vh !important;
    object-fit: cover !important;
    min-width: 150vw !important;
    min-height: 150vh !important;
  }

  .hero-title {
    font-size: 32px;
  }

  
  
  .projecten {
    height: 896px !important;
  }

  .projecten-header {
    height: 448px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .projecten-header-content {
    width: 366px !important;
    padding: 0 !important;
    gap: 24px !important;
  }

  .scroll-indicator {
    height: 104px !important;
  }

  .photo-service-container {
    height: auto !important;
    flex-direction: column !important;
    display: flex !important;
  }

  .photo-carousel {
    height: 448px !important;
    display: block !important;
    order: 2;
  }

  .photo-service-column.text-column {
    height: 448px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    order: 1;
    min-height: unset !important;
  }

  .photo-service-content {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .photo-carousel-track,
  .photo-carousel-slide {
    height: 448px !important;
  }

  .photo-services .photo-carousel {
    height: 448px !important;
    width: 100% !important;
    display: block !important;
    overflow: visible !important;
  }

  .photo-services .photo-carousel-track {
    display: flex !important;
    width: 600vw !important;
    height: 448px !important;
  }

  .photo-services .photo-carousel-slide {
    width: 100vw !important;
    height: 448px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .photo-services .photo-carousel-slide img {
    width: 100% !important;
    height: 448px !important;
    object-fit: cover !important;
  }

  .contact-methods {
    flex-direction: column !important;
    gap: 24px !important;
  }

  .contact-header {
    flex-direction: column !important;
    gap: 24px !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .contact-title {
    text-align: left !important;
  }

  .contact-btn {
    width: 100% !important;
    padding: 0 24px !important;
    max-width: none !important;
    flex: 1 !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
  }

  .contact-methods {
    width: 100% !important;
    max-width: none !important;
  }

  .social-links {
    flex-direction: column;
    gap: 24px !important;
    align-items: center;
  }

  .social-text {
    width: 216px;
    height: 32px;
    font-family: 'Metropolis';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    text-transform: uppercase;
    color: #001427;
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  .social-icons-wrapper {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .footer p {
    line-height: 40px !important;
    font-size: 20px !important;
    font-weight: 500 !important;
  }

  .hero {
    display: block !important;
  }

  .projecten-header-content {
    gap: 24px !important;
  }

  .projecten-carousel .project-content h3 {
    text-align: left !important;
  }

  .project-title {
    text-align: left !important;
    position: relative !important;
    z-index: 10 !important;
    margin-bottom: 20px !important;
  }

  .service-content {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .video-services .service-column {
    height: 448px !important;
  }

  .photo-carousel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    height: 448px !important;
    width: 100% !important;
  }

  .video-services .photo-carousel,
  .photo-services .photo-carousel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: 448px !important;
    width: 100% !important;
  }

  .photo-carousel-track,
  .photo-carousel-slide {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .carousel-pagination {
    text-align: center !important;
    justify-content: center !important;
  }

  .projecten-carousel .projecten-video-background {
    width: 366px !important;
    height: 360px !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    right: auto !important;
  }

  .projecten-video {
    left: -136px !important;
  }

  .photo-carousel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .video-stream html5-main-video {
    width: 100vw !important;
    height: 680px !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }

  
  .service-title,
  .photo-service-title {
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .contact-title {
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .projecten-carousel .project-title,
  .projecten-carousel .project-title-1,
  .projecten-carousel .project-title-2,
  .projecten-carousel .project-title-3,
  .projecten-carousel .project-title-4,
  .projecten-carousel .project-title-5,
  .projecten-carousel .project-title-6 {
    font-size: 64px !important;
    line-height: 64px !important;
  }

  .photo-carousel-track,
  .photo-carousel-slide {
    height: 1080px !important;
    width: 100%;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
    height: 56px;
    font-size: 18px;
  }

  /* Mobile paragraph styling */
  p {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  /* Cookie notice mobile */
  .cookie-notice {
    width: 366px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
  }

  /* Mobile navigation menu font */
  .nav-menu--active a {
    font-size: 40px !important;
    line-height: 24px !important;
  }

  /* Cookie notice mobile styling */
  .cookie-notice {
    width: 366px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    right: auto !important;
    padding-bottom: 24px !important;
    padding: 24px !important;
  }

  .cookie-content {
    gap: 24px !important;
  }

  .cookie-buttons {
    flex-direction: column !important;
    gap: 16px !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
/* =========================
   PHOTO SERVICES — MOBILE
   Pixel-perfect 414px
   ========================= */

@media (max-width: 414px) {

  /* Hele sectie */
  .photo-service-section {
    height: auto;
    min-height: unset;
    padding: 0;
  }

  .photo-service-container {
    flex-direction: column;
    height: auto;
  }

  /* Afbeelding boven */
  .photo-service-column.photo-column {
    width: 100% !important;
    min-height: unset;
  }

  .photo-carousel {
    width: 100%;
    height: 448px !important;
    overflow: hidden;
  }

  .photo-service-section .photo-carousel-track,
  .photo-service-section .photo-carousel-slide {
    height: 448px !important;
    width: 100%;
  }
  
  .photo-service-section .photo-carousel-slide {
    height: 448px !important;
    width: 100vw !important;
    flex-shrink: 0;
    position: relative;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .photo-service-section .photo-carousel-slide img {
    object-fit: cover;
    height: 448px !important;
  }

  /* Overlay iets lichter (zoals Figma) */
  .photo-services .photo-carousel-slide::before {
    background-color: rgba(0,0,0,0.25);
  }

  /* Controls onderin, compact */
  .photo-services .photo-carousel-controls {
    left: 40px !important;
    bottom: 40px !important;
    gap: 24px !important;
    z-index: 20 !important;
  }

  .photo-carousel-btn {
    width: 44px;
    height: 44px;
  }

  .photo-carousel-arrow {
    width: 18px;
    height: 18px;
  }

  /* Pagination rechts */
  .photo-services .photo-carousel-progress {
    left: 40px !important;
    bottom: 40px !important;
    gap: 12px;
    padding: 0;
    z-index: 20 !important;
  }

  .photo-progress-bar {
    width: 80px !important;
  }

  .photo-page-number:first-child,
  .photo-page-number:last-child {
    font-size: 20px;
  }

  /* Tekst onder afbeelding */
  .photo-service-column.text-column {
    width: 100% !important;
    padding: 32px 24px 0 24px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }

  .photo-service-content {
    max-width: 100%;
  }

  .photo-service-title {
    font-size: 64px !important;
    line-height: 64px !important;
    margin-bottom: 16px;
  }
/* =============================
   PHOTO SERVICES — MOBILE
   Pixel-perfect 414px Design
   ============================= */
@media (max-width: 414px) {

  /* container */
  .photo-service-section {
    padding: 0;
    min-height: unset;
    margin-bottom: 0 !important;
  }

  .photo-service-container {
    flex-direction: column !important;
    height: auto;
    align-items: center;
  }

  /* image above text */
  .photo-service-column.photo-column {
    width: 100% !important;
    min-height: unset;
    order: 3;
  }
  
  .photo-service-column.text-column {
    width: 100% !important;
    padding: 32px 24px;
    display: flex !important;
    flex-direction: column !important;
    order: 1;
    position: relative !important;
  }

  .photo-service-section .photo-carousel-progress {
    padding: 40px !important;
    bottom: 40px !important;
  }
  
  .photo-carousel-progress {
    padding-left: 0 !important;
    padding: 40px !important;
  }

  .photo-carousel {
    width: 100%;
    height: 448px !important;
    overflow: hidden;
  }

  .photo-carousel-track {
    height: 448px !important;
    width: 600vw !important;
  }
  
  .photo-carousel-slide {
    height: 448px !important;
    width: 100vw !important;
  }

  .photo-carousel-slide img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
  }

  /* overlay darkness like design */
  .photo-services .photo-carousel-slide::before {
    background-color: rgba(0, 0, 0, 0.25);
  }

  /* carousel controls */
  .photo-services .photo-carousel-controls {
    left: 40px !important;
    bottom: 40px !important;
    gap: 24px !important;
    z-index: 20 !important;
  }

  .photo-carousel-controls {
    left: 40px !important;
    bottom: 40px !important;
    gap: 24px !important;
    z-index: 20 !important;
  }

  .photo-carousel-btn {
    width: 44px;
    height: 44px;
    border: 2px solid #ffffff;
  }

  .photo-carousel-arrow {
    width: 18px;
    height: 18px;
  }

  /* pagination bar & numbers */
  .photo-services .photo-carousel-progress {
    left: 40px !important;
    bottom: 40px !important;
    gap: 12px;
    z-index: 20 !important;
  }

  .photo-progress-bar {
    width: 80px !important;
    height: 2px !important;
  }

  .photo-page-number:first-child,
  .photo-page-number:last-child {
    font-size: 20px;
    font-weight: 600;
  }

  /* title + description section */
  .photo-service-column.text-column {
    width: 100% !important;
    padding: 24px 20px;
    text-align: left;
    order: 2;
    height: 448px !important;
  }

  .photo-service-title {
    font-size: 64px !important;
    line-height: 64px !important;
    margin-bottom: 16px;
    text-transform: none;
  }
  
  .photo-service-section .photo-carousel-btn {
    pointer-events: all !important;
    z-index: 100 !important;
    position: relative !important;
  }

  .photo-service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-primary);
  }

  /* spacing under section */
  .photo-service-section {
    margin-bottom: 32px;
  }

/* =========================
   PROJECTEN — MOBILE
   ========================= */

@media (max-width: 414px) {
  .projecten-carousel {
    height: 896px !important;
  }
  
  .photo-service-section .photo-carousel-progress {
    padding: 40px !important;
    bottom: 40px !important;
  }
  
  .projecten-carousel .project-content {
    left: 50% !important;
    transform: translateX(-50%) translateY(-50%) !important;
    text-align: center !important;
    line-height: 64px !important;
  }
  
  .projecten-carousel .project-content h3 {
    line-height: 64px !important;
    transform: translateY(152px) !important;
  }
  
  .projecten-carousel .carousel-pagination {
    right: auto !important;
    left: 24px !important;
    justify-content: flex-start !important;
    bottom: -100px !important;
    font-size: 24px !important;
  }
  
  .projecten-carousel .carousel-controls {
    bottom: 152px !important;
    left: 24px !important;
  }
  
  .projecten-carousel .page-number.current,
  .projecten-carousel .page-number.total {
    font-size: 24px !important;
  }
  
  .projecten-carousel .project-title-1,
  .projecten-carousel .project-title-2,
  .projecten-carousel .project-title-3,
  .projecten-carousel .project-title-4,
  .projecten-carousel .project-title-5,
  .projecten-carousel .project-title-6 {
    line-height: normal !important;
  }
}
/* Desktop photo carousel height fix */
@media (min-width: 769px) {
  .photo-carousel-slide {
    height: 1080px !important;
  }
  
  .photo-carousel-track {
    height: 1080px !important;
  }
}

.photo-service-container {
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px) {
    .photo-service-container {
        flex-direction: column;
    }

    .photo-service-column.text-column {
        order: 1;
    }

    .photo-service-column.carousel-column {
        order: 2;
        position: relative;
    }
    
    /* Fix photo carousel for mobile */
    .photo-carousel-track {
        width: 600vw !important;
        height: 448px !important;
    }
    
    .photo-carousel-slide {
        width: 100vw !important;
        height: 448px !important;
    }
    
    /* Fix photo service section carousel for mobile */
    .photo-service-section .photo-carousel {
        overflow: hidden !important;
        height: 448px !important;
    }
    
    .photo-service-section .photo-carousel-track {
        display: flex !important;
        width: 600vw !important;
        height: 448px !important;
        transition: transform 0.6s ease !important;
    }
    
    .photo-service-section .photo-carousel-slide {
        width: 100vw !important;
        height: 448px !important;
        flex-shrink: 0 !important;
    }
    
    .clients-header {
        width: auto !important;
    }
    
    .clients-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 24px !important;
        padding: 0 24px !important;
        width: 100% !important;
    }
    
    .client-logo {
        flex: 0 0 auto !important;
        min-width: 150px !important;
        scroll-snap-align: center !important;
    }
    
    .photo-services .photo-carousel-progress {
        padding-left: 0 !important;
        padding-bottom: 40px !important;
    }
    
    .photo-services .service-column {
        width: auto !important;
    }
    
    .video-section .service-column {
        width: auto !important;
    }
    
    .service-column {
        width: auto !important;
    }
    
    .service-column.video-services {
        width: auto !important;
    }
}

/* Desktop cookie buttons - side by side */
@media (min-width: 769px) {
    .cookie-accept-btn {
        width: auto;
        flex: 1;
    }
}

/* Mobile cookie buttons - stacked */
@media (max-width: 768px) {
    .cookie-accept-btn {
        width: 100%;
        flex: none;
    }
}
/* =========================
   TABLET BREAKPOINT – 810px
   (Windsurf free)
   ========================= */
@media screen and (min-width: 768px) and (max-width: 1024px) {

    /* Algemene container spacing */
    .container,
    .section,
    .content {
        padding-left: 32px;
        padding-right: 32px;
    }

    /* Typografie iets kleiner dan desktop */
    h1 {
        font-size: 48px;
        line-height: 1.1;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 16px;
    }

    /* 2 kolommen i.p.v. desktop layout */
    .grid,
    .columns,
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* Hero / header iets compacter */
    .hero,
    .projects-header {
        min-height: 70vh;
    }

}
