/* --- HERO CYBER URBAN (HOME ONLY) --- */

body.home .hero-cyber {
    position: relative;
    min-height: 90vh; /* Vult bijna hele scherm */
    display: flex;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    padding-top: 80px; /* Ruimte voor fixed header */
}

/* Achtergrond met "Snelheid" effect */
body.home .hero-bg-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('https://taxijack.nl/wp-content/uploads/2024/08/taxi-scenic.jpg'); 
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.6;
    transform: scale(1.1);
    animation: taxiSlowZoom 20s infinite alternate;
}

body.home .hero-overlay-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
    /* Subtiel streepjes patroon (Speedlines) */
    background-image: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0,0,0,0.5) 50px, rgba(0,0,0,0.5) 51px);
    z-index: 1;
}

body.home .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

body.home .hero-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    gap: 60px;
    align-items: center;
}

/* --- LINKER KANT: TEKST --- */
body.home .badge-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 192, 0, 0.15);
    border: 1px solid #ffc000;
    color: #ffc000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

body.home .dot-live {
    width: 8px; height: 8px;
    background: #ffc000;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px #ffc000;
    animation: taxiBlink 1s infinite;
}

body.home .cyber-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 85px;
    line-height: 0.9;
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
    font-style: italic; /* Snelheid suggestie */
    text-transform: uppercase;
}

body.home .outline-text {
    -webkit-text-stroke: 2px #fff;
    color: transparent; /* Holle tekst */
}

body.home .hero-lead {
    font-size: 20px;
    color: #ddd;
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'DM Sans', sans-serif;
}

body.home .text-yellow {
    color: #ffc000;
}

body.home .mini-usps {
    display: flex;
    gap: 30px;
}

body.home .usp-item {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
}

body.home .usp-item i {
    margin-right: 10px;
    font-size: 18px;
}

/* --- RECHTER KANT: COCKPIT --- */
body.home .hero-action-cockpit {
    background: rgba(10, 10, 10, 0.85); /* Donkerder voor contrast */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 4px solid #ffc000;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transform: skew(-3deg); /* High-tech hoek */
}

/* Tekst rechtop zetten binnen de scheve box */
body.home .hero-action-cockpit > * {
    transform: skew(3deg); 
}

body.home .cockpit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

