/* 1. FONTS & BASICS */
@font-face {
    font-family: 'Redgar';
    src: url('fonts/Redgar.ttf.woff') format('woff'),
         url('fonts/Redgar.ttf.svg#Redgar') format('svg'),
         url('fonts/Redgar.ttf.eot'),
         url('fonts/Redgar.ttf.eot?#iefix') format('embedded-opentype'); 
    font-weight: normal;
    font-style: normal;
}

:root {
    --font-headings: 'Redgar', 'Impact', 'Arial Black', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --color-orange: #F59E0B;
    --color-bg: #0b0b0b;
    --color-card-bg: #111111;
    --color-white: #ffffff;
}

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

body {
    font-family: var(--font-body);
    background-color: #000000;
    color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Algemene Sectie Titel */
.section-title {
    font-family: var(--font-headings);
    color: var(--color-orange);
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* 2. HEADER & NAVIGATIE */
.site-header {
    position: relative;
    width: 100%;
    z-index: 100;
    padding: 25px 0;
    background-color: #000000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

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

.logo-extra-icon {
    height: 20px;
    width: auto;
    opacity: 0.4;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: var(--color-orange);
}

.nav-btn {
    background-color: var(--color-orange) !important;
    color: #000000 !important;
    font-family: var(--font-headings);
    font-size: 1.1rem !important;
    padding: 12px 28px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn i {
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
}

/* 3. HERO SECTIE */
.hero-section {
    position: relative;
    height: calc(100vh - 90px);
    min-height: 550px;
    width: 100%;
    background-image: url('images/frontpage-hero.webp'); 
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-orange);
    opacity: 0.8;
    z-index: 1;
    mix-blend-mode: multiply; 
}

.hero-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    z-index: 2;
}

.hero-sub {
    font-family: var(--font-headings);
    color: var(--color-orange);
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 6.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
    max-width: 600px;
    color: var(--color-white);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-title .highlight {
    color: var(--color-orange);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 35px;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* BUTTONS SYSTEM */
.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    font-family: var(--font-headings);
    font-size: 1.15rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--color-orange);
    color: #000000;
    font-weight: bold;
}

.btn-primary:hover {
    background-color: #d97706;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

/* 4. SECTIE: DIT DOEN WE (DIENSTEN) */
.services-section {
    background-color: #0b0b0b;
    padding: 100px 40px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background-color: #111111;
    border: 1px solid #1a1a1a;
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--color-orange);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--color-orange);
    margin-bottom: 25px;
}

.service-card h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #888888;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-link {
    color: var(--color-orange);
    font-size: 1.1rem;
    text-decoration: none;
}

/* 5. SECTIE: RECENTE PRODUCTIES */
.portfolio-section {
    background-color: #000000;
    padding: 100px 0 60px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0; 
    margin-bottom: 40px;
}

.portfolio-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #000000;
    cursor: pointer;
}

/* De goud/gele gloed-overlay */
.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Verlaagd naar 0.2 voor een subtiele gloed */
    background-color: rgba(245, 158, 11, 0.2); 
    /* Multiply zorgt voor een warmere, minder felle vermenging met de foto */
    mix-blend-mode: multiply; 
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Extra donkere overlay voor dat rauwe contrast uit de mockup */
.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    z-index: 1;
    transition: opacity 0.4s ease;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Basis is een beetje desaturated voor die ruige look */
    filter: grayscale(40%) contrast(115%);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* --- HOVER EFFECTEN --- */

/* 1. De goud/gele gloed gaat er vloeiend vanaf */
.portfolio-item:hover::after {
    opacity: 0;
}

/* 2. De extra donkere schaduw mag ook iets lichter worden */
.portfolio-item:hover::before {
    opacity: 0.3;
}

/* 3. Het zoom-effect + de echte kleuren komen terug */
.portfolio-item:hover img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.08); /* Subtiele, vloeiende zoom */
}

/* 6. SECTIE: STATISTIEKEN */
.stats-section {
    background-color: #0b0b0b;
    padding: 80px 40px;
    border-top: 1px solid #111111;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid #222222;
    padding: 10px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-orange);
    margin-bottom: 15px;
}

.stat-number {
    font-family: var(--font-headings);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #aaaaaa;
}

