/* Footer */
.site-footer {
    background-color: #1D3A8A;
    color: #94a3b8;
    padding: 0;
    margin-top: 0;
    text-align: center;
    border-top: none;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: #c0c8d8;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    font-size: 14px;
}

.footer-contact a,
.footer-contact span {
    color: #c0c8d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ED6C05;
}

.footer-contact i {
    color: #ED6C05;
    margin-right: 6px;
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #c0c8d8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ED6C05;
    color: #fff;
    transform: translateY(-2px);
}

.footer-social a i {
    font-size: 16px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 25px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }
}
