/* ================= FOOTER ================= */
.site-footer {
  background: #4a1c6f; /* same as header */
  color: #ffffff;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #f0e9f6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #f0e9f6;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* Bottom bar */
.footer-bottom {
  background: #3a1558;
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
  color: #e6d9ef;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-link-title {
  color: #ffffff;
  text-decoration: none;
}

.footer-link-title:hover {
  text-decoration: underline;
}
/* Footer services link UX */
.footer-link-title {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-arrow {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.footer-link-title:hover .footer-arrow {
  transform: translateX(4px);
}

/* Mobile hint */
@media (max-width: 768px) {
  .footer-link-title {
    text-decoration: underline;
  }
}
/* ===== FOOTER BOTTOM BAR ===== */
.footer-bottom {
  background: #3a1558;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-left {
  display: flex;
  gap: 2px;   /* 🔑 very small gap */
}



.footer-bottom-right {
  font-size: 13px;
  color: #e6d9ef;
}

/* SOCIAL ICON BASE */
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;              /* 🔥 ICON COLOR FIX */
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* ICON INSIDE */
.social-icon i,
.social-icon span {
  color: #ffffff !important;   /* 🔥 FORCE WHITE */
  font-size: 18px;
  font-weight: 700;
}

/* HOVER EFFECT */
.social-icon:hover {
  background: #ffffff;
  color: #4b1c6b;              /* purple contrast */
  transform: translateY(-3px);
}

.social-icon:hover i,
.social-icon:hover span {
  color: #4b1c6b !important;
}

/* Talk2Market Brand Match */
.talk2market-link {
  color: #ff7a18;              /* 🔥 Logo Orange */
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.talk2market-link:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255,122,24,0.6);
}

