/* ============================================
   ENHANCED FOOTER WITH LEGAL LINKS
   ============================================ */

.footer-enhanced {
    background: linear-gradient(180deg, rgba(10, 17, 40, 1) 0%, rgba(5, 10, 25, 1) 100%);
    border-top: 2px solid rgba(0, 102, 255, 0.3);
    padding: 4rem 0 2rem;
    color: #C5C9D4;
    position: relative;
    overflow: hidden;
}

    .footer-enhanced::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, #00D9FF 50%, transparent 100%);
    }

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Columns */
.footer-column h4 {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #0066FF 0%, #00D9FF 100%);
    }

/* Footer Logo */
.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-logo .logo-inn {
    color: #FFFFFF;
}

.footer-logo .logo-tekso {
    background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-o-circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    margin: 0 4px;
    vertical-align: middle;
    position: relative;
    top: 4px;
}

.footer-tagline {
    color: #00D9FF;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #9CA3AF;
    margin-bottom: 1.5rem;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #00D9FF;
}

    .footer-badge i {
        font-size: 1rem;
    }

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 0.875rem;
    }

        .footer-links li a {
            color: #C5C9D4;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

            .footer-links li a i {
                color: #0066FF;
                font-size: 0.9rem;
                width: 18px;
            }

            .footer-links li a:hover {
                color: #00D9FF;
                transform: translateX(5px);
            }

                .footer-links li a:hover i {
                    color: #00D9FF;
                }

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

        .footer-contact li i {
            color: #0066FF;
            font-size: 1rem;
            margin-top: 0.2rem;
            width: 18px;
            flex-shrink: 0;
        }

        .footer-contact li a {
            color: #C5C9D4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .footer-contact li a:hover {
                color: #00D9FF;
            }

        .footer-contact li span {
            color: #C5C9D4;
        }

/* Footer Social */
.footer-social {
    display: flex;
    gap: 1rem;
}

    .footer-social a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 217, 255, 0.1) 100%);
        border: 2px solid rgba(0, 102, 255, 0.3);
        border-radius: 50%;
        color: #00D9FF;
        font-size: 1.25rem;
        transition: all 0.3s ease;
    }

        .footer-social a:hover {
            background: linear-gradient(135deg, #0066FF 0%, #00D9FF 100%);
            border-color: #00D9FF;
            color: #FFFFFF;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
        }

/* Legal Links Section */
.footer-legal-section {
    padding: 2rem 0;
    margin: 0 0 2rem 0;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

    .footer-legal-links a {
        color: #9CA3AF;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.3s ease;
        padding: 0.25rem 0;
    }

        .footer-legal-links a:hover {
            color: #00D9FF;
        }

    .footer-legal-links .separator {
        color: rgba(0, 102, 255, 0.4);
        font-size: 0.9rem;
    }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 0.75rem;
}

.footer-info {
    font-size: 0.85rem;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

    .footer-info i {
        color: #00E676;
        font-size: 1rem;
    }

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo h3 {
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-enhanced {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column {
        text-align: center;
    }

        .footer-column h4::after {
            left: 50%;
            transform: translateX(-50%);
        }

    .footer-links li a {
        justify-content: center;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
    }

        .footer-legal-links .separator {
            display: none;
        }

    .footer-info {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .footer-enhanced {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo h3 {
        font-size: 1.75rem;
    }

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .footer-enhanced {
        background: white;
        border-top: 1px solid black;
        padding: 1rem 0;
    }

    .footer-social,
    .footer-legal-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column h4,
    .footer-logo h3,
    .footer-description,
    .footer-links li a,
    .footer-contact li {
        color: black;
    }
}

/* Accessibility */
.footer-links li a:focus,
.footer-social a:focus,
.footer-legal-links a:focus {
    outline: 2px solid #00D9FF;
    outline-offset: 2px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .footer-enhanced {
        background: linear-gradient(180deg, rgba(5, 10, 20, 1) 0%, rgba(2, 5, 15, 1) 100%);
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .footer-enhanced {
        border-top-width: 3px;
    }

    .footer-legal-section {
        border-top-width: 2px;
        border-bottom-width: 2px;
    }

    .footer-social a,
    .footer-badge {
        border-width: 2px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .footer-links li a,
    .footer-social a,
    .footer-legal-links a {
        transition: none;
    }

        .footer-links li a:hover {
            transform: none;
        }

        .footer-social a:hover {
            transform: none;
        }
}
