.site-footer {
    background: #0b0b12;
    color: #ccc;
    padding: 60px 0 25px;
    font-size: 14.5px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 50px;
}

.footer-logo {
    height: 46px;
    margin-bottom: 14px;
}

.tagline {
    color: #eee;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.contact-list li {
    margin-bottom: 10px;
    color: #aaa;
}

.contact-list i {
    margin-right: 8px;
    color: #fa33a1;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #151520;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #fa33a1, #553add);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 18px;
}

/* Mobile */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
