/* Footer Styles - FreedomΩ Purple Theme 2026 */
footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(15, 10, 25, 0.99) 100%);
    padding: 50px 0 25px 0;
    margin-top: 70px;
    border-top: 1px solid rgba(123, 47, 255, 0.3);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(123, 47, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    padding: 0 15px;
}

.footer-section h4 {
    color: #7B2FFF;
    margin-bottom: 20px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #7B2FFF, #9333EA);
    box-shadow: 0 0 10px rgba(123, 47, 255, 0.5);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(123, 47, 255, 0.4);
    filter: drop-shadow(0 0 12px rgba(123, 47, 255, 0.6));
    animation: footerLogoPulse 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes footerLogoPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(123, 47, 255, 0.5));
        border-color: rgba(123, 47, 255, 0.4);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(123, 47, 255, 0.8))
               drop-shadow(0 0 30px rgba(147, 51, 234, 0.6));
        border-color: rgba(147, 51, 234, 0.8);
    }
}

.footer-logo:hover img {
    filter: drop-shadow(0 0 25px rgba(123, 47, 255, 0.9));
    transform: scale(1.1);
}

.powered-by-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.freedom-brand {
    background: linear-gradient(90deg, #7B2FFF, #9333EA);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    display: inline-block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
    margin-top: 12px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 14px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    padding-left: 0;
}

.footer-links-list a::before {
    content: '›';
    position: absolute;
    left: -15px;
    top: 0;
    color: #7B2FFF;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: bold;
}

.footer-links-list a:hover {
    color: #9333EA;
    padding-left: 15px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(123, 47, 255, 0.15);
    position: relative;
    z-index: 1;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.footer-copyright .year {
    color: #7B2FFF;
    font-weight: 600;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(123, 47, 255, 0.1);
    border: 1px solid rgba(123, 47, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9333EA;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(123, 47, 255, 0.2);
    border-color: rgba(123, 47, 255, 0.4);
    box-shadow: 0 0 15px rgba(123, 47, 255, 0.3);
    transform: translateY(-3px);
}
