/* ===== REQUESTS / COMPLAINTS – FINAL PROFESSIONAL ===== */
.requests-section{
  position: relative;
  background: url("img/requestbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 24px;            /* jo shumë i lartë */
  overflow: hidden;
}

/* Subtle overlay for contrast */
.requests-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(8, 20, 40, 0.22);  /* institucional, jo i rëndë */
  pointer-events:none;
}

/* Content wrapper */
.requests-container{
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* Title */
.requests-container h2{
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: .3px;
  display: inline-block;
  padding-bottom: 10px;
}



/* Subtitle */
.requests-container p{
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  color: rgba(255,255,255,.92);
}

/* Buttons wrapper */
.requests-actions{
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Base button */
.requests-actions a{
  min-width: 230px;
  padding: 14px 28px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

/* Primary – Kërkesë */
.btn-request{
  background: #3a7ec1;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.btn-request:hover{
  background: #2f6dad;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

/* Secondary – Ankesë */
.btn-complaint{
  background: rgba(255,255,255,.06);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.btn-complaint:hover{
  background: rgba(255,255,255,.14);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

/* ===== DESKTOP TUNING ===== */
@media (min-width: 800px){
  .requests-section{
    padding: 80px 24px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px){
  .requests-container h2{
    font-size: 26px;
  }

  .requests-container p{
    font-size: 15.5px;
  }

  .requests-actions a{
    width: 100%;
    max-width: 320px;
  }
}
