/* =========================================
   Bareeq Request Service
   Professional Page Style
========================================= */

:root{
  --rq-navy:#0b1c2d;
  --rq-navy-2:#10263a;
  --rq-navy-3:#16324b;

  --rq-green:#0f8f5b;
  --rq-green-2:#19a36a;

  --rq-gold:#d4af37;
  --rq-gold-2:#f0d77a;

  --rq-text:#f5f7fa;
  --rq-text-soft:#c8d3dd;
  --rq-muted:#90a2b5;

  --rq-border:rgba(212,175,55,.22);

  --rq-shadow:0 24px 60px rgba(0,0,0,.34);
  --rq-shadow-soft:0 18px 38px rgba(0,0,0,.22);

  --rq-radius-xl:28px;
  --rq-radius-lg:22px;
  --rq-radius-md:16px;

  --rq-container:min(1180px, calc(100% - 32px));
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body.request-page{
  margin:0;
  font-family:"Tajawal", system-ui;
  color:var(--rq-text);
  background:
    radial-gradient(circle at 14% 16%, rgba(15,143,91,.22), transparent 0 28%),
    radial-gradient(circle at 84% 10%, rgba(212,175,55,.14), transparent 0 22%),
    linear-gradient(135deg,#06111d 0%,var(--rq-navy) 34%,#071018 100%);
}

.container{
  width:var(--rq-container);
  margin:auto;
}

/* =========================================
   Header
========================================= */

.rq-topbar{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(18px);
  background:rgba(6,17,29,.88);
  border-bottom:1px solid rgba(212,175,55,.14);
}

.rq-topbar__inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.rq-brand{
  display:flex;
  align-items:center;
  justify-content:center;

  padding:10px 18px;
  border-radius:14px;

  background:linear-gradient(135deg,var(--rq-gold),var(--rq-gold-2));
  color:#08131d;
  font-weight:900;
}

.rq-nav{
  display:flex;
  gap:24px;
}

.rq-nav a{
  color:var(--rq-text-soft);
  font-weight:700;
}

.rq-topbar__cta{
  padding:10px 18px;
  border-radius:999px;

  background:linear-gradient(135deg,var(--rq-gold),var(--rq-gold-2));
  color:#08131d;
  font-weight:800;
}

/* =========================================
   Hero
========================================= */

.rq-hero{
  padding:90px 0 40px;
}

.rq-hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}

.rq-eyebrow{
  display:inline-flex;
  padding:6px 14px;

  border-radius:999px;
  background:rgba(212,175,55,.12);
  border:1px solid rgba(212,175,55,.18);

  color:var(--rq-gold-2);
  font-weight:700;
}

.rq-hero h1{
  margin:16px 0;
  font-size:clamp(2.4rem,5vw,4rem);
  line-height:1.1;
}

.rq-hero__lead{
  color:var(--rq-text-soft);
  max-width:640px;
}

.rq-hero__actions{
  margin-top:26px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.rq-btn{
  padding:14px 24px;
  border-radius:999px;
  font-weight:800;
}

.rq-btn--primary{
  background:linear-gradient(135deg,var(--rq-gold),var(--rq-gold-2));
  color:#08131d;
}

.rq-btn--ghost{
  border:1px solid rgba(255,255,255,.18);
}

.rq-trust{
  list-style:none;
  padding:0;
  margin-top:24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.rq-trust li{
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

/* =========================================
   Hero Panel
========================================= */

.rq-panel-card{
  padding:26px;
  border-radius:28px;

  background:
  linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02)),
  linear-gradient(135deg,#0d2235,#071018);

  border:1px solid rgba(212,175,55,.18);
}

.rq-panel-card__line{
  height:12px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--rq-gold),var(--rq-green-2));
}

.rq-panel-card__line--short{
  width:70%;
  margin-top:12px;
}

.rq-panel-card__metrics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:26px;
}

.rq-panel-card__metrics span{
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  text-align:center;
}

/* =========================================
   Steps
========================================= */

.rq-steps-section{
  padding:60px 0;
}

.rq-section-head{
  max-width:760px;
  margin-bottom:32px;
}

