* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --accent: #c9a961;
    --light: #ffffff;
    --gray: #f5f5f5;
    --dark: #0f0f1e;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-brand {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
    background: linear-gradient(135deg, #c9a961, #b8984f);
    border-radius: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.5rem;
}

.brand-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--light);
}

.brand-text span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.nav-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 2rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-cta-btn {
    background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
    background: linear-gradient(135deg, #c9a961, #b8984f);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
}

.nav-cta-btn:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.brand-logo {
    height: 60px;
    width: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hamburger {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 35px;
    height: 4px;
    background: #ffffff;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: -webkit-linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 169, 97, 0.2);
    color: var(--accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
    background: linear-gradient(135deg, #c9a961, #b8984f);
    color: white;
}

.btn-primary:hover {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.3);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: #c9a961;
    color: white;
}

/* Services */
.services {
    padding: 100px 20px;
    background: #0f0f1e;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    max-width: 700px;
    margin: 1rem auto 0;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.label {
    display: inline-block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--light);
    text-align: center;
}

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

.service-card {
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    -webkit-transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
    -webkit-box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
    background: linear-gradient(135deg, #c9a961, #b8984f);
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

/* Portfolio */
.portfolio {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
}

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

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.portfolio-item:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.2);
}

.portfolio-item:hover .click-hint {
    opacity: 1;
}

.portfolio-images {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    pointer-events: none;
}

.ba-label-before {
    left: 1rem;
    background: rgba(201, 169, 97, 0.95);
    color: #1a1a2e;
}

.ba-label-after {
    right: 1rem;
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
}

.ba-info {
    padding: 1.5rem;
    background: rgba(0,0,0,0.3);
}

.ba-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #c9a961;
    font-family: 'Playfair Display', serif;
}

.ba-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.click-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: rgba(201, 169, 97, 0.95);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lightbox.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-content {
    max-width: 1400px;
    width: 90%;
    position: relative;
}

.lightbox-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.lightbox-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.lightbox-image-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: rgba(255,255,255,0.05);
}

.lightbox-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(201, 169, 97, 0.95);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox-image-container:last-child .lightbox-label {
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
}

.lightbox-info {
    text-align: center;
    color: white;
}

.lightbox-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.lightbox-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.9);
    color: #1a1a2e;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-weight: bold;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #c9a961;
    -webkit-transform: translateY(-50%) scale(1.1);
    -ms-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1200px) {
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .lightbox-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-close {
        font-size: 40px;
        right: 20px;
    }
}

/* Contact */
.contact {
    padding: 100px 20px;
    background: #0f0f1e;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.info-items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
    background: linear-gradient(135deg, #c9a961, #b8984f);
    border-radius: 12px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--light);
}

.info-item span {
    color: rgba(255,255,255,0.7);
}

