/* ═══════════════════════════════════════
   IT'S DONE SERVICES — NIEUWE WEBSITE
   Lichte, zakelijke uitstraling
   ═══════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: #0c1b33;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── VARIABELEN ── */
:root {
    --navy:       #0c1b33;
    --navy-mid:   #1a2d50;
    --blue:       #1d4ed8;
    --blue-hover: #1740b8;
    --blue-light: #eff4ff;
    --orange:     #f97316;
    --orange-hover: #ea6b0e;
    --green:      #16a34a;
    --white:      #ffffff;
    --gray-50:    #f8fafc;
    --gray-100:   #f1f5f9;
    --gray-200:   #e2e8f0;
    --gray-400:   #94a3b8;
    --gray-500:   #64748b;
    --gray-700:   #334155;
    --radius:     12px;
    --radius-lg:  20px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
    --shadow:     0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
    /* Elegante timing voor de scroll-overgang van de navigatie */
    --nav-duration: 0.55s;
    --nav-ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── LAYOUT ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
section { padding: 96px 0; }
.section-light  { background: var(--gray-50); }
.section-white  { background: var(--white); }

/* ── TYPOGRAFIE ── */
h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}
h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
}
h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--navy);
    margin-bottom: 10px;
}
p { line-height: 1.7; }

.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}
.section-header { max-width: 580px; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-desc { color: var(--gray-500); font-size: 1rem; }

/* ── NAVIGATIE ── */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
}
.nav-inner {
    display: flex;
    align-items: center;
    padding: 22px 48px;
    transition:
        background      var(--nav-duration) var(--nav-ease),
        backdrop-filter var(--nav-duration) var(--nav-ease),
        border-color    var(--nav-duration) var(--nav-ease),
        box-shadow      var(--nav-duration) var(--nav-ease),
        padding         var(--nav-duration) var(--nav-ease);
    border-bottom: 1px solid transparent;
}
#header.scrolled .nav-inner {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 14px 48px;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
    transition: filter var(--nav-duration) var(--nav-ease);
}
/* Witte PNG logo recoloren naar dezelfde navy als de titels (#0c1b33).
   Filter-chain berekend voor dichte benadering van #0c1b33. */
#header.scrolled .logo-img {
    filter: brightness(0) saturate(100%) invert(8%) sepia(58%) saturate(2800%) hue-rotate(210deg) brightness(85%) contrast(105%);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin-left: auto;
    padding-right: 40px;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color var(--nav-duration) var(--nav-ease);
}
.nav-links a:hover { color: #fff; }
#header.scrolled .nav-links a { color: var(--gray-700); }
#header.scrolled .nav-links a:hover { color: var(--navy); }

.nav-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--orange);
    color: #fff;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(249,115,22,0.25);
}
.nav-phone:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}
#header.scrolled .nav-phone { color: #fff; }

.btn-nav-cta {
    padding: 9px 20px;
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.btn-nav-cta:hover { background: var(--orange-hover); transform: translateY(-1px); }

/* ── TALENSCHAKELAAR ── */
.lang-switcher {
    position: relative;
    margin-left: 14px;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    padding: 7px 13px;
    color: rgba(255,255,255,0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background   var(--nav-duration) var(--nav-ease),
        border-color var(--nav-duration) var(--nav-ease),
        color        var(--nav-duration) var(--nav-ease);
    white-space: nowrap;
}
.lang-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.lang-switcher.open .lang-btn {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
/* Op witte (scrolled) nav */
#header.scrolled .lang-btn {
    background: var(--gray-50);
    border-color: var(--gray-200);
    color: var(--gray-700);
}
#header.scrolled .lang-btn:hover,
#header.scrolled .lang-switcher.open .lang-btn {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--navy);
}

.lang-flag {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    overflow: hidden;
    display: inline-block;
    background-size: cover;
    flex-shrink: 0;
}
.lang-code { letter-spacing: 0.05em; }
.lang-chevron {
    color: currentColor;
    transition: transform 0.3s ease;
    margin-left: 2px;
}
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 6px;
    min-width: 170px;
    box-shadow: 0 20px 48px rgba(12,27,51,0.15);
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 999;
}
.lang-switcher.open .lang-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--gray-700);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}
.lang-option:hover {
    background: var(--blue-light);
    color: var(--navy);
}
.lang-option.active {
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 600;
}
.lang-option .fi {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    flex-shrink: 0;
    background-size: cover;
}

