/* Custom Footer Styles - Overrides main styles.css */

.site-footer {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 80px 0 40px !important;
  position: relative !important;
  z-index: 10 !important;
}

.footer-container {
  width: min(1400px, 92vw) !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
}

.footer-content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  margin-bottom: 60px !important;
}

/* Brand Section */
.footer-address {
  margin-bottom: 90px !important;
}

.footer-address p {
  font-size: 28px !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

.footer-contact-info p {
  font-size: 16px !important;
  line-height: 1.3 !important;
  color: rgba(255, 255, 255, 1) !important;
  margin: 0 !important;
}

.footer-contact-info p:last-child {
  margin-bottom: 0 !important;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 1) !important;
  text-decoration: underline !important;
  transition: color 0.3s ease !important;
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-contact-info a:hover {
  color: #3cc8ff !important;
}

/* Links Section */
.footer-links {
  display: flex !important;
  gap: 80px !important;
  align-items: flex-start !important;
}

.footer-links-column {
  text-align: left !important;
  display: block !important;
}

.footer-links ul,
.footer-links-column ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  display: block !important;
}

.footer-links ul li,
.footer-links-column ul li {
  margin-bottom: 0 !important;
  line-height: 1.8 !important;
  text-align: left !important;
  display: block !important;
}

.footer-links ul li:last-child,
.footer-links-column ul li:last-child {
  margin-bottom: 0 !important;
}

.footer-links ul li a,
.footer-links-column ul li a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 16px !important;
  transition: color 0.3s ease !important;
  display: inline-block !important;
  text-align: left !important;
  border-bottom: none !important;
  padding: 0 !important;
}

.footer-links ul li a:hover,
.footer-links-column ul li a:hover {
  color: #3cc8ff !important;
  border-bottom: none !important;
}

/* Footer Bottom */
.footer-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-top: 40px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none !important;
  font-size: 13px !important;
  transition: color 0.3s ease !important;
}

.footer-legal a:hover {
  color: #3cc8ff !important;
}

.footer-copyright {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin: 0 !important;
}

/* Responsive */
@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .footer-links {
    flex-direction: row !important;
    gap: 60px !important;
  }

  .footer-address p {
    font-size: 24px !important;
  }

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

  .footer-legal {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 60px 0 30px !important;
  }

  .footer-container {
    padding: 0 20px !important;
  }

  .footer-content {
    gap: 30px !important;
  }

  .footer-links {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .footer-address p {
    font-size: 20px !important;
  }
}
