/* =========================================================
   REQUEST-PAGE.CSS
   ========================================================= */

.request-page { padding-bottom: 2rem; }

/* هیرو */
.request-hero {
  background: radial-gradient(circle at 25% 15%, rgba(245,188,56,0.18), transparent 45%),
              linear-gradient(135deg, var(--blue) 0%, #1a2733 60%, var(--dark) 100%);
  color: #fff;
  padding: 3rem 1.25rem 2.5rem;
  text-align: center;
  border-radius: 0 0 28px 28px;
}
.request-hero h1 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0.8rem 0 0.5rem;
}
.request-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  margin: 0;
}

/* باکس تماس */
.request-call-box {
  max-width: 500px;
  margin: -1.5rem auto 0;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
  text-align: center;
}

.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: var(--primary);
  color: var(--dark);
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(245,188,56,0.45);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-call-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.4;
}
.btn-call-label { font-size: 0.8rem; font-weight: 600; opacity: 0.75; }
.btn-call-number { font-size: 1.45rem; font-weight: 900; letter-spacing: 0.5px; }

.call-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* مراحل */
.request-steps {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1rem;
  text-align: center;
}

/* اطلاعات لازم */
.request-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem 1.25rem 2rem;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(34,53,72,0.08);
  border-inline-start: 4px solid var(--primary);
}
.info-card h3 {
  font-size: 1rem;
  color: var(--blue);
  margin: 0 0 0.9rem;
}
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  font-size: 0.9rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px dashed #eee;
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before {
  content: "\2713";
  position: absolute;
  inset-inline-start: 0;
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .request-hero h1 { font-size: 2.2rem; }
  .btn-call-number { font-size: 1.7rem; }
}