/* 7. SECTIE: TUSSEN CTA */
.mid-cta-section {
    position: relative;
    /* We proberen beide logische paden; mocht je css in een mapje 'css/' of 'style/' staan, dan zoekt hij via ../ automatisch in de hoofdmap */
    background-image: url('images/frontpage-hero.webp'), url('../images/frontpage-hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #111111; /* Back-up kleur zodat je tekst nooit onzichtbaar is */
    padding: 100px 40px;
}

.mid-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1;
}

.mid-cta-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.mid-cta-text h2 {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 15px;
}

.mid-cta-text .highlight-orange {
    color: var(--color-orange);
}

.mid-cta-text p {
    font-size: 1.1rem;
    color: #cccccc;
}

.btn-primary-large {
    background-color: var(--color-orange);
    color: #000000;
    font-weight: bold;
    padding: 18px 45px;
    font-size: 1.3rem;
}

.btn-primary-large:hover {
    background-color: #d97706;
}

/* 8. FOOTER */
.site-footer {
    background-color: #050505;
    padding: 80px 40px 30px 40px;
    border-top: 2px solid #111111;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #777777;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #555555;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: var(--color-orange);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-headings);
    color: var(--color-white);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: #777777;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--color-orange);
}

.footer-contact p {
    color: #777777;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-o {
    color: var(--color-orange);
}

.btn-footer-cta {
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    font-family: var(--font-headings);
    font-size: 1rem;
    padding: 10px 25px;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.btn-footer-cta:hover {
    background-color: var(--color-orange);
    color: #000000;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid #111111;
    padding-top: 30px;
    text-align: center;
    color: #444444;
    font-size: 0.9rem;
}

/* 9. RESPONSIVENESS (MOBILE AND TABLET OPTIMIZATION) */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .logo-main { height: 35px !important; }
    .logo-extra-icon { display: none !important; }
    .hamburger { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
    .hamburger span { display: block; width: 28px; height: 3px; background-color: var(--color-white); }
    
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh;
        background-color: #000000; flex-direction: column; justify-content: center;
        align-items: center; transition: right 0.3s ease;
    }
    .menu-toggle:checked ~ .nav-menu { right: 0; }
    .nav-btn { width: 80%; text-align: center; margin-top: 20px; justify-content: center; }
    
    .hero-title { font-size: 4.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid #222222; padding-bottom: 20px; }
    .stat-item:last-child { border-bottom: none; }
    
    .mid-cta-content { flex-direction: column; text-align: center; gap: 30px; }
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 3.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; }
    .mid-cta-text h2 { font-size: 2.2rem; }
}

/* ==========================================================================
   10. DIENSTEN PAGINA SPECIFIEKE STYLING
   ========================================================================== */

