/* ===== RESET & BASIS ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Poppins', sans-serif; 
    background: #f8f7f4; 
    color: #1a2a3a; 
    line-height: 1.6; 
    overflow-x: hidden;
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { 
    display: inline-block; 
    background: #c9975c; 
    color: #fff; 
    padding: 6px 24px; 
    border-radius: 30px; 
    font-size: 14px; 
    font-weight: 700; 
    letter-spacing: 1px; 
    margin-bottom: 12px; 
}
.section-header h2 { 
    font-size: 42px; 
    font-weight: 800; 
    color: #1a2a3a; 
    line-height: 1.2;
}
.section-header h2 span { color: #c9975c; }
.section-header p { color: #5f6b74; font-size: 18px; margin-top: 8px; }

/* ===== HEADER ===== */
header { 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.06); 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    padding: 15px 0; 
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.1);
}
.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px;
}
.logo img { 
    height: 100px; 
    width: auto; 
    display: block;
}
nav ul { 
    display: flex; 
    gap: 35px; 
    align-items: center;
}
nav ul li a { 
    font-weight: 600; 
    font-size: 15px; 
    color: #2d3b45; 
    transition: color 0.3s; 
    position: relative; 
    letter-spacing: 0.5px;
}
nav ul li a::after { 
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: #c9975c; 
    transition: width 0.3s; 
}
nav ul li a:hover { color: #c9975c; }
nav ul li a:hover::after { width: 100%; }
.menu-toggle { 
    display: none; 
    font-size: 26px; 
    cursor: pointer; 
    color: #1a2a3a; 
}

/* ===== HERO ===== */
.hero { 
    padding: 160px 0 80px; 
    background: linear-gradient(135deg, #f8f7f4 0%, #ede8e0 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 151, 92, 0.08), transparent);
    border-radius: 50%;
}
.hero-content { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    position: relative;
    z-index: 1;
}
.hero-text { flex: 1; text-align: left; }
.hero-badge { 
    display: inline-block; 
    background: #c9975c; 
    color: #fff; 
    padding: 6px 20px; 
    border-radius: 30px; 
    font-size: 14px; 
    font-weight: 700; 
    margin-bottom: 20px; 
}
.hero-text h1 { 
    font-size: 52px; 
    font-weight: 800; 
    line-height: 1.1; 
    color: #1a2a3a; 
}
.hero-text h1 span { color: #c9975c; }
.hero-text p { 
    font-size: 18px; 
    color: #4d5a66; 
    margin: 20px 0 32px; 
    max-width: 500px; 
}
.hero-buttons { 
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap; 
}
.btn-primary { 
    display: inline-block; 
    background: #c9975c; 
    color: #fff; 
    padding: 14px 36px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 16px; 
    border: none; 
    cursor: pointer; 
    transition: all 0.3s; 
}
.btn-primary:hover { 
    background: #ae7d45; 
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(201, 151, 92, 0.4); 
}
.btn-secondary { 
    display: inline-block; 
    background: transparent; 
    color: #1a2a3a; 
    padding: 14px 36px; 
    border-radius: 50px; 
    font-weight: 700; 
    font-size: 16px; 
    border: 2px solid #1a2a3a; 
    cursor: pointer; 
    transition: all 0.3s; 
}
.btn-secondary:hover { 
    background: #1a2a3a; 
    color: #fff; 
    transform: translateY(-2px); 
}
.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-image-placeholder { 
    width: 100%; 
    max-width: 500px;
    height: 380px;
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    position: relative;
    background: #1a2a3a;
}
.hero-image-placeholder video,
.hero-image-placeholder iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* ===== OVER ONS ===== */
.about { 
    padding: 100px 0; 
    background: #fff; 
}
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}
.about-text h3 { 
    font-size: 32px; 
    font-weight: 700; 
    color: #1a2a3a; 
    margin-bottom: 20px; 
}
.about-text h3 span { color: #c9975c; }
.about-text p { 
    color: #5f6b74; 
    font-size: 16px; 
    line-height: 1.9; 
    margin-bottom: 16px; 
}
.about-image { 
    position: relative; 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.about-image img { 
    width: 100%; 
    height: 450px; 
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}
.about-image:hover img {
    transform: scale(1.03);
}
.about-image-caption { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: linear-gradient(transparent, rgba(26, 42, 58, 0.8));
    padding: 40px 30px 25px;
    color: #fff;
}
.about-image-caption i { color: #c9975c; margin-right: 8px; }
.about-image-caption span { font-weight: 600; font-size: 18px; }

/* ===== DIENSTEN ===== */
.services { 
    padding: 100px 0; 
    background: #f8f7f4; 
}
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}
.service-card { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 16px; 
    text-align: center; 
    transition: all 0.4s; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border-bottom: 4px solid transparent;
}
.service-card:hover { 
    transform: translateY(-8px); 
    border-bottom-color: #c9975c; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.08); 
}
.service-icon { 
    font-size: 50px; 
    color: #c9975c; 
    margin-bottom: 20px; 
    display: block;
}
.service-card h3 { 
    font-size: 22px; 
    font-weight: 700; 
    margin-bottom: 12px; 
    color: #1a2a3a; 
}
.service-card p { 
    color: #5f6b74; 
    font-size: 15px; 
    line-height: 1.7; 
}
.service-card strong { color: #1a2a3a; }

/* ===== PROJECTEN ===== */
.projects { 
    padding: 100px 0; 
    background: #fff; 
}
.projects-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px; 
}
.project-item { 
    position: relative; 
    overflow: hidden; 
    height: 280px; 
    border-radius: 14px; 
    cursor: pointer; 
    background-color: #e8e0d6; 
    transition: transform 0.4s, box-shadow 0.4s; 
    background-size: cover;
    background-position: center;
}
.project-item:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 12px 40px rgba(0,0,0,0.12); 
}
.project-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(26, 42, 58, 0.7); 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    opacity: 0; 
    transition: opacity 0.4s ease; 
    backdrop-filter: blur(2px);
}
.project-item:hover .project-overlay { opacity: 1; }
.project-overlay i { 
    font-size: 36px; 
    margin-bottom: 10px; 
    color: #c9975c; 
}
.project-overlay span { 
    font-size: 18px; 
    font-weight: 600; 
    letter-spacing: 0.5px; 
    text-align: center; 
    padding: 0 10px; 
}

/* ===== TEAM ===== */
.team { 
    padding: 100px 0; 
    background: #f8f7f4; 
}
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; 
    max-width: 700px;
    margin: 0 auto;
}
.team-member { 
    background: #fff; 
    border-radius: 16px; 
    overflow: hidden; 
    text-align: center; 
    transition: all 0.4s; 
    box-shadow: 0 4px 20px rgba(0,0,0,0.04); 
}
.team-member:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 40px rgba(0,0,0,0.1); 
}
.team-member img, 
.team-member video { 
    width: 100%; 
    height: 300px; 
    object-fit: cover; 
    display: block; 
}
.team-member h3 { 
    margin-top: 18px; 
    font-size: 20px; 
    font-weight: 700; 
    color: #1a2a3a; 
}
.team-member p { 
    color: #5f6b74; 
    font-size: 14px; 
    padding: 0 16px 22px; 
    margin: 0; 
}
.team-member .role-icon {
    color: #c9975c;
    margin-right: 6px;
}

