.main-footer {
    background-color: #0d0b1e;
    color: #fff;
    padding: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 52px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.footer-logo img { max-height: 44px; width: auto; }

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.65;
}
.footer-address i {
    color: rgba(255,255,255,0.22);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-col-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-list { list-style: none; padding: 0; }
.contact-list li { margin-bottom: 9px; }
.contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-list a:hover { color: #7f77dd; }
.contact-list i {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.2);
    width: 16px;
    flex-shrink: 0;
}

.social-icons { display: flex; gap: 8px; }
.social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icons a:hover {
    background: #3c3489;
    border-color: #534ab7;
    color: #afa9ec;
}

.footer-bottom { padding: 16px 0; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
}
.footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
.footer-powered {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.22);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.footer-powered:hover { color: rgba(255,255,255,0.5); }
.footer-powered i { color: #534ab7; font-size: 0.8rem; }

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0 32px;
        gap: 32px;
    }
    .footer-tagline { margin-left: auto; margin-right: auto; }
    .footer-address { justify-content: center; }
    .social-icons { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; }
}