/* Shared site footer (matches index.html) */

.site-footer.footer {
    background: #1e293b;
    color: white;
    padding: 60px 5% 40px;
}

.site-footer .footer-content,
.site-footer .footer-brand,
.site-footer .footer-column,
.site-footer .footer-bottom {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer .footer-brand h3,
.site-footer .footer-column h4,
.site-footer .footer-brand p,
.site-footer .footer-bottom p {
    color: #ffffff;
}

.site-footer .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.site-footer .footer-brand h3 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.site-footer .footer-brand p {
    color: #94a3b8;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 24px;
}

.site-footer .footer-social {
    display: flex;
    gap: 16px;
}

.site-footer .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .social-link:hover {
    background: #10b981;
    transform: translateY(-2px);
}

.site-footer .footer-column h4 {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.site-footer .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.site-footer .footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    transition: color 0.3s ease;
}

.site-footer .footer-link:hover {
    color: #ffffff;
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    max-width: 1400px;
    margin: 24px auto 0;
}

@media (max-width: 768px) {
    .site-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }

    .site-footer.footer {
        padding: 40px 5% 30px;
    }
}
