/* ========================================
   MASTERWORX - HOMEPAGE STYLES
   Handgemaakte Meubels met Warm Design
   ======================================== */

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kleuren - Masterworx Origineel (Goud met subtiel blauw) */
    --color-primary: #C9A961;      /* Warm goud - hoofdkleur */
    --color-secondary: #1A1410;    /* Donker bruin/zwart achtergrond */
    --color-dark: #0F0E0C;         /* Extra donker voor contrast */
    --color-light: #F5F0E8;        /* Warm licht beige */
    --color-white: #FFFFFF;
    --color-text: #E8DFD0;         /* Warme lichte tekst */
    --color-text-muted: #A89778;   /* Gedempte beige tekst */
    --color-text-light: var(--color-white); /* Alias: gebruikt in pagina-specifieke CSS */
    --color-blue: #1d2535;         /* Donker blauw voor header/footer */
    --color-gold: #C9A961;         /* Alias voor primary */
    
    /* Typografie */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-dark);
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Secties algemeen */
section {
    position: relative;
    padding: var(--spacing-xxl) 0;
}

/* Section Titels */
.section-title {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-light);
}


/* ========================================
   🧭 NAVIGATIE BALK
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(29, 37, 53, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background-color: rgba(15, 14, 12, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    transition: transform var(--transition-normal);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-link {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-normal);
}

.navbar-link:hover {
    color: var(--color-white);
}

.navbar-link:hover::after {
    width: 80%;
}

.navbar-link.active {
    color: var(--color-primary);
}

.navbar-link.active::after {
    width: 80%;
}

.navbar-link-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, #C99A66 100%);
    color: var(--color-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: var(--font-weight-bold);
}

.navbar-link-cta::after {
    display: none;
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 169, 97, 0.08);
    border: 2px solid rgba(201, 169, 97, 0.4);
    color: var(--color-white);
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    border-color: var(--color-primary);
    background: rgba(201, 169, 97, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}

.lang-btn.active {
    border-color: var(--color-primary);
    background: rgba(201, 169, 97, 0.12);
}

.lang-btn .flag-icon {
    width: 28px;
    height: 20px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn .dropdown-arrow {
    width: 12px;
    height: 8px;
    transition: transform var(--transition-normal);
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.lang-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.98) 0%, rgba(15, 14, 12, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 12px;
    padding: 0.6rem;
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(201, 169, 97, 0.1);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.8rem 0.9rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.lang-option:hover {
    background: rgba(201, 169, 97, 0.2);
    color: var(--color-primary);
    transform: translateX(3px);
}

.lang-option .flag-icon {
    width: 32px;
    height: 22px;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option span {
    font-weight: var(--font-weight-semibold);
}

.navbar-link-cta:hover {
    background: var(--color-dark);
    color: var(--color-primary);
    box-shadow: inset 0 0 0 2px var(--color-primary);
    transform: translateY(-2px);
}

.navbar-link-cta.active {
    background: var(--color-dark);
    color: var(--color-primary);
    box-shadow: inset 0 0 0 2px var(--color-primary);
}

/* Mobile Toggle Button */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* ========================================
   🎥 1. HERO SECTIE - Full-width Video
   ======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.2) 0%,
        rgba(26, 26, 26, 0.1) 50%,
        rgba(13, 13, 13, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--spacing-md);
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    display: none;
}

.scroll-arrow {
    display: none;
}


/* ========================================
   🎬 2. DE 3-STAPPEN VIDEO SECTIE
   ======================================== */
.three-steps-section {
    background-color: var(--color-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: var(--spacing-lg);
}

.step-card {
    position: relative;
    background-color: var(--color-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-normal);
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-video-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.step-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: brightness(0.7);
}

.step-card:hover .step-video {
    transform: scale(1.05);
    filter: brightness(1);
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.3) 0%,
        rgba(13, 13, 13, 0.7) 100%
    );
    transition: opacity var(--transition-normal);
}

.step-card:hover .step-overlay {
    opacity: 0.3;
}

.step-content {
    padding: var(--spacing-md);
}

