/* ===== CSS VARIABLES & RESET ===== */
:root {
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-light: #eeeeee;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 1000;
    height: 80px;
    border-bottom: 0.5px solid var(--border-light);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Main Navigation */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

nav a:hover {
    color: var(--black);
}

nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--black);
    transition: width 0.3s ease;
}

nav a:hover:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-tag {
    display: flex;
    align-items: center;
    background: var(--gray-light);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
}

.location-tag i {
    margin-right: 6px;
    color: var(--text-light);
}

.phone-number {
    display: flex;
    align-items: center;
    background: var(--black);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.phone-number span {
    color: #ffffff !important;
}

.phone-number i {
    color: #ffffff !important;
    margin-right: 6px;
}

.phone-number:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid var(--border-light);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    color: var(--black);
    padding-left: 1.8rem;
}

.dropdown-menu a:after {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top: 80px;
    background: var(--white);
}

.hero-carousel {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
/* === CAROUSEL VISIBILITY FIX === */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
}

/* Zorg dat alleen de active slide zichtbaar is */
.carousel-slide:not(.active) {
    pointer-events: none !important;
}

.carousel-slide.active {
    pointer-events: auto !important;
}

/* Zorg dat buttons van active slide klikbaar zijn */
.carousel-slide.active .cta-button {
    pointer-events: auto !important;
    position: relative;
    z-index: 2;
}

/* Zorg dat content boven de background image staat */
.hero-content > * {
    position: relative;
    z-index: 1;
}

.carousel-slide .hero-content {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
}
.carousel-slide.active {
    opacity: 1;
}

.carousel-slide:nth-child(1) {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), 
                      url('img/hero4.jpeg');
}

.carousel-slide:nth-child(2) {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), 
                      url('img/hero2.jpg');
}

.carousel-slide:nth-child(3) {
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0.1)), 
                      url('img/hero3.jpg');
}

.hero-content {
    max-width: 600px;
    padding: 0 40px;
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--black);
    font-weight: 600;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--black);
}

.cta-button:hover {
    background: transparent;
    color: var(--black);
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-indicator.active {
    background-color: var(--black);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background-color: var(--black);
    transform: scale(1.1);
}

/* ===== SECTION STYLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 20px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== COLLECTION SECTION ===== */
.collection-section {
    padding: 80px 0;
    background: var(--white);
}

/* COLLECTION GRID - 8 ITEMS IN 2 RIJEN VAN 4 */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolommen voor desktop */
    gap: 1.5rem;
}

.collection-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.collection-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-content {
    padding: 1.5rem;
}

.collection-content h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.collection-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.collection-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.collection-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.collection-features i {
    color: var(--black);
    font-size: 0.8rem;
}

/* RESPONSIVE COLLECTION GRID */
@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 kolommen voor tablets */
    }
}

@media (max-width: 900px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolommen voor small tablets */
    }
}

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr; /* 1 kolom voor mobile */
    }
    
    .collection-card {
        max-width: 400px;
        margin: 0 auto;
    }
}
/* ===== SERVICES SECTION ===== */
.creative-services {
    padding: 80px 0;
    background: var(--white);
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
    grid-auto-flow: dense;
}

.service-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item.large {
    grid-column: span 2;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.service-item:hover .service-overlay {
    transform: translateY(0);
}

.service-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-overlay p {
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.service-badge {
    background: var(--black);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: var(--gray-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;  /* Toont volledige foto zonder vervorming */
    object-position: center; /* Centreert de foto */
}

.location-badge {
    background: var(--white);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.location-badge i {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
    display: block;
}

.location-badge span {
    font-weight: 600;
    font-size: 1rem;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 8px;
}

.contact-item i {
    color: var(--black);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--black);
    font-size: 1rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--black);
}

.contact-form {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form h3 {
    color: var(--black);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
}

/* ===== FOOTER ===== */
footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}
/* ===== PRODUCT DETAIL PAGES ===== */
.product-detail {
    padding: 120px 0 80px;
    background: var(--white);
}

.product-header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-header h1 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Product Gallery */
.product-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-main {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-thumbs img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.thumb-active {
    border-color: var(--black);
    transform: scale(1.05);
}

.gallery-thumbs img:hover {
    opacity: 0.8;
}

.thumb-active {
    border: 2px solid var(--black) !important;
}

/* Product Info Components */
.product-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.product-info h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--black);
}
/* Features Slider */
.features-slider {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.features-track {
    display: flex;
    animation: scrollFeatures 30s linear infinite;
}

.feature-block {
    flex: 0 0 25%;
    background: var(--gray-light);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes scrollFeatures {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--black);
}

.feature-item i {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.material-card {
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--black);
}

.material-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--black);
}

