body {
  margin: 0;
}

.page-hero.testimonies-hero-bg {
  background:
    linear-gradient(rgba(51, 19, 97, 0.78), rgba(79, 30, 138, 0.8)),
    url("../images/testimonies.png") center/cover no-repeat !important;
}

/* =========================
   TESTIMONY FORM SECTION
========================= */
.testimony-section {
  padding: 70px 0;
  background: #f7f9fc;
}

.testimony-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.testimony-form-card,
.testimony-info-card {
  background: #ffffff;
  border: 1px solid #dbe3f0;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(19, 33, 68, 0.06);
}

.testimony-form-card {
  padding: 28px;
}

.testimony-info-card {
  padding: 28px;
}

.testimony-label-box {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f2e1a9;
  color: #b67d00;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimony-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group label {
  font-weight: 700;
  color: #1b2d49;
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cfd8e6;
  border-radius: 16px;
  padding: 16px;
  font: inherit;
  background: #ffffff;
  color: #22324d;
}

.form-group textarea {
  resize: vertical;
}

.permission-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #33445f;
  line-height: 1.6;
}

.permission-check input {
  margin-top: 4px;
}

.submit-btn {
  border: none;
  border-radius: 16px;
  padding: 16px 20px;
  background: #173f8a;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.form-status-message {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.5;
}

.form-status-message.show {
  display: block;
}

.form-status-message.loading {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #2463c7;
}

.form-status-message.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.form-status-message.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #c62828;
}

.testimony-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.testimony-info-card h2 {
  margin-top: 0;
  color: #173f8a;
}

.verse-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #dbe3f0;
}

/* =========================
   PUBLIC TESTIMONIES
========================= */
.public-testimonies-section {
  padding: 90px 0 100px;
  position: relative;
  background: #f8fbff;
}

.public-testimonies-section .container {
  max-width: 1180px;
  margin: 0 auto;
}

.public-testimonies-section .section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
  display: block;
}

.public-testimonies-section .admin-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f7e6ad, #e7c96b);
  color: #9a6b00;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 11px 20px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px rgba(210, 161, 47, 0.18);
}

.public-testimonies-section .section-heading h2 {
  font-size: 56px;
  line-height: 1.08;
  color: #163f8f;
  margin: 0 0 18px;
  letter-spacing: -0.8px;
}

.public-testimonies-section .section-heading p {
  font-size: 19px;
  line-height: 1.8;
  color: #5f6f89;
  margin: 0;
}

.public-testimonies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 28px;
}

.public-testimony-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid #d8e2f1;
  border-radius: 26px;
  padding: 34px 30px 28px;
  box-shadow: 0 14px 34px rgba(20, 43, 90, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.public-testimony-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(20, 43, 90, 0.14);
  border-color: #d6b24b;
}

.public-testimony-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #d2a12f, #f3df9b, #d2a12f);
}

.public-testimony-card::after {
  content: "❝";
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 72px;
  line-height: 1;
  color: rgba(63, 28, 106, 0.08);
  font-family: Georgia, "Times New Roman", serif;
}

.public-testimony-card h3 {
  font-size: 31px;
  line-height: 1.18;
  color: #163f8f;
  margin: 0 0 16px;
  padding-right: 34px;
  min-height: 74px;
}

.public-testimony-text {
  font-size: 18px;
  line-height: 1.9;
  color: #243754;
  margin: 0 0 24px;
  min-height: 88px;
}

.public-testimony-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid #e6edf7;
  flex-wrap: wrap;
}

.public-testimony-author-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.public-testimony-author {
  color: #163f8f;
  font-size: 19px;
  font-weight: 700;
}

.public-testimony-permission {
  color: #9a6b00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.public-testimony-date {
  color: #6c7d96;
  font-size: 16px;
  white-space: nowrap;
}

.public-empty-state {
  grid-column: 1 / -1;
  background: #ffffff;
  border: 1px dashed #cfd9ea;
  border-radius: 22px;
  padding: 48px 20px;
  text-align: center;
  color: #60718a;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(20, 43, 90, 0.05);
}

/* =========================
   DARK MODE
========================= */
body.theme-dark .testimony-section {
  background: #08152d;
}

body.theme-dark .testimony-form-card,
body.theme-dark .testimony-info-card {
  background: #12213d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

body.theme-dark .testimony-form-card h1,
body.theme-dark .testimony-form-card h2,
body.theme-dark .testimony-form-card h3,
body.theme-dark .testimony-form-card p,
body.theme-dark .testimony-info-card h1,
body.theme-dark .testimony-info-card h2,
body.theme-dark .testimony-info-card h3,
body.theme-dark .testimony-info-card p,
body.theme-dark .testimony-info-card small,
body.theme-dark .permission-check,
body.theme-dark .form-group label {
  color: #f5f8ff !important;
}

body.theme-dark .form-group input,
body.theme-dark .form-group textarea {
  background: #061432;
  border: 1px solid #2a426f;
  color: #f5f8ff;
}

body.theme-dark .form-group input::placeholder,
body.theme-dark .form-group textarea::placeholder {
  color: #9fb2d4;
}

body.theme-dark .verse-box {
  background: #efe7d2;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .verse-box p,
body.theme-dark .verse-box small {
  color: #2c3955 !important;
}

body.theme-dark .public-testimonies-section {
  background: #08152d;
}

body.theme-dark .public-testimonies-section .section-heading h2 {
  color: #f5f8ff;
}

body.theme-dark .public-testimonies-section .section-heading p {
  color: #c4d0e2;
}

body.theme-dark .public-testimony-card {
  background: linear-gradient(180deg, #16233b 0%, #101a2f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

body.theme-dark .public-testimony-card h3 {
  color: #f5f8ff;
}

body.theme-dark .public-testimony-text {
  color: #d8e2f0;
}

body.theme-dark .public-testimony-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.theme-dark .public-testimony-author {
  color: #ffffff;
}

body.theme-dark .public-testimony-date {
  color: #bac7da;
}

body.theme-dark .public-empty-state {
  background: #16233b;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: #d0daea;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .testimony-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .public-testimonies-section .section-heading h2 {
    font-size: 42px;
  }

  .public-testimonies-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .public-testimonies-section {
    padding: 68px 0 76px;
  }

  .public-testimonies-section .section-heading {
    text-align: left;
    margin-bottom: 32px;
  }

  .public-testimonies-section .section-heading h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .public-testimonies-section .section-heading p {
    font-size: 17px;
    line-height: 1.75;
  }

  .public-testimony-card {
    padding: 26px 20px 22px;
    border-radius: 20px;
  }

  .public-testimony-card h3 {
    font-size: 24px;
    padding-right: 18px;
  }

  .public-testimony-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .public-testimony-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-testimony-date {
    white-space: normal;
  }
}