/* style.css
   Volledige stylesheet voor Licht Design (v15)
   Inclusief verbeterde mobiele weergave
*/

/* --- Variabelen & Basis --- */
:root {
    --primary: #0A2540;
    --accent: #0d3257;
    --gold: #D4AF37;
    --bg: #F5F4F0;
    --bg-alt: #FFFFFF;
    --text: #333333;
    --text-muted: #666666;
    --border: #E6E6E6;
    --radius: 8px;
    --radius-small: 4px;
    --transition: .25s;
    --font-main: 'Inter', system-ui, Arial, sans-serif;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --shadow-light: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-medium: 0 8px 20px rgba(0,0,0,0.07);
    --header-height: 70px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-main);
    margin: 0;
    padding-top: var(--header-height);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 17px;
}

@media (max-width: 768px) {
    body { font-size: 16px; }
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-top: 0;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3em; margin-bottom: 0.5em;}
h2 { font-size: 2.5em; margin-bottom: 0.6em;}
h3 { font-size: 1.5em; margin-bottom: 0.7em;}
h4 { font-size: 1.1em; margin-bottom: 0.8em; font-family: var(--font-main); font-weight: 700;}

p { margin-top: 0; margin-bottom: 1em; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* --- Knoppen (Buttons) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    font-size: 0.95em;
    box-shadow: var(--shadow-light);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn:disabled { 
    background: #ccc; 
    cursor: not-allowed; 
    opacity: 0.7; 
    transform: none; 
    box-shadow: none; 
}

.btn-primary { 
    background: var(--gold); 
    color: var(--primary); 
    border-color: var(--gold); 
}

.btn-primary:hover { 
    background: #c9a42f; 
    border-color: #c9a42f; 
}

.btn-secondary { 
    background: var(--bg-alt); 
    border: 1px solid var(--border); 
    color: var(--primary); 
}

.btn-secondary:hover { 
    background: #eee; 
    border-color: #ccc; 
}

.btn-small { 
    padding: 8px 16px; 
    font-size: 0.85em; 
}

/* --- Header & Navigatie --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo { 
    font-family: var(--font-heading); 
    color: var(--primary); 
    font-weight: 700; 
    font-size: 22px; 
    text-decoration: none; 
}

/* Desktop Nav */
nav#main-nav { display: block; }
nav#main-nav a { 
    color: var(--text); 
    margin-left: 28px; 
    text-decoration: none; 
    padding: 6px 0; 
    font-weight: 600; 
    font-size: 0.95em; 
    position: relative; 
}

nav#main-nav a:after { 
    content: ''; 
    position: absolute; 
    bottom: -2px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--gold); 
    transition: width var(--transition); 
}

nav#main-nav a:hover:after,
nav#main-nav a[aria-current="page"]:after { 
    width: 100%; 
}

nav#main-nav a[aria-current="page"] { 
    color: var(--primary); 
}

.controls { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    position: relative; 
}

.lang-switcher { 
    border: 1px solid var(--border); 
    border-radius: var(--radius-small); 
    overflow: hidden; 
    display: flex; 
}

/* Mobile Lang Dropdown */
.lang-dropdown { 
    display: none; 
    position: relative; 
}

.lang-dropdown-btn { 
    background: var(--bg-alt); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-small); 
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
}

.lang-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    box-shadow: var(--shadow-medium);
    min-width: 140px;
    z-index: 1100;
}

.lang-dropdown.is-open .lang-dropdown-menu { 
    display: block; 
}

.lang-dropdown-menu button {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.9em;
    color: var(--text);
    transition: background 0.2s;
}

.lang-dropdown-menu button:hover { 
    background: #f5f5f5; 
}

.lang-dropdown-menu button.active { 
    background: var(--primary); 
    color: var(--bg-alt);
    font-weight: 700;
}

.lang-btn { 
    background: transparent; 
    border: 0; 
    color: var(--text-muted); 
    padding: 6px 10px; 
    cursor: pointer; 
    font-size: 0.9em; 
    transition: background .2s, color .2s; 
}

.lang-btn.active { 
    background: var(--primary); 
    color: var(--bg); 
    font-weight: 700; 
}