/* Sub-pagina Header */
.page-header {
    position: relative;
    background-image: url('images/frontpage-hero.webp'), url('../images/frontpage-hero.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 40px 80px 40px;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), #000000);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header-content h1 {
    font-family: var(--font-headings);
    font-size: 4.5rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 1.1rem;
    color: #888888;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Diensten Blocks Overzicht */
.diensten-detail-section {
    background-color: #000000;
    padding: 60px 40px 100px 40px;
}

.dienst-block {
    max-width: 1300px;
    margin: 0 auto 100px auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Z-patroon omwisselen */
.dienst-block.reverse {
    flex-direction: row-reverse;
}

.dienst-block:last-child {
    margin-bottom: 0;
}

.dienst-image {
    flex: 1;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    position: relative;
}

/* Die vette goudkleurige gloed ook hier subtiel toepassen op de stilstaande beelden */
.dienst-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(245, 158, 11, 0.12);
    mix-blend-mode: multiply;
    z-index: 2;
}

.dienst-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(105%);
}

.dienst-text {
    flex: 1;
    position: relative;
}

/* Dik industrieel nummer op de achtergrond */
.dienst-number {
    font-family: var(--font-headings);
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -60px;
    left: -10px;
    line-height: 1;
    z-index: 1;
    user-select: none;
}

.dienst-text h2 {
    font-family: var(--font-headings);
    font-size: 3rem;
    color: var(--color-orange);
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.dienst-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #dddddd;
    margin-bottom: 25px;
}

.dienst-specs {
    list-style: none;
}

.dienst-specs li {
    font-size: 1.05rem;
    color: #999999;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dienst-specs li i {
    font-size: 0.85rem;
}

/* Responsive updates voor mobiel/tablet */
@media (max-width: 992px) {
    .page-header-content h1 { font-size: 3.5rem; }
    .dienst-block, .dienst-block.reverse {
        flex-direction: column;
        gap: 35px;
        margin-bottom: 70px;
    }
    .dienst-image {
        width: 100%;
    }
    .dienst-number {
        top: -45px;
        font-size: 6rem;
    }
    .dienst-text h2 { font-size: 2.5rem; }
}

/* ==========================================================================
   11. TARIEVEN PAGINA SPECIFIEKE STYLING
   ========================================================================== */

   .tarieven-container {
    max-width: 1300px;
    margin: 0 auto;
}

.sub-section-title {
    font-family: var(--font-headings);
    color: var(--color-white);
    font-size: 2rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Sectie 1: Reguliere Prijzen Grid */
.basis-tarieven-section {
    background-color: #0b0b0b;
    padding: 80px 40px;
    border-bottom: 1px solid #111111;
}

.basis-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.basis-card {
    background-color: #111111;
    border: 1px solid #1a1a1a;
    padding: 35px 25px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.basis-card:hover {
    border-color: var(--color-orange);
}

.card-icon {
    font-size: 1.8rem;
    color: var(--color-orange);
    margin-bottom: 15px;
}

.basis-card h3 {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #aaaaaa;
    margin-bottom: 10px;
}

.basis-card .price {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 15px;
}

.basis-card .per-unit {
    font-size: 1.1rem;
    color: #666666;
}

.basis-card p {
    font-size: 0.95rem;
    color: #777777;
    line-height: 1.5;
}

/* Sectie 2: Livestream 3-Kolommen Pakketten */
.pakketten-section {
    background-color: #000000;
    padding: 100px 40px;
}

.pakketten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pakket-card {
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

/* De middelste/uitgelichte kaart krijgt een vette oranje border */
.pakket-card.featured {
    border: 2px solid var(--color-orange);
    background-color: #111111;
    transform: scale(1.03);
}

.pakket-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-orange);
    color: #000000;
    font-family: var(--font-headings);
    font-size: 0.85rem;
    padding: 4px 15px;
    letter-spacing: 1px;
    font-weight: bold;
}

.pakket-header h3 {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.pakket-price {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    color: var(--color-orange);
    line-height: 1;
    margin-bottom: 35px;
}

.pakket-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.pakket-features li {
    font-size: 1.05rem;
    color: #999999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pakket-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Sectie 3: Overige AV / Doelgroepen */
.overige-tarieven-section {
    background-color: #0b0b0b;
    padding: 80px 40px;
    border-top: 1px solid #111111;
}

.doelgroep-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px auto;
}

.doelgroep-box {
    background-color: #111111;
    border: 1px solid #1a1a1a;
    padding: 30px;
    text-align: center;
}

.doelgroep-box h4 {
    font-family: var(--font-headings);
    color: var(--color-orange);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.doelgroep-box p {
    color: #777777;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.doelgroep-box .vanaf-prijs {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    color: var(--color-white);
}

.tarieven-disclaimer {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.5;
}

/* Responsiveness voor mobiel en tablet */
@media (max-width: 1100px) {
    .basis-grid { grid-template-columns: repeat(2, 1fr); }
    .pakketten-grid { grid-template-columns: 1fr; gap: 40px; }
    .pakket-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .basis-grid { grid-template-columns: 1fr; }
    .doelgroep-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   12. CONTACT PAGINA SPECIFIEKE STYLING
   ========================================================================== */

   .contact-page-section {
    background-color: #000000;
    padding: 80px 40px 120px 40px;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

/* Linkerzijde: info */
.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.info-intro {
    color: #888888;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--color-orange);
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    padding: 15px;
    border-radius: 4px;
}

.info-item h4 {
    font-family: var(--font-headings);
    font-size: 1rem;
    color: #666666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 600;
}

.info-socials h4 {
    font-family: var(--font-headings);
    font-size: 1rem;
    color: #666666;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    font-size: 1.2rem;
    color: #888888;
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #000000;
    background-color: var(--color-orange);
    border-color: var(--color-orange);
}

/* Rechterzijde: Het Formulier */
.contact-form-side {
    flex: 1.5;
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    padding: 50px;
}

.contact-form-side h2 {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    color: var(--color-white);
    letter-spacing: 1px;
    margin-bottom: 35px;
}

/* Honeypot Input onzichtbaar maken */
.form-hp {
    display: none !important;
    visibility: hidden !important;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    color: #888888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: #111111;
    border: 1px solid #222222;
    padding: 15px;
    color: var(--color-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    background-color: #151515;
}

/* Specifieke styling voor selectie drop-down */
.form-group select {
    cursor: pointer;
    appearance: none; /* Verwijdert standaard OS pijltje */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23f59e0b'><path d='M1 4l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Status alerts */
.status-alert {
    padding: 15px 20px;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1rem;
    border-left: 4px solid;
}

.status-alert.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-color: #10b981;
}

.status-alert.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: #ef4444;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }
    .contact-form-side {
        padding: 35px 25px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
}

/* ==========================================================================
   13. COMPACT TOOLKIT MET STICKY SIDEBAR
   ========================================================================== */

   .toolkit-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 60px 40px;
    background-color: #000000;
}

/* De vliegengewicht Sticky Sidebar */
.toolkit-sidebar {
    width: 280px;
    flex-shrink: 0;
}

.sidebar-sticky-content {
    position: sticky;
    top: 120px; /* Blijft strak onder je main header zweven bij scrollen */
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    padding: 25px;
}

.sidebar-sticky-content h3 {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    color: #555555;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-nav a {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 15px;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-nav a:hover, 
.sidebar-nav a.active {
    color: var(--color-white);
    background-color: #111111;
    border-left-color: var(--color-orange);
}

/* De Content Zijde met compacte Tiles */
.toolkit-content {
    flex-grow: 1;
}

.toolkit-cat-section {
    margin-bottom: 60px;
    scroll-margin-top: 120px; /* Zorgt dat ankers niet achter de header verdwijnen */
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.cat-header h2 {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

.cat-count {
    font-size: 0.85rem;
    background-color: #111111;
    border: 1px solid #222222;
    padding: 4px 10px;
    color: var(--color-orange);
    font-weight: bold;
}

/* Compact Grid */
.compact-calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.mini-calc-card {
    background-color: #0b0b0b;
    border: 1px solid #1a1a1a;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mini-calc-card h3 {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.mini-card-desc {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.4;
    margin-bottom: 15px;
}

.mini-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

.mini-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.mini-form-row .mini-form-group {
    flex: 1;
    margin-bottom: 0;
}

.mini-form-group label {
    font-size: 0.8rem;
    color: #777777;
    text-transform: uppercase;
    font-weight: 600;
}

.mini-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.mini-calc-card input, 
.mini-calc-card select {
    background-color: #111111;
    border: 1px solid #222222;
    padding: 10px 12px;
    color: var(--color-white);
    font-size: 0.95rem;
    width: 100%;
}

.mini-calc-card input:focus {
    outline: none;
    border-color: var(--color-orange);
}

.mini-input-wrap .unit {
    position: absolute;
    right: 12px;
    font-size: 0.85rem;
    color: var(--color-orange);
    font-weight: bold;
}

.mini-btn {
    width: 100%;
    background-color: #151515;
    border: 1px solid #222222;
    color: var(--color-white);
    padding: 10px;
    font-family: var(--font-headings);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.mini-btn:hover {
    background-color: var(--color-orange);
    color: #000000;
    border-color: var(--color-orange);
}

/* Compact Inlined Resultaat */
.mini-result {
    margin-top: 15px;
    background-color: #111111;
    border-left: 3px solid var(--color-orange);
    padding: 12px;
    font-size: 0.95rem;
    color: #aaaaaa;
}

.mini-result strong {
    color: var(--color-white);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .toolkit-wrapper {
        flex-direction: column;
    }
    .toolkit-sidebar {
        width: 100%;
    }
    .sidebar-sticky-content {
        position: relative;
        top: 0;
    }
}

/* ==========================================================================
   14. GLOBAL ALERTS SYSTEM (TICKER & MODAL) - UPGRADED
   ========================================================================== */

/* Ticker Bar Bovenaan (Altijd zichtbaar indien actief) */
.noizzz-ticker-bar {
    background-color: #ff4500; /* Jouw kenmerkende oranje */
    color: #000000;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 9999;
    text-align: center;
}

.ticker-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ticker-content p {
    margin: 0;
}

.ticker-badge {
    background: #000000;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 3px 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.ticker-link {
    color: #000000;
    text-decoration: underline;
    font-weight: 800;
    transition: color 0.2s;
}
.ticker-link:hover {
    color: #ffffff;
}

/* Grote, Rustige Premium Modal */
.noizzz-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75); /* Iets lichter transparant zwart */
    backdrop-filter: blur(8px); /* Prachtige rustige blur op de achtergrond */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.noizzz-modal-card {
    background-color: #f9f9f9; /* Comfortabel off-white/lichtgrijs */
    color: #111111; /* Donkere, goed leesbare tekst */
    max-width: 700px; /* Een flink stuk groter (was 500px) */
    width: 100%;
    padding: 50px; /* Meer ademruimte rondom de tekst */
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-top: 6px solid #ff4500; /* Subtiele oranje NOIZZZ-handtekening aan de bovenkant */
}

.noizzz-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #999;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}
.noizzz-modal-close:hover {
    color: #111111;
}

.noizzz-modal-header h3 {
    font-size: 1.8rem; /* Grotere, duidelijke titel */
    color: #111111;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-weight: 800;
    text-transform: uppercase;
}

.noizzz-modal-body {
    color: #333333;
    font-size: 1.15rem; /* Groter lettertype voor maximale leesbaarheid */
    line-height: 1.7;
    margin-bottom: 35px;
}

.noizzz-modal-btn {
    width: auto; /* Niet meer zo'n agressieve full-width knop */
    padding: 14px 35px;
    background-color: #111111;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.noizzz-modal-btn:hover {
    background-color: #ff4500;
    color: #ffffff;
}

/* ==========================================================================
   15. LEGAL POP-OVER SYSTEM (DOCUMENTEN OVERLAY)
   ========================================================================== */

   .noizzz-legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Donkere waas */
    backdrop-filter: blur(10px); /* Vage weergave van de originele site */
    z-index: 20000; /* Hoger dan de normale pop-up */
    display: none; /* Standaard verborgen */
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.noizzz-legal-card {
    background-color: #ffffff; /* Strakke witte pagina */
    color: #111111;
    width: 80%; /* exact 80% breedte van de site */
    max-width: 1200px; /* Limiet voor extreem brede schermen */
    height: 85vh; /* Vult het grootste deel van het scherm verticaal */
    padding: 60px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.noizzz-legal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    background: none;
    border: none;
    color: #999;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 20002;
}
.noizzz-legal-close:hover {
    color: #ff4500;
}

.noizzz-legal-header h2 {
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
}

/* Zorgt ervoor dat de tekst binnen de kaart scrollbaar is */
.noizzz-legal-body {
    flex: 1;
    overflow-y: auto; /* Scrollbaar maken */
    padding-right: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
}

/* Nette scrollbar styling voor de whitepaper look */
.noizzz-legal-body::-webkit-scrollbar {
    width: 6px;
}
.noizzz-legal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.noizzz-legal-body::-webkit-scrollbar-thumb {
    background: #ccc;
}
.noizzz-legal-body::-webkit-scrollbar-thumb:hover {
    background: #ff4500;
}
/* Strakkere regelafstand voor de juridische tekst */
.noizzz-legal-body {
    line-height: 1.5 !important; /* Compactere, fijne leesbaarheid (was 1.7 of 1.8) */
}

/* Verklein de gaten tussen paragrafen */
.noizzz-legal-body p {
    margin-top: 0;
    margin-bottom: 10px; /* Minder witruimte onder een paragraaf */
}

/* Zorg dat handmatige enters (<br>) niet als gigantische gaten overkomen */
.noizzz-legal-body br {
    content: "";
    margin-bottom: 4px;
    display: block;
}

/* Zorg dat de hoofdstukken ook mooi aansluiten zonder enorme lege vlakken */
.noizzz-legal-body h3 {
    margin-top: 20px !important; /* Was 30px */
    margin-bottom: 8px !important;
}