@import url('home.css');

/* Spacing atas */
.container {
  padding-top: 30px;
}

/* Teks tambahan */
.update-text {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

/* List harga */
.harga-list {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 25px;
}

.harga-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  transition: 0.2s;
}

.harga-item:last-child {
  border-bottom: none;
}

.harga-item:hover {
  background: #fafafa;
}

.harga-item span {
  font-weight: 600;
}

.harga-item strong {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
}

/* Info tambahan */
.info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.info-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.info-box h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 16px;
}

.info-box p,
.info-box li {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.info-box ul {
  padding-left: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .harga-item {
    padding: 16px;
    font-size: 14px;
  }

  .harga-item strong {
    font-size: 15px;
  }
}
/* ===== TAMBAHAN TRUST & UPDATE ===== */

.update-time {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.source-text {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin: 15px 0 25px;
}

.trust-section {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  margin-bottom: 20px;
}

.trust-section h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.trust-section li {
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-box {
  text-align: center;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  margin-bottom: 60px;
  font-size: 14px;
}
