/* --- Diensten Page Specific Styles --- */

/* --- Diensten Hero Section --- */
.diensten-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.diensten-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.diensten-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.diensten-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.diensten-hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.diensten-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.diensten-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 40px;
}

.diensten-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.diensten-hero-cta .btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

.diensten-hero-cta .btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

/* Scroll indicator */
.diensten-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.diensten-scroll-indicator svg {
    opacity: 0.6;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* --- Intro Section --- */
.diensten-intro {
    padding: 80px 0;
}

.diensten-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diensten-intro-content .subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
}

.diensten-intro-content h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.diensten-intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #a0a0a0;
    margin-bottom: 20px;
}

.diensten-intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.diensten-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.diensten-intro-image:hover img {
    transform: scale(1.05);
}

.diensten-intro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    pointer-events: none;
}

/* --- Services Grid Section --- */
.diensten-services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}

.diensten-services .section-title-center {
    margin-bottom: 70px;
}

.diensten-services .section-title-center h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.diensten-services .section-title-center .subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 50px 35px;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.9;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
}

/* --- Process Timeline Section (Original) --- */
.diensten-process {
    padding: 80px 0;
}

.diensten-process .section-title-center {
    margin-bottom: 80px;
}

.diensten-process .section-title-center h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.diensten-process .section-title-center .subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-color), transparent);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 60px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step:nth-child(odd) .process-content {
    text-align: right;
    padding-right: 40px;
}

.process-step:nth-child(odd) .process-visual {
    grid-column: 3;
    padding-left: 40px;
}

.process-step:nth-child(even) .process-content {
    grid-column: 3;
    text-align: left;
    padding-left: 40px;
}

.process-step:nth-child(even) .process-visual {
    grid-column: 1;
    grid-row: 1;
    padding-right: 40px;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    grid-column: 2;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-step:hover .process-number {
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.process-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
}

.process-visual {
    display: flex;
    align-items: center;
}

.process-visual img {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.process-step:hover .process-visual img {
    opacity: 1;
}

/* --- Process Section Compact --- */
.diensten-process-compact {
    padding: 80px 0;
    background: transparent;
}

.diensten-process-compact .section-title-center {
    margin-bottom: 50px;
    text-align: center;
}

.diensten-process-compact .section-title-center h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #fff !important;
}

.diensten-process-compact .section-title-center .subtitle {
    font-size: 0.85rem;
    color: #888 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-steps-compact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

/* Connecting line behind steps */
.process-steps-compact::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15), transparent);
    z-index: 0;
}

.process-step-compact {
    text-align: center;
    padding: 20px 15px;
    position: relative;
    z-index: 1;
    /* Override stagger animation - always visible */
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.process-step-compact .step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff !important;
    transition: all 0.3s ease;
}

.process-step-compact:hover .step-number {
    border-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.process-step-compact h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff !important;
}

.process-step-compact p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0a0a0 !important;
    margin: 0;
}

/* --- Portfolio Preview Section --- */
.diensten-portfolio {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
}

.diensten-portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.diensten-portfolio-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.diensten-portfolio-header .subtitle {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.diensten-portfolio-header a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.diensten-portfolio-header a:hover {
    color: #fff;
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.portfolio-preview-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 95%;
    transition: transform 0.6s ease;
}

.portfolio-image-zoom {
    transform: scale(1.3);
    object-position: center center;
}

.service-image-grayscale {
    filter: grayscale(10%);
}

.portfolio-preview-item:hover img {
    transform: scale(1.08);
}

.keuken-portfolio-preview .portfolio-preview-item img {
    object-position: center center;
}

.portfolio-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-preview-item:hover .portfolio-preview-overlay {
    opacity: 1;
}

.portfolio-preview-overlay h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.portfolio-preview-overlay span {
    font-size: 0.85rem;
    color: #888;
}

/* --- USP Section (Original) --- */
.diensten-usp {
    padding: 80px 0;
}

.diensten-usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.usp-item {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    transition: border-color 0.4s ease;
}

.usp-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.usp-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1;
}

.usp-item h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #fff;
}

.usp-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #888;
    margin: 0;
}

/* --- USP Section Modern --- */
.diensten-usp-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 50%, rgba(255,255,255,0.02) 100%);
    position: relative;
    overflow: hidden;
}

.diensten-usp-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.usp-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.usp-modern-card {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.usp-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.usp-modern-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.usp-modern-card:hover::before {
    opacity: 1;
}

.usp-modern-number--text-only {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 20px;
    color: #fff;
}

.usp-modern-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -2px;
}

.usp-modern-number span {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    vertical-align: top;
    margin-left: 2px;
}

