/* =============================================================
   SITE FOOTER STYLING
============================================================= */
.site-footer {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  color: #0b192c;
  padding: 80px 8% 40px 8%;
  box-sizing: border-box;
  z-index: 10;
  border-top: 1px solid rgba(11, 25, 44, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(11, 25, 44, 0.08);
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #0b192c;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(11, 25, 44, 0.7);
  max-width: 280px;
}

/* Social Links */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(11, 25, 44, 0.04);
  border: 1px solid rgba(11, 25, 44, 0.08);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(11, 25, 44, 0.08);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(11, 25, 44, 0.7);
  transition: fill 0.3s ease;
}

.social-link:hover svg {
  fill: #0b192c;
}

/* Footer Nav Columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 25, 44, 0.5);
  margin-bottom: 4px;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(11, 25, 44, 0.7);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #0b192c;
}

/* Footer Bottom Bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(11, 25, 44, 0.5);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(11, 25, 44, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: rgba(11, 25, 44, 0.8);
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 5% 32px 5%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-col {
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 50px 4% 28px 4%;
  }
}