.lang-btn:not(.active):hover { 
    background: #eee; 
}

/* Mobile Nav Toggle */
.mobile-nav-toggle { 
    display: none; 
    background: none; 
    border: none; 
    font-size: 24px; 
    cursor: pointer; 
    color: var(--primary); 
    padding: 0 5px; 
}

/* --- Hero Sectie --- */
.hero {
    position: relative;
    overflow: hidden;
    background: rgba(10, 37, 64, 0.9);
    text-align: center;
}

.hero-bg-video {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 { 
    font-size: 2.8em; 
    margin-bottom: 16px; 
    color: var(--bg-alt); 
    line-height: 1.2; 
}

.hero .highlight { 
    color: var(--gold); 
    display: block; 
}

.hero p { 
    max-width: 600px; 
    margin: 0 auto 24px; 
    color: rgba(255, 255, 255, .9); 
    font-size: 1.15em; 
}

.cta-row { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
    justify-content: center; 
}

.hero .btn-primary { 
    padding: 14px 30px; 
}

.hero .btn-secondary { 
    padding: 14px 30px; 
    border-width: 2px; 
    background: transparent; 
    border-color: rgba(255,255,255,0.3); 
    color: var(--bg-alt); 
}

.hero .btn-secondary:hover { 
    background: rgba(255,255,255,0.1); 
    border-color: rgba(255,255,255,0.5); 
}

/* --- Secties Algemeen --- */
section { padding: 80px 0; }
section:nth-of-type(even) { background: var(--bg-alt); }

.section-header { 
    margin-bottom: 60px; 
    text-align: center; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto;
}

.section-header h2 { font-size: 2.8em; }
.section-header p { font-size: 1.1em; color: var(--text-muted); }

/* --- Specifieke Sectie Styling --- */
.text-section-columns { padding-bottom: 40px; }

.section-header-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 48px; 
    text-align: left; 
    align-items: center;
}

.section-header-split h2 { font-size: 2.2em; margin: 0; }
.section-header-split p { font-size: 1.05em; color: var(--text-muted); margin: 0; }

/* Packages Sectie */
#packages { 
/*     background: var(--bg); */ 
    padding-top: 0px !important; 
}

/* Filter Knoppen (Sticky) */
.filters { 
    display: flex; 
    gap: 8px; 
    justify-content: center; 
    margin-bottom: 36px; 
    flex-wrap: wrap;
    position: sticky;
    top: var(--header-height);
    background: var(--bg);
    padding: 15px 10px;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-bottom: 1px solid var(--border);
    transition: top 0.3s ease-out;
    opacity: 100;
    /* visibility: hidden; */
    transform: translateY(-100%);
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;

}

