:root{
  --req-primary:#02343a;
  --req-primary-2:#0b4b52;
  --req-gold:#c9a45c;
  --req-bg:#f4f7f8;
  --req-card:#ffffff;
  --req-border:#e4ecee;
  --req-text:#183437;
  --req-text-soft:#708487;
  --req-shadow:0 10px 30px rgba(2,52,58,.08);
  --req-shadow-hover:0 16px 36px rgba(2,52,58,.12);
  --req-radius-xl:28px;
  --req-radius-lg:20px;
  --req-radius-md:15px;
  --req-danger:#d64045;
  --req-success:#118a63;
}

*{
  box-sizing:border-box;
}

html,
body{
  overflow-x:hidden !important;
  max-width:100vw !important;
}

*{
  overscroll-behavior-x:contain !important;
}

body{
  font-family:'Almarai',sans-serif;
}

body::-webkit-scrollbar{
  display:none;
}

.request-main{
  padding-bottom:90px;
}

/* الهيرو */
.request-hero{
  background:
    radial-gradient(circle at top left, rgba(201,164,92,.13), transparent 24%),
    linear-gradient(135deg,#ffffff 0%, #f7fafb 100%);
  border:1px solid var(--req-border);
  border-radius:30px;
  box-shadow:var(--req-shadow);
  padding:24px;
  margin-bottom:22px;
}

.request-hero-content{
  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(--req-primary),var(--req-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(--req-text);
  font-size:30px;
  font-weight:800;
}

.request-hero-text p{
  margin:0;
  color:var(--req-text-soft);
  font-size:15px;
  line-height:1.9;
}

.request-stat-box{
  min-width:145px;
  background:#fff;
  border:1px solid var(--req-border);
  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(--req-text-soft);
  margin-bottom:8px;
}

.request-stat-box strong{
  font-size:26px;
  color:var(--req-primary);
  font-weight:800;
}

/* قسم الفورم */
.request-form-section{
  width:100%;
}

.request-form-card{
  background:var(--req-card);
  border:1px solid var(--req-border);
  border-radius:30px;
  box-shadow:var(--req-shadow);
  padding:28px;
  overflow:hidden;
}

.request-card-head{
  margin-bottom:22px;
}

.request-card-head h2{
  margin:0 0 8px;
  color:var(--req-text);
  font-size:24px;
  font-weight:800;
}

.request-card-head p{
  margin:0;
  color:var(--req-text-soft);
  font-size:14px;
  line-height:1.8;
}

/* الفورم */
.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(--req-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:#f8fbfb;
  border:1.5px solid #e6eef0;
  border-radius:16px;
  min-height:56px;
  transition:.2s ease;
  overflow:hidden;
}

.input-wrap:focus-within{
  border-color:#8eb1b5;
  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(--req-primary);
  font-size:22px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  padding:15px 16px 15px 0;
  font-size:15px;
  color:var(--req-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;
}

/* الرسالة */
#client-request-msg{
  min-height:26px;
  font-size:14px;
  font-weight:700;
  padding:2px 4px 0;
}

/* زر الإرسال */
.request-submit-wrap{
  display:flex;
  justify-content:flex-start;
}

.request-submit-btn{
  border:none;
  outline:none;
  cursor:pointer;
  background:linear-gradient(135deg,var(--req-primary),var(--req-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;
}

/* موبايل */
@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:14px;
  }

  .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;
  }
}