/* Tổng thể Footer */
.custom-elementor-footer {
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-weight: var(--e-global-typography-text-font-weight), normal;
    background-color: #151515;
    color: #d1d1d1;
    padding: 60px 0 30px 0;
    font-size: 17px;
    line-height: 1.6;
}

.custom-elementor-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Các Tiêu Đề */
.custom-elementor-footer .footer-heading {
    font-family: var(--e-global-typography-primary-font-family), sans-serif;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

/* Bố cục Grid 4 cột đều nhau trên PC */
.custom-elementor-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    margin-bottom: 30px;
}

.custom-elementor-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Điều chỉnh khoảng cách giữa các dòng */
.custom-elementor-footer ul li {
    margin-bottom: 8px; 
}

.custom-elementor-footer a {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.3s ease; 
}

.custom-elementor-footer a:hover {
    color: #ffffff;
}

/* Cột Thông tin liên hệ */
.contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info ul li img {
    width: 18px;
    height: auto;
    margin-top: 5px;
}

/* Căn giữa cột Quick links trên PC */
.quick-links-col {
    justify-self: center;
}

/* Phần Mạng xã hội */
.footer-social {
    margin-bottom: 20px;
}

.footer-social .social-icons {
    display: flex;
    gap: 20px; 
}

.footer-social .social-icons a {
    display: inline-block;
    transition: transform 0.3s ease; 
}

.footer-social .social-icons a img {
    width: 35px; 
    height: auto;
    display: block;
}

.footer-social .social-icons a:hover {
    transform: translateY(-5px); 
}

/* Đường kẻ ngang */
.footer-divider {
    border: none;
    border-top: 1px solid #333;
    margin: 20px 0;
}

/* Phần bản quyền và logo */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 15px;
}

.footer-logo img {
    max-width: 160px; 
    height: auto;
}

.footer-copyright p {
    margin: 0;
    font-size: 15px;
    color: #a0a0a0;
}

/* --- RESPONSIVE TABLET (Từ 768px đến 1024px) --- */
@media (max-width: 1023px) {
    .custom-elementor-footer .footer-grid {
        grid-template-columns: 1fr 1fr; /* Nhận 2 cột */
    }
    .quick-links-col {
        justify-self: center; /* Đảm bảo Quick links vẫn được căn giữa trên tablet */
    }
    .custom-elementor-footer {
        font-size: 15px; 
    }
    .custom-elementor-footer .footer-heading {
        font-size: 20px; 
    }
}

/* --- RESPONSIVE MOBILE (Dưới 768px) --- */
@media (max-width: 767px) {
    .custom-elementor-footer .footer-grid {
        grid-template-columns: 1fr; /* Hiển thị hoàn toàn 1 cột hàng dọc */
        gap: 25px; 
    }
    
    .quick-links-col {
        justify-self: start; 
    }

    .custom-elementor-footer {
        font-size: 13px; 
    }
    .custom-elementor-footer .footer-heading {
        font-size: 17px; 
    }
    
    .map-container iframe {
        height: 200px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}