/* Taal niet beschikbaar popup */
#langPopup {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}
#langPopup.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
#langPopup .popup-flag {
    width: 22px;
    height: 16px;
    border-radius: 3px;
    flex-shrink: 0;
}
#langPopup strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
    color: var(--orange);
}
#langPopup span {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition:
        background var(--nav-duration) var(--nav-ease),
        transform  0.3s ease,
        opacity    0.3s ease;
}
#header.scrolled .hamburger span { background: var(--navy); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; pointer-events: all; }
.mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 28px; }
.mobile-menu ul a { font-size: 1.8rem; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -0.02em; }
.btn-mobile-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--navy);  /* fallback voordat video laadt */
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Video draait als full-hero achtergrond — autoplay, muted, looped */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
/* Donkere gradient over de video — donkerder links voor tekstcontrast,
   lichter rechts zodat de video zichtbaar blijft */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(95deg,
            rgba(12,27,51,0.94) 0%,
            rgba(12,27,51,0.80) 35%,
            rgba(12,27,51,0.55) 70%,
            rgba(12,27,51,0.35) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
}
.hero .container {
    position: relative;
    z-index: 3;
}
.hero-left {
    max-width: 640px;
}

/* ── Dynamische status binnen de hero-kaart ── */
.hc-value--status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.status-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: statusPulse 2s ease-in-out infinite;
    transition: background 0.4s ease;
}
@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
    50%      { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
/* Open: groene tekst */
.hero-card-item[data-status="open"] #statusText {
    color: #22c55e;
    transition: color 0.4s ease;
}
/* Gesloten: rode stip + rode tekst */
.hero-card-item[data-status="gesloten"] .status-dot {
    background: #ef4444;
    animation-name: statusPulseRed;
}
.hero-card-item[data-status="gesloten"] #statusText {
    color: #ef4444;
    transition: color 0.4s ease;
}
@keyframes statusPulseRed {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(239,68,68,0.45); }
    50%      { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 5px rgba(239,68,68,0); }
}

/* ── Slim live-status badge boven H1 ── */
.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px 8px 14px;
    margin-bottom: 26px;
    border-radius: 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    transition: background 0.4s ease, border-color 0.4s ease;
    max-width: 100%;
}
.hero-status[data-status="open"] {
    background: rgba(34,197,94,0.06);
    border-color: rgba(34,197,94,0.30);
}
.hero-status[data-status="gesloten"] {
    background: rgba(239,68,68,0.06);
    border-color: rgba(239,68,68,0.30);
}
.hero-status .status-dot { width: 9px; height: 9px; }
.hero-status-text {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-size: 0.85rem;
    line-height: 1.3;
    flex-wrap: wrap;
}
.hero-status-text strong {
    color: #fff;
    font-weight: 700;
    transition: color 0.4s ease;
}
.hero-status[data-status="open"] .hero-status-text strong     { color: #22c55e; }
.hero-status[data-status="gesloten"] .hero-status-text strong { color: #ef4444; }
.hero-status-text span {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}

.hero-left h1 { color: #fff; margin-bottom: 22px; }
.hero-accent { color: var(--orange); }
.hero-accent--region {
    display: inline-block;
    font-size: 0.42em;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    margin-top: 10px;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.72;
    margin-bottom: 40px;
    max-width: 480px;
}
.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--orange);
    color: #fff;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}
.btn-call:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.4); }

.btn-ghost-hero {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.btn-ghost-hero:hover { color: #fff; }

/* ── Certificaten / keurmerken (vervangt .hero-trust) ── */
.hero-certs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    line-height: 1.2;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.cert-badge:hover {
    border-color: rgba(255,255,255,0.30);
    background: rgba(255,255,255,0.06);
}
.cert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.65);
}
.cert-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
/* Fallback shield-svg toont alleen als de img niet laadt (via onerror in HTML) */
.cert-icon svg {
    width: 100%;
    height: 100%;
    display: none;
}
.cert-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}


/* ── DIENSTEN ── */
.diensten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.dienst-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.dienst-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.dienst-featured {
    border-color: rgba(249,115,22,0.25);
    background: linear-gradient(135deg, rgba(249,115,22,0.03) 0%, rgba(255,255,255,1) 60%);
}
.dienst-featured:hover { border-color: var(--orange); }

.dienst-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.dienst-icon-orange { background: rgba(249,115,22,0.08); }
.dienst-icon img { width: 26px; height: 26px; object-fit: contain; }

.dienst-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(249,115,22,0.1);
    color: var(--orange);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    align-self: flex-start;
}
.dienst-card h3 { margin-bottom: 8px; }
.dienst-card p {
    color: var(--gray-500);
    font-size: 0.88rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}
.dienst-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s;
    display: inline-block;
}
.dienst-link:hover { color: var(--blue-hover); }

/* ── WERKWIJZE ── */
.werkwijze-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
}
.step { padding: 0 32px; }
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--gray-500); font-size: 0.92rem; }