.filters.is-sticky {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.filter-btn { 
    background: var(--bg-alt); 
    border-radius: var(--radius-small); 
    padding: 8px 14px; 
    border: 1px solid var(--border); 
    cursor: pointer; 
    font-weight: 600; 
    transition: background .2s, color .2s, border-color .2s; 
}

.filter-btn:hover { background: #eee; }

.filter-btn.active { 
    background: var(--primary); 
    color: var(--bg-alt); 
    border-color: var(--primary); 
}

/* Expert Note & Legenda */
.expert-note, .data-legenda { 
    background-color: var(--bg-alt); 
    border: 1px solid var(--border); 
    border-left: 4px solid var(--gold); 
    padding: 20px 28px; 
    margin: 0 auto 40px auto; 
    max-width: 900px; 
    border-radius: var(--radius-small); 
    font-size: 0.95em; 
}

.expert-note h3, .data-legenda h3 { 
    font-family: var(--font-main); 
    font-size: 1.1em; 
    font-weight: 700; 
    color: var(--primary); 
    margin-top: 0; 
    margin-bottom: 12px; 
}

.expert-note p { 
    margin: 0; 
    color: var(--text-muted); 
    line-height: 1.5; 
}

.expert-note code { 
    background-color: #e9ecef; 
    padding: 2px 4px; 
    border-radius: 4px; 
    font-size: 0.9em; 
}

/* Nieuwe Legenda Stijlen */
.data-legenda { border-left-color: var(--accent); }

.legenda-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px 25px; 
}

.legenda-item { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-size: 0.9em; 
    color: var(--text-muted); 
}

.legenda-icon { 
    font-weight: 600; 
    font-family: monospace; 
    font-size: 1.1em; 
    padding: 2px 6px; 
    border-radius: var(--radius-small); 
}

.legenda-icon.prijs { color: #8a6d00; background: #fffbeb; }
.legenda-icon.zoekvol { color: #0a2540; background: #f0f4f8; }
.legenda-icon.cpc { color: #0a2540; background: #f0f4f8; }
.legenda-icon.besparing { color: #1e6100; background: #f2f8f0; }

/* Kaart (Portfolio) */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 24px; 
}

.card { 
    background: var(--bg-alt); 
    border-radius: var(--radius); 
    overflow: hidden; 
    box-shadow: var(--shadow-light); 
    border: 1px solid var(--border); 
    display: flex; 
    flex-direction: column; 
    height: 100%; 
    border-top: 4px solid var(--primary); 
}

.card .head { 
    background-color: var(--primary); 
    color: var(--gold); 
    padding: 16px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    min-height: 70px;
}

.card .head strong { 
    font-family: var(--font-heading); 
    font-size: 1.3em; 
    color: var(--gold); 
    line-height: 1.2; 
}

.card-tag { display: none; }

.card .body { 
    padding: 20px; 
    color: var(--text-muted); 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}

.card .body > p { 
    margin-top: 0; 
    font-weight: 600; 
    color: var(--text); 
    margin-bottom: 25px; 
    font-size: 1em; 
    text-align: center; 
}

.card .footer { 
    display: flex; 
    gap: 8px; 
    align-items: center; 
    justify-content: center; 
    padding: 16px 20px; 
    background: #f8f7f3; 
    border-top: 1px solid var(--border); 
    margin-top: auto; 
}

.card .footer .btn {
    padding: 14px 30px; 
    font-size: 1.1em;
}

/* --- Domein Lijst Stijlen --- */
#portfolioCard { 
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.domain-group { margin-bottom: 30px; }

.domain-group-title {
    font-family: var(--font-heading);
    font-size: 1.8em;
    color: var(--accent);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.domain-list { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

/* Domein Item */
.domain-item {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s ease-out;
    overflow: hidden;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    min-height: 45px;
}

.domain-item:hover {
    border-color: #ccc;
    box-shadow: var(--shadow-light);
}

.domain-item.selected {
    border-color: var(--gold);
    background: #fffdf5;
    box-shadow: var(--shadow-light);
}

.domain-item.is-sold {
    background: #f9f9f9;
    opacity: 0.7;
}

.domain-item.is-sold .domain-label {
    cursor: not-allowed;
}

/* Label met flexbox */
.domain-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0.6rem 0.75rem;
    cursor: pointer;
    background: #fdfdfd;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: background-color 0.2s;
}

.domain-label:hover {
    background-color: #f8f8f8;
}

.domain-item.selected .domain-label {
    background: #fffbeb;
    border-bottom-color: #fbe6a0;
}

.domain-checkbox {
    transform: scale(1.5);
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
    margin-left: 5px;
}

.domain-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
    color: var(--primary);
    flex-grow: 1;
}

.readable-name {
    font-weight: 700;
    color: #0D3257;
}

.domain-star {
    color: var(--gold);
    font-weight: bold;
    margin-right: 4px;
    font-size: 1.1em;
}

.domain-sold-badge {
    font-size: 0.85em;
    font-weight: 700;
    color: #b30000;
    background: #fee;
    padding: 4px 10px;
    border-radius: var(--radius-small);
    border: 1px solid #f8c0c0;
}

/* Accordion toggle link */
.domain-label .accordion-toggle {
    margin-left: auto;
    white-space: nowrap;
    text-decoration: underline;
    color: var(--primary);
    font-size: 0.9em;
    flex-shrink: 0;
}

.domain-label .accordion-toggle:hover {
    color: var(--gold);
}

/* Verwijder oude CTA container */
.domain-cta-container {
    display: none;
}

/* Accordion content */
.domain-accordion {
    overflow: hidden;
}

.domain-details {
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 25px;
    align-items: start;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.domain-item.is-open .domain-details {
    /* Verhoog de max-height drastisch om te zorgen dat de gestapelde
       content op mobiel nooit afgekapt wordt. */
    max-height: 8000px !important; /* Oorspronkelijk 500px. 4000px is een veilige, hoge waarde. */
    padding: 20px;
}

/* Data-balk */
.domain-data-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #fcfcfc;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    padding: 15px;
}

.data-item {
    display: flex;
    flex-direction: column;
}

.data-item::before {
    content: attr(data-label);
    font-size: 0.85em;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.data-item .data-value {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary);
    font-family: monospace;
}

.data-item.price .data-value {
    color: #8a6d00;
}

.data-item.saving .data-value {
    color: #1e6100;
}

/* Potentie/Doel tekst */
.domain-text {
    font-size: 0.95em;
    line-height: 1.5;
    padding-top: 5px;
}

.domain-text p {
    margin: 0 0 12px 0;
    color: var(--text-muted);
}

.domain-text p:last-child { margin-bottom: 0; }

.domain-text strong {
    display: block;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 3px;
}

/* Domain badge (premium) */
.domain-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Premium domains grid (nieuwe sectie) */
.premium-domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.domain-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.domain-card.featured::before {
    opacity: 1;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
}

.domain-category {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* --- ROI Sectie --- */
.roi-section { background: var(--bg-alt); }

.roi-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    text-align: center; 
}

.roi-item { padding: 24px; }

.roi-icon { 
    display: inline-block; 
    width: 50px; 
    height: 50px; 
    margin-bottom: 15px; 
    color: var(--gold); 
}

.roi-icon svg { width: 100%; height: 100%; }

.roi-item h3 { 
    font-size: 1.4em; 
    margin-bottom: 10px; 
    color: var(--primary); 
}

.roi-item p { 
    color: var(--text-muted); 
    font-size: 1em; 
    margin: 0; 
    line-height: 1.5; 
}

/* --- Profiles Sectie --- */
.profiles-section { background: var(--bg); }

.profiles-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
}

.profile-card { 
    background: var(--bg-alt); 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    padding: 28px; 
    border-top: 4px solid var(--gold); 
    box-shadow: var(--shadow-light); 
}

.profile-card h3 { 
    font-size: 1.4em; 
    margin-bottom: 12px; 
    color: var(--primary); 
}

.profile-card p { 
    color: var(--text-muted); 
    font-size: 0.95em; 
    line-height: 1.6; 
    margin: 0; 
}

.profile-card strong { 
    color: var(--text); 
    font-weight: 700; 
}

.profiles-cta { 
    margin-top: 40px; 
    text-align: center;
}

/* --- Acquisition Sectie --- */
.acquisition-section { background: var(--bg-alt); }

.acquisition-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    text-align: center; 
}

.acquisition-item { padding: 24px; }

.acquisition-icon { 
    display: inline-block; 
    width: 48px; 
    height: 48px; 
    margin-bottom: 15px; 
    color: var(--primary); 
}

.acquisition-icon svg { width: 100%; height: 100%; }

.acquisition-item h3 { 
    font-size: 1.3em; 
    margin-bottom: 10px; 
    color: var(--primary); 
}

.acquisition-item p { 
    color: var(--text-muted); 
    font-size: 0.95em; 
    margin: 0; 
    line-height: 1.5; 
}

/* --- FAQ Sectie --- */
.faq-section { background: var(--bg); }

.faq-container { 
    max-width: 800px; 
    margin: 0 auto; 
}

.faq-accordion details { 
    background: var(--bg-alt); 
    border: 1px solid var(--border); 
    border-radius: var(--radius-small); 
    margin-bottom: 10px; 
    transition: background .2s; 
}

.faq-accordion details:hover { 
    background: #f8f8f8; 
}

.faq-accordion summary { 
    padding: 18px 25px; 
    font-weight: 600; 
    color: var(--primary); 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    list-style: none; 
    font-size: 1.05em;
}

.faq-accordion summary::-webkit-details-marker { 
    display:none; 
}

.faq-accordion summary::after { 
    content: '+'; 
    font-size: 1.5em; 
    font-weight: 600; 
    transition: transform 0.2s; 
    line-height: 1; 
    color: var(--gold);
}

.faq-accordion details[open] summary { 
    border-bottom: 1px solid var(--border); 
}

.faq-accordion details[open] summary::after { 
    transform: rotate(45deg); 
}

.faq-accordion div { 
    padding: 15px 25px 20px 25px; 
    color: var(--text-muted); 
    line-height: 1.6; 
    font-size: 0.95em; 
    border-top: 1px solid var(--border); 
}

.faq-accordion div p:last-child { 
    margin-bottom: 0; 
}

/* --- Testimonials Sectie --- */
.testimonials-section { background: var(--bg-alt); }

.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 24px; 
}

.testimonial-card { 
    background: var(--bg); 
    padding: 24px; 
    border-radius: var(--radius); 
    border: 1px solid var(--border); 
    box-shadow: var(--shadow-light); 
    font-style: italic; 
    position: relative; 
    padding-top: 40px;
}

.testimonial-card::before { 
    content: '"'; 
    font-family: var(--font-heading); 
    font-size: 4em; 
    color: var(--gold); 
    position: absolute; 
    top: 10px; 
    left: 15px; 
    opacity: 0.8; 
    line-height: 1; 
}

.testimonial-quote { 
    margin-bottom: 15px; 
    color: var(--text); 
    font-size: 1.05em; 
}

.testimonial-author { 
    font-style: normal; 
    font-weight: 600; 
    color: var(--text-muted); 
    font-size: 0.9em; 
    text-align: right; 
}

/* --- Direct Contact B2B Sectie --- */
.direct-contact-bar {
    background: var(--primary);
    color: var(--bg-alt);
    padding: 50px 0;
    text-align: center;
}

.direct-contact-bar h2 {
    color: var(--bg-alt);
    font-size: 2.2em;
    margin-bottom: 15px;
}

.direct-contact-bar p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contact-b2b-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-b2b {
    background: var(--gold);
    color: var(--primary);
    font-size: 1.1em;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 700;
    transition: all 0.2s;
    border: 2px solid var(--gold);
}

.btn-b2b:hover {
    background: #c9a42f;
    transform: translateY(-2px);
}

.btn-b2b.email {
    background: transparent;
    border-color: rgba(255,255,255,0.3);
    color: var(--bg-alt);
}

.btn-b2b.email:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-b2b svg {
    width: 22px;
    height: 22px;
}

/* --- Contact Sectie --- */
.contact-section { 
    background: var(--bg); 
    padding-bottom: 100px; 
}

.contact-container { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px; 
    align-items: flex-start;
}

.contact-text h2 { font-size: 2.8em; }

.contact-text p { 
    font-size: 1.05em; 
    color: var(--text-muted); 
}

.contact-wrap { 
    background: var(--bg-alt); 
    padding: 35px; 
    border: 1px solid var(--border); 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-light); 
}

