/* ================= FOOTER SAAS ================= */

.bc-footer {
    background: #0f172a;
    color: #cbd5f5;
    padding-top: 60px;
    margin-top: 80px;
    font-family: inherit;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 40px;
}

/* BRAND */
.footer-brand h3 {
    color: #38bdf8;
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

/* TITLE */
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 16px;
}

/* LINKS */
.footer-links a {
    display: block;
    color: #cbd5f5;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: #38bdf8;
    transform: translateX(4px);
}

/* CONTACT */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 6px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding: 20px;
    font-size: 13px;
    color: #94a3b8;
}

/* SOCIAL MEDIA FOOTER */
.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* HOVER PREMIUM EFFECT */
.footer-social a:hover {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.3);
}