.step-arrow {
    color: var(--gray-300);
    font-size: 1.8rem;
    padding-top: 28px;
    line-height: 1;
    user-select: none;
}

/* ── OVER ONS ── */
.over-ons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.over-ons-content h2 { margin-bottom: 18px; }
.over-ons-content p { color: var(--gray-500); margin-bottom: 14px; }
.over-ons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0 32px;
}
.over-ons-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--gray-700);
}
.over-ons-list svg { color: var(--blue); flex-shrink: 0; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--navy);
    color: var(--navy);
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    gap: 16px;
}
.info-divider { height: 1px; background: var(--gray-100); }
.info-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
}
.info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
    line-height: 1.3;
}
.info-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px;
    background: var(--orange);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: -0.01em;
}
.info-cta:hover { background: var(--orange-hover); }

/* ── URGENTIE CTA ── */
.urgentie-cta {
    background: var(--navy);
    padding: 80px 0;
}
.urgentie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}
.urgentie-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}
.urgentie-text h2 { color: #fff; margin-bottom: 10px; }
.urgentie-text p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.btn-call-xl {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 22px 44px;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(249,115,22,0.3);
    letter-spacing: -0.01em;
}
.btn-call-xl:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(249,115,22,0.4); }

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--gray-500); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--navy);
    transition: color 0.2s;
}
.contact-item:hover { color: var(--blue); }
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}
.ci-label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 2px; }
.ci-value { font-size: 0.97rem; font-weight: 600; }

/* Formulier */
.contact-form-wrap {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }
label { font-size: 0.8rem; font-weight: 600; color: var(--gray-700); }
input, textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
}
input:focus, textarea:focus { border-color: var(--blue); }
textarea { resize: vertical; min-height: 120px; }
::placeholder { color: var(--gray-400); }
.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { margin-top: 12px; font-size: 0.85rem; }
.form-note--ok { color: var(--green); }
.form-note--err { color: #dc2626; }

/* ── FOOTER ── */
footer {
    background: var(--navy);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 28px;
}
.footer-logo { height: 30px; width: auto; display: block; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.86rem; line-height: 1.65; max-width: 270px; }
.footer-col h4 { color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-col .footer-phone {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-col .footer-phone:hover { color: var(--orange); }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.86rem; display: block; margin-bottom: 6px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-col span { color: rgba(255,255,255,0.4); font-size: 0.86rem; }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.8rem; }


/* ══════════════════════════════════
   FAQ
   ══════════════════════════════════ */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.faq-item:hover {
    border-color: var(--gray-300);
}
.faq-item.open {
    border-color: var(--navy);
    box-shadow: 0 6px 24px rgba(12,27,51,0.08);
}
.faq-question {
    width: 100%;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 22px 24px;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    line-height: 1.4;
    transition: color 0.2s ease;
}
.faq-question:hover { color: var(--blue); }
.faq-question:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
    border-radius: 14px;
}
.faq-icon {
    position: relative;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: inline-block;
    transition: background 0.25s ease, transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, background 0.25s ease;
}
.faq-icon::before {
    width: 12px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 2px;
    height: 12px;
    transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon {
    background: var(--navy);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
    background: #fff;
}
.faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--gray-600);
    font-size: 0.97rem;
    line-height: 1.65;
}
.faq-answer-inner p { margin: 0; }

.faq-footer {
    margin-top: 44px;
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.faq-footer p {
    color: var(--gray-600);
    margin-bottom: 18px;
    font-size: 1rem;
}
.faq-footer-ctas {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.faq-footer-ctas .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ghost-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}
.btn-ghost-link:hover {
    color: var(--navy);
    transform: translateX(2px);
}

/* ══════════════════════════════════
   FLOATING CHATBOT
   ══════════════════════════════════ */
.floating-chat {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    border: 0;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(249,115,22,0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.floating-chat:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 32px rgba(249,115,22,0.55);
    background: var(--orange-hover);
}
.floating-chat-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--orange);
    opacity: 0.5;
    animation: chatPulse 2.2s ease-out infinite;
    pointer-events: none;
}
@keyframes chatPulse {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(1.5); opacity: 0; }
}
.floating-chat svg { position: relative; z-index: 1; }

