/* ================= SSFC FOOTER ================= */
.ssfc-footer-sec {
  background: linear-gradient(180deg, #02070d, #01050a);
  position: relative;
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* GRID */
.ssfc-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-bottom: 40px;
}

/* COLUMN HEADINGS */
.ssfc-footer-col h3,
.ssfc-footer-col h4 {
  margin-bottom: 18px;
  color: #fff;

}

/* TEXT */
.ssfc-footer-col p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* LINKS */
.ssfc-footer-col a {
  display: flex;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.ssfc-footer-col a:hover {
  color: var(--primary);
  transform: translateX(6px);
}

/* LOGO */
.ssfc-footer-logo {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
}

/* CONTACT ROW */
.ssfc-footer-col-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.ssfc-footer-col-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* SOCIAL */
.ssfc-footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.ssfc-footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.ssfc-footer-social a:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 198, 255, 0.3);
}



/* BOTTOM */
.ssfc-footer-bottom {
  text-align: center;
  padding-top: 10px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .ssfc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .ssfc-footer-grid {
    grid-template-columns: 1fr;
    /* text-align: center; */
  }

  .ssfc-footer-col-contact {
    /* justify-content: center; */
  }

  .ssfc-footer-social {
    /* justify-content: center; */
  }
}