.footer {
  position: relative;
  background-color: #c4161c;
  color: #fff;
  overflow: hidden;
  font-size: 13px;
}

/* IMG jadi background */
.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: url("../images/batik-footer.png");
  background-repeat: repeat;
  background-size: 900px; /* 🔥 kecilin motif di sini */
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

/* Konten di atas pattern */
.footer .container,
.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2;
}

/* Layout */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin-bottom: 3px;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-bottom {
  background: #a51217;
  text-align: center;
  padding: 15px;
  font-size: 11px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 576px) {
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 35px 0;
  }

  .footer-logo h4 {
    text-align: left;
  }

  .footer-contact {
    margin-left: 15vw;
  }

  .footer-contact p {
    margin: 8px 0;
  }

  .footer-about p,
  .footer-links a,
  .footer-contact p {
    font-size: 13px;
  }
}
