.footer {
    background-color: #0d1b2a;
    color: #fff;
    padding: 2rem 1.5rem; /* lebih rapat dari sebelumnya */
    font-family: 'Poppins', sans-serif;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* tetap sebar kiri-kanan */
    align-items: flex-start;
    gap: 1.5rem; /* jarak antar kolom lebih rapat */
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-logo img {
  max-width: 70px;   /* atur sesuai kebutuhan */
  height: auto;
  margin: 0 auto 10px; /* biar center & ada jarak ke teks */
  display: block;
}

.footer-text {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, #004EFF, #8000FF, #FF3399, #FF6600, #FFCC00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

}

.footer-desc {
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.5;
}

  .footer-links,
  .footer-contact,
  .footer-social {
    flex: 1 1 180px;
    min-width: 150px; /* supaya kolom nggak terlalu kecil */
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #f4b400;
  }

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

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

  .footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-links a:hover {
    color: #f4b400;
  }

  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
  }

  .footer-contact a {
    color: #ddd;
    text-decoration: none;
  }

  .footer-contact a:hover {
    color: #f4b400;
  }

  .footer-social .social-icons {
    gap: 0.5rem;
  }

  .footer-social img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s, filter 0.3s;
  }

  .footer-social a:hover img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(75%) sepia(90%) saturate(1800%) hue-rotate(350deg);
  }

  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #bbb;
  }

  .social-link {
    color: white;
    font-size: 24px;
    margin-right: 10px;
    transition: color 0.3s ease;
    align-items: center;
  }

  .social-link:hover {
    color: #f4b400;
  }

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
  }

  .footer-section {
    flex: unset !important;
    min-width: unset !important;
    width: 100%;
    margin: 0 !important;
    padding: 0.1rem 0 !important;
  }

  .footer-section h4,
  .footer-section p,
  .footer-section ul {
    margin: 0.2rem 0;
    padding: 0;
  }

  .footer-section ul li {
    margin: 0.2rem 0;
  }

  .footer-text {
    font-size: 18px;
  }

  .footer-desc {
    font-size: 0.8rem;
  }

  .footer h4 {
    font-size: 0.8rem;
  }

  .footer-links {
    font-size: 0.8rem;
  }
  
  .footer-contact p {
    font-size: 0.8rem;
  }
  
  .footer-contact p a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
  }

  .footer-section {
    flex: unset !important;
    min-width: unset !important;
    width: 100%;
    margin: 0 !important;
    padding: 0.1rem 0 !important;
  }

  .footer-section h4,
  .footer-section p,
  .footer-section ul {
    margin: 0.2rem 0;
    padding: 0;
  }

  .footer-section ul li {
    margin: 0.2rem 0;
  }

  .footer-text {
    font-size: 18px;
  }

  .footer-desc {
    font-size: 0.7rem;
  }

  .footer h4 {
    font-size: 0.7rem;
  }

  .footer-links {
    font-size: 0.7rem;
  }
  
  .footer-contact p {
    font-size: 0.7rem;
  }
  
  .footer-contact p a {
    font-size: 0.7rem;
  }
}
