/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
  color: white;
  margin-top: 4rem;
  padding: 3rem 0 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.footer-section h3 {
  color: #f1faee;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: #e63946;
  border-radius: 2px;
}

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

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

.footer-links a {
  color: rgba(241, 250, 238, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-links a:hover {
  color: #f1faee;
  transform: translateX(5px);
}

.footer-about {
  color: rgba(241, 250, 238, 0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(241, 250, 238, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1faee;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon:hover {
  background: #e63946;
  border-color: #f1faee;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.footer-contact-info {
  color: rgba(241, 250, 238, 0.85);
  line-height: 1.8;
}

.footer-contact-info p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-info p::before {
  content: "•";
  color: #e63946;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(241, 250, 238, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(241, 250, 238, 0.7);
}

.footer-bottom p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #f1faee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #e63946;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    padding: 0 1rem;
  }

  .footer-social {
    justify-content: center;
  }
}