.step-number {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.step-title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.step-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* ========================================
   🎦 3. PROJECTEN / PORTFOLIO SECTIE
   ======================================== */
.portfolio-section {
    background-color: var(--color-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: var(--spacing-md);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.portfolio-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-video,
.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-video,
.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(13, 13, 13, 0.95) 0%,
        rgba(13, 13, 13, 0.3) 50%,
        rgba(13, 13, 13, 0) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.portfolio-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

.portfolio-view {
    display: inline-block;
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}


/* ========================================
   🧱 4. WAAROM MASTERWORX?
   ======================================== */
.why-section {
    background-color: var(--color-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: var(--spacing-lg);
}

.why-card {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--color-dark);
    border-radius: 8px;
    transition: all var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.2);
}

.why-icon {
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    transition: transform var(--transition-normal);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-xs);
}

.why-description {
    font-size: 1rem;
    color: var(--color-text-muted);
}


/* ========================================
   📞 5. CONTACT / OFFERTE BLOK
   ======================================== */
.contact-section {
    background: linear-gradient(
        135deg,
        var(--color-dark) 0%,
        var(--color-secondary) 100%
    );
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.contact-text {
    max-width: 600px;
}

.contact-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.contact-info {
    margin-bottom: var(--spacing-lg);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    font-size: 1.1rem;
}

.contact-info-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: #1d2535;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:visited {
    color: var(--color-white);
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:visited {
    color: var(--color-white);
}

/* Enforce consistent footer text-link appearance across pages and states */
.footer .footer-links a,
.footer .footer-links a:visited,
.footer .footer-section p a,
.footer .footer-section p a:visited {
    color: var(--color-white) !important;
    text-decoration: none !important;
}

.footer .footer-links a:hover,
.footer .footer-links a:focus,
.footer .footer-links a:active,
.footer .footer-section p a:hover,
.footer .footer-section p a:focus,
.footer .footer-section p a:active {
    color: var(--color-gold) !important;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    color: var(--color-primary);
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}


/* ========================================
   PORTFOLIO MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    z-index: 1001;
    max-width: 1200px;
    width: 90%;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1002;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background-color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-video {
    width: 100%;
    display: block;
}

.modal-info {
    padding: var(--spacing-md);
}

.modal-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.modal-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 1024px) {
    .navbar-container {
        height: 70px;
    }
    
    .navbar-logo img {
        height: 45px;
    }
    
    .navbar-menu {
        gap: var(--spacing-sm);
    }
    
    .navbar-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-text .section-title {
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }
    
    /* Mobile Navigation */
    .navbar-container {
        height: 60px;
        padding: 0 var(--spacing-sm);
    }
    
    .navbar-logo img {
        height: 40px;
    }
    
    .navbar-toggle {
        display: flex;
        z-index: 1002;
        position: absolute;
        right: 10px;
        top: 10px;
    }
    
    .navbar-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 60px);
        background-color: rgba(26, 20, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--spacing-lg) 0;
        gap: 0;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    }
    
    .navbar-link {
        display: block;
        width: 100%;
        padding: var(--spacing-md);
        font-size: 1.2rem;
    }
    
    .navbar-link::after {
        display: none;
    }
    
    .navbar-link-cta {
        margin: var(--spacing-md);
        width: calc(100% - 2 * var(--spacing-md));
        padding: var(--spacing-md);
    }
    
    .navbar-link-cta:hover {
        padding: calc(var(--spacing-md) - 2px);
    }
    
    /* Language Switcher op mobiel - in het menu */
    .language-switcher {
        position: relative;
        margin-left: 0;
        margin-top: var(--spacing-md);
        width: 100%;
        display: flex;
        justify-content: center;
        padding: var(--spacing-md);
        border-top: 2px solid rgba(201, 169, 97, 0.2);
    }
    
    .lang-btn {
        padding: 0.7rem 1.2rem;
        width: auto;
        min-width: auto;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .lang-btn .flag-icon {
        width: 24px;
        height: 16px;
    }
    
    .lang-btn .dropdown-arrow {
        width: 12px;
        height: 8px;
    }
    
    .lang-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
        min-width: 180px;
        top: calc(100% + 0.5rem);
    }
    
    .lang-dropdown.active {
        transform: translateX(-50%) translateY(0);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .steps-grid,
    .portfolio-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
}


/* ========================================
   ANIMATIES & SCROLL EFFECTEN
   ======================================== */

/* Fade-in animatie voor secties */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth hover transition voor video's */
video {
    will-change: transform;
}