.usp-modern-content h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.usp-modern-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* USP Modern Responsive */
@media (max-width: 1024px) {
    .usp-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .diensten-usp-modern {
        padding: 60px 0;
    }
    
    .usp-modern-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .usp-modern-card {
        padding: 30px 25px;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 25px;
    }
    
    .usp-modern-number {
        font-size: 3rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .usp-modern-number--text-only {
        font-size: 1.65rem;
    }
    
    .usp-modern-number span {
        font-size: 1.5rem;
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .diensten-hero h1 {
        font-size: 3.5rem;
    }

    .diensten-intro-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .process-step .process-number {
        grid-column: 1;
        grid-row: 1;
    }

    .process-step .process-content,
    .process-step:nth-child(odd) .process-content,
    .process-step:nth-child(even) .process-content {
        grid-column: 2;
        text-align: left;
        padding: 0;
    }

    .process-step .process-visual,
    .process-step:nth-child(odd) .process-visual,
    .process-step:nth-child(even) .process-visual {
        display: none;
    }

    /* Compact process - 3 columns on tablet */
    .process-steps-compact {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .process-steps-compact::before {
        display: none;
    }

    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diensten-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .diensten-hero {
        min-height: 70vh;
    }

    .diensten-hero h1 {
        font-size: 2.5rem;
    }

    .diensten-hero-description {
        font-size: 1rem;
    }

    .diensten-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .diensten-scroll-indicator {
        display: none;
    }

    .diensten-intro {
        padding: 80px 0;
    }

    .diensten-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .diensten-intro-content h2 {
        font-size: 2.2rem;
    }

    .diensten-intro-image {
        aspect-ratio: 16/9;
    }

    .diensten-services {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
    }

    .diensten-process {
        padding: 80px 0;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .process-content h3 {
        font-size: 1.3rem;
    }

    /* Compact process: één kolom; per stap nummer + titel op één rij, tekst eronder op volle breedte */
    .diensten-process-compact {
        padding: 48px 0 56px;
    }

    .diensten-process-compact .section-title-center {
        margin-bottom: 28px;
    }

    .diensten-process-compact .section-title-center h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
        line-height: 1.2;
    }

    .process-steps-compact {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-steps-compact::before {
        display: none;
    }

    .process-step-compact {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 14px;
        row-gap: 12px;
        align-items: start;
        text-align: left;
        padding: 18px 16px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .process-step-compact .step-number {
        grid-column: 1;
        grid-row: 1;
        margin: 0;
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }

    .process-step-compact h3 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        align-self: center;
        font-size: 1.05rem;
        line-height: 1.3;
    }

    .process-step-compact p {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .process-step-compact:last-child {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .diensten-portfolio {
        padding: 80px 0;
    }

    .diensten-portfolio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .portfolio-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .diensten-usp {
        padding: 80px 0;
    }

    .diensten-usp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .usp-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .diensten-hero h1 {
        font-size: 2rem;
    }

    .diensten-intro-content h2 {
        font-size: 1.8rem;
    }

    .diensten-services .section-title-center h2,
    .diensten-process .section-title-center h2,
    .diensten-process-compact .section-title-center h2,
    .diensten-portfolio-header h2 {
        font-size: 2rem;
    }
}


/* --- Keuken Specific Styles --- */

.kitchen-styles-section {
    padding: 80px 0;
    background: #000;
}

.kitchen-styles-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.style-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.style-tab-btn.active,
.style-tab-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.kitchen-style-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.kitchen-style-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.style-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.style-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.style-visual:hover img {
    transform: scale(1.05);
}

.style-info h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.style-info p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.style-features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.style-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.style-features-list li svg {
    color: #fff;
    opacity: 0.7;
}

/* Materials & Appliances Section */
.kitchen-materials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.material-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.material-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.material-card p {
    color: #a0a0a0;
    line-height: 1.7;
}

.brand-logos-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 60px;
    opacity: 0.7;
}

.brand-logo {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

@media (max-width: 900px) {
    .kitchen-style-content.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .style-visual {
        order: -1;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }

    /* Tabs: laat wrappen op smallere tablets zodat niets buiten beeld valt */
    .kitchen-styles-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        row-gap: 12px;
    }

    .style-tab-btn {
        flex: 1 1 auto;
        min-width: min(100%, 160px);
        padding: 12px 20px;
    }
}

/* Keukenstijlen: telefoon — geen horizontale overflow, duidelijke tikdoelen */
@media (max-width: 640px) {
    .kitchen-styles-section {
        padding: 48px 0 56px;
        overflow-x: clip;
    }

    .kitchen-styles-section .section-title-center {
        margin-bottom: 28px;
        padding-inline: 0;
    }

    .kitchen-styles-section .section-title-center h2 {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
        line-height: 1.2;
    }

    .kitchen-styles-section .section-title-center .subtitle {
        font-size: 0.9rem;
        padding-inline: 4px;
    }

    .kitchen-styles-tabs {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 28px;
        width: 100%;
        max-width: 100%;
    }

    .style-tab-btn {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
        padding: 12px 18px;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
        box-sizing: border-box;
    }

    .kitchen-style-content.active {
        gap: 24px;
    }

    .style-info h3 {
        font-size: clamp(1.2rem, 5.5vw, 1.5rem);
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .style-info p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .style-features-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .style-features-list li {
        font-size: 0.9rem;
    }

    .style-visual {
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }

    /* Materialen & apparatuur: minder ruimte onderaan op telefoon */
    .kitchen-materials-section {
        padding: 48px 0 20px;
    }

    .kitchen-materials-section .materials-grid {
        margin-bottom: 0;
        gap: 24px;
    }

    .kitchen-materials-section .material-card {
        padding: 28px 22px;
    }
}

/* Keuken fotogalerij: vaste celhoogte, object-fit cover voor nette beeldvulling op elk scherm */
.kitchen-gallery-section {
    padding: 80px 0;
    background: #0a0a0a;
}

@media (max-width: 640px) {
    .kitchen-gallery-section {
        padding: 40px 0 48px;
    }
}

.kitchen-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: clamp(12px, 2vw, 20px);
}

.kitchen-photo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.kitchen-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.kitchen-photo-card:hover img {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .kitchen-photo-grid {
        grid-template-columns: 1fr;
    }

    .kitchen-photo-card {
        aspect-ratio: 16 / 10;
    }
}


/* --- Project Begeleiding Specific Styles --- */

.project-intro-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.project-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.project-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0.8;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.pillar-card p {
    font-size: 0.9rem;
    color: #a0a0a0;
    margin: 0;
}

/* Vertical Timeline Process */
.project-timeline-vertical {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding-left: 40px;
}

.project-timeline-vertical::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-v-item {
    position: relative;
    padding-bottom: 60px;
    padding-left: 40px;
}

.timeline-v-item::before {
    content: '';
    position: absolute;
    left: -34px;
    /* Adjust for padding + line offset */
    top: 0;
    width: 16px;
    height: 16px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 2;
}

.timeline-v-item:last-child {
    padding-bottom: 0;
}

.timeline-v-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.timeline-v-content p {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .project-intro-grid {
        grid-template-columns: 1fr;
    }

    .project-pillars-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}



/* --- Enhanced Mobile Responsiveness for Project Begeleiding --- */

@media (max-width: 768px) {

    /* Intro Section Improvements */
    .project-intro-section {
        padding: 60px 0;
    }

    .project-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-intro-grid .diensten-intro-image {
        order: -1;
        aspect-ratio: 16/9;
    }

    /* Pillars - Stack on mobile */
    .project-pillars-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .pillar-card {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 14px;
        row-gap: 10px;
        align-items: center;
        text-align: left;
        padding: 18px 16px;
    }

    .pillar-icon {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        align-self: center;
    }

    .pillar-card h3 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        font-size: 1rem;
        line-height: 1.25;
    }

    .pillar-card p {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .pillar-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Timeline Improvements */
    .project-timeline-vertical {
        padding-left: 25px;
        margin-top: 40px;
    }

    .project-timeline-vertical::before {
        left: 8px;
    }

    .timeline-v-item {
        padding-bottom: 40px;
        padding-left: 25px;
    }

    .timeline-v-item::before {
        left: -25px;
        width: 12px;
        height: 12px;
    }

    .timeline-v-content h3 {
        font-size: 1.1rem;
    }

    .timeline-v-content p {
        font-size: 0.9rem;
    }

    /* Benefits Section Improvements */
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .benefit-item {
        gap: 15px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
    }

    .benefit-content h4 {
        font-size: 1rem;
    }

    .benefit-content p {
        font-size: 0.85rem;
    }

    /* General Section Title Improvements */
    .section-title-center h2 {
        font-size: 1.8rem;
    }

    .section-title-center .subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .pillar-card {
        padding: 15px 14px;
        column-gap: 12px;
        row-gap: 8px;
    }

    .pillar-icon svg {
        width: 24px;
        height: 24px;
    }

    .pillar-card h3 {
        font-size: 0.9rem;
    }

    .pillar-card p {
        font-size: 0.8rem;
    }

    .timeline-v-content h3 {
        font-size: 1rem;
    }

    .timeline-v-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}