/* ═══════════════════════════════════════════════════════════════════════
   SBS SIMPLE FOOTER - LINK BASED
   ═══════════════════════════════════════════════════════════════════════ */

.sbs-footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: #fff;
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER LINKS GRID
   ═══════════════════════════════════════════════════════════════════════ */

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 900px) {
  .footer-links-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Column */
.footer-column {
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.footer-column:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 215, 0, 0.15);
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 215, 0, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-link:hover {
  color: rgba(255, 215, 0, 0.9);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER BOTTOM
   ═══════════════════════════════════════════════════════════════════════ */

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 215, 0, 0.7);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
