/* =========================================================
   REDUPORTAL - REPORT ISSUE
   Only page-specific styles
   ========================================================= */

.redu-report {
  width: 100%;
}

/* HERO */
.redu-report-hero {
  width: 100%;
  min-height: 145px;
  display: flex;
  align-items: center;
  padding: 28px 45px;
  background: linear-gradient(110deg, #087dcc, #0b9eea);
  overflow: hidden;
}

.redu-report-warning {
  width: 105px;
  min-width: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 35px;
  border: 0 !important;
}

.redu-report-warning img {
  width: 82px;
  height: 82px;
  display: block;
  object-fit: contain;
}

.redu-report-hero-text {
  border: 0 !important;
  padding-left: 0 !important;
}

.redu-report-hero-text h1 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
}

.redu-report-hero-text p {
  margin: 0;
  color: #fff;
  font-size: 17px;
}

/* MAIN CARD */
.redu-report-card {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e1edf5;
  border-radius: 8px;
  overflow: hidden;
}

/* LEFT */
.redu-feedback {
  flex: 0 0 34%;
  padding: 30px 32px;
  background: #f3fbff;
  border-right: 1px solid #d9ebf7;
}

.redu-feedback-image {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.redu-feedback-image img {
  width: 220px;
  height: auto;
  display: block;
  object-fit: contain;
}

.redu-feedback h2 {
  margin: 15px 0 10px;
  color: #07549a;
  font-size: 27px;
  font-weight: 700;
}

.redu-feedback-description {
  margin: 0;
  color: #6e8499;
  font-size: 16px;
  line-height: 1.65;
}

.redu-feedback-points {
  margin-top: 28px;
}

.redu-feedback-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.redu-point-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #dff3ff;
  color: #078ce2;
  font-size: 21px;
}

.redu-feedback-point h3 {
  margin: 1px 0 4px;
  color: #07549a;
  font-size: 15px;
  font-weight: 700;
}

.redu-feedback-point p {
  margin: 0;
  color: #7790a6;
  font-size: 13px;
  line-height: 1.45;
}

/* RIGHT */
.redu-issue-form {
  flex: 1 1 auto;
  min-width: 0;
  padding: 30px;
}

.redu-issue-form h2 {
  margin: 0 0 18px;
  color: #064b86;
  font-size: 21px;
  font-weight: 700;
}

/* ISSUE OPTIONS */
.redu-issue-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 14px;
  margin-bottom: 24px;
}

.redu-issue-option {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid #d7e7f2;
  border-radius: 7px;
  cursor: pointer;
  background: #fff;
}

.redu-issue-option:hover {
  border-color: #1595df;
  background: #f8fcff;
}

.redu-issue-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #078de2;
}

.redu-issue-option > i {
  color: #0879bf;
  font-size: 21px;
  flex-shrink: 0;
}

.redu-issue-option span {
  color: #667789;
  font-size: 14px;
  line-height: 1.4;
}

/* FORM */
.redu-form-group {
  margin-bottom: 18px;
}

.redu-form-group > label:first-child {
  display: block;
  margin-bottom: 7px;
  color: #064b86;
  font-size: 14px;
  font-weight: 700;
}

.redu-form-group label b {
  color: #e33a3a;
}

.redu-form-group label small {
  color: #718497;
  font-weight: 400;
}

.redu-form-group textarea,
.redu-input-wrap {
  width: 100%;
  border: 1px solid #cfe0ec;
  border-radius: 7px;
  background: #fff;
}

.redu-form-group textarea {
  min-height: 125px;
  padding: 13px;
  resize: vertical;
  outline: none;
  color: #42576b;
  font-size: 14px;
}

.redu-form-group textarea:focus,
.redu-input-wrap:focus-within {
  border-color: #1294de;
  box-shadow: 0 0 0 3px rgba(18,148,222,.09);
}

.redu-counter {
  text-align: right;
  color: #7d91a3;
  font-size: 11px;
  margin-top: 3px;
}

.redu-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.redu-input-wrap {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
}

.redu-input-wrap i {
  color: #0879bf;
  font-size: 18px;
}

.redu-input-wrap input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  color: #42576b;
  font-size: 14px;
}

.redu-input-wrap input::placeholder {
  color: #9db0c0;
}

/* UPLOAD - KEPT AS THE EXISTING DRAG/DROP STYLE */
.redu-upload {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 16px;
  border: 1.5px dashed #b9def5;
  border-radius: 8px;
  cursor: pointer;
  background: #fcfeff;
}

.redu-upload input {
  display: none;
}

.redu-upload > i {
  color: #0879bf;
  font-size: 29px;
}

.redu-upload span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.redu-upload strong {
  color: #1881c4;
  font-size: 13px;
  font-weight: 600;
}

.redu-upload span small {
  color: #91a7ba;
  font-size: 12px;
}

/* BUTTONS */
.redu-form-buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.redu-submit,
.redu-reset {
  min-height: 47px;
  padding: 0 27px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.redu-submit {
  border: 1px solid #078de5;
  background: #078de5;
  color: #fff;
}

.redu-submit:hover {
  background: #057bc5;
}

.redu-reset {
  border: 1px solid #b8d9ed;
  background: #fff;
  color: #087dcc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .redu-report-hero {
    padding: 25px 28px;
  }

  .redu-feedback {
    flex-basis: 32%;
    padding: 25px 20px;
  }

  .redu-issue-form {
    padding: 25px 20px;
  }
}

@media (max-width: 767px) {
  .redu-report-card {
    flex-direction: column;
  }

  .redu-feedback {
    flex-basis: auto;
    border-right: 0;
    border-bottom: 1px solid #d9ebf7;
  }

  .redu-issue-options,
  .redu-form-row {
    grid-template-columns: 1fr;
  }

  .redu-report-hero {
    padding: 22px 18px;
  }

  .redu-report-warning {
    width: 70px;
    min-width: 70px;
    margin-right: 18px;
  }

  .redu-report-warning img {
    width: 58px;
    height: 58px;
  }

  .redu-report-hero-text h1 {
    font-size: 27px;
  }

  .redu-report-hero-text p {
    font-size: 14px;
  }
}
