.complaint-status-page {
  padding: 55px 0 70px;
  background:
    linear-gradient(135deg, rgba(14, 58, 95, 0.04) 0%, rgba(255, 255, 255, 1) 50%, rgba(240, 179, 94, 0.07) 100%);
}

.status-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240, 179, 94, 0.12);
  color: #9a5b05;
  border: 1px solid rgba(240, 179, 94, 0.35);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.status-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #11385a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.status-header p {
  font-size: 15px;
  line-height: 1.7;
  color: #5d6f7f;
  margin: 0 auto;
  max-width: 650px;
}

/* CARD */
.status-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #e3ebf3;
  box-shadow: 0 18px 40px rgba(10, 35, 60, 0.08);
  position: relative;
  overflow: hidden;
}

.status-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0e3a5f, #f0b35e);
}

.status-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef3f8;
}

.status-icon-box {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0e3a5f, #1f5d8d);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(14, 58, 95, 0.18);
}

.status-card-top h3 {
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 700;
  color: #12385b;
}

.status-card-top span {
  color: #708191;
  font-size: 14px;
  font-weight: 500;
}

/* LABEL */
.status-card label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #163b5c;
  margin-bottom: 8px;
}

.mandatory {
  color: #dc3545;
}

/* INPUT */
.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #f0a940;
  font-size: 15px;
  z-index: 2;
}

.form-control {
  width: 100%;
  height: 48px;
  border: 1px solid #d5dfe8;
  border-radius: 12px;
  background: #ffffff;
  color: #243746;
  font-size: 14px;
  padding: 10px 14px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.with-icon {
  padding-left: 42px;
}

.form-control:focus {
  border-color: #0e3a5f;
  box-shadow: 0 0 0 4px rgba(14, 58, 95, 0.10);
  outline: none;
}

.form-control.alert-danger,
.alert-danger.form-control {
  border-color: #dc3545 !important;
  background: #fff8f8 !important;
  box-shadow: none !important;
}

/* BUTTON */
.premium-btn {
  background: linear-gradient(90deg, #0e3a5f, #154a74);
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  min-width: 190px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(14, 58, 95, 0.18);
}

.premium-btn i {
  margin-right: 8px;
}

.premium-btn:hover,
.premium-btn:focus {
  background: linear-gradient(90deg, #0a2e4c, #103c5f);
  box-shadow: 0 16px 30px rgba(14, 58, 95, 0.22);
}

/* RESULT BOX */
.status-result-box {
  margin-top: 24px;
}

.loading-box {
  background: #ffffff;
  border: 1px solid #e3ebf3;
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  color: #12385b;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* ALERT */
.alert {
  border-radius: 12px;
  padding: 13px 16px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .complaint-status-page {
    padding: 38px 0 48px;
  }

  .status-header {
    margin-bottom: 24px;
  }

  .status-badge {
    font-size: 12px;
    padding: 7px 14px;
  }

  .status-header h2 {
    font-size: 26px;
  }

  .status-header p {
    font-size: 14px;
  }

  .status-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .status-card-top {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .status-icon-box {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 18px;
    border-radius: 12px;
  }

  .status-card-top h3 {
    font-size: 20px;
  }

  .form-control {
    height: 46px;
    font-size: 14px;
    border-radius: 10px;
  }

  .premium-btn {
    width: 100%;
    min-width: auto;
  }

  .text-end {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .status-header h2 {
    font-size: 23px;
  }

  .status-card {
    padding: 16px 14px;
  }

  .status-card label {
    font-size: 13px;
  }

  .with-icon {
    padding-left: 40px;
  }

  .input-icon {
    left: 12px;
  }
/* Status Result Card */
.status-result-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 24px;
}

.result-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.result-header h4 {
    color: #1f2937;
    margin: 0;
    font-size: 20px;
}

.result-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.result-item {
    display: flex;
    flex-direction: column;
}

.result-item label {
    font-weight: 600;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

.result-item div {
    font-weight: 500;
    color: #111827;
    font-size: 16px;
    padding: 8px 0;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-info { background: #dbeafe; color: #1e40af; }
.status-warning { background: #fef3c7; color: #d97706; }
.status-primary { background: #dbeafe; color: #1d4ed8; }
.status-success { background: #d1fae5; color: #059669; }
.status-danger { background: #fee2e2; color: #dc2626; }

.result-actions {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

/* Loading */
.loading-box {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.loading-box::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error states */
.alert-danger {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
}

.alert-danger i {
    margin-right: 8px;
}  
}