/* assets/css/section-propulsion-electric.css */

/* --- BASIS SETUP --- */
.section-electric-max {
    position: relative;
    width: 100%;
    min-height: 900px; /* Moet flink hoog zijn */
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #eef1f5 100%);
    overflow: hidden;
    padding: 100px 0;
    font-family: 'Helvetica Neue', sans-serif;
}

/* Tech Grid Achtergrond (Subtiele lijntjes) */
.tech-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(200, 200, 200, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 200, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    pointer-events: none;
}

.electric-container {
    position: relative;
    z-index: 2;
    max-width: 1400px; /* Breder dan normaal voor impact */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- HEADER --- */
.electric-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.electric-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.tech-label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.8);
}

.electric-header h2 {
    font-size: 4rem;
    line-height: 1;
    color: var(--color-text-main);
    margin: 0 0 30px 0;
    font-weight: 800;
}

/* Tekst die van kleur verandert (Goud naar Zilver) */
.text-gradient {
    background: linear-gradient(135deg, var(--color-gold) 0%, #8a7338 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- MAIN VISUAL (DE BOOT) --- */
.electric-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 500px; /* Pas aan op basis van je foto */
    margin-bottom: 80px;
}

.visual-inner {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.main-tech-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    /* Langzaam zweven */
    animation: floatBoat 6s ease-in-out infinite;
}

@keyframes floatBoat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Blauwe gloed achter de boot */
.energy-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(66, 135, 245, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* --- HOTSPOTS --- */
.hotspot {
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

/* De Stip */
.hotspot-dot {
    width: 24px;
    height: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-center {
    width: 12px;
    height: 12px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-gold);
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.dot-wave {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    opacity: 0;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}

.hotspot:hover .dot-center {
    transform: scale(1.3);
    background-color: #fff;
}

/* De Kaart (Tooltip) */
.hotspot-card {
    position: absolute;
    bottom: 40px; /* Boven de stip */
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 220px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 3px solid var(--color-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 4px;
    text-align: left;
}

.hotspot:hover .hotspot-card {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hotspot-card h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: var(--color-text-main);
}

.hotspot-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

/* --- STATS ROW (Glass Cards) --- */
.electric-stats-row {
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.stat-box {
    padding: 30px 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1;
}

.stat-unit {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-left: 2px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .electric-header h2 { font-size: 3rem; }
    .electric-visual-wrapper { height: 350px; }
}

@media (max-width: 768px) {
    .electric-header h2 { font-size: 2.2rem; }
    
    /* Op mobiel zetten we hotspots uit of anders neer, 
       maar hier laten we ze even staan voor de show. 
       Misschien stapelen we de stats. */
    .electric-stats-row {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        justify-content: center;
    }
    
    /* Hotspots positionering aanpassen voor klein scherm is lastig,
       vaak zet je die uit of maak je ze statisch */
    .hotspot { display: none; } /* Simpele fix voor mobiel */
}

/* Styling voor de gouden SVG iconen */
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5); /* Lichte achtergrond cirkel */
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid rgba(197, 160, 89, 0.2); /* Heel licht goud randje */
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold); /* Hier maken we ze GOUD */
    transition: all 0.3s ease;
}

/* Hover effect: Icoon vult zich met goud */
.stat-box:hover .stat-icon svg {
    stroke: #b08d2b; /* Iets donkerder goud */
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.5));
}

.stat-box:hover .stat-icon {
    border-color: var(--color-gold);
    background: #fff;
}