/* Footer Styles */
.vance-footer {
    background: #080808;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-container {
    width: 85%;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-brand {
    max-width: 350px;
}

.brand-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 20px 0 30px;
}

/* Social Boxes with Red Accent */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.social-box:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.05);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Nav Links */
.footer-links-grid {
    display: flex;
    gap: 100px;
}

.footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 30px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 15px; }

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff0000;
    padding-left: 8px; /* Smooth slide effect */
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text p {
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 1px;
}

/* Back to Top Feature */
.back-to-top {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.4s;
}

.back-to-top span {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: #555;
}

.up-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.back-to-top:hover span { color: #fff; letter-spacing: 6px; }
.back-to-top:hover .up-arrow { border-color: #ff0000; transform: translateY(-5px); }

/* Mobile View */
@media (max-width: 768px) {
    .footer-top { flex-direction: column; text-align: center; align-items: center; }
    .footer-links-grid { gap: 50px; text-align: center; }
    .footer-bottom { flex-direction: column-reverse; gap: 30px; }
}