/* Footer Styles */
.site-footer {
  background: var(--darkBlue);
  color: #fff;
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-brand a {
  display: block;
  line-height: 0;
  align-self: flex-start;
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 100%;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--brand);
}

.social-icons {
  display: flex;
  gap: 0;
  margin-top: 1rem;
  justify-content: flex-start;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.8rem;
  }

  .footer-col h4 {
    font-size: 0.95rem;
  }

  .footer-col ul li a {
    font-size: 0.8rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .footer-brand img {
    height: 35px;
  }
}
