.footer {
  background: #b7d7f8;
  color: #252222;
  padding: 40px 0 0;
  margin-top: 50px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-section h6 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #191b1d;
}

.footer-section p {
  color: #201f1f;
  margin: 6px 0;
  line-height: 1.6;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
  border-top: 1px solid #1e2d3a;
  font-size: 14px;
  color: #252020;
}

/* Responsif */
@media(max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Styling untuk Tombol Admin Tersembunyi */
.hidden-admin-btn {
    /* Metode 1: Membuatnya tidak terlihat dan tidak bisa diklik */
    /* display: none; */ 
    
    /* Metode 2: Menggesernya di luar layar (lebih baik untuk SEO/Aksesibilitas) */
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -1;
    
    /* Metode 3: Membuat titik kecil transparan di dalam footer-bottom */
    /* position: absolute;
    bottom: 0; 
    right: 0;
    width: 15px; 
    height: 15px; 
    cursor: pointer;
    background: transparent; 
    */
}