/* Footer Styles */
.footer {
  background-color: var(--primary-dark);
  color: #fff;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-logo h3 {
  font-size: 2.4rem;
  margin-bottom: var(--spacing-sm);
}

.footer-logo p {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.link-group h4 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.link-group ul li {
  margin-bottom: var(--spacing-xs);
}

.link-group ul li a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.link-group ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact h4 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-info {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info p {
  margin-bottom: var(--spacing-xs);
}

.copyright {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}

.copyright a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.copyright a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .footer-logo, .footer-contact {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .link-group {
    margin-bottom: var(--spacing-md);
  }
  
  .link-group ul li a:hover {
    padding-left: 0;
  }
}