.rq-section-eyebrow{
  color:var(--rq-gold-2);
  font-weight:700;
}

.rq-steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.rq-step-card{
  padding:26px;
  border-radius:var(--rq-radius-lg);

  background:linear-gradient(135deg,#0d2235,#071018);
}

.rq-step-card__num{
  display:inline-flex;
  padding:6px 12px;

  border-radius:999px;
  background:rgba(25,163,106,.2);
  color:var(--rq-green-2);
  margin-bottom:10px;
}

/* =========================================
   Form Layout
========================================= */

.rq-form-layout{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
}

.rq-form-wrap{
  padding:32px;
  border-radius:28px;

  background:
  linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02)),
  linear-gradient(135deg,#0d2235,#071018);

  border:1px solid rgba(212,175,55,.18);
}

.rq-form-head{
  margin-bottom:20px;
}

.rq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.rq-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.rq-field--full{
  grid-column:1 / -1;
}

.rq-field input,
.rq-field select,
.rq-field textarea{
  padding:14px;
  border-radius:14px;

  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#fff;
}

.rq-field textarea{
  min-height:140px;
}

.rq-form-note{
  margin-top:12px;
  color:var(--rq-muted);
  font-size:.9rem;
}

.rq-submit{
  margin-top:20px;

  padding:16px 26px;
  border:none;
  border-radius:999px;

  background:linear-gradient(135deg,var(--rq-gold),var(--rq-gold-2));
  color:#08131d;
  font-weight:900;

  cursor:pointer;
}

/* =========================================
   Side Cards
========================================= */

.rq-side-info{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.rq-side-card{
  padding:22px;

  border-radius:var(--rq-radius-lg);

  background:linear-gradient(135deg,#0d2235,#071018);

  border:1px solid rgba(255,255,255,.08);
}

.rq-checks{
  padding:0;
  list-style:none;
}

.rq-checks li{
  margin:6px 0;
}

/* =========================================
   Why
========================================= */

.rq-why-section{
  padding:60px 0;
}

.rq-why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.rq-why-card{
  padding:22px;
  border-radius:20px;

  background:linear-gradient(135deg,#0d2235,#071018);
}

/* =========================================
   FAQ
========================================= */

.rq-faq-list{
  max-width:900px;
}

.rq-faq-item{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.rq-faq-question{
  width:100%;
  padding:16px 0;

  display:flex;
  justify-content:space-between;

  background:none;
  border:none;
  color:#fff;

  font-weight:700;
}

.rq-faq-answer{
  padding-bottom:14px;
  color:var(--rq-text-soft);
}

/* =========================================
   Final CTA
========================================= */

.rq-final-cta{
  padding:60px 0;
}

.rq-final-cta__box{
  padding:36px;

  border-radius:28px;

  background:
  linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02)),
  linear-gradient(135deg,#0b1c2d,#0c2430);

  border:1px solid rgba(212,175,55,.22);
}

/* =========================================
   Footer
========================================= */

.rq-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(5,12,19,.82);
}

.rq-footer__inner{
  padding:34px 0;

  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
}

.rq-footer__links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

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

@media(max-width:1024px){

.rq-hero__grid,
.rq-form-layout{
grid-template-columns:1fr;
}

.rq-why-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.rq-grid{
grid-template-columns:1fr;
}

.rq-steps-grid{
grid-template-columns:1fr;
}

.rq-why-grid{
grid-template-columns:1fr;
}

}

/* ===== Select Styling Fix ===== */

.rq-field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-color:#10263a;
  color:#f5f7fa;
  border:1px solid rgba(212,175,55,.22);
  background-image:
    linear-gradient(45deg, transparent 50%, #d4af37 50%),
    linear-gradient(135deg, #d4af37 50%, transparent 50%);
  background-position:
    calc(16px) calc(50% - 3px),
    calc(8px) calc(50% - 3px);
  background-size:8px 8px, 8px 8px;
  background-repeat:no-repeat;
  padding-left:34px;
}

.rq-field select option{
  background:#10263a;
  color:#f5f7fa;
}

.rq-field select:focus{
  background-color:#16324b;
  color:#ffffff;
}
