/* ===== CSS CHO FOOTER (Đã cập nhật biến màu sắc) ===== */

.site-footer {
    position: relative;
    overflow: hidden;
    
    /* 1. KHAI BÁO BIẾN MẶC ĐỊNH (Nếu chưa chỉnh gì thì dùng màu này) */
    --footer-outer-bg: #202A44;  /* Màu nền bao quanh mặc định */
    --footer-text-color: #f9f63d; /* Màu chữ mặc định (Vàng chanh) */
    --footer-bg: url('https://storage.googleapis.com/nhachinhchuvn-images/banners/1762564966309_Gemini_Generated_Image_ax6zqwax6zqwax6z-fotor-2025.png');

    /* Áp dụng màu nền bao quanh */
    background-color: var(--footer-outer-bg); 
    color: var(--footer-text-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px; 
    z-index: 0;
    /* Giữ nguyên gradient nhưng dùng biến ảnh */
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), var(--footer-bg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top; 
}

.footer-content-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 250px;  
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --- ÁP DỤNG BIẾN MÀU CHỮ CHO CÁC THÀNH PHẦN --- */

.footer-column h4 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--footer-text-color); /* Đường kẻ cùng màu chữ */
    font-size: 1.2em;
    color: var(--footer-text-color); /* Màu chữ tiêu đề */
}

.footer-column:nth-child(1), 
.footer-column:nth-child(4) { 
    text-align: left;
}

.footer-column:nth-child(2), 
.footer-column:nth-child(3) { 
    text-align: center;
}

.footer-column p,
.footer-column ul li {
    font-size: 0.9em;
    color: var(--footer-text-color); /* Màu chữ nội dung */
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--footer-text-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--footer-text-color); /* Màu chữ link */
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-column a:hover {
    opacity: 0.8; /* Hiệu ứng hover nhẹ */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer::before { height: 300px; }
    .footer-content-container {
        padding-top: 150px;
        grid-template-columns: 1fr 1fr; 
    }
    .footer-column:nth-child(1),
    .footer-column:nth-child(2),
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
        text-align: left;
    }
    .footer-column h4 { display: block; }
}