.site-footer {
    background: #ffffff;
    padding: 60px 0 30px;
}

.footer-logo img {
    max-width: 198px;
    max-height: 20px;
}

.footer-text {
    color: #6B7280;
    font-size: 14px;
    line-height: normal;
    margin: 20px 0;
    max-width: 250px;
}

.footer-title {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #4B5563;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.site-footer .footer-select {
    width: 160px;
    border-radius: 4px;
    border: 1px solid #969696;
    background-color: #FFF;
    height: auto;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    appearance: none;
    padding: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M140.3 376.8c12.6 10.2 31.1 9.5 42.8-2.2l128-128c9.2-9.2 11.9-22.9 6.9-34.9S301.4 192 288.5 192l-256 0c-12.9 0-24.6 7.8-29.6 19.8S.7 237.5 9.9 246.6l128 128 2.4 2.2z' fill='%236E6E6E'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right 15px;
    background-size: 16px 16px;
    box-shadow: none;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    font-size: 16px;
}

.social-icons a:hover {
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-color: var(--primary);
}

.newsletter {
    display: flex;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    overflow: hidden;
    max-width: 270px;
    position: relative;
}

.newsletter input {
    border: none;
    padding: 14px 20px;
    flex: 1;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    outline: none;
}

.newsletter button {
    border: 0;
    border-radius: 8px;
    background: var(--heading-color);
    padding: 10px 16px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    line-height: normal;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--primary);
    border: 0;
}

.footer-divider {
    border-top: 1px solid #E5E7EB;
    margin: 24px 0 30px;
}

.footer-bottom {
    text-align: center;
    color: #9CA3AF;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
    border: 0;
    color: #fff;
}

@media (max-width: 991.98px) {
    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        font-size: 14px;
    }
}