/* ================= FOOTER FOOT CULTURE ================= */
footer.footer {
  background: linear-gradient(180deg, #0b0b0b 0%, #111 100%);
  color: #ffffff;
  padding: 70px 20px 40px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Container */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Item */
.footer-item {
  flex: 1;
  min-width: 220px;
}

/* Judul */
.footer-item h4,
.footer-item h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #ffffff;
}

/* Text */
.footer-item p,
.footer-item li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

/* ================= LINK FINAL (ANTI BIRU MOBILE) ================= */
footer.footer a,
footer.footer a:link,
footer.footer a:visited,
footer.footer a:hover,
footer.footer a:active,
footer.footer a:focus,
footer.footer a:focus-visible,
footer.footer a:-webkit-any-link {
  color: #ffffff !important;
  text-decoration: none !important;
  display: inline-block;
  width: 100%;
  transition: color 0.25s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Hover Desktop */
.footer-item li:hover > a {
  color: #ff9900 !important;
  transform: translateX(4px);
}

/* Tap Mobile */
footer.footer a:active {
  color: #ff9900 !important;
  transform: translateX(4px);
}

/* List */
.footer-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ================= SOCIAL MEDIA ================= */
.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  font-size: 20px;
  color: #ffffff !important;
  transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.footer-social a:hover,
.footer-social a:active {
  transform: scale(1.2);
  opacity: 0.95;
  color: #ff9900 !important;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 45px 0 25px;
}

/* Copyright */
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  footer.footer {
    padding: 50px 20px 30px;
    background: #000;
  }

  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-item {
    width: 100%;
  }

  .footer-item h4,
  .footer-item h5 {
    font-size: 14px;
  }

  .footer-item p,
  .footer-item li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-divider {
    background: rgba(255, 255, 255, 0.2);
  }

  
}
