  /* --- Area Footer Utama --- */
  .site-footer-dark {
    background-color: #1a1a1a; /* Background hitam/abu tua */
    color: #a0a0a0; /* Warna teks default abu muda */
    padding: 60px 0 20px 0; /* Padding atas lebih besar */
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8; /* Jarak baris lebih lega */
    border-top: 4px solid #c81e1e; /* Aksen warna merah (sesuaikan) */
  }
  .footer-container-dark {
    max-width: 1200px; /* Lebar maksimal konten */
    margin: 0 auto; /* Posisi tengah */
    padding: 0 25px; /* Padding kiri/kanan */
  }

  /* --- Layout Kolom --- */
  .footer-columns-dark {
    display: grid;
    /* 4 kolom di desktop, 2 di tablet, 1 di HP */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 35px; /* Jarak antar kolom */
    margin-bottom: 45px;
  }
  .footer-column-dark h4 {
    color: #ffffff; /* Warna judul kolom putih */
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
    /* Optional: border-bottom: 1px solid #c81e1e; */
    /* padding-bottom: 10px; */
  }
  .footer-column-dark ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-column-dark li {
    margin-bottom: 12px;
  }
  .footer-column-dark a {
    color: #a0a0a0; /* Warna link default */
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-column-dark a:hover {
    color: #ffffff; /* Warna link saat hover putih */
    text-decoration: none; /* Tanpa underline */
  }

  /* --- Styling Kontak & Alamat --- */
  .footer-contact-dark address {
    font-style: normal;
    margin-bottom: 10px;
    color: #a0a0a0; /* Warna teks alamat */
  }
  .footer-contact-dark i {
    margin-right: 10px;
    width: 18px; 
    text-align: center;
    color: #c81e1e; /* Warna ikon kontak merah (sesuaikan) */
  }

  /* --- Styling Sosial Media --- */
  .footer-social-dark li {
    display: inline-block;
    margin-right: 18px;
  }
  .footer-social-dark a {
    font-size: 26px; /* Ukuran ikon sosmed */
    color: #a0a0a0;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
  }
  .footer-social-dark a:hover {
    color: #ffffff;
    transform: translateY(-2px); /* Efek naik sedikit */
  }

  /* --- Styling Trust Logos --- */
  .footer-trust-logos-dark {
    margin-top: 25px;
    text-align: center; 
    padding-top: 25px;
    border-top: 1px solid #333; /* Garis pemisah halus */
  }
   .footer-trust-logos-dark h5 {
     color: #888;
     font-size: 13px;
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
  }
  .payment-logos-dark img { /* Logo pembayaran */
    height: 300px; /* Tinggi logo pembayaran (sesuaikan) */
    margin: 5px 10px;
    filter: grayscale(50%) brightness(1.5); /* Buat cerah di background gelap */
    opacity: 0.9;
    vertical-align: middle; /* Jaga agar rata tengah vertikal */
  }
   .security-logos-dark img { /* Logo Keamanan */
    height: 35px; /* Tinggi logo keamanan (sesuaikan) */
    margin: 5px 10px;
     filter: grayscale(50%) brightness(1.5);
     opacity: 0.9;
     vertical-align: middle;
   }

  /* --- Copyright --- */
  .footer-copyright-dark {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #333; /* Garis pemisah halus */
    font-size: 13px;
    color: #777; /* Warna copyright lebih soft */
  }
  .footer-copyright-dark a {
    color: #999;
  }
  .footer-copyright-dark a:hover {
    color: #fff;
  }