@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans&display=swap');

.site-footer {
  background: #000;
  color: #fff;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 2rem;
}

.footer-col {
  min-width: 0;
}

.footer-brand .footer-text {
  color: #bbb;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.6rem;
  align-items: start;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0;
}

.footer-bottom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: #bbb;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #fff;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom-container { flex-direction: column; gap: 0.8rem; }
}


