/* =========================
   FOOTER BASE (LIGHT THEME)
========================= */
#site-footer {
  background: #ffffff;
  color: #333333;
  margin-top: 80px;
  border-top: 4px solid #b30000; /* TVK flag feel */
  font-family: sans-serif;
}

/* =========================
   FOOTER CONTAINER
========================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* =========================
   FOOTER HEADINGS
========================= */
.footer-block h3,
.footer-block h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #b30000; /* TVK red accent */
}

/* =========================
   FOOTER TEXT
========================= */
.footer-block p,
.footer-block span {
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}

/* =========================
   FOOTER LINKS
========================= */
.footer-links ul {
  list-style: none;
}

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

.footer-links ul li a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}

.footer-links ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #b30000;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: width 0.2s ease;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

/* =========================
   FOOTER BOTTOM STRIP
========================= */
.footer-bottom {
  background: #b30000;
  color: #ffffff;
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
}

/* =========================
   FOOTER RESPONSIVE
========================= */
@media (max-width: 768px) {

  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links ul li a::after {
    display: none; /* clean mobile */
  }
}
