/* =========================================================
   FEEDBACK / PENGADUAN SERVICE
   STYLE RINGKAS SEPERTI RS PERSAHABATAN
========================================================= */

.feedback-service-section {
  width: 100%;
  margin: 0;
  padding: 54px 0;
  background: #eaf8f6;
  border: 0;
  border-bottom: 1px solid rgba(15, 159, 143, 0.18);
  overflow: hidden;
}

.rsko-feedback {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 52px;
}

/* ITEM */
.feedback-item {
  position: relative;

  min-width: 0;
  min-height: 92px;

  margin: 0;
  padding: 8px 40px 8px 0;

  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;

  color: #111827;
  text-decoration: none;

  border: 0;
  background: transparent;

  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.feedback-item:hover {
  transform: translateY(-2px);
}

/* ICON */
.feedback-item__icon {
  width: 58px;
  height: 58px;
  min-width: 58px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-item__icon img,
.feedback-item__icon svg {
  display: block;

  width: 54px;
  height: 54px;

  object-fit: contain;
}

/* CONTENT */
.feedback-item__content {
  min-width: 0;
}

.feedback-item__content h3 {
  margin: 0 0 5px;

  color: #111827;

  font-family: 'Poppins', Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feedback-item__content p {
  margin: 0;

  color: #718096;

  font-family: 'Poppins', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
}

/* Tombol teks lama disembunyikan agar seperti Persahabatan */
.feedback-item__btn {
  display: none;
}

/* Panah kanan */
.feedback-item::after {
  content: "›";

  position: absolute;
  top: 50%;
  right: 0;

  transform: translateY(-50%);

  color: #263247;

  font-family: Arial, sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 300;

  transition:
    right 0.2s ease,
    color 0.2s ease;
}

.feedback-item:hover::after {
  right: -4px;
  color: #0f9f8f;
}

.feedback-item:hover h3 {
  color: #0f9f8f;
}

/* =========================================================
   DESKTOP KECIL
========================================================= */

@media (max-width: 1200px) {
  .feedback-service-section {
    padding: 46px 0;
  }

  .rsko-feedback {
    width: calc(100% - 44px);
    gap: 32px;
  }

  .feedback-item {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding-right: 30px;
  }

  .feedback-item__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .feedback-item__icon img,
  .feedback-item__icon svg {
    width: 46px;
    height: 46px;
  }

  .feedback-item__content h3 {
    font-size: 19px;
  }

  .feedback-item__content p {
    font-size: 14px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .feedback-service-section {
    padding: 34px 0;
  }

  .rsko-feedback {
    width: calc(100% - 32px);

    grid-template-columns: 1fr;
    gap: 0;
  }

  .feedback-item {
    min-height: 88px;
    padding: 16px 38px 16px 0;

    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }

  .feedback-item:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .feedback-service-section {
    padding: 24px 0;
  }

  .rsko-feedback {
    width: calc(100% - 28px);
  }

  .feedback-item {
    min-height: 82px;

    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;

    padding: 14px 30px 14px 0;
  }

  .feedback-item__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .feedback-item__icon img,
  .feedback-item__icon svg {
    width: 40px;
    height: 40px;
  }

  .feedback-item__content h3 {
    margin-bottom: 3px;
    font-size: 17px;
    line-height: 1.25;
  }

  .feedback-item__content p {
    font-size: 13px;
    line-height: 1.4;
  }

  .feedback-item::after {
    font-size: 28px;
  }
}