body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fdfdfd;
  padding-top: 4em;
}

/* Section */
.pending-requests {
  padding: 16em 2em;
  margin-top: -8.2em;
  text-align: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url('src/images/wholepagebg.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.pending-requests .top-badge {
  background: #D62828;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 14px;
  cursor: default;
}

.pending-requests .section-title {
  font-size: 65px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  color: #1e2939;
  margin: 20px 0;
}

.pending-requests .section-title .accent {
  color: #e63946;
}

.pending-requests .section-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5565;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Grid Layout */
.requests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.request-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

.request-card:hover {
  transform: translateY(-6px);
}

.card-media {
  position: relative;
}

.card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.status-badge {
  position: absolute;
  bottom: -30px;
  right: 12px;
  background: #ffd166;
  color: #222;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-badge img {
  width: 12px;
  height: 12px;
}

.card-body {
  padding: 18px;
  flex: 1;
}

.card-body img {
  width: 30px;
  height: 30px;
}

.card-meta {
  font-size: 12px;
  color: #F26419;
  margin-bottom: 8px;
  font-weight: 600;
}

.card-title {
  font-size: 17px !important;
  font-weight: bold;
  margin: 15px 0;
  color: #1e2939;
  text-transform: capitalize !important;
}

.info-line {
  font-size: 16px;
  color: #1E2939;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 10px;
}

.icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.85;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #e63946;
  margin: 12px 0;
}

.view-btn {
  display: inline-block;
  background: linear-gradient(90deg, #0E9F6E, #28A745);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
  text-align: center;
}

.view-btn:hover {
  opacity: 0.9;
}

/* ================= Responsive ================= */

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .pending-requests .section-title {
    font-size: 56px;
    line-height: 50px;
  }

  .pending-requests .section-desc {
    font-size: 18px;
    line-height: 30px;
  }

  .requests-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .price {
    font-size: 16px;
  }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .pending-requests {
    padding-top: 12em !important;
    padding-bottom: 3em !important;
    margin-top: -3em;
  }

  .pending-requests .section-title {
    font-size: 45px !important;
    line-height: 50px !important;
  }

  .pending-requests .section-desc {
    font-size: 16px;
    line-height: 24px;
    margin: 10px auto 20px;
  }

  .requests-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .request-card {
    font-size: 14px;
  }

  .card-title {
    font-size: 16px;
  }

  .price {
    font-size: 15px;
  }

  .pending-requests {
    padding: 12em 2em;
    margin-top: -7em;
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('src/images/wholepagebg.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
}