/* Footer Styles */
.site-footer {
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 160, 224, 0.3);
  padding: 3rem 4rem 2rem 4rem;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-section {
  display: flex;
  align-items: flex-start;
  margin-top: -8rem;
}

.footer-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  filter: brightness(1);
  transition: filter 0.3s;
}

.footer-logo:hover {
  filter: brightness(1.1);
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #00a0e0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #00a0e0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #00a0e0;
}

/* Mobile Responsive */
@media (max-width: 993px) {
  .site-footer {
    padding: 3rem 2rem 2rem 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-logo-section {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo-section {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}