.form-row { margin-bottom: 18px; }
.form-row-submit { margin-top: 25px; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row.full-width {
    grid-column: 1 / -1;
}

label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    font-size: 0.9em; 
}

.form-control { 
    width: 100%; 
    padding: 14px; 
    border-radius: var(--radius-small); 
    border: 1px solid var(--border); 
    margin-bottom: 0; 
    font-size: 1em; 
    font-family: var(--font-main); 
    transition: border-color .2s, box-shadow .2s;
}

.form-control:focus { 
    border-color: var(--primary); 
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1); 
    outline: none; 
}

.form-control[aria-invalid="true"] { 
    border-color: #a10000; 
    background-color: #fffafa; 
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdfdfd;
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: var(--radius-small);
}

.captcha-row label {
    margin: 0;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.captcha-row #captcha {
    width: 80px;
    padding: 10px;
    text-align: center;
}

.form-row-submit .btn { 
    width: 100%; 
    padding: 14px 24px; 
    font-size: 1em; 
}

/* Formulier Meldingen */
#formAlert {
    margin-bottom: 15px;
    font-size: 0.95em;
    font-weight: 600;
}

#formAlert div {
    padding: 12px 18px;
    border-radius: var(--radius-small);
    border: 1px solid transparent;
}

#formAlert.success div {
    background: #f2f8f0;
    border-color: #a3d18c;
    color: #1e6100;
}

