.footer {
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.footer-logo span {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.footer-text {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.5;
    max-width: 400px;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.footer-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-logo img {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo span {
        font-size: 1.5rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-nav a {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}