.contact-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    color: var(--light);
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 20px;
    text-align: center;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    /* Logo groter op mobiel */
    .brand-logo {
        height: 90px !important;
        width: auto !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85% !important;
        max-width: 500px !important;
        height: 100vh;
        background: #1a1a2e;
        flex-direction: column;
        padding: 8rem 3rem 3rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99999;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 1.2rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
        font-size: 1.3rem !important;
        font-weight: 500 !important;
    }

    .nav-cta-btn {
        display: block;
        text-align: center;
        margin-top: 2rem;
        width: 100%;
        font-size: 1.3rem !important;
        padding: 1.2rem 1.8rem !important;
        font-weight: 600 !important;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex !important;
        z-index: 999999;
        padding: 0.8rem;
        background: rgba(201, 169, 97, 0.2) !important;
        border-radius: 8px !important;
    }

    .hamburger span {
        width: 50px !important;
        height: 6px !important;
        border-radius: 3px !important;
        background: #ffffff !important;
    }

    .hamburger.active span:nth-child(1) {
        -webkit-transform: rotate(45deg) translate(10px, 10px);
        -ms-transform: rotate(45deg) translate(10px, 10px);
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        -webkit-transform: rotate(-45deg) translate(10px, -10px);
        -ms-transform: rotate(-45deg) translate(10px, -10px);
        transform: rotate(-45deg) translate(10px, -10px);
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Mobile Only - Voor alle telefoons - GROTE TEKST */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }

    body {
        font-size: 20px !important;
    }

    p {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        color: #ffffff !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 15px !important;
    }

    .hero, .services, .portfolio, .contact, .footer {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .nav-container {
        padding: 1rem 20px !important;
    }

    .brand-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.8rem !important;
    }

    .brand-text h3 {
        font-size: 1.5rem !important;
    }

    .brand-text span {
        font-size: 0.9rem !important;
    }

    .nav-menu {
        width: 85% !important;
        max-width: 500px !important;
        padding: 8rem 3rem 3rem !important;
    }

    .nav-link {
        font-size: 1.3rem !important;
        font-weight: 500 !important;
        padding: 1.2rem 0 !important;
    }

    .nav-cta-btn {
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        padding: 1.2rem 1.8rem !important;
    }

    .hero {
        padding: 120px 25px 80px !important;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .hero p {
        font-size: 1.3rem !important;
        line-height: 1.6 !important;
        color: #ffffff !important;
    }

    .hero-badge {
        font-size: 1rem !important;
        padding: 0.6rem 1.4rem !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
        font-size: 1.1rem !important;
        padding: 1rem 2rem !important;
    }

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

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

    .service-card {
        padding: 2.5rem !important;
    }

    .service-card h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .service-card p {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #ffffff !important;
    }

    .service-card > div:last-child {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #ffffff !important;
    }

    .service-icon {
        width: 85px !important;
        height: 85px !important;
    }

    .service-icon i {
        font-size: 2.5rem !important;
    }

    /* Section headers groter */
    h2 {
        font-size: 1.8rem !important;
    }

    .section-description {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        color: #ffffff !important;
    }

    .label {
        font-size: 1.2rem !important;
        padding: 0.7rem 1.5rem !important;
    }

    /* Contact sectie groter */
    .contact-info h2 {
        font-size: 1.8rem !important;
    }

    .contact-info > p {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        color: #ffffff !important;
    }

    .info-item strong {
        font-size: 1.1rem !important;
    }

    .info-item span {
        font-size: 1.05rem !important;
    }

    .info-item i {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }

    /* Contact form groter */
    .contact-form input,
    .contact-form textarea {
        font-size: 1.3rem !important;
        padding: 1.4rem !important;
    }

    /* Footer groter */
    .footer {
        font-size: 1.3rem !important;
        padding: 3.5rem 20px !important;
    }

    .footer p {
        font-size: 1.3rem !important;
        line-height: 1.7 !important;
    }

    /* Portfolio items */
    .portfolio-item h4 {
        font-size: 2rem !important;
        line-height: 1.4 !important;
    }

    .ba-info h4 {
        font-size: 2rem !important;
    }

    .ba-info p {
        font-size: 1.5rem !important;
        line-height: 1.8 !important;
        color: #ffffff !important;
    }

    .click-hint {
        font-size: 1.2rem !important;
        padding: 1rem !important;
    }

    /* Feature lists in service popups - GROTE TEKST */
    .feature-item h4 {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }

    .feature-item p {
        font-size: 1.4rem !important;
        line-height: 1.6 !important;
    }

    .feature-item li {
        font-size: 1.3rem !important;
        line-height: 1.7 !important;
        margin-bottom: 0.8rem !important;
    }

    .feature-item ul {
        padding-left: 2rem !important;
    }

    /* Modal titles en descriptions */
    .modal-title {
        font-size: 2.5rem !important;
    }

    .modal-description {
        font-size: 1.3rem !important;
    }

    .modal-photo-description {
        font-size: 1.2rem !important;
    }

    .modal-image-label {
        font-size: 1.3rem !important;
        padding: 1rem !important;
    }
}

/* Legal Links - Mobile Responsive */
.legal-links a {
    transition: opacity 0.3s;
}

.legal-links a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .legal-links {
        font-size: 0.85rem !important;
        line-height: 1.8;
    }

    .legal-links a {
        display: inline-block;
        padding: 5px 0;
    }
}

/* Glaswerk Section */
.glaswerk-section {
    padding: 6rem 0;
    background: #0f0f1e;
}

.glaswerk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.glaswerk-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 15px;
    -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.glaswerk-card:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.08);
}

