/* Footer Styles */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 250px;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: var(--border-radius-full);
}

.footer ul li {
  margin-bottom: var(--spacing-sm);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
}

.footer ul li a:hover {
  color: var(--accent-color);
  padding-left: var(--spacing-sm);
}

.social-icons {
  display: flex;
  gap: var(--spacing-sm);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.social-icon:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-md);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom i {
  color: var(--error-color);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-content {
    gap: var(--spacing-xl);
  }
  
  .footer-logo,
  .footer-links,
  .footer-courses,
  .footer-social {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-lg);
  }
  
  .footer-logo,
  .footer-links,
  .footer-courses,
  .footer-social {
    flex: 0 0 100%;
    margin-bottom: var(--spacing-lg);
  }
  
  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-logo,
  .footer-links,
  .footer-courses,
  .footer-social,
  .footer ul {
    text-align: center;
  }
  
  .footer-logo p {
    max-width: 100%;
  }
  
  .social-icons {
    justify-content: center;
  }
}