/* Footer Styles */
footer {
    padding: 21.87px 14.58px 18.225px 14.58px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.8) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Footer gradient overlay */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(0, 212, 255, 0.5) 25%,
    rgba(168, 85, 247, 0.5) 75%,
    transparent 100%
    );
    animation: shimmerFooter 8s ease-in-out infinite;
}

@keyframes shimmerFooter {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 14.58px;
    margin-bottom: 10.935px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 8px;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
}

/* Hover effect for footer links */
.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(0, 212, 255, 0.2);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Footer text styling */
footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.2px;
}

/* Company name in footer */
footer p strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Separator styling */
.footer-separator {
    display: inline-block;
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Footer background pattern */
.footer-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 212, 255, 0.5) 2px,
            rgba(0, 212, 255, 0.5) 4px
        );
    pointer-events: none;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