#formAlert.error div {
    background: #fffafa;
    border-color: #f8c0c0;
    color: #a10000;
}

/* --- Custom Alert Pop-up --- */
.custom-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.custom-alert-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.custom-alert-box {
    background: var(--bg-alt);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 450px;
    width: 100%;
    text-align: center;
    transform: scale(1);
    transition: transform 0.2s ease-out;
}

.custom-alert-overlay.hidden .custom-alert-box {
    transform: scale(0.95);
}

.custom-alert-box h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.2em;
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 10px;
}

.custom-alert-box p {
    color: var(--text-muted);
    font-size: 1em;
    margin-bottom: 25px;
}

.custom-alert-box .btn {
    width: 100%;
}

/* --- Footer --- */
.site-footer { 
    background: var(--primary); 
    color: rgba(255,255,255,0.8); 
    padding-top: 60px; 
    margin-top: 0; 
    font-size: 0.9em; 
}

.footer-content { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 40px; 
    padding-bottom: 40px; 
}

.footer-col h4 { 
    color: var(--bg-alt); 
    margin-bottom: 15px; 
    font-size: 1.1em;
}

.footer-col-logo .logo { 
    color: var(--bg-alt); 
    display: block; 
    margin-bottom: 15px; 
}

.footer-about { 
    margin-bottom: 15px; 
    line-height: 1.5; 
    color: rgba(255,255,255,0.7);
}