.spec-label {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.spec-value {
    color: var(--text-light);
    line-height: 1.5;
}

.price-indication {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.cta-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.cta-button.secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.cta-button.secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* ===== SIDE GALLERY LAYOUT ===== */
.product-gallery-side {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.side-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.side-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 200px;
}

.side-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.side-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.side-gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== APPLICATION GRIDS ===== */
.installation-types,
.usage-scenarios,
.ideal-for,
.room-applications {
    margin-top: 2rem;
}

.installation-grid,
.scenarios-grid,
.ideal-grid,
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.installation-item,
.scenario-item,
.ideal-item,
.application-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--black);
    transition: transform 0.3s ease;
}

.installation-item:hover,
.scenario-item:hover,
.ideal-item:hover,
.application-item:hover {
    transform: translateY(-5px);
}

.installation-item i,
.scenario-item i,
.ideal-item i,
.application-item i {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
    display: block;
}

.installation-item h4,
.scenario-item h4,
.ideal-item h4,
.application-item h4 {
    color: var(--black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.installation-item p,
.scenario-item p,
.ideal-item p,
.application-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.brands-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.brands-track {
    display: flex;
    animation: scrollBrands 40s linear infinite;
    gap: 0;
}

.brand-item {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--gray-light);
    border: 1px solid var(--border-light);
    min-height: 120px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-item img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.brands-container::before,
.brands-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.brands-container::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.brands-container::after {
    right: 0;
    background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: var(--black);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.social-sidebar {
    display: none;
}

.facebook { background: #000000; }
.instagram { background: #000000; }
.tiktok { background: #000000; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    /* Hero, About, Contact, Brands */
    .hero h2 { font-size: 2.5rem; }
    .about-content, .contact-content { grid-template-columns: 1fr; gap: 3rem; }
    .brand-item { flex: 0 0 33.333%; padding: 1.5rem 1rem; }
    .brand-item img { max-width: 120px; max-height: 50px; }
    @keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-150%); } }
}

@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 1rem; text-align: center; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .header-actions { flex-direction: column; gap: 0.8rem; }
    .mobile-menu-toggle { display: block; }
    .main-nav { position: absolute; top: 100%; left: 0; width: 100%; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); display: none; }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav li { border-bottom: 1px solid #eee; }
    .main-nav a { display: block; padding: 1rem; }
    .hero h2 { font-size: 2rem; } .hero p { font-size: 1.1rem; }
    .stats, .product-content { grid-template-columns: 1fr; gap: 1rem; }
    .side-gallery-item { height: 150px; } .gallery-main { height: 300px; } .gallery-thumbs img { height: 120px; }
    .installation-grid, .scenarios-grid, .ideal-grid, .applications-grid { grid-template-columns: 1fr 1fr; }
    .materials-grid { grid-template-columns: 1fr; }
    .brand-item { flex: 0 0 50%; padding: 1rem 0.5rem; min-height: 100px; } 
    .brand-item img { max-width: 100px; max-height: 40px; } 
    @keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-200%); } }
    .brands-container::before, .brands-container::after { display: none; }
    .floating-buttons { right: 10px; bottom: 1rem; top: auto; transform: none; }
    .floating-btn, .social-btn { width: 40px; height: 40px; font-size: 1rem; }
    .dropdown-menu { position: static; box-shadow: none; background: transparent; padding: 0; opacity: 1; visibility: visible; transform: none; display: none; border: none; }
    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 0.8rem 1rem 0.8rem 2rem; border-bottom: 1px solid var(--border-light); }
}

@media (max-width: 480px) {
    .hero h2 { font-size: 1.8rem; }
    .cta-button { padding: 12px 25px; font-size: 0.95rem; }
    .section-title h2 { font-size: 1.8rem; }
    .collection-content { padding: 1.5rem; }
    .contact-form { padding: 2rem; }
    .container { padding: 0 15px; }
    .side-gallery-grid { grid-template-columns: 1fr; }
    .side-gallery-item { height: 200px; }
    .gallery-main { height: 250px; } .gallery-thumbs img { height: 100px; }
    .installation-grid, .scenarios-grid, .ideal-grid, .applications-grid { grid-template-columns: 1fr; }
    .brand-item { flex: 0 0 100%; min-height: 80px; } .brand-item img { max-width: 80px; max-height: 35px; }
}
/* ===== MOBIELE HEADER OPTIMALISATIE ===== */
@media (max-width: 768px) {
    /* Header compacter maken */
    header {
        height: 60px;
        padding: 0 15px;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo en hamburger menu */
    .header-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 0;
    }

    /* Verberg desktop header acties */
    .header-actions {
        display: none;
    }

    /* Hamburger menu */
    .mobile-menu-toggle {
        display: block;
        font-size: 1.6rem;
        cursor: pointer;
        z-index: 1500;
        color: var(--text-dark);
        background: none;
        border: none;
    }

    /* Mobiele navigatie */
    .main-nav {
        position: fixed;
        top: 60px; /* direct onder header */
        left: 0;
        width: 100%;
        height: calc(100% - 60px);
        background: var(--white);
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        display: block;
        z-index: 1200;
        padding-top: 1rem;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-light);
    }

    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: var(--text-dark);
    }

    /* Dropdown menu in mobiel menu */
    .dropdown-menu {
        display: none;
        flex-direction: column;
        padding-left: 1rem;
        margin: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-menu a {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
    }

    /* Hero margin aanpassen voor nieuwe header hoogte */
    .hero {
        margin-top: 60px;
        z-index: 0;
    }

    /* Eventueel hero tekst kleiner maken */
    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}
