/* ============================================
   FOOTER AUKYCLOTH (Versi Proporsional & Garis Seragam)
=============================================== */
.site-footer {
  background-color: #f8f9fa;
  padding: 60px 40px 30px;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4.0fr 1.5fr 1.2fr 1.7fr;
  column-gap: 40px;
  align-items: start;
}

/* ========== Kolom & Spasi ========== */
.footer-col {
  padding: 0 15px;
}

/* 🔹 Garis pembatas kanan kolom pertama */
.footer-about {
  border-right: 1.6px solid #ccc;
  padding-right: 55px;
}

/* ========== Logo & Deskripsi ========== */
.footer-logo {
  width: 200px;
  margin-bottom: 5px;
}

.footer-about p {
  margin: 12px 0 20px;
  font-size: 0.94em;
  line-height: 1.7;
  color: #555;
}

/* ========== Sosial Media ========== */
.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 0.94em;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #000;
}

/* ========== Judul & Link ========== */
.footer-col h4 {
  font-weight: 600;
  font-size: 1.05em;
  margin-bottom: 14px;
  color: #111;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95em;
}

.footer-col ul li a:hover {
  color: #000;
}

/* ========== Footer Bottom ========== */
.footer-bottom {
  margin-top: 45px;
  padding-top: 18px;
  text-align: center;
  font-size: 0.88em;
  color: #666;
  border-top: 1.6px solid #ccc; /* 🔸 disamakan tebal & warna dengan garis vertikal */
}

/* ========== Tombol WhatsApp Mengapung ========== */
.wa-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 26px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ========== Tombol Admin Mengapung ========== */
.admin-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 90px; /* sedikit di atas tombol WA */
  right: 25px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.admin-float:hover {
  transform: scale(1.1);
  background-color: #0056b3;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1.4fr 1fr 1fr;
    column-gap: 25px;
    text-align: left;
  }
  .footer-about {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 700px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    text-align: left;
  }
  .footer-about {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 550px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-logo {
    margin: 0 0 15px;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .footer-about {
    border-right: none;
    padding-right: 0;
  }
}

/* Mobile adjustments for floating buttons */
@media (max-width: 768px) {
  .wa-float {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }

  .admin-float {
    width: 45px;
    height: 45px;
    bottom: 75px;
    right: 20px;
    font-size: 22px;
  }
}
