.frontend-footer {
    margin-top: 60px;
    background: #fff;
    color: #222;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-social-bar {
    background: #050505;
    color: #fff;
    padding: 20px 0;
}

.footer-social-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.footer-social-inner strong {
    font-size: 18px;
    font-weight: 700;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-social-icons a {
    color: #0b5db3;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
}

.footer-main {
    padding: 60px 0 45px;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
    gap: 34px;
    align-items: start;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    min-height: 160px;
}

.footer-logo {
    text-decoration: none;
    color: #111;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1;
}

.footer-logo strong {
    color: #d71920;
    font-weight: 900;
}

.footer-column h3 {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    font-size: 18px;
    font-weight: 900;
    color: #111;
    letter-spacing: .6px;
}

.footer-column h3::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d7d7d7;
}

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

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

.footer-column a {
    color: #333;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.3;
}

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

.footer-bottom {
    background: #f3f3f3;
    padding: 22px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.footer-apps {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-apps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 42px;
    padding: 0 18px;
    background: #050505;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.footer-scroll-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #005778;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
    z-index: 50;
}

.footer-scroll-top:hover {
    background: #d71920;
    color: #fff;
}

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

    .footer-logo-area {
        min-height: auto;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .footer-social-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-apps {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .footer-apps span {
        width: 100%;
    }
}

.footer-description {
    margin: 18px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 1.55;
    max-width: 330px;
}