/* ========== Footer Base ========== */
.site-footer {
  background-color: #0b1220;
  color: #cbd5e1;
  font-size: 0.95rem;
}

/* ========== Footer Main ========== */
.footer-main {
  padding: 4rem 0 3rem;
}

.footer-brand h3 {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #94a3b8;
  max-width: 320px;
}

/* ========== Social Icons ========== */
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background-color: #0d6efd;
  transform: translateY(-2px);
}

/* ========== Footer Links ========== */
.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0d6efd;
}

/* ========== Contact Info ========== */
.footer-contact .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
}

.contact-item i {
  color: #0d6efd;
  font-size: 1rem;
}

/* ========== Footer Bottom ========== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.copyright {
  margin: 0;
  color: #94a3b8;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #0d6efd;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .footer-legal {
    justify-content: flex-start;
    margin-top: 0.75rem;
    flex-wrap: wrap;
  }
}
