/* ── VeloxForge Shared Footer ─────────────────────────── */
.site-footer {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3.5rem 0 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #fcfdfe 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #64748b;
}

@media (prefers-color-scheme: dark) {
    .site-footer {
        background: linear-gradient(180deg, #16162a 0%, #0f0f1a 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        color: #94a3b8;
    }
}

/* Subtle ambient glow */
.footer-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(238, 179, 13, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

@media (prefers-color-scheme: dark) {
    .footer-glow {
        background: radial-gradient(circle, rgba(238, 179, 13, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    }
}

/* Headings */
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1e293b;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #eeb30d, #d9a00a);
    border-radius: 2px;
}

@media (prefers-color-scheme: dark) {
    .footer-heading {
        color: #e2e8f0;
    }
}

/* Description text */
.footer-description {
    font-size: 0.925rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0;
}

@media (prefers-color-scheme: dark) {
    .footer-description {
        color: #94a3b8;
    }
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.site-footer .footer-links a {
    position: relative;
    font-size: 0.925rem;
    font-weight: 500;
    color: #64748b !important;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.site-footer .footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(to right, #eeb30d, #d9a00a);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 1px;
}

.site-footer .footer-links a:hover {
    color: #eeb30d !important;
    transform: translateX(4px);
}

.site-footer .footer-links a:hover::after {
    width: 100%;
}

@media (prefers-color-scheme: dark) {
    .site-footer .footer-links a {
        color: #94a3b8 !important;
    }
    .site-footer .footer-links a:hover {
        color: #eeb30d !important;
    }
}

/* CTA email link */
.site-footer .footer-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.925rem;
    font-weight: 600;
    color: #eeb30d !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    margin-top: 0.75rem;
}

.site-footer .footer-cta:hover {
    color: #d9a00a !important;
    transform: translateX(4px);
}

/* Bottom bar */
.footer-bottom {
    margin-top: 1.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (prefers-color-scheme: dark) {
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

.footer-copyright {
    font-size: 0.825rem;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer .footer-bottom-links a {
    font-size: 0.825rem;
    color: #94a3b8 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.site-footer .footer-bottom-links a:hover {
    color: #eeb30d !important;
}

.footer-dot {
    color: #94a3b8;
    font-size: 0.825rem;
}