.site-footer nav { 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
}

.site-footer nav a { 
    color: rgba(255,255,255,0.8); 
    margin-left: 0; 
}

.site-footer nav a:hover { 
    color: var(--bg-alt); 
}

.site-footer nav a:after { 
    background: var(--gold); 
    bottom: -1px;
}

.footer-col p { 
    margin-bottom: 0.5em; 
    color: rgba(255,255,255,0.7); 
}

.footer-col p a { 
    color: rgba(255,255,255,0.8); 
    border-bottom: 1px dotted rgba(255,255,255,0.5); 
}

.footer-col p a:hover { 
    color: var(--bg-alt); 
    border-bottom-color: var(--bg-alt); 
}

.footer-col .btn { 
    margin-top: 15px; 
}

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 20px 0; 
    color: rgba(255,255,255,0.6); 
    font-size: 0.85em; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 10px;
}

.footer-legal-links a { 
    color: rgba(255,255,255,0.6); 
}

.footer-legal-links a:hover { 
    color: var(--bg-alt); 
}

/* --- Status Pagina's --- */
.status-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 40px 20px;
}

.status-icon {
    font-size: 4em;
    line-height: 1;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.status-icon.success { 
    color: #1e6100; 
    background: #f2f8f0; 
}

.status-icon.error { 
    color: #a10000; 
    background: #fffafa; 
}

.status-page h1 { 
    font-size: 2.5em; 
    margin-bottom: 15px; 
}

.status-page p { 
    font-size: 1.1em; 
    color: var(--text-muted); 
    max-width: 500px; 
}

/* --- Sticky CTA Button --- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a65ff;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    z-index: 9999;
    cursor: pointer;
}

.sticky-cta:hover {
    opacity: 0.9;
}

/* --- Utility Classes --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.large-checkbox {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    cursor: pointer;
}

/* Stijlen voor de data-legenda binnen de accordion */
.domain-details .data-legenda {
    grid-column: 1 / -1; /* Zorg dat het de volledige breedte pakt */
    margin-top: 20px;
    padding: 15px;
    border-left-width: 3px;
    font-size: 0.9em;
}

.domain-details .data-legenda h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1em;
}

.domain-details .data-legenda .legenda-grid {
    grid-template-columns: 1fr; /* Stapel items op kleinere schermen */
    gap: 10px;
}

@media (min-width: 500px) {
    .domain-details .data-legenda .legenda-grid {
        grid-template-columns: 1fr 1fr; /* Twee kolommen op grotere schermen */
    }
}

/* ========================================
   RESPONSIVE AANPASSINGEN
   ======================================== */

