/* ===== Footer ===== */
.site-footer {
    background: linear-gradient(90deg, #0b1f3a, #0f2d52);
    color: #cfd8e3;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* About */
.footer-about img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-call {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-call img {
    height: 45px;
}

.footer-call span {
    font-size: 12px;
    color: #8faee0;
}

.footer-call strong {
    font-size: 18px;
    color: #ffffff;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfd8e3;
    text-decoration: none;
}

.footer-links a:hover {
    color: #4da3ff;
}

/* Contact */
.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: #4da3ff;
}

/* Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    background: #08162b;
    font-size: 14px;
    color: #a9b8cf;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding-top: 60px;
    }
}
