/* Footer Styles */
.footer {
  background: var(--primary-color);
  padding: 40px 0 20px;
  width: 100%;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h5 {
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-section p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-links i {
  margin-right: 8px;
  width: 20px;
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

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

/* Footer Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
