/* footer.css - Giao diện 3 cột */
.simple-footer {
    padding: 60px 0 20px;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    font-family: 'Inter', sans-serif !important;
    color: #4b5563;
    margin-top: 50px;
}

.footer-container {
    max-width: 1100px; /* Tăng độ rộng để chứa 3 cột */
    margin: 0 auto;
    padding: 0 20px;
}

/* Cấu trúc Grid 3 cột */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr; /* Cột 1 rộng hơn một chút */
    gap: 40px;
    margin-bottom: 40px;
    text-align: left; /* Chuyển về canh trái cho chuyên nghiệp */
}

.footer-column h3 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Cột Branding */
.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}
.footer-logo span { color: #f87316; }

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

/* Danh sách liên kết */
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    text-decoration: none;
    color: #4b5563;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-column ul li a:hover {
    color: #f87316;
    padding-left: 5px; /* Hiệu ứng dịch nhẹ khi hover */
}

/* Thông tin liên hệ */
.footer-column.contact p {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}
.footer-column.contact i {
    color: #f87316;
    margin-right: 12px;
    margin-top: 4px;
    width: 16px;
}
.footer-column.contact a {
    color: #4b5563;
    text-decoration: none;
}

/* Phần bản quyền bên dưới */
.footer-bottom {
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}
.footer-bottom a {
    color: #f87316;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive cho máy tính bảng và điện thoại */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 cột cho tablet */
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 cột cho điện thoại */
        text-align: center;
    }
    .footer-column.contact p {
        justify-content: center;
    }
    .footer-column h3 {
        margin-top: 20px;
    }
}