
    /* Scoped Premium Light Footer CSS */
    .cyber-footer {
        background-color: #FFFFFF;
        background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                          linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        color: #4B5563;
        font-family: 'Inter', sans-serif;
        padding: 80px 5% 30px 5%;
        position: relative;
        z-index: 10;
        border-top: 1px solid #E5E7EB;
        pointer-events: auto;
    }

    .cyber-footer::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 3px;
        background: linear-gradient(90deg, #E30613, #8B0000);
        pointer-events: none;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 50px;
        margin-bottom: 60px;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-col h4 {
        color: #111827;
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 30px;
        height: 3px;
        background: #E30613;
        border-radius: 2px;
    }

    .footer-logo img {
        height: 50px;
        margin-bottom: 20px;
        display: block;
    }

    .footer-text {
        line-height: 1.8;
        font-size: 15px;
        margin-bottom: 25px;
        max-width: 90%;
        color: #6B7280;
    }

    .social-icons {
        display: flex;
        gap: 12px;
    }
    
    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background: #F3F4F6;
        color: #4B5563;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        border: 1px solid #E5E7EB;
        pointer-events: auto;
        cursor: pointer;
        text-decoration: none;
        touch-action: manipulation;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .social-icons a svg {
        width: 18px; height: 18px;
        transition: transform 0.3s ease;
        pointer-events: none;
    }
    
    .social-icons a:hover {
        background: #E30613;
        color: #FFFFFF;
        border-color: #E30613;
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(227,6,19,0.25);
    }
    
    .social-icons a:hover svg {
        transform: scale(1.1);
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 15px;
    }

    .footer-links a {
        color: #6B7280;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        pointer-events: auto;
        cursor: pointer;
        touch-action: manipulation;
        -webkit-user-select: none;
        user-select: none;
    }

    .footer-links a::before {
        content: '→';
        color: #E30613;
        font-weight: 800;
        margin-right: 8px;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        font-size: 16px;
    }

    .footer-links a:hover {
        color: #E30613;
        transform: translateX(5px);
    }

    .footer-links a:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
        font-size: 15px;
        line-height: 1.6;
        color: #4B5563;
    }

    .footer-contact-item span.icon {
        color: #E30613;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(227,6,19,0.08);
        border-radius: 8px;
        flex-shrink: 0;
        pointer-events: none;
    }

    .footer-contact-item span.icon svg {
        width: 18px;
        height: 18px;
        pointer-events: none;
    }

    .footer-contact-item strong {
        color: #111827;
        display: block;
        margin-bottom: 4px;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-bottom {
        border-top: 1px solid #E5E7EB;
        padding-top: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        color: #9CA3AF;
        font-weight: 500;
        max-width: 1400px;
        margin: 0 auto;
    }

    @media(max-width: 1024px) {
        .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    
    @media(max-width: 768px) {
        .footer-grid { grid-template-columns: 1fr; gap: 40px; }
        .footer-bottom { text-align: center; }
    }