/* Footer Styles */
.site-footer {
  background-color: #215f44;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  margin-top: auto;
  width: 100%;
}

.footer-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Company Section */
.footer-company {
  max-width: 100%;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffffff;
}

.logo-text .tagline {
  margin: 0.25rem 0 0 0;
  font-size: 0.9rem;
  color: #fff6ea;
  opacity: 0.9;
}

.company-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff6ea;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer Sections */
.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: left;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.footer-section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Quick Links */
.footer-links {
  text-align: left;
  padding: 0 6rem;
}

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

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: #fff6ea;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  opacity: 0.9;
  display: inline-block;
  position: relative;
}

.footer-nav a:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateX(8px);
}

/* Contact Information */
.site-footer .footer-contact,
.site-footer .footer-contact *,
.footer-section.footer-contact,
.footer-section.footer-contact * {
  background-color: #215f44 !important;
}

.footer-contact {
  text-align: left;
  padding: 0;
}

.contact-info {
  margin-bottom: 2rem;
  padding: 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  gap: 0.25rem;
  align-items: flex-start;
  padding: 0;
}

.contact-label {
  font-weight: 600;
  color: #fff6ea !important;
  font-size: 0.95rem;
  opacity: 0.9;
}

.contact-value {
  color: #fff6ea !important;
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.4;
  font-weight: 400;
}

.contact-value a {
  color: #fff6ea;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-value a:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: underline;
}

/* Social Media */
.social-media {
  margin-top: 1.5rem;
  text-align: left;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 246, 234, 0.1);
  color: #fff6ea !important;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-links a:hover {
  background-color: rgba(255, 246, 234, 0.2);
  color: #ffffff !important;
  transform: translateY(-2px);
  border-color: #fff6ea;
  box-shadow: 0 4px 12px rgba(255, 246, 234, 0.2);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 246, 234, 0.1);
}

.footer-bottom-content {
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0.25rem 0;
  color: #fff6ea;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-mission {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 1rem;
  }
  
  .footer-company {
    text-align: center;
  }
  
  .logo-link {
    justify-content: center;
  }
  
  .contact-item {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom-content {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 1.5rem 1rem;
  }
  
  .footer-logo-img {
    width: 40px;
    height: 40px;
  }
  
  .logo-text h3 {
    font-size: 1.2rem;
  }
  
  .social-links a {
    width: 36px;
    height: 36px;
  }
  
  .social-links svg {
    width: 18px;
    height: 18px;
  }
}

/* Focus styles for accessibility */
.footer-nav a:focus,
.social-links a:focus {
  outline: 2px solid #fff6ea;
  outline-offset: 2px;
}