/* Header */
.display-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}
.subtle {
  color: rgba(15, 23, 42, 0.7);
}
.header-section {
  background: linear-gradient(
    180deg,
    rgba(250, 255, 203, 0.35),
    rgba(255, 255, 255, 0.8)
  );
  padding-top: 100px !important;
  padding-bottom: 60px;
}

/* Form Wrapper */
.report-wrapper {
  max-width: 720px;
}
.report-form {
  background: #ffffffcc;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(31, 90, 63, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(31, 90, 63, 0.08);
}

/* Info Box */
.info-complaint {
  background: color-mix(in oklab, var(--brand) 14%, white);
  border-left: 4px solid var(--brand);
  color: var(--brand-dark);
  font-size: 0.95rem;
}
.info-complaint h6 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

/* Input styling */
.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid rgba(31, 90, 63, 0.25);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(14, 122, 95, 0.15);
}

/* Static Text Box */
.instansi-static {
  background: color-mix(in oklab, var(--brand) 8%, white);
  color: var(--brand-dark);
  font-weight: 600;
}

/* Upload Area */
.attachment-container {
  border: 2px dashed rgba(31, 90, 63, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}
.attachment-container:hover {
  background: color-mix(in oklab, var(--brand) 6%, white);
  border-color: var(--brand);
  transform: scale(1.01);
}

/* Button */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(31, 90, 63, 0.25);
}
.btn-brand:hover {
  background: var(--brand-dark);
}

/* Utility */
.required::after {
  content: " *";
  color: #e11d48;
}

/* Responsive */
@media (max-width: 576px) {
  .report-form {
    padding: 1.5rem;
  }
}