.chat-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12,27,51,0.45);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.chat-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.chat-window {
    position: fixed;
    right: 28px;
    bottom: 100px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 540px;
    max-height: calc(100vh - 130px);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(12,27,51,0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.97);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(.2,.9,.3,1.2), visibility 0.25s ease;
    border: 1px solid var(--gray-200);
}
.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.chat-header {
    background: var(--navy);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.chat-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.chat-header-name {
    display: block;
    font-weight: 700;
    font-size: 0.97rem;
    line-height: 1.2;
}
.chat-header-status {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    line-height: 1.3;
    margin-top: 2px;
}
.chat-header-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    flex: 0 0 auto;
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
    animation: chatStatusPulse 2s infinite;
}
@keyframes chatStatusPulse {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.chat-close {
    background: rgba(255,255,255,0.08);
    border: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    flex: 0 0 auto;
}
.chat-close:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 18px 8px;
    background: var(--gray-50);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-messages::-webkit-scrollbar { width: 5px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }

.chat-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.5;
    word-wrap: break-word;
    animation: chatFadeIn 0.25s ease-out;
}
@keyframes chatFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: none; }
}
.chat-bubble.bot {
    background: #fff;
    color: var(--navy);
    border: 1px solid var(--gray-200);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.chat-bubble.user {
    background: var(--blue);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    align-self: flex-start;
    max-width: 100%;
}
.chat-suggestion {
    background: #fff;
    border: 1px solid var(--gray-300);
    color: var(--navy);
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.chat-suggestion:hover {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

.chat-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #fff;
    border-top: 1px solid var(--gray-200);
}
.chat-input {
    flex: 1;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    min-width: 0;
}
.chat-input::placeholder { color: var(--gray-500); }
.chat-input:focus {
    border-color: var(--blue);
    background: #fff;
}
.chat-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: background 0.2s ease, transform 0.15s ease;
}
.chat-send:hover {
    background: var(--navy);
    transform: scale(1.04);
}

/* ── FADE-UP ANIMATIES ── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 3px; }

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */

@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .nav-inner { padding: 20px 32px; }
    #header.scrolled .nav-inner { padding: 13px 32px; }
    .hero-left { max-width: 100%; }
    .diensten-grid { grid-template-columns: repeat(2, 1fr); }
    .over-ons-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .urgentie-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    section { padding: 64px 0; }
    .nav-inner { padding: 16px 20px; }
    #header.scrolled .nav-inner { padding: 11px 20px; }
    .nav-links, .nav-contact, .lang-switcher { display: none; }
    /* Logo schalen — bron is 6386x527 (12:1), op desktop 34px hoog wordt
       dat ~412px breed. Op mobiel constrainen we hoogte én breedte zodat
       er altijd ruimte overblijft voor het hamburger-menu. */
    .logo { display: flex; max-width: calc(100% - 60px); }
    .logo-img { height: auto; max-height: 22px; max-width: 100%; width: auto; }
    .hamburger {
        display: flex;
        margin-left: auto;
        padding: 10px;
        flex-shrink: 0;
    }
    .hero { padding: 100px 0 64px; }
    .hero-cta { flex-direction: column; align-items: flex-start; gap: 14px; }
    .hero-certs { gap: 10px; padding-top: 20px; margin-top: 24px; }
    .cert-badge { padding: 7px 11px; gap: 7px; }
    .cert-icon { width: 18px; height: 18px; }
    .cert-name { font-size: 0.84rem; }
    .hero-status { padding: 7px 14px 7px 12px; margin-bottom: 22px; }
    .hero-status-text { font-size: 0.8rem; }
    .diensten-grid { grid-template-columns: 1fr; }
    .werkwijze-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .step { padding: 0; }
    .step-arrow { display: none; }
    .contact-form-wrap { padding: 24px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .btn-call-xl { font-size: 1.1rem; padding: 18px 32px; }
}

/* Extra kleine schermen — iPhone SE en kleinere Android-toestellen */
@media (max-width: 400px) {
    .nav-inner { padding: 14px 16px; }
    #header.scrolled .nav-inner { padding: 10px 16px; }
    .logo { max-width: calc(100% - 52px); }
    .logo-img { max-height: 18px; }
    .hamburger { padding: 8px; }
    .faq-question { padding: 18px 18px; font-size: 0.96rem; gap: 14px; }
    .faq-answer-inner { padding: 0 18px 18px; font-size: 0.93rem; }
    .faq-footer-ctas { flex-direction: column; gap: 12px; }
    .floating-chat { right: 18px; bottom: 18px; width: 54px; height: 54px; }
    .chat-window {
        right: 12px;
        left: 12px;
        bottom: 84px;
        width: auto;
        max-width: none;
        height: calc(100vh - 110px);
        max-height: calc(100vh - 110px);
    }
    .chat-close { width: 36px; height: 36px; }
    .chat-send { width: 40px; height: 40px; }
    .chat-suggestion { padding: 8px 12px; font-size: 0.83rem; min-height: 36px; display: inline-flex; align-items: center; }
}
