/* ==========================================================================
   FOOTER STYLE (TÁCH RIÊNG CHO FOOTER.PHP)
   ================================================================---------- */

.site-footer {
    background: #0f172a; 
    color: #94a3b8; 
    font-family: 'Be Vietnam Pro', sans-serif, 'Open Sans'; 
    font-size: 13.5px; 
    padding-top: 50px; 
    margin-top: 40px; 
    border-top: 3px solid #eb1838;
}

.footer-container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 15px 40px 15px;
    box-sizing: border-box;
}

.footer-grid-4 {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    margin-bottom: 40px;
}

/* Đảm bảo toàn bộ nội dung trong cột căn trái */
.footer-col {
    text-align: left !important;
}

.footer-col h3 {
    color: #ffffff; 
    font-size: 15px; 
    font-weight: 600; 
    text-transform: uppercase; 
    margin-bottom: 15px; 
    border-bottom: 2px solid #eb1838; 
    padding-bottom: 8px; 
    display: inline-block;
    text-align: left;
}

.footer-col p {
    line-height: 1.6; 
    margin-bottom: 15px; 
    color: #cbd5e1; 
    font-size: 13px;
    text-align: left;
}

.footer-socials {
    display: flex; 
    gap: 10px; 
    font-size: 16px;
    justify-content: flex-start; /* Đưa icon mạng xã hội về bên trái */
}

.footer-socials a {
    color: #ffffff; 
    background: #1e293b; 
    width: 32px; 
    height: 32px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none;
    transition: 0.2s;
}
.footer-socials a:hover {
    background: #eb1838;
}

.footer-col ul {
    list-style: none; 
    padding: 0; 
    margin: 0;
    text-align: left;
}

.footer-col li {
    margin-bottom: 8px;
    text-align: left;
}

.footer-col li a {
    color: #94a3b8; 
    text-decoration: none; 
    transition: 0.2s; 
    display: inline-flex; 
    align-items: center; 
    gap: 6px;
    text-align: left;
}
.footer-col li a:hover {
    color: #ffffff;
}

.footer-contact-item {
    margin-bottom: 10px; 
    font-size: 13px; 
    display: flex; 
    align-items: flex-start; 
    gap: 8px;
    text-align: left;
}

.footer-working-box {
    margin-top: 15px; 
    font-size: 12.5px; 
    color: #cbd5e1; 
    background: #1e293b; 
    padding: 10px; 
    border-radius: 6px;
    text-align: left;
}

.footer-bottom {
    border-top: 1px solid #1e293b; 
    padding-top: 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 10px; 
    font-size: 12.5px;
}

/* Responsive cho Footer */
@media screen and (max-width: 992px) {
    .footer-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media screen and (max-width: 576px) {
    .footer-grid-4 {
        grid-template-columns: 1fr !important;
    }
}