@media(max-width: 992px) {
    .roi-grid { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }
    
    .profiles-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .acquisition-grid { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }
    
    .footer-content { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .site-footer nav { 
        align-items: center; 
    }
    
    .footer-col-logo { 
        margin-bottom: 20px; 
    }
    
    .legenda-grid { 
        grid-template-columns: 1fr; 
    }
}

@media(max-width: 768px) {
    body { 
        padding-top: 70px; 
    }
    
    :root { 
        --header-height: 70px; 
    }
    
    .site-header { 
        height: var(--header-height); 
    }

    /* Logo op 2 regels */
    .logo { 
        font-size: 13px; 
        line-height: 1.3;
        max-width: 100%;
        text-align: left;
    }
    
    /* Verberg desktop lang switcher, toon dropdown */
    .lang-switcher { 
        display: none; 
    }
    
    .lang-dropdown { 
        display: block; 
    }
    
    /* Header layout */
    .header-inner {
        gap: 12px;
    }
    
    .controls {
        flex-shrink: 0;
        margin-left: auto;
    }
    
    /* Mobiele Navigatie */
    nav#main-nav {
        display: none;
        position: fixed; 
        top: var(--header-height); 
        left: -100%;
        width: 80%; 
        max-width: 300px; 
        height: calc(100vh - var(--header-height));
        background: var(--primary); 
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column; 
        align-items: flex-start;
        padding: 40px 30px; 
        gap: 20px; 
        z-index: 1001;
        overflow-y: auto; 
        transition: left 0.4s ease-in-out;
    }
    
    nav#main-nav.is-open { 
        display: flex; 
        left: 0; 
    }
    
    nav#main-nav a { 
        color: var(--bg-alt); 
        margin-left: 0; 
        font-size: 1.1em; 
        width: 100%; 
        padding: 10px 0;
    }
    
    nav#main-nav a:after { 
        display: none; 
    }
    
    .mobile-nav-toggle { 
        display: block; 
        z-index: 1002; 
        position: relative;
        font-size: 20px;
        padding: 5px;
    }
    
    .controls { 
        gap: 10px; 
    }
    
    .contact-container { 
        grid-template-columns: 1fr; 
    }
    
    .section-header-split { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 24px;
    }
    
    .roi-grid { 
        grid-template-columns: 1fr; 
    }
    
    .acquisition-grid { 
        grid-template-columns: 1fr; 
    }
    
    .faq-container { 
        max-width: 100%; 
    }
    
    .testimonials-grid { 
        grid-template-columns: 1fr; 
    }
    
    /* Formulier opmaak op mobiel */
    .form-grid { 
        grid-template-columns: 1fr; 
    }
    
    .captcha-row { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 10px; 
    }
    
    .captcha-row label { 
        text-align: center; 
    }
    
    .captcha-row #captcha { 
        width: 100%; 
    }
    
    .legenda-grid { 
        grid-template-columns: 1fr; 
    }

    /* ===== VERBETERDE MOBIELE DOMEIN LIJST ===== */
    .domain-item {
        padding: 0;
    }
    
    .domain-label {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 12px;
        position: relative;
    }
    
    /* Checkbox links bovenin (absolute) */
    .domain-label > input.domain-checkbox {
        position: absolute;
        top: 15px;
        left: 15px;
        transform: scale(1.3);
    }
    
    /* Domain naam sectie met ruimte voor checkbox */
    .domain-name {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding-left: 35px;
        font-size: 0.9rem;
        line-height: 1.4;
            
    
    }
    
    /* Badge bovenaan */
    .domain-badge {
        align-self: flex-start;
        margin-bottom: 4px;
        font-size: 9px;
        padding: 2px 6px;
    }
    
    /* Readable name op eigen regel */
    .readable-name {
        display: block;
        line-height: 1.4;
        word-break: break-word;
    }
    
    .readable-name strong {
        display: block;
        margin-top: 4px;
        font-size: 0.85em;
    }
    
    /* "Meer info" knop onderaan, volle breedte */
    .domain-label .accordion-toggle {
        margin-left: 0;
        margin-top: 8px;
        padding: 8px 0;
        width: 100%;
        text-align: center;
        border-top: 1px solid var(--border);
        padding-top: 12px;
    }
    
    /* Verkocht badge rechts bovenin */
    .domain-sold-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 0.75em;
    }
    
    /* Domain details accordion */
    .domain-details {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .domain-data-bar {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
    }
    
    .data-item {
        font-size: 0.85em;
    }
    
    .data-item::before {
        font-size: 0.75em;
    }
    
    .data-item .data-value {
        font-size: 1em;
    }
    
    .domain-text { 
        padding-top: 0; 
    }

    /* Premium domains grid op mobiel */
    .premium-domains-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .domain-card {
        padding: 20px;
    }
}

