/* Footer Container */
footer {
  background-color: var(--blue);
  color: var(--white);
  padding: 50px 5% 20px;
}

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

/* Logo & Deskripsi */
.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1); /* Logo putih */
}

.footer-logo p {
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Link Section */
.footer-links h3, 
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--magenta);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--magenta);
}

/* Kontak Section */
.footer-contact p {
  margin-bottom: 10px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact p::before {
  content: '•';
  color: var(--magenta);
}

/* Copyright */
.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  opacity: 0.7;
}

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