.glaswerk-icon {
    width: 80px;
    height: 80px;
    background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
    background: linear-gradient(135deg, #c9a961, #b8984f);
    border-radius: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.glaswerk-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.glaswerk-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.glaswerk-features {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin: 0 auto;
}

.glaswerk-features li {
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.7);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.glaswerk-features li:last-child {
    border-bottom: none;
}

.glaswerk-features li i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* Glaswerk Portfolio Section */
.glaswerk-portfolio {
    padding: 6rem 0;
    background: #0f0f1e;
    position: relative;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 kolommen op PC */
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

/* Forceer 1 kolom op tablets en telefoons */
@media (max-width: 1024px) {
    .before-after-grid {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
}

.before-after-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.before-after-item:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.08);
}

.before-after-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ba-image {
    position: relative;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.ba-info {
    padding: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ba-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.ba-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Upload Section */
.upload-section {
    margin: 2rem 0 3rem;
    -webkit-animation: slideDown 0.3s ease;
    animation: slideDown 0.3s ease;
}

@-webkit-keyframes slideDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.upload-card {
    background: -webkit-linear-gradient(135deg, #1a1a2e, #0f0f1e);
    background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
    padding: 2.5rem;
    border-radius: 15px;
    color: white;
}

.upload-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.75rem;
}

.upload-card p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.upload-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
}

.upload-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.upload-col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
}

.upload-col label {
    font-weight: 600;
    font-size: 0.95rem;
}

.upload-col input[type="file"] {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 2px dashed rgba(255,255,255,0.3);
    color: white;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.upload-col input[type="file"]:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
}

.image-preview {
    width: 100%;
    height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: none;
    overflow: hidden;
}

.image-preview.active {
    display: block;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-form input[type="text"],
.upload-form textarea {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.upload-form input[type="text"]:focus,
.upload-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: var(--accent);
}

.upload-form textarea {
    resize: vertical;
    min-height: 100px;
}

.upload-form input::placeholder,
.upload-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.admin-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
    background: linear-gradient(135deg, #c9a961, #b8984f);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    -webkit-box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 50;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
}

.admin-toggle-btn:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.admin-toggle-btn i {
    font-size: 1.1rem;
}

/* Responsive Glaswerk - Voor alle telefoons en tablets */
@media (max-width: 1024px) {
    .glaswerk-grid {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr !important;
    }

    .upload-row {
        grid-template-columns: 1fr;
    }

    .admin-toggle-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Extra kleine telefoons (iPhone SE, kleine Android) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 2.8rem !important;
    }

    .hero p {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 2.5rem !important;
    }

    .service-card h3 {
        font-size: 1.9rem !important;
    }

    .service-card p {
        font-size: 1.2rem !important;
    }

    .nav-menu {
        width: 100% !important;
    }
}

/* Landscape modus voor kleine telefoons */
@media (max-width: 926px) and (orientation: landscape) {
    .hero {
        padding: 100px 20px 60px !important;
    }

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

    .hero p {
        font-size: 1.3rem !important;
    }
}

/* Safari-Specific Rendering Fixes */
@supports (-webkit-appearance: none) {
    /* Safari-specific rendering optimizations */
    * {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Force hardware acceleration for smooth animations */
    .navbar,
    .service-card,
    .portfolio-item,
    .hero-content,
    .brand-icon,
    .nav-cta-btn {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fix Safari flexbox rendering issues */
    .nav-container,
    .nav-menu,
    .hero-buttons,
    .services-grid,
    .portfolio-grid,
    .contact-content {
        -webkit-perspective: 1000;
        perspective: 1000;
    }
}

/* Safari iOS specific */
@supports (-webkit-touch-callout: none) {
    body {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }
}

/* ===== SAFARI-ONLY COMPATIBILITY FIXES ===== */
/* These fixes ONLY target Safari - Chrome/Edge blijven onveranderd */

/* Safari Desktop & Mobile Detection */
@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) and (stroke-color:transparent) {
        /* Logo fix - ALLEEN Safari */
        .brand-logo {
            display: block;
            width: 150px;
            height: auto;
            max-height: 45px;
            visibility: visible;
            opacity: 1;
        }

        /* Navbar - ALLEEN Safari */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
        }

        /* Dark backgrounds - ALLEEN Safari */
        html, body {
            background: #0f0f1e;
        }

        .hero {
            background: #1a1a2e;
            background: -webkit-linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
            background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
        }

        .services {
            background: #0f0f1e;
        }

        .portfolio {
            background: #1a1a2e;
        }

        .contact {
            background: #0f0f1e;
        }

        .footer {
            background: #1a1a2e;
        }

        /* Buttons - ALLEEN Safari */
        .btn-primary, .nav-cta-btn {
            background: #c9a961;
            background: -webkit-linear-gradient(135deg, #c9a961, #b8984f);
            background: linear-gradient(135deg, #c9a961, #b8984f);
        }

        .btn-outline {
            border: 2px solid #c9a961;
            color: #c9a961;
        }

        .hero h1 .highlight {
            color: #c9a961;
        }

        .nav-link {
            color: #ffffff;
        }

        /* Hardware acceleration */
        .navbar, .hero, .services, .portfolio, .contact {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }
    }
}

/* iOS Safari specific */
@supports (-webkit-touch-callout: none) {
    .brand-logo {
        display: block;
        width: 150px;
        height: auto;
        max-height: 45px;
    }
}

/* Gap fallback for older Safari */
@supports not (gap: 1rem) {
    .services-grid {
        margin: -1rem;
    }

    .services-grid > * {
        margin: 1rem;
    }

    .portfolio-grid {
        margin: -1rem;
    }

    .portfolio-grid > * {
        margin: 1rem;
    }

    .nav-menu > * + * {
        margin-left: 2rem;
    }

    .hero-buttons > * {
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
}