/* Extra kleine schermen */
@media(max-width: 600px) {
    h1, .hero h1 { 
        font-size: 2em;
    }
    
    h2, .section-header h2 { 
        font-size: 1.8em; 
    }
    
    .logo { 
        font-size: 20px; 
    }
    
    .footer-content { 
        text-align: center; 
    }
    
    .footer-bottom { 
        flex-direction: column; 
        text-align: center; 
        gap: 5px; 
    }
    
    .roi-grid, .profiles-grid, .acquisition-grid, .testimonials-grid { 
        gap: 20px; 
    }
    
    .form-control { 
        padding: 12px; 
    }
    
    .btn { 
        padding: 12px 20px; 
    }
    
    .btn-small { 
        padding: 8px 12px; 
    }
    
    /* Filters op 2 kolommen */
    .filters {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .filters .btn { 
        width: 100%; 
    }
}

@media(max-width: 360px) {
    .logo {
        font-size: 12px;
        max-width: 160px;
    }
    
    .lang-dropdown-btn {
        padding: 6px 10px;
        font-size: 0.85em;
    }
    
    .domain-label {
        padding: 12px;
    }
    
    .domain-name {
        padding-left: 30px;
        font-size: 0.85rem;
    }
}

/* ===================================================================== */
/* CSS VOOR DE NIEUWE SEO SECTIES (WonenInSpanje.nl)                     */
/* ===================================================================== */

/* --- Algemene Stijlen voor de Secties --- */
.waarde-propositie,
.hoe-werkt-het,
.faq-sectie,
.kennisbank {
    font-family: Arial, sans-serif;
    padding: 40px 20px;
}

/* Een standaard container om de inhoud te centreren */
.seo-container {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Standaard koppen (H2) voor elke sectie */
.waarde-propositie h2,
.hoe-werkt-het h2,
.faq-sectie h2,
.kennisbank h2 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* --- 1. Waarde Propositie --- */
.waarde-propositie {
    background-color: #f9f9f9;
    text-align: center;
}

.waarde-propositie p {
    font-size: 16px;
    line-height: 1.6;
}

.waarde-propositie p + p {
    margin-top: 15px;
}


/* --- 2. Hoe Werkt Het --- */
.hoe-werkt-het {
    text-align: center;
}

.hoe-werkt-het h2 {
    margin-bottom: 30px;
}

.stappen-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Zorgt dat stappen onder elkaar springen op mobiel */
}

.stap {
    flex-basis: 30%; /* Streeft naar 3 kolommen */
    min-width: 250px; /* Minimum breedte voor leesbaarheid */
    margin-bottom: 20px;
}

.stap h3 {
    font-size: 20px;
    color: #004a99; /* Kleur om de stappen te accentueren */
    margin-bottom: 10px;
}

.stap p {
    font-size: 15px;
    line-height: 1.5;
}


/* --- 3. FAQ Sectie --- */
.faq-sectie {
    background-color: #f9f9f9;
}

.faq-sectie h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
}


/* --- 4. Kennisbank --- */
.kennisbank {
    text-align: center;
}

/* De introductieparagraaf onder de H2 */
.kennisbank .intro-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.artikelen-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.artikel-preview {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 20px;
    text-align: left; /* Artikelen zelf links uitlijnen */
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-sizing: border-box; /* Zorgt dat padding de breedte niet beïnvloedt */
}

.artikel-preview h4 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
}

.artikel-preview p {
    font-size: 15px;
    margin-bottom: 15px;
}

.artikel-preview a {
    font-size: 15px;
    color: #004a99;
    text-decoration: none;
    font-weight: bold;
}

.artikel-preview a:hover {
    text-decoration: underline;
}


