
:root {
  --bg: #000;
  --muted: #c7c7c7;
  --accent: #ff6600;
  --white: #fff;
  --container: 1200px;
}

/* Footer Base */
.sbs_site-footer {
  background: var(--bg);
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  padding: 60px 50px 70px;
}

.sbs_footer-inner {
  max-width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 30px;
}

/* Headings */
.sbs_footer-col h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
}

/* Logo & Description */
.sbs_footer-logo {
  width: 120px;
  margin-bottom: 18px;
}

.sbs_footer-desc {
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Social Icons */
.sbs_socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2c3137;
  color: var(--white);
  margin-right: 8px;
  transition: all 0.3s ease;
}
.sbs_socials a:hover {
  background: var(--accent);
  color: #fff;
}

/* Links */
.sbs_footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sbs_footer-col ul li {
  margin: 10px 0;
}
.sbs_footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.sbs_footer-col ul li a:hover {
  color: var(--white);
}

/* Contact Items */
.sbs_contact-item {
  display: flex;
  gap: 12px;
  margin: 12px 0;
}
.sbs_contact-item i {
  padding: 10px;
  border-radius: 8px;
  color: var(--accent);
  font-size: 16px;
}
.sbs_contact-item strong {
  color: var(--white);
  font-size: 14px;
  display: block;
}
.sbs_contact-item div {
  font-size: 14px;
}

/* Footer Bottom */
.sbs_footer-bottom {
  max-width: var(--container);
  margin: 28px auto 0;
  padding: 18px 20px 40px;
  text-align: center;
}
.sbs_footer-bottom .divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 16px;
  width: 80%;
}

/* Responsive Styles */
@media (max-width: 980px) {
  .sbs_footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .sbs_footer-inner {
    grid-template-columns: 1fr;
  }
  .sbs_footer-col {
    text-align: left;
  }
  .sbs_socials {
    margin-top: 12px;
  }
}
