/* =========================================
   Footer Styles
   ========================================= */
.site-footer {
    background-color: #008341;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin-top: 0;
}

.footer-widgets {
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}

.footer-col {
    padding: 0 20px;
    margin-bottom: 30px;
}

.footer-col-1 {
    flex: 0 0 30%;
    max-width: 30%;
}

.footer-col-2 {
    flex: 0 0 20%;
    max-width: 20%;
}

.footer-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer-col-4 {
    flex: 0 0 25%;
    max-width: 25%;
}

/* Responsive */
@media screen and (max-width: 991px) {

    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    .footer-col {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* Typography */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 15px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-contact-list i {
    font-size: 18px;
    margin-top: 2px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-hotline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.footer-support-email {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-support-email a {
    color: #fff;
    font-weight: 500;
}

.footer-working-hours p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-icon:hover {
    background: #fff;
    color: #008341;
    border-color: #fff;
}

.site-info-bar {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}