body.home .status-text {
    color: #ffc000;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Signaal streepjes styling */
body.home .signal-bars { display: flex; gap: 4px; align-items: flex-end; height: 18px; }
body.home .bar { width: 4px; background: #ffc000; }
body.home .b1 { height: 60%; animation: taxiSignal 1s infinite; }
body.home .b2 { height: 100%; animation: taxiSignal 1s 0.2s infinite; }
body.home .b3 { height: 80%; animation: taxiSignal 1s 0.4s infinite; }

/* De Knoppen Grid */
body.home .action-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

body.home .action-btn {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
}

body.home .action-btn .icon-box {
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 22px;
}

body.home .btn-text { display: flex; flex-direction: column; }
body.home .btn-text .label { font-size: 10px; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; margin-bottom: 2px; }
body.home .btn-text .value { font-size: 24px; font-weight: 800; text-transform: uppercase; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.5px; line-height: 1; }

/* 1. CALL BUTTON (Geel) */
body.home .call-btn {
    background: #ffc000;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 192, 0, 0.3);
    animation: taxiPulseBtn 2s infinite;
}
body.home .call-btn .icon-box { background: #000; color: #ffc000; }
body.home .call-btn:hover { transform: scale(1.02); background: #fff; }
body.home .call-btn .label { opacity: 0.7; }

/* 2. WHATSAPP BUTTON (Zwart met groene rand) */
body.home .whatsapp-btn {
    background: #111;
    color: #fff;
    border: 1px solid #25D366;
}
body.home .whatsapp-btn .icon-box { background: #25D366; color: #fff; }
body.home .whatsapp-btn .label { color: #25D366; }
body.home .whatsapp-btn:hover { background: #1a1a1a; transform: translateX(5px); }

/* 3. BOOK BUTTON (Zwart met grijze rand) */
body.home .book-btn {
    background: #111;
    color: #fff;
    border: 1px solid #444;
}
body.home .book-btn .icon-box { background: #333; color: #fff; }
body.home .book-btn .label { color: #888; }
body.home .book-btn:hover { background: #1a1a1a; border-color: #ffc000; transform: translateX(5px); }

body.home .cockpit-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #888;
    text-align: center;
}

body.home .cockpit-footer i {
    color: #ffc000;
    margin-right: 5px;
}

/* ANIMATIONS (Globaal is prima, maar namen uniek maken) */
@keyframes taxiSlowZoom {
    from { transform: scale(1.0); }
    to { transform: scale(1.15); }
}

@keyframes taxiBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes taxiSignal { 
    0%, 100% { opacity: 0.5; } 50% { opacity: 1; } 
}

@keyframes taxiPulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(255, 192, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 192, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 192, 0, 0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    body.home .hero-cyber { padding-top: 100px; min-height: auto; padding-bottom: 50px; }
    body.home .hero-split-layout { grid-template-columns: 1fr; gap: 40px; }
    body.home .hero-text-content { text-align: center; }
    body.home .badge-pill { margin: 0 auto 20px auto; }
    body.home .cyber-title { font-size: 50px; }
    body.home .mini-usps { justify-content: center; }
    
    body.home .hero-action-cockpit { max-width: 100%; transform: none; padding: 25px; }
    body.home .hero-action-cockpit > * { transform: none; }
}

/* --- SECTIE 2: SERVICES CYBER (HOME ONLY) --- */

body.home .services-cyber {
    background-color: #050505; /* Iets lichter dan puur zwart */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Technisch Grid Patroon op achtergrond */
body.home .cyber-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Header Styling */
body.home .cyber-section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

body.home .cyber-sub-label {
    color: #ffc000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

body.home .cyber-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 50px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

body.home .yellow-separator {
    width: 60px;
    height: 4px;
    background: #ffc000;
    margin: 20px auto 0 auto;
}

/* Grid Layout */
body.home .services-grid-cyber {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* --- THE CARD DESIGN --- */
body.home .service-card-cyber {
    background: #0f0f0f;
    border: 1px solid #222;
    padding: 40px 30px;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px; /* Zorgt voor gelijke hoogte */
}

/* Het grote nummer op de achtergrond (Watermark) */
body.home .card-bg-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 150px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    transition: all 0.4s ease;
    line-height: 1;
}

/* Icoon Cirkel */
body.home .card-icon-circle {
    width: 70px; height: 70px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 30px;
    border: 1px solid #333;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

body.home .card-content {
    position: relative;
    z-index: 1;
}

body.home .service-card-cyber h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    transition: color 0.3s;
}

body.home .service-card-cyber p {
    color: #888;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 16px;
    transition: color 0.3s;
}

/* De Actie Knop Tekst */
body.home .card-action {
    color: #ffc000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

body.home .card-action i {
    transition: transform 0.3s;
}

/* De Glow Border (verborgen tot hover) */
body.home .card-border-glow {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: #ffc000;
    transform: scaleX(0); /* Verborgen */
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* --- HOVER EFFECTS (MAXIMAAL!) --- */
body.home .service-card-cyber:hover {
    transform: translateY(-10px); /* Kaart komt omhoog */
    background: #141414;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: #333;
}

body.home .service-card-cyber:hover .card-border-glow {
    transform: scaleX(1); /* Gele streep onderin */
}

body.home .service-card-cyber:hover .card-icon-circle {
    background: #ffc000;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 192, 0, 0.4); /* Glow effect */
}

body.home .service-card-cyber:hover h3 {
    color: #ffc000;
}

body.home .service-card-cyber:hover .card-bg-number {
    color: rgba(255, 192, 0, 0.05); /* Nummer wordt iets geel */
    transform: translateX(-10px);
}

body.home .service-card-cyber:hover .card-action i {
    transform: translateX(5px); /* Pijltje schuift op */
}

/* RESPONSIVE */
@media (max-width: 900px) {
    body.home .services-grid-cyber {
        grid-template-columns: 1fr; /* Onder elkaar op mobiel */
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --- SECTIE 3: AIRPORT TICKET (HOME ONLY) --- */

body.home .airport-cyber {
    background-color: #000;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #222;
}

body.home .airport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- DE DIGITALE TICKET --- */
body.home .ticket-wrapper {
    perspective: 1000px; /* Voor 3D effect bij hover */
}

body.home .digital-ticket {
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
    overflow: hidden; /* Zorgt dat notches niet buiten beeld vallen */
}

body.home .ticket-wrapper:hover .digital-ticket {
    transform: rotateY(5deg) rotateX(2deg); /* Subtiel 3D effect */
    border-color: #ffc000;
}

/* Hapjes uit het ticket (Notches) */
body.home .notch {
    position: absolute;
    top: 70%; /* Hoogte van de 'scheurlijn' */
    width: 30px;
    height: 30px;
    background-color: #000; /* Zelfde als body achtergrond */
    border-radius: 50%;
    z-index: 2;
    border: 1px solid #333;
}

body.home .notch-left { left: -18px; border-right: 1px solid #333; border-left: none; }
body.home .notch-right { right: -18px; border-left: 1px solid #333; border-right: none; }

/* Ticket Header */
body.home .ticket-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dashed #333;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

body.home .airline-name {
    color: #888;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

body.home .flight-class {
    color: #ffc000;
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 192, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Route Visualisatie */
body.home .ticket-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

body.home .city-code { display: flex; flex-direction: column; }
body.home .city-code .code { font-size: 48px; font-weight: 900; color: #fff; font-family: 'Barlow Condensed', sans-serif; line-height: 1; }
body.home .city-code .city { font-size: 14px; color: #666; text-transform: uppercase; margin-top: 5px; }
body.home .text-right { text-align: right; }

body.home .flight-path {
    flex: 1;
    position: relative;
    text-align: center;
    margin: 0 20px;
}

body.home .path-line {
    width: 100%;
    height: 2px;
    background: #333;
    position: relative;
    top: -10px;
}

body.home .plane-icon {
    font-size: 24px;
    color: #ffc000;
    position: relative;
    top: -12px; /* Op de lijn */
    animation: planeMove 3s ease-in-out infinite;
}

@keyframes planeMove {
    0% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(-10px); }
}

/* Details Grid */
body.home .ticket-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

body.home .detail-box { display: flex; flex-direction: column; }
body.home .detail-box .label { font-size: 10px; color: #666; margin-bottom: 2px; }
body.home .detail-box .value { font-size: 14px; color: #fff; font-weight: 700; text-transform: uppercase; }

/* Footer / Barcode */
body.home .ticket-footer {
    border-top: 2px dashed #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Fake Barcode met CSS Gradients */
body.home .barcode {
    height: 30px;
    width: 150px;
    background: repeating-linear-gradient(
        90deg,
        #fff,
        #fff 2px,
        #111 2px,
        #111 4px,
        #fff 4px,
        #fff 5px
    );
    opacity: 0.7;
    transition: opacity 0.3s;
}

body.home .ticket-wrapper:hover .barcode {
    opacity: 1; /* Oplichten bij hover */
}

body.home .ticket-id { font-family: monospace; color: #444; font-size: 12px; }

/* --- RECHTER KANT: CONTENT --- */
body.home .cyber-lead {
    font-size: 18px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 30px;
    font-family: 'DM Sans', sans-serif;
}

body.home .cyber-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

body.home .cyber-check-list li {
    font-size: 16px;
    color: #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

body.home .cyber-check-list li i {
    color: #ffc000;
    margin-right: 15px;
    font-size: 18px;
}

/* Price Action Block */
body.home .price-action-block {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #111;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #222;
}

body.home .price-display {
    display: flex;
    flex-direction: column;
}

body.home .price-display .from { font-size: 12px; color: #888; text-transform: uppercase; }
body.home .price-display .amount { font-size: 32px; font-weight: 800; color: #fff; font-family: 'Barlow Condensed', sans-serif; line-height: 1; }

body.home .btn-airport-cta {
    background: #ffc000;
    color: #000;
    padding: 12px 25px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
}

body.home .btn-airport-cta:hover {
    background: #fff;
    transform: translateX(5px);
}

body.home .disclaimer-text {
    font-size: 12px;
    color: #444;
    margin-top: 15px;
    font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    body.home .airport-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    body.home .ticket-wrapper {
        order: 2; /* Ticket onder tekst op mobiel */
    }
    
    body.home .price-action-block {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* --- SECTIE 5: RADAR MAP (HOME ONLY) --- */

body.home .radar-section-cyber {
    background-color: #000;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid #111;
    overflow: hidden;
}

body.home .radar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --- LINKER KANT: INFO --- */
body.home .zone-list-wrapper {
    margin-top: 30px;
    border: 1px solid #222;
    background: #0a0a0a;
    border-radius: 8px;
    overflow: hidden;
}

body.home .zone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.home .zone-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #222;
    transition: background 0.3s;
}

body.home .zone-item:last-child { border-bottom: none; }

body.home .zone-item:hover {
    background: #111;
}

body.home .zone-marker {
    width: 10px; height: 10px;
    background: #ffc000;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(255, 192, 0, 0.5);
}

body.home .zone-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex: 1; /* Duwt status naar rechts */
    letter-spacing: 1px;
}

body.home .zone-status {
    font-size: 10px;
    color: #666;
    border: 1px solid #333;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

body.home .zone-item:hover .zone-status {
    color: #ffc000;
    border-color: #ffc000;
}

body.home .radar-alert-box {
    margin-top: 30px;
    color: #888;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.home .radar-alert-box i { color: #ffc000; font-size: 18px; }
body.home .radar-alert-box a { color: #fff; text-decoration: underline; }

/* --- RECHTER KANT: DE RADAR --- */
body.home .radar-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

body.home .radar-screen {
    width: 400px;
    height: 400px;
    border-radius: 50%; /* Rond maken */
    border: 2px solid #333;
    position: relative;
    background: #050505;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

/* Achtergrond Kaart (Placeholder) */
body.home .map-overlay-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* TIP: Vervang dit met een echte kaart van Friesland (Dark Mode) */
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Friesland_location_map.svg/1200px-Friesland_location_map.svg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Heel donker maken */
    filter: invert(1) grayscale(1); /* Zwart maken als de afbeelding wit is */
    z-index: 1;
}

/* Groene Radar Grid Lijntjes */
body.home .radar-grid-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    border-radius: 50%;
    z-index: 2;
}

/* De Draaiende Scanner (Radar Sweep) */
body.home .radar-sweep {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: conic-gradient(
        from 0deg, 
        transparent 0deg, 
        transparent 270deg, 
        rgba(255, 192, 0, 0.1) 300deg, 
        rgba(255, 192, 0, 0.6) 360deg
    );
    border-radius: 50%;
    z-index: 3;
    animation: radarSpin 4s linear infinite;
}

@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* City Dots */
body.home .city-dot {
    position: absolute;
    width: 8px; height: 8px;
    background: #ffc000;
    border-radius: 50%;
    z-index: 4;
    transform: translate(-50%, -50%);
}

/* Labels bij de steden */
body.home .city-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: bold;
    color: #ffc000;
    text-shadow: 0 2px 4px #000;
    font-family: monospace;
}

/* Pulserende ring om de stad */
body.home .pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    border: 1px solid #ffc000;
    border-radius: 50%;
    animation: cityPulse 2s ease-out infinite;
}

@keyframes cityPulse {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 50px; height: 50px; opacity: 0; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    body.home .radar-grid {
        grid-template-columns: 1fr;
    }
    
    body.home .radar-visual-wrapper {
        margin-top: 40px;
    }
    
    body.home .radar-screen {
        width: 300px;
        height: 300px; /* Iets kleiner op mobiel */
    }
}

/* --- SECTIE 6: REVIEWS MARQUEE (HOME ONLY) --- */

body.home .reviews-cyber {
    background-color: #050505;
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden; /* Cruciaal voor marquee */
    border-top: 1px solid #111;
}

/* Google Trust Badge */
body.home .google-trust-badge {
    margin-bottom: 50px;
}

body.home .g-score {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
    box-shadow: 0 0 15px rgba(255,255,255,0.2);
}

body.home .g-score i { color: #4285F4; margin-right: 10px; font-size: 20px; }
body.home .g-sub { display: block; color: #666; font-size: 13px; font-family: 'DM Sans', sans-serif; }

/* --- MARQUEE CONTAINER --- */
body.home .marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Fade Effect aan zijkanten (Vervaging) */
body.home .marquee-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none; /* Je kunt erdoorheen klikken */
}

body.home .fade-left {
    left: 0;
    background: linear-gradient(to right, #050505, transparent);
}

body.home .fade-right {
    right: 0;
    background: linear-gradient(to left, #050505, transparent);
}

/* De Track die beweegt */
body.home .marquee-track {
    display: flex;
    width: max-content; /* Past zich aan de inhoud aan */
    /* De animatie tijd bepalen we hier. 60s is een rustig tempo */
    animation: marqueeScroll 60s linear infinite; 
}

/* PAUZEER als je eroverheen muist */
body.home .marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Schuift op tot de helft (Groep 1 is voorbij, Groep 2 neemt over) */
}

/* De Groep met kaarten */
body.home .review-group {
    display: flex;
    gap: 30px;
    padding-right: 30px; /* Ruimte voor de volgende groep begint */
}

/* --- DE REVIEW CARD STYLE --- */
body.home .review-card-cyber {
    background: #111;
    border: 1px solid #222;
    width: 400px; /* Vaste breedte is belangrijk */
    padding: 30px;
    border-radius: 8px;
    flex-shrink: 0; /* Voorkomt dat ze kleiner worden */
    transition: all 0.3s;
    position: relative;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

body.home .review-card-cyber:hover {
    background: #161616;
    border-color: #ffc000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

body.home .r-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

body.home .r-name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
}

body.home .r-stars {
    color: #ffc000;
    letter-spacing: 2px;
}

body.home .r-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
}

body.home .r-loc {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto; /* Duwt naar beneden */
}

body.home .r-loc i { color: #ffc000; }

/* RESPONSIVE */
@media (max-width: 768px) {
    body.home .marquee-fade { width: 50px; } /* Minder fade op mobiel */
    body.home .review-card-cyber {
        width: 320px; /* Iets smaller op mobiel */
        padding: 20px;
    }
    
    body.home .marquee-track {
        animation-duration: 40s; /* Iets sneller op mobiel voelt natuurlijker */
    }
}

/* --- SECTIE 7: FINAL FORM CYBER (HOME ONLY) --- */

body.home .final-cyber-form {
    background-color: #000;
    padding: 100px 0 120px 0; /* Ruimte aan onderkant voor footer */
    position: relative;
    border-top: 1px solid #111;
}

body.home .form-glow-bg {
    position: absolute;
    top: 50%; right: 10%;
    transform: translateY(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

body.home .final-grid-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Formulier krijgt iets meer ruimte */
    gap: 60px;
    align-items: center;
}

/* --- LINKER KANT --- */
body.home .final-info-col {
    position: relative;
    z-index: 1;
}

body.home .contact-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

body.home .c-badge {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #111;
    border: 1px solid #222;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s;
    width: fit-content;
}

body.home .c-badge i { font-size: 22px; margin-right: 15px; width: 25px; text-align: center; }

body.home .c-badge.call:hover { background: #ffc000; color: #000; border-color: #ffc000; }
body.home .c-badge.app:hover { background: #25D366; color: #fff; border-color: #25D366; }

body.home .tech-lines {
    margin-top: 40px;
    display: flex;
    gap: 5px;
}
body.home .tech-lines span {
    height: 4px;
    background: #222;
    width: 20px;
    border-radius: 2px;
}
body.home .tech-lines span:first-child { background: #ffc000; width: 40px; }

/* --- RECHTER KANT: FORM CARD --- */
body.home .form-card-cyber {
    background: #0a0a0a;
    border: 1px solid #222;
    border-top: 4px solid #ffc000;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
}

body.home .form-header-cyber {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

body.home .form-header-cyber h3 {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
body.home .form-header-cyber h3 i { color: #555; }

body.home .status-dot {
    width: 8px; height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 5px #25D366;
}

/* --- GRAVITY FORMS DARK MODE OVERRIDES --- */
/* Dit zorgt dat de velden donker worden */

body.home .gform_wrapper { margin: 0 !important; }

/* Labels */
body.home .gform_wrapper label.gfield_label {
    color: #888 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin-bottom: 8px !important;
}

/* Inputs (Text, Email, Date, Etc) */
body.home .gform_wrapper input[type=text],
body.home .gform_wrapper input[type=url],
body.home .gform_wrapper input[type=email],
body.home .gform_wrapper input[type=tel],
body.home .gform_wrapper input[type=number],
body.home .gform_wrapper input[type=password],
body.home .gform_wrapper input[type=date],
body.home .gform_wrapper select,
body.home .gform_wrapper textarea {
    background-color: #141414 !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    padding: 15px !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    font-family: 'DM Sans', sans-serif !important;
    transition: border-color 0.3s !important;
    width: 100% !important;
    box-shadow: none !important;
}

/* Focus State */
body.home .gform_wrapper input:focus,
body.home .gform_wrapper select:focus,
body.home .gform_wrapper textarea:focus {
    border-color: #ffc000 !important;
    background-color: #1a1a1a !important;
    outline: none !important;
}

/* Placeholders */
body.home .gform_wrapper ::placeholder {
    color: #444 !important;
    opacity: 1;
}

/* Submit Button */
body.home .gform_wrapper .gform_footer input[type=submit] {
    background-color: #ffc000 !important;
    color: #000 !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    text-transform: uppercase !important;
    padding: 15px 40px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s !important;
}

body.home .gform_wrapper .gform_footer input[type=submit]:hover {
    background-color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 192, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    body.home .final-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    body.home .final-info-col {
        text-align: center;
    }
    
    body.home .contact-badges {
        align-items: center;
    }
    
    body.home .tech-lines {
        justify-content: center;
    }
}

