/* =====================================================
   FOOTER TEAMIT – NEW VERSION (RESPONSIVE)
   ===================================================== */

.footer-teamit {
  background: linear-gradient(135deg, #292b2f, #2b384c);
  color: #ffffff;
  margin-top: 60px;
  font-size: 14px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px 25px;
}

/* ===== ROW ===== */
.footer-row {
  display: grid;
  gap: 24px;
}

/* Dòng 1 */
.footer-top {
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

/* Logo */
.footer-logo {
  max-width: 80px;
}

/* Title */
.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Text */
.footer-text {
  font-size: 14px;
  opacity: 0.9;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: 0.25s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== DÒNG 2 ===== */
.footer-middle {
  text-align: center;
  margin: 25px 0;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  font-size: 13.5px;
}

/* ===== DÒNG 3 ===== */
.footer-members {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 15px;
}

.member-card {
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  transition: 0.25s;
}

.member-card:hover {
  background: rgba(255,255,255,0.2);
}

.member-card span {
  display: block;
  opacity: 0.9;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-members {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-members {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-logo {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer-members {
    grid-template-columns: 1fr;
  }

  .footer-teamit {
    font-size: 13px;
  }
}
