/* Nhúng phông chữ Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

.site-footer {
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 70px 0 0 0;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    display: block;
}

.footer-full-container {
    width: 100%;
    display: grid;
    /* Chia 3 cột: Cột 1 và 3 rộng hơn để chứa text dài */
    grid-template-columns: 1.5fr 1fr 1.5fr; 
    gap: 60px;
    padding: 0 80px;
    align-items: flex-start;
    box-sizing: border-box;
}

/* --- Đồng bộ tiêu đề ngang hàng --- */
.align-column h2, 
.align-column h3 {
    margin: 0 0 25px 0 !important;
    padding: 0 !important;
}

.footer-logo {
    font-family: 'Arial Black', sans-serif !important;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: -1px;
    transform: translateY(-5px); /* Cân bằng với h3 */
}

.footer-logo span {
    background: linear-gradient(90deg, #FFAD06 0%, #FF6600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-column h3 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px !important;
    color: #FFFFFF;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 35px; height: 2px;
    background: #FF6600;
}

/* --- Nội dung văn bản --- */
.brand-desc {
    font-size: 14px;
    color: #999;
    max-width: 350px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: #AAA;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

.footer-links a i {
    color: #FF6600;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-links a:hover { color: #FFF; transform: translateX(5px); }

/* --- Cột Liên hệ & Địa chỉ gộp --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: #FF6600;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 5px;
    width: 20px;
    text-align: center;
}

.contact-item .text span {
    font-size: 11px;
    color: #666;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-item .text strong {
    font-size: 14px;
    color: #DDD;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* --- Footer Bottom --- */
.footer-bottom {
    background: #111;
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #444;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .footer-full-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    .brand-desc { max-width: 100%; }
}