/* ============================================
   ULTIMATE VIBRO WAVES - MAXIMUM VISIBILITY
   ============================================ */

/* Force robot containers to be relative for wave positioning */
.robot-container,
.robot-image,
.robot-placeholder,
.robot-image-box {
    position: relative !important;
    overflow: visible !important;
    z-index: 1 !important;
}

/* Main vibro wave effect - HIGHLY VISIBLE */
.robot-container::before,
.robot-container::after,
.robot-image::before,
.robot-image::after,
.robot-placeholder::before,
.robot-placeholder::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

/* First wave */
.robot-container::before,
.robot-image::before,
.robot-placeholder::before {
    width: 120px !important;
    height: 120px !important;
    border: 4px solid #2573D1 !important;
    box-shadow: 
        0 0 30px rgba(37, 115, 209, 0.8),
        0 0 60px rgba(37, 115, 209, 0.5),
        inset 0 0 30px rgba(37, 115, 209, 0.3) !important;
    animation: mega-vibro-wave 3s linear infinite !important;
}

/* Second wave */
.robot-container::after,
.robot-image::after,
.robot-placeholder::after {
    width: 120px !important;
    height: 120px !important;
    border: 4px solid #4A90E2 !important;
    box-shadow: 
        0 0 30px rgba(74, 144, 226, 0.8),
        0 0 60px rgba(74, 144, 226, 0.5),
        inset 0 0 30px rgba(74, 144, 226, 0.3) !important;
    animation: mega-vibro-wave 3s linear infinite !important;
    animation-delay: 1.5s !important;
}

/* Ultra vibro wave animation */
@keyframes mega-vibro-wave {
    0% {
        width: 120px;
        height: 120px;
        opacity: 1;
        border-width: 4px;
        box-shadow: 
            0 0 30px rgba(37, 115, 209, 1),
            0 0 60px rgba(37, 115, 209, 0.7),
            inset 0 0 30px rgba(37, 115, 209, 0.5);
    }
    25% {
        width: 200px;
        height: 200px;
        opacity: 0.8;
        border-width: 3px;
        box-shadow: 
            0 0 40px rgba(37, 115, 209, 0.8),
            0 0 80px rgba(37, 115, 209, 0.5),
            inset 0 0 40px rgba(37, 115, 209, 0.3);
    }
    50% {
        width: 300px;
        height: 300px;
        opacity: 0.6;
        border-width: 2px;
        box-shadow: 
            0 0 50px rgba(37, 115, 209, 0.6),
            0 0 100px rgba(37, 115, 209, 0.3),
            inset 0 0 50px rgba(37, 115, 209, 0.2);
    }
    75% {
        width: 400px;
        height: 400px;
        opacity: 0.3;
        border-width: 1px;
        box-shadow: 
            0 0 60px rgba(37, 115, 209, 0.3),
            0 0 120px rgba(37, 115, 209, 0.15),
            inset 0 0 60px rgba(37, 115, 209, 0.1);
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
        border-width: 1px;
        box-shadow: 
            0 0 70px rgba(37, 115, 209, 0),
            0 0 140px rgba(37, 115, 209, 0),
            inset 0 0 70px rgba(37, 115, 209, 0);
    }
}

/* Add pulsing glow to robot icon itself */
.fa-robot {
    position: relative !important;
    z-index: 20 !important;
    animation: robot-glow-pulse 2s ease-in-out infinite !important;
}

@keyframes robot-glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(37, 115, 209, 0.5));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(37, 115, 209, 1));
        transform: scale(1.05);
    }
}

/* Additional energy rings for robot areas */
.robot-container {
    background: radial-gradient(
        circle at center,
        rgba(37, 115, 209, 0.1) 0%,
        rgba(37, 115, 209, 0.05) 30%,
        transparent 70%
    ) !important;
}

/* Hover effect amplification */
.robot-container:hover::before,
.robot-container:hover::after,
.robot-image:hover::before,
.robot-image:hover::after,
.robot-placeholder:hover::before,
.robot-placeholder:hover::after {
    animation-duration: 1.5s !important;
    border-color: #00D4FF !important;
    box-shadow: 
        0 0 50px rgba(0, 212, 255, 1),
        0 0 100px rgba(0, 212, 255, 0.7),
        inset 0 0 50px rgba(0, 212, 255, 0.5) !important;
}

/* Signal beacon effect */
.robot-container > .fa-robot::before,
.robot-image > .fa-robot::before,
.robot-placeholder > .fa-robot::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #2573D1;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(37, 115, 209, 1);
    animation: beacon-pulse 1.5s ease-in-out infinite;
}

@keyframes beacon-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
        box-shadow: 0 0 20px rgba(37, 115, 209, 1);
    }
    50% {
        transform: translateX(-50%) scale(1.5);
        opacity: 0.5;
        box-shadow: 0 0 40px rgba(37, 115, 209, 0.5);
    }
}

/* Force stats fire animation to be more visible */
.stats-number,
.stats-item .number,
.metric-value {
    position: relative !important;
    z-index: 2 !important;
    font-size: 3rem !important;
    font-weight: 800 !important;
    background: linear-gradient(45deg, 
        #FF0000 0%, 
        #FF6B00 20%, 
        #FFA500 40%, 
        #FFD700 60%, 
        #FFA500 80%, 
        #FF0000 100%) !important;
    background-size: 300% 300% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: fire-gradient-ultra 1.5s ease-in-out infinite !important;
    text-shadow: 
        0 0 30px rgba(255, 107, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5) !important;
}

@keyframes fire-gradient-ultra {
    0% {
        background-position: 0% 50%;
        filter: brightness(1) contrast(1);
    }
    25% {
        background-position: 100% 0%;
        filter: brightness(1.2) contrast(1.1);
    }
    50% {
        background-position: 100% 100%;
        filter: brightness(1.4) contrast(1.2);
    }
    75% {
        background-position: 0% 100%;
        filter: brightness(1.2) contrast(1.1);
    }
    100% {
        background-position: 0% 50%;
        filter: brightness(1) contrast(1);
    }
}

/* Electric arc effect for robot sections */
.robot-types,
.robots-catalog,
.robots-showcase {
    position: relative;
    overflow: visible !important;
}

.robot-types::before,
.robots-catalog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #2573D1 10%, 
        #00D4FF 50%, 
        #2573D1 90%, 
        transparent 100%);
    animation: electric-flow 3s linear infinite;
}

@keyframes electric-flow {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ULTIMATE FOOTER BLACK TEXT ENFORCEMENT */
footer *:not(i):not(.fab):not(.fas),
.footer *:not(i):not(.fab):not(.fas) {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    text-fill-color: #000000 !important;
    opacity: 1 !important;
}

/* Specific targeting for stubborn elements */
.footer-logo span,
.footer .logo span,
footer .logo span,
.footer-description,
footer p,
.footer p {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    text-fill-color: #000000 !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

/* Keep icons colored */
.footer .fa-robot,
footer .fa-robot {
    color: #2573D1 !important;
    -webkit-text-fill-color: #2573D1 !important;
}