.testimoni {
  padding: 60px 20px;
  background: #fff;
  margin-top: 40px;
  box-shadow: 0 -10px 5px rgba(0,0,0,0.05);
  text-align: center;
}

.testimoni h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fd5702;
  margin-bottom: 10px;
}

.testimoni p.subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.testimoni-container {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimoni-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.testimoni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* --- PERUBAHAN UTAMA UNTUK GAMBAR --- */
.testimoni-card .image-container {
    width: 100px; /* Ukuran foto testimoni dibuat tetap */
    height: 100px;
    border-radius: 50%; /* Membuat foto menjadi bulat */
    background-color: #f0f0f0;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.testimoni-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ------------------------------------ */

.testimoni-card-content {
    padding: 0 20px 20px 20px;
}

.testimoni-card-content h3 { margin: 0 0 5px 0; font-size: 1.1rem; }
.testimoni-card-content h4 { margin: 0 0 10px 0; font-size: 0.9rem; color: #888; }
.testimoni-card-content .stars { color: #ffc107; margin-bottom: 10px; }
.testimoni-card-content p { margin: 0; color: #666; font-style: italic; }
