/* =========================
   REQUEST PAGE ONLY
   يعتمد على app-ios-2026.css
========================= */

:root {
  --req-danger: #d64045;
}

/* =========================
   PAGE
========================= */
.request-main {
  padding-bottom: 90px;
}

/* =========================
   HERO
========================= */
.request-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(25,188,149,.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.84));
  border: 1px solid rgba(255,255,255,.58);
  box-shadow:
    0 14px 36px rgba(2, 52, 58, 0.08),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.request-hero::before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(25,188,149,.14), transparent 70%);
  pointer-events: none;
}

.request-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.request-hero-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 260px;
}

.request-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(2,52,58,.18);
  flex-shrink: 0;
}

.request-icon-wrap .material-symbols-rounded {
  font-size: 34px;
}

.request-hero-text h1 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
}

.request-hero-text p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.request-stat-box {
  min-width: 145px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 20px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(2,52,58,.05);
}

.request-stat-box span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.request-stat-box strong {
  font-size: 26px;
  color: var(--primary);
  font-weight: 900;
}

/* =========================
   FORM SECTION
========================= */
.request-form-section {
  width: 100%;
}

.request-form-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 30px;
  box-shadow:
    0 14px 36px rgba(2, 52, 58, 0.08),
    inset 0 1px 0 rgba(255,255,255,.55);
  padding: 28px;
  overflow: hidden;
}

.request-card-head {
  margin-bottom: 22px;
}

.request-card-head h2 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 900;
}

.request-card-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

/* =========================
   FORM GRID
========================= */
.request-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-group label {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.field-group label span {
  color: var(--req-danger);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 56px;
  transition: .2s ease;
  overflow: hidden;
}

.input-wrap:focus-within {
  border-color: rgba(2,52,58,.22);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(2,52,58,.05);
}

.input-wrap > .material-symbols-rounded {
  width: 54px;
  min-width: 54px;
  text-align: center;
  color: var(--primary-2);
  font-size: 22px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  background: transparent;
  padding: 15px 16px 15px 0;
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #97a8ab;
}

.textarea-wrap {
  align-items: flex-start;
  min-height: 140px;
}

.textarea-wrap > .material-symbols-rounded {
  padding-top: 15px;
}

.input-wrap textarea {
  resize: none;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.9;
  min-height: 140px;
}

/* =========================
   MESSAGE
========================= */
#client-request-msg {
  min-height: 26px;
  font-size: 14px;
  font-weight: 700;
  padding: 2px 4px 0;
}

/* =========================
   SUBMIT
========================= */
.request-submit-wrap {
  display: flex;
  justify-content: flex-start;
}

.request-submit-btn {
  cursor: pointer;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  border-radius: 16px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 190px;
  box-shadow: 0 12px 24px rgba(2,52,58,.14);
  transition: .22s ease;
}

.request-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(2,52,58,.18);
}

.request-submit-btn .material-symbols-rounded {
  font-size: 21px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .request-main {
    padding-bottom: 84px;
  }

  .request-hero {
    padding: 18px;
    border-radius: 24px;
    margin-bottom: 16px;
  }

  .request-hero-text h1 {
    font-size: 24px;
  }

  .request-hero-text p {
    font-size: 14px;
  }

  .request-stat-box {
    min-width: 120px;
    width: 100%;
  }

  .request-form-card {
    padding: 18px;
    border-radius: 24px;
  }

  .request-card-head h2 {
    font-size: 21px;
  }

  .request-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .input-wrap {
    min-height: 54px;
    border-radius: 16px;
  }

  .input-wrap > .material-symbols-rounded {
    width: 48px;
    min-width: 48px;
    font-size: 20px;
  }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    font-size: 14px;
  }

  .request-submit-btn {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .request-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .request-icon-wrap .material-symbols-rounded {
    font-size: 28px;
  }

  .request-hero-text h1 {
    font-size: 22px;
  }

  .request-hero-right {
    align-items: flex-start;
  }

  .request-form-card {
    padding: 15px;
  }
}