:root {
  --gradient-green-tosca: linear-gradient(to right, #27ae60, #1abc9c);
}

.layanan-publik-section {
  background-color: #f8f9fa;
}

/* ============================= */
/*      Maklumat Card Style      */
/* ============================= */
.maklumat-card {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

  /* initial for slide-in */
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out var(--delay),
              transform 0.6s ease-out var(--delay);
}
.maklumat-card.in-view {
  opacity: 1;
  transform: translateX(0);
}

.maklumat-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.maklumat-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom right, rgba(39, 174, 96, 0.8), rgba(26, 188, 156, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.maklumat-isi {
  font-size: 0.95rem;
  max-width: 90%;
  line-height: 1.6;
}

/* ============================= */
/*    Accordion Styling & Anim   */
/* ============================= */
.accordion .accordion-item {
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #e0e0e0;
  overflow: hidden;

  /* initial for fade-up */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out var(--delay),
              transform 0.6s ease-out var(--delay);
}
.accordion-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.accordion-button {
  font-weight: 600;
  background-color: #ffffff;
  transition: background 0.3s ease;
  position: relative;
  padding-right: 3rem;
}
.accordion-button::after {
  display: none;
}
.accordion-button:not(.collapsed) {
  background: var(--gradient-green-tosca);
  color: #fff;
}

.accordion-body {
  font-size: 0.95rem;
  color: #333;
}

/* ============================= */
/*     Maklumat Image Style      */
/* ============================= */
.maklumat-img {
  max-width: 75%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 1rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.maklumat-img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Responsive: gambar agak besar di mobile */
@media (max-width: 768px) {
  .maklumat-img {
    max-width: 90%;
    max-height: 300px;
  }
}