/* ===============================
   ✅ MOBIELE HERSTRUCTURERING
   (Desktop blijft onaangetast)
   =============================== */
@media (max-width: 768px) {

  /* Algemene reset en structuur */
  body, html {
    overflow-x: hidden;
  }

  /* Hero sectie — tekst gecentreerd, geen overlap */
  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: auto;
    min-height: 70vh;
    padding: 2rem 1rem;
    background-size: cover;
    background-position: center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.6);
    z-index: 0;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero h1, .hero h2 {
    font-size: 1.8rem !important;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .hero .button, .hero a.button {
    display: inline-block;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  /* Floating buttons — onderaan scherm */
  .floating-buttons {
    position: fixed !important;
    bottom: 1rem !important;
    right: 1rem !important;
    top: auto !important;
    transform: none !important;
    flex-direction: row !important;
    gap: 0.6rem !important;
    z-index: 999 !important;
  }

  /* Header/menu — geen overlap, duidelijke structuur */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .menu-toggle {
    display: block !important;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }

  /* Content-secties beter stapelen */
  section, .section {
    padding: 2rem 1rem;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 2rem 1rem;
  }
}
/* ============================================
   MOBIELE WEERGAVE FIXES - ALLEEN VOOR < 768px
   Desktop blijft volledig hetzelfde
   ============================================ */

@media (max-width: 768px) {
    /* ===== CRITICAL MOBILE RESET ===== */
    body {
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    /* ===== HEADER & NAVIGATION FIX ===== */
    header {
        height: 60px !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-light);
    }
    
    .header-content {
        height: 60px !important;
        padding: 0 15px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .logo img {
        height: 35px !important;
        width: auto !important;
    }
    
    /* Hide desktop contact info */
    .header-contact {
        display: none !important;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        font-size: 1.4rem;
        color: var(--text-dark);
        cursor: pointer;
        z-index: 1001;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: var(--gray-light);
    }
    
    /* Navigation complete rewrite */
    nav {
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - 60px) !important;
        background: white !important;
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
    }
    
    nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column !important;
        padding: 1rem 0 !important;
        margin: 0 !important;
        gap: 0 !important;
        width: 100%;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    nav a {
        display: flex !important;
        align-items: center !important;
        padding: 1.2rem 1.5rem !important;
        font-size: 1.1rem !important;
        color: var(--text-dark) !important;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    nav a:hover {
        background: var(--gray-light);
        color: var(--black) !important;
    }
    
    /* Dropdown fixes */
    .dropdown-toggle {
        justify-content: space-between !important;
    }
    
    .dropdown-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: var(--gray-light) !important;
        display: none !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        min-width: auto !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown-menu a {
        padding: 1rem 1.5rem 1rem 2.5rem !important;
        font-size: 1rem !important;
        border-bottom: 1px solid var(--border-light);
        color: var(--text-light) !important;
        font-weight: 400;
    }
    
    .dropdown-menu a:hover {
        background: var(--gray-medium) !important;
        color: var(--black) !important;
        padding-left: 3rem !important;
    }
    
    /* ===== HERO SECTION FIX ===== */
    .hero {
        margin-top: 60px !important;
        height: 60vh !important;
        min-height: 500px;
        max-height: 600px;
    }
    
    .hero-content {
        padding: 0 20px !important;
        text-align: center;
        max-width: 100% !important;
    }
    
    .hero h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    .carousel-indicators {
        bottom: 25px !important;
    }
    
    .carousel-indicator {
        width: 8px !important;
        height: 8px !important;
    }  

    /* ===== FLOATING BUTTONS FIX ===== */
    .floating-buttons {
        position: fixed !important;
        bottom: 20px !important;
        right: 15px !important;
        top: auto !important;
        transform: none !important;
        flex-direction: column !important;
        gap: 12px !important;
        z-index: 998 !important;
    }
    
    .floating-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    }
    
    /* ===== CONTENT SECTIONS FIX ===== */
    /* Zorg voor consistente padding */
    .collection-section,
    .creative-services,
    .about,
    .contact-section,
    .brands-section,
    .features-slider {
        padding: 50px 0 !important;
    }
    
    .container {
        padding: 0 15px !important;
    }
    
    /* Section titles */
    .section-title {
        margin-bottom: 3rem !important;
        padding: 0 10px !important;
    }
    
    .section-title h2 {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
        padding: 0 10px;
    }
    
    /* ===== COLLECTION GRID FIX ===== */
    .collection-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .collection-card {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }
    
    .collection-image {
        height: 220px !important;
    }
    
    .collection-content {
        padding: 1.5rem !important;
    }
    
    /* ===== SERVICES MASONRY FIX ===== */
    .services-masonry {
        grid-template-columns: 1fr !important;
        grid-auto-rows: 200px !important;
        gap: 1.5rem !important;
    }
    
    .service-item.large {
        grid-column: 1 !important;
    }
    
    .service-overlay {
        padding: 1.5rem !important;
    }
    
    .service-overlay h3 {
        font-size: 1.2rem !important;
    }
    
    /* ===== ABOUT SECTION FIX ===== */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .about-image {
        height: 300px !important;
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-text h2 {
        font-size: 1.8rem !important;
    }
    
    .stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
        margin-top: 2rem !important;
    }
    
    .stat {
        padding: 1rem 0.5rem !important;
    }
    
    .stat-number {
        font-size: 1.5rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
    
    /* ===== CONTACT SECTION FIX ===== */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .contact-form {
        padding: 2rem !important;
    }
    
    .contact-item {
        padding: 1rem !important;
    }
    
    /* ===== BRANDS SECTION FIX ===== */
    .brands-track {
        animation: scrollBrandsMobile 30s linear infinite !important;
    }
    
    .brand-item {
        flex: 0 0 50% !important;
        min-height: 100px !important;
        padding: 1.5rem 1rem !important;
    }
    
    .brand-item img {
        max-width: 120px !important;
        max-height: 50px !important;
    }
    
    @keyframes scrollBrandsMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(-200%); }
    }
    
    /* ===== FEATURES SLIDER FIX ===== */
    .features-track {
        animation: scrollFeaturesMobile 40s linear infinite !important;
    }
    
    .feature-block {
        flex: 0 0 50% !important;
        padding: 2rem 1.5rem !important;
        min-height: 120px !important;
    }
    
    @keyframes scrollFeaturesMobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(-200%); }
    }
    
    /* ===== FOOTER FIX ===== */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }
    
    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* ===== SCROLL TO TOP BUTTON ===== */
    .scroll-to-top {
        bottom: 90px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }
    
    /* ===== UTILITY CLASSES ===== */
    /* Zorg dat anchor links niet achter header komen */
    html {
        scroll-padding-top: 60px;
    }
    
    /* Verbeterde touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Voorkom zoom op focus op iOS */
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.7rem !important;
    }
    
    .hero {
        height: 55vh !important;
        min-height: 450px;
    }
    
    .section-title h2 {
        font-size: 1.8rem !important;
    }
    
    .feature-block {
        flex: 0 0 100% !important;
    }
    
    .brand-item {
        flex: 0 0 100% !important;
    }
    
    .floating-btn {
        width: 45px !important;
        height: 45px !important;
    }
    
    .stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}
@media (max-width: 768px) {
    /* Zorg dat dropdown pijltjes goed staan */
    .dropdown-toggle {
        justify-content: space-between !important;
        padding-right: 1.5rem !important;
    }
    
    .dropdown-toggle .fa-chevron-down {
        transition: transform 0.3s ease;
        margin-left: auto;
    }
    
    .dropdown.active .dropdown-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }
    
    /* Zorg dat dropdown items duidelijk zichtbaar zijn */
    .dropdown-menu a {
        background: transparent !important;
        color: var(--text-dark) !important;
        font-weight: 500 !important;
    }
    
    .dropdown-menu a:hover {
        background: var(--gray-light) !important;
        color: var(--black) !important;
    }
}
/* ===== COLLECTION GRID FIX - 8 ITEMS IN 2 RIJEN ===== */
/* Deze CSS overschrijft alle conflicterende regels */
.collection-grid {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1200px) {
    .collection-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 900px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr !important;
    }
}