.footer-wave {
  display: inline-block;
  animation: waveText 3s ease-in-out infinite;
}

@keyframes waveText {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Hover animasi Quick Links */
.footer-section ul li a {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
  width: 100%;
}

/* Hover efek social icon lebih keren */
.social-links a {
  transition: transform 0.4s ease, background 0.4s ease;
}

.social-links a:hover {
  transform: scale(1.2) rotate(8deg);
}
/* Footer Styles */
.footer {
  background: #6e9dbd;
  color: #fff;
  padding: 4rem 0 2rem;
  position: relative;
  margin-top: 4rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.footer-section.reveal {
  opacity: 1;
  transform: translateY(0);
}

.footer-section h3 {
  color: #254546;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Raleway', sans-serif;
}

.footer-section h4 {
  color: #254546;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Raleway', sans-serif;
}

.footer-section p {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #88AFE6;
}

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

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #88AFE6;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-wave {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-section {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

[data-theme="dark"] .footer {
  background: #242323;
}

/* Modal styles for enlarged image */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Show modal when active */
.modal.active {
  display: flex;
}