:root {
    --bg-color: #ffffff;
    --section-alt: #f4f4f4;
    --card-bg: #ffffff;
    --accent-color: #0077cc;
    --text-main: #333333;
    --text-dim: #666666;
    --nav-height: 80px;
    --star-color: #ffcc00;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Utility for pages starting under fixed navbar */
.page-start {
    padding-top: calc(var(--nav-height) + 40px);
}

/* Navbar */
.navbar {
    height: var(--nav-height);
    background: white;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links li {
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.nav-links li a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://primary.jwwb.nl/pexels/78/7859347.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: var(--nav-height);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.btn {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 119, 204, 0.3);
}

.btn-secondary {
    background: #555;
    margin-left: 10px;
}

.btn-whatsapp {
    background-color: #25d366;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links .btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links .btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.btn-tiktok {
    background-color: #000000;
}

.btn-instagram {
    background-color: #E1306C;
}

/* Star Rating Input in Form */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
    margin: 5px 0 15px 0;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:before {
    content: '★';
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--star-color);
}

/* Section Layouts */
.services { padding: 100px 0; }
.section-tagline {
    text-align: center;
    color: var(--accent-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}
.section-title { text-align: center; margin-bottom: 1rem; font-size: 2.5rem; font-family: 'Playfair Display', serif; }
.section-subtitle { text-align: center; margin-bottom: 3rem; color: var(--text-dim); }

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

.service-card {
    background: white;
    padding: 0;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-dim); }

.service-card, details, summary, .read-more-link { 
    scroll-margin-top: 100px;
    cursor: pointer; 
    color: var(--accent-color); 
    font-weight: bold; 
    margin-top: 0.5rem; 
    display: inline-block;
    text-decoration: none;
}

/* Split Sections */
.about, .why-us { padding: 80px 0; background: var(--section-alt); }
.about-content, .split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text, .side-text { flex: 1; }
.about-image, .side-image { flex: 1; }
.about-image img, .side-image img { width: 100%; border-radius: 10px; }

/* Testimonials */
.testimonials { padding: 80px 0; }
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.testimonial-card {
    background: var(--section-alt);
    padding: 2rem;
    border-radius: 10px;
    font-style: italic;
}
.testimonial-card span {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    font-style: normal;
}

.stars {
    color: var(--star-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.average-rating-display {
    text-align: center;
    background: var(--section-alt);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.testimonial-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Contact */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, 
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.hidden {
    display: none;
}

/* Checkbox styles for Controller Mods */
.checkbox-group {
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 1rem;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-bottom: 0;
}

.review-section {
    scroll-margin-top: var(--nav-height); /* Zorgt dat de sectie niet achter de navbar verdwijnt */
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 1.5rem;
    }
    .hero h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
        z-index: 1002; /* Ensure it's above other elements */
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links li a {
        margin-left: 0;
        font-size: 1.2rem;
    }

    .navbar .container {
        justify-content: space-between;
        padding: 0 20px; /* Minder padding op mobiel om ruimte te besparen */
    }

    .logo {
        position: static;
    }

    .services-grid { grid-template-columns: 1fr; }
    .about-content, .split-section, .contact-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .testimonial-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    
    /* Zorg dat de console grid ook naar 1 kolom gaat op mobiel */
    div[style*="grid-template-columns: repeat(3, 1fr)"], div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}