/* ========================================
   WHATSAPP BUTTON - VAST RECHTSONDER
   ======================================== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    z-index: 9999;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 34px;
    height: 34px;
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button svg {
        width: 30px;
        height: 30px;
    }
}

/* ========================================
   PROJECT MODAL
   ======================================== */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.project-modal-content {
    position: relative;
    background: linear-gradient(135deg, #1A1410 0%, #0F0E0C 100%);
    width: 95%;
    max-width: 1400px;
    max-height: 90vh;
    height: 90vh;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(201, 169, 97, 0.15);
    z-index: 10001;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    padding: 40px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(201, 169, 97, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-dark);
    transform: rotate(90deg) scale(1.1);
    border-color: var(--color-primary);
}

.project-modal-images {
    padding: 0;
}

.project-main-image {
    width: 100%;
    height: calc(90vh - 220px);
    max-height: 450px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(201, 169, 97, 0.1);
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-thumbnail-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.project-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-thumb:hover {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.project-modal-info {
    padding: 0 15px 0 0;
    overflow-y: auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.project-modal-info::-webkit-scrollbar {
    width: 6px;
}

.project-modal-info::-webkit-scrollbar-track {
    background: rgba(201, 169, 97, 0.05);
    border-radius: 10px;
}

.project-modal-info::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 97, 0.3);
    border-radius: 10px;
}

.project-modal-info::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.project-modal-info h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.project-status {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(201, 169, 97, 0.2);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.project-details-box {
    background: linear-gradient(135deg, rgba(26, 20, 16, 0.8) 0%, rgba(15, 14, 12, 0.6) 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    box-shadow: inset 0 1px 0 rgba(201, 169, 97, 0.1);
}

.project-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.12);
}

.project-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    color: rgba(232, 223, 208, 0.65);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.detail-value {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
}

.project-description {
    margin-bottom: 20px;
    flex: 1;
}

.project-description h3 {
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.project-description p {
    color: rgba(232, 223, 208, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-actions {
    display: flex;
    gap: 15px;
}

.btn-project-primary,
.btn-project-secondary {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-project-primary {
    background: var(--color-primary);
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
}

.btn-project-primary:hover {
    background: transparent;
    color: var(--color-primary);
}

.btn-project-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(201, 169, 97, 0.3);
}

.btn-project-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .project-modal-content {
        width: 95%;
        max-height: 95vh;
        height: auto;
        grid-template-columns: 1fr;
        overflow-y: auto;
        gap: 20px;
        padding: 20px;
    }
    
    .project-main-image {
        height: 250px;
    }
    
    .project-thumbnail-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-actions {
        flex-direction: column;
    }
}

/* ========================================
   📧 NEWSLETTER SECTIE
   ======================================== */
.newsletter-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0D0B09 0%, #121008 50%, #0D0B09 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.newsletter-bg-decor {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 10% 50%, rgba(201, 169, 97, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 90% 50%, rgba(201, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* LEFT SIDE */
.newsletter-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.newsletter-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-align: left;
}

.newsletter-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 223, 208, 0.7);
    margin-bottom: 2rem;
    text-align: left;
}

.newsletter-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-perks li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: rgba(232, 223, 208, 0.85);
}

.newsletter-perks li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* RIGHT SIDE - FORM */
.newsletter-right {
    background: rgba(26, 20, 16, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.18);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.newsletter-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.4), transparent);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.newsletter-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
}

.newsletter-form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(232, 223, 208, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.newsletter-form-group .required {
    color: var(--color-gold);
}

.newsletter-form-group input[type="text"],
.newsletter-form-group input[type="email"] {
    width: 100%;
    padding: 0.875rem 1.125rem;
    background: rgba(15, 14, 12, 0.6);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 10px;
    color: var(--color-text);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.newsletter-form-group input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.12);
}

.newsletter-form-group input::placeholder {
    color: rgba(232, 223, 208, 0.3);
}

.newsletter-form-group input.error {
    border-color: #e05252;
}

.field-error {
    font-size: 0.8rem;
    color: #e07070;
    display: none;
    margin-top: 0.2rem;
}

.field-error.visible {
    display: block;
}

/* Checkbox */
.checkbox-group {
    margin-top: 0.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid rgba(201, 169, 97, 0.4);
    border-radius: 5px;
    background: rgba(15, 14, 12, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: 2px solid #0F0E0C;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translate(-1px, -1px);
    display: block;
}

.checkbox-text {
    font-size: 0.875rem;
    color: rgba(232, 223, 208, 0.7);
    line-height: 1.5;
}

/* Submit button */
.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: var(--color-dark);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    margin-top: 0.25rem;
}

.newsletter-btn:hover {
    background: #e0bc70;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.newsletter-btn:active {
    transform: translateY(0);
}

.newsletter-btn svg {
    transition: transform 0.25s ease;
}

.newsletter-btn:hover svg {
    transform: translateX(4px);
}

/* SUCCESS STATE */
.newsletter-success {
    display: none;
    text-align: center;
    padding: 1rem 0;
    animation: fadeInUp 0.4s ease;
}

.newsletter-success.visible {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 97, 0.15);
    border: 2px solid rgba(201, 169, 97, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--color-gold);
}

.newsletter-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.newsletter-success p {
    color: rgba(232, 223, 208, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-right {
        padding: 1.75rem 1.25rem;
    }
}
