/* footer */
/* ==========================================
   SECTION FOOTER CHÂN TRANG (FOOTER)
   ========================================== */
.footer {
  background: linear-gradient(180deg, #19284b 0%, #0b1120 100%);
  color: #f8fafc;
  padding: 70px 0 0 0;
  font-size: 13.5px;
  border-top: 4px solid #ebd547;
  position: relative;
}

.footer-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 50px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}

/* ------------------------------------------
   CỘT FOOTER & TIÊU ĐỀ
   ------------------------------------------ */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* Tiêu đề chính cột 1 */
.footer-col > h3:first-child {
  font-size: 16px;
  font-weight: 800;
  color: #ebd547;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(235, 213, 71, 0.3);
}

/* Dòng điện thoại Hotline ở cột 1 */
.footer-col > p:first-of-type {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  color: #fca5a5;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
  margin-bottom: 18px;
}

/* Tiêu đề phụ (GẶP TRỰC TIẾP CHÚNG TÔI...) */
.footer-col h4:first-of-type {
  color: #93c5fd;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-top: 5px;
  margin-bottom: 15px;
}

/* Tiêu đề các văn phòng (H3 & H4) */
.footer-col h3,
.footer-col h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Thêm icon định vị 📍 tự động trước tên các văn phòng */
.footer-col h3:not(:first-child)::before,
.footer-col h4:not(:first-of-type)::before {
  content: "📍";
  font-size: 12px;
}

/* Địa chỉ các văn phòng */
.footer-col p {
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0 0 10px 0;
  font-weight: 400;
  padding-left: 18px;
}

/* ------------------------------------------
   FOOTER BOTTOM (COPYRIGHT & THỐNG KÊ)
   ------------------------------------------ */
.footer-bottom {
  background: #070a12;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  color: #64748b;
  font-size: 16px;
}

.copyright a {
  color: #94a3b8;
  text-decoration: none;
}

.stats {
  display: flex;
  gap: 12px;
}

.stats span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 16px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Đốm xanh báo Đang Online */
.stats span:first-child::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
}

/* Icon lượt truy cập */
.stats span:last-child::before {
  content: "📊";
  font-size: 11px;
}

/* ==========================================
   RESPONSIVE (MÁY TÍNH BẢNG & DI ĐỘNG)
   ========================================== */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
