.site-footer {
    background-color: #2c303b !important;
    color: #e0e0e0;
    padding: 50px 0 25px 0;
    border-top: 4px solid #8b2323;
}

.site-footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.footer-social a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 0px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 26px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-social a:hover {
    background-color: #8b2323 !important;
    color: #ffffff !important;
    transform: translateY(-3px) !important;
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-col h4::before,
.footer-col h4::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #8b2323;
}

.footer-btn {
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 0px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.footer-btn:hover {
    background-color: #8b2323 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.footer-about {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-about p {
    margin-bottom: 0;
}

.footer-address-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 14px;
}

.footer-address-bar a {
    color: #ffffff;
    font-weight: 600;
}

.footer-address-bar a:hover {
    color: #8b2323;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #a0a0a0;
}

.footer-legal a {
    color: #a0a0a0;
    margin: 0 4px;
}

.footer-legal a:hover {
    color: #8b2323;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}