/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 24 2025 | 20:12:15 */
/* ======================= CSS UNTUK FORM INPUTAN ========================= */
/* Container utama */
.strong-form-inner {
  max-width: 600px;
  margin: 0 auto; /* hapus jarak atas */
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
}

/* Judul form */
.strong-form-inner::before {
  content: "Formulir Testimonial";
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #07547E;
  text-align: center;
}

/* Required notice + garis bawah */
.required-notice {
  text-align: right;
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
  position: relative;
}

.required-notice::after {
  content: "";
  display: block;
  border-bottom: 1px solid #ddd;
  margin-top: 10px;
}

/* Label */
.strong-form-inner label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #333;
}

/* Input & Textarea */
.strong-form-inner input[type="text"],
.strong-form-inner input[type="email"],
.strong-form-inner textarea,
.strong-form-inner input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 15px;
}

/* Fokus warna biru */
.strong-form-inner input[type="text"]:focus,
.strong-form-inner input[type="email"]:focus,
.strong-form-inner textarea:focus,
.strong-form-inner input[type="file"]:focus {
  border-color: #0076B6;
  box-shadow: 0 0 6px rgba(0,118,182,0.3);
}

/* Textarea lebih rapi */
.strong-form-inner textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

/* Deskripsi input (after) lebih dekat */
.strong-form-inner .after {
  font-size: 13px;
  color: #666;
  margin-top: 6px; /* lebih dekat ke input */
  display: block;
}

/* Tombol submit */
.wpmtst_submit_testimonial {
  background: #0076B6;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: block;
  margin: 20px auto 0;
  width: 100%; /* full width */
  text-align: center;
}

.wpmtst_submit_testimonial:hover {
  background: #005f91;
}

/* Bintang rating */
.strong-rating-wrapper {
  margin-top: 10px;
}

.strong-rating-wrapper label.star {
  cursor: pointer;
  margin-right: 6px;
  transition: transform 0.2s;
}

.strong-rating-wrapper label.star:hover {
  transform: scale(1.1);
}

/* Spasi antar field */
.strong-form-inner .form-field {
  margin-bottom: 20px;
}

/* VERSI MOBILE */
@media (max-width: 768px) {
  .strong-form-inner {
    margin-top: 0;
  }
}



/* ===================== CSS TITLE/JUDUL TESTIMONIAL ======================= */
/* Judul testimonial */
.wpmtst-testimonial-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px !important;
  line-height: 1.4;
}
.wpmtst-testimonial-heading a {
  color: #07547E;
  text-decoration: none;
}
.wpmtst-testimonial-heading a:hover {
  color: #0076B6;
}

/* ================== RESPONSIF MOBILE ================== */
@media (max-width: 768px) {
  .wpmtst-testimonial-heading {
    font-size: 16px;
    text-align: center;
  }
}



/* ===================== CUSTOM STYLE UNTUK BOX TESTIMONIAL ======================= */
/* Container dengan border abu-abu */
.wpmtst-testimonial-inner {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 20px !important;
  background-color: #ffffff;
}

.wpmtst-testimonial-content.testimonial-content {
	text-align: justify;
}

/* Garis separator di atas nama */
.wpmtst-testimonial-field.testimonial-name {
  border-top: 1px solid #ddd;
  margin-top: 15px;
  padding-top: 10px;
  font-weight: 600;
  color: #333;
}

/* Nama, rating, tanggal dalam satu baris */
.wpmtst-testimonial-field.testimonial-name,
.wpmtst-testimonial-field .strong-rating-wrapper,
.wpmtst-testimonial-field:last-of-type {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
  vertical-align: middle;
}

/* Rating bintang */
.strong-rating-wrapper {
  color: #f5b301;
}

/* Tanggal */
.wpmtst-testimonial-field:last-of-type {
  color: #777;
  font-size: 13px;
}

/* ===================== RESPONSIVE MOBILE ======================= */
@media (max-width: 768px) {
  .wpmtst-testimonial-inner {
    padding: 15px;
  }
  /* Biar footer info stack ke bawah */
  .wpmtst-testimonial-field.testimonial-name,
  .wpmtst-testimonial-field .strong-rating-wrapper,
  .wpmtst-testimonial-field:last-of-type {
    display: block;
    margin: 5px 0;
    text-align: center;
  }
  .wpmtst-testimonial-content.testimonial-content {
	text-align: left;
  }
}