/* ===== CONTACT ===== */
.contact { 
    padding: 100px 0; 
    background: #fff; 
}
.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-item { 
    display: flex; 
    align-items: center; 
    gap: 16px; 
    text-align: left; 
}
.info-item i { 
    width: 50px; 
    height: 50px; 
    background: #c9975c; 
    color: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 20px; 
    flex-shrink: 0; 
}
.info-item h4 { font-size: 16px; font-weight: 700; }
.info-item p { color: #5f6b74; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, 
.contact-form select, 
.contact-form textarea { 
    padding: 14px 18px; 
    border: 1px solid #ddd8d0; 
    border-radius: 10px; 
    font-family: 'Poppins', sans-serif; 
    font-size: 16px; 
    background: #faf9f7; 
    transition: border-color 0.3s, box-shadow 0.3s; 
}
.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus { 
    outline: none; 
    border-color: #c9975c; 
    box-shadow: 0 0 0 4px rgba(201, 151, 92, 0.12);
    background: #fff; 
}
.contact-form textarea { resize: vertical; }

/* ===== FOOTER ===== */
footer { 
    background: #1a2a3a; 
    color: #bcc9d4; 
    padding: 60px 0 0; 
}
.footer-content { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1.5fr; 
    gap: 40px; 
    padding-bottom: 40px; 
    border-bottom: 1px solid rgba(255,255,255,0.06); 
}
.footer-about { 
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
}
.footer-about .footer-logo { 
    height: 45px; 
    width: auto; 
    margin-bottom: 16px; 
}
.footer-about p { 
    margin: 0 0 20px; 
    font-size: 15px; 
    max-width: 320px; 
    color: #d0d7de; 
    line-height: 1.7;
}
.social-links { display: flex; gap: 12px; }
.social-links a { 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.06); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.3s; 
    color: #bcc9d4; 
}
.social-links a:hover { 
    background: #c9975c; 
    color: #1a2a3a; 
    transform: translateY(-3px); 
}
.footer-links h4, .footer-newsletter h4 { 
    color: #fff; 
    font-size: 18px; 
    margin-bottom: 16px; 
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { transition: color 0.3s; }
.footer-links ul li a:hover { color: #c9975c; }
.footer-newsletter p { font-size: 14px; margin-bottom: 14px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input { 
    flex: 1; 
    padding: 12px 16px; 
    border: none; 
    border-radius: 50px; 
    font-family: 'Poppins', sans-serif; 
    background: rgba(255,255,255,0.06); 
    color: #fff; 
}
.footer-newsletter input::placeholder { color: #7a8793; }
.footer-newsletter button { 
    width: 46px; 
    height: 46px; 
    border: none; 
    border-radius: 50%; 
    background: #c9975c; 
    color: #fff; 
    font-size: 18px; 
    cursor: pointer; 
    transition: background 0.3s; 
}
.footer-newsletter button:hover { background: #ae7d45; }
.footer-bottom { 
    text-align: center; 
    padding: 20px 0; 
    font-size: 14px; 
    color: #7a8793; 
}

/* ===== OFFERTE POP-UP ===== */
.payment-modal { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.6); 
    z-index: 2000; 
    align-items: center; 
    justify-content: center; 
    backdrop-filter: blur(4px);
}
.payment-modal.show { display: flex; }
.modal-content { 
    background: #fff; 
    padding: 40px; 
    border-radius: 20px; 
    max-width: 480px; 
    width: 90%; 
    position: relative; 
    animation: modalFade 0.3s ease; 
    text-align: left; 
}
@keyframes modalFade { 
    from { transform: scale(0.9) translateY(20px); opacity: 0; } 
    to { transform: scale(1) translateY(0); opacity: 1; } 
}
.close-modal { 
    position: absolute; 
    top: 16px; 
    right: 20px; 
    font-size: 30px; 
    cursor: pointer; 
    color: #7a8793; 
    transition: color 0.3s; 
}
.close-modal:hover { color: #1a2a3a; }
.modal-content h2 { 
    font-size: 26px; 
    margin-bottom: 8px; 
    color: #1a2a3a; 
}
.modal-content h2 i { color: #c9975c; margin-right: 8px; }
.modal-content p { color: #5f6b74; margin-bottom: 16px; }
.modal-content form { 
    display: flex; 
    flex-direction: column; 
    gap: 14px; 
    margin-top: 16px; 
}
.modal-content form input, 
.modal-content form select, 
.modal-content form textarea { 
    padding: 14px 18px; 
    border: 1px solid #ddd8d0; 
    border-radius: 10px; 
    font-family: 'Poppins', sans-serif; 
    font-size: 16px; 
}
.modal-content form input:focus, 
.modal-content form select:focus, 
.modal-content form textarea:focus { 
    outline: none; 
    border-color: #c9975c; 
}
.modal-content form .btn-primary { width: 100%; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { text-align: center; }
    .hero-text p { margin: 20px auto 32px; }
    .hero-buttons { justify-content: center; }
    .hero-image-placeholder { max-width: 100%; height: 300px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text { text-align: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-about { align-items: center; }
    .footer-about p { margin-left: auto; margin-right: auto; }
    .social-links { justify-content: center; }
    .footer-newsletter form { max-width: 380px; margin: 0 auto; }
}

@media (max-width: 768px) {
    nav ul { 
        display: none; 
        flex-direction: column; 
        background: #fff; 
        position: absolute; 
        top: 70px; 
        left: 0; 
        right: 0; 
        padding: 25px; 
        box-shadow: 0 10px 40px rgba(0,0,0,0.1); 
        gap: 18px; 
        text-align: center; 
        border-radius: 0 0 16px 16px;
    }
    nav ul.active { display: flex; }
    .menu-toggle { display: block; }
    .hero-text h1 { font-size: 36px; }
    .section-header h2 { font-size: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .project-item { height: 220px; }
    .team-member img, .team-member video { height: 220px; }
    .about-image img { height: 300px; }
    .logo img { height: 45px; }
}

@media (max-width: 480px) {
    .hero-image-placeholder { height: 220px; }
    .hero { padding: 130px 0 60px; }
    .team-grid { grid-template-columns: 1fr; }
    .project-item { height: 200px; }
    .modal-content { padding: 28px 20px; }
    .logo img { height: 38px; }
    .section-header h2 { font-size: 26px; }
}
/* Video project items */
.project-item.video-item {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 14px;
    cursor: pointer;
    background-color: #1a2a3a;
}

.project-item.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-item.video-item .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 58, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.project-item.video-item:hover .project-overlay {
    opacity: 1;
}