.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 25px;
    margin-top: 80px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-logo .logo-main {
    color: #fff;
}

.footer-logo .logo-accent {
    color: #f4b400;
}

.footer-desc {
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 22px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 600;
}

.footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: .25s;
}

.footer-links a:hover {
    color: #f4b400;
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    color: #94a3b8;
}

.footer-contact i {
    color: #f4b400;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .08);
    margin: 40px 0 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-rating {
    color: #f4b400;
    font-weight: 600;
}

@media(max-width:768px) {
    .site-footer {
        padding: 50px 0 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        font-size: 24px;
    }
}