:root {
    --deep-blue: #1a2b3c;
    --gold-dark: #7a5a22;
    --gold-medium: #8c6a2e; 
    --gold-light: #f3cf98;
    --white: #ffffff;
    --bg-soft: #e9eff3; 
    --whatsapp-green: #1d944b;
    --text-gray: #333333; 
}

/* --- 1. Basis & Layout --- */
html {
    background-color: var(--deep-blue); 
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-soft);
    /* De font-family is prima, de validator waarschuwt slechts voor de systeemfonts */
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--deep-blue);
    
    /* Verwijder text-rendering: optimizeLegibility; (de boosdoener) */
    
    /* Deze mag je laten staan voor de scherpte op Apple devices, 
       ondanks de waarschuwing van de validator */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    margin-top: 0;
    font-weight: 800;
    color: var(--deep-blue);
}

/* --- 2. Navigatie & Header --- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid #eaeaea;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    min-height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.main-logo {
    display: block;
    width: 115px; 
    height: auto;
}

.menu {
    display: flex !important;
    flex-direction: row !important;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu a {
    text-decoration: none;
    color: var(--deep-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.menu a:hover {
    color: var(--gold-medium);
}

/* --- 3. Hero Sectie --- */
.hero {
    background-color: var(--deep-blue);
    padding: 60px 20px;
    color: var(--white);
    text-align: center;
    border-bottom: 8px solid var(--gold-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
    max-width: 850px;
}

.btn-hero-wa {
    display: inline-flex;
    padding: 15px 35px;
    background-color: var(--whatsapp-green);
    color: white !important;
    text-decoration: none;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    transition: transform 0.2s ease-out;
    margin-top: 20px;
}

.btn-hero-wa:hover { transform: scale(1.05); }

/* --- 4. Content & Cards --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #eef2f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover { 
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-small {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold-medium);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.btn-small:hover {
    color: var(--deep-blue);
    text-decoration: underline;
}

/* --- 5. Footer --- */
footer {
    background-color: var(--deep-blue);
    color: #ffffff;
    padding: 60px 0 30px;
    border-top: 8px solid var(--gold-medium);
    width: 100%;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.footer-section h4, .footer-title {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 800;
}

.footer-section p, .footer-address {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    margin: 0;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
    margin-top: 40px;
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    text-align: center;
}

.footer-bottom a {
    color: var(--gold-light);
    text-decoration: none;
}

/* --- 6. Hulpmiddelen --- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold-medium);
    color: white;
    padding: 10px;
    z-index: 9999;
}
.skip-link:focus { top: 0; }

/* --- 7. Mobiel --- */
@media (max-width: 900px) {
    .menu { display: none; } /* Voorbereiding op mobiel menu */
    
    .footer-grid { 
        grid-template-columns: 1fr !important; 
        text-align: center;
    }
    
    .header-container { justify-content: center !important; }
    
    .hero h1 { font-size: 1.8rem; }
}
/* --- FAQ Accordion Style --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eef2f5;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item[open] {
    border-color: var(--gold-medium);
    box-shadow: 0 5px 15px rgba(122, 90, 34, 0.1);
}

.faq-item summary {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--deep-blue);
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    transition: background 0.2s;
}

/* Custom pijltje */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    color: var(--gold-medium);
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
    background-color: #fcf9f5;
}

.faq-content {
    padding: 0 25px 25px;
    color: var(--text-gray);
    line-height: 1.7;
    border-top: 1px solid #f9f9f9;
}
/* --- Conversie Banner --- */
.cta-banner {
    background-color: var(--deep-blue);
    padding: 80px 20px;
    text-align: center;
    border-top: 5px solid var(--gold-medium);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

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

.btn-cta-main {
    background-color: var(--gold-medium);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.btn-cta-main:hover {
    background-color: var(--gold-dark);
    transform: translateY(-3px);
}

.btn-cta-wa {
    background-color: var(--whatsapp-green);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform 0.2s;
}

.btn-cta-wa:hover {
    transform: translateY(-3px);
}