/* =========================================
   CHÂN TRANG CHI TIẾT (FOOTER)
========================================= */
.main-footer {
    background-color: #FFFFFF; border-top: 1px solid var(--border-color); padding: 50px 0 30px; color: #555; font-size: 14px;
}
.footer-container {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1200px; width: 100%; margin: 0 auto 40px;
}
.footer-col h3 {
    font-size: 16px; font-weight: bold; color: #333; margin-bottom: 20px; position: relative; padding-bottom: 8px;
}
.footer-col h3::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background-color: var(--primary-color);
}
.about-text { line-height: 1.7; margin-bottom: 20px; }
.bocongthuong-badge {
    border: 1.5px solid #005691; border-radius: 4px; padding: 5px 10px; display: inline-flex;
    align-items: center; gap: 8px; margin-bottom: 20px; color: #005691; font-weight: bold; font-size: 11px;
}
.badge-icon { font-size: 14px; }
.copyright { font-size: 12px; color: #888; }
.branch-info p { margin-bottom: 12px; line-height: 1.6; }
.branch-info strong { color: #333; }
.links-col ul { list-style: none; }
.links-col ul li { margin-bottom: 12px; }
.links-col ul li a { color: #555; text-decoration: none; transition: 0.3s; }
.links-col ul li a:hover { color: var(--primary-color); padding-left: 5px; }
.hotline-box { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.hotline-icon { font-size: 28px; color: var(--primary-color); }
.hotline-number { font-size: 20px; font-weight: bold; color: var(--primary-color); line-height: 1.2; }
.hotline-email { color: #666; text-decoration: none; font-size: 13px; }
.hotline-email:hover { color: var(--primary-color); }
.follow-us h4 { font-size: 14px; color: #333; margin-bottom: 15px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%; background-color: #eee; color: #555;
    display: flex; justify-content: center; align-items: center; text-decoration: none; transition: all 0.3s ease;
}
.social-icon:hover { color: var(--white); }
.social-icon.fb:hover { background-color: #3b5998; }
.social-icon.ins:hover { background-color: #e1306c; }
.social-icon.yt:hover { background-color: #ff0000; }

/* RESPONSIVE FOOTER */
/* Khi màn hình Laptop nhỏ gọn (< 1200px): Thu nhỏ bề ngang khu vực chân trang một chút để nội dung không bị sát mép màn hình */
@media (max-width: 1200px) {
  .footer-container { width: 95%; }
}
/* Khi màn hình điện thoại (< 768px): Bẻ 3 cột thông tin ở chân trang (Giới thiệu, Liên hệ, CSKH) thành 1 cột dọc xếp chồng lên nhau */
@media (max-width: 768px) {
  .footer-container {
      grid-template-columns: 1fr;
      gap: 30px;
      width: 90%;
  }
}