/* =========================================================
   RED SERVICES — نظام التصميم (النسخة الداكنة)
   ========================================================= */

:root{
  --red:#D6202F; --red-light:#F04B57; --red-dark:#8f1119;
  --green:#1D8A44; --green-light:#39B96A; --green-dark:#0f5c2b;
  --cream:#FBF3EA; --ink:#170707;
  --bg:#0d0605; --surface:#120807;
  --card-bg:rgba(255,255,255,.045); --card-border:rgba(255,255,255,.1);
  --card-border-hover:rgba(57,185,106,.4);
  --muted:#c9b9b2; --muted-2:#a89893; --muted-3:#7a6b66;
  --line:rgba(255,255,255,.08);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Tajawal', sans-serif;
  background:var(--bg);
  color:#fff;
  overflow-x:hidden;
  direction:rtl;
}
a{color:inherit; text-decoration:none;}
ul,ol{list-style:none;}
img,svg{display:block;}
.container{max-width:1180px; margin:0 auto; padding:0 28px;}
section{ padding:100px 0; }
@media (max-width:600px){ section{ padding:64px 0; } .container{ padding:0 18px; } }

.skip-link{
  position:absolute; right:-999px; top:0; background:#fff; color:#111;
  padding:10px 16px; z-index:300; border-radius:0 0 0 8px;
}
.skip-link:focus{ right:0; }

/* ============ NAV ============ */
header{
  position:sticky; top:0; z-index:150;
  background:rgba(13,6,5,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand .icon{ height:38px; width:auto; flex-shrink:0; }
.brand .word{ font-size:19px; font-weight:900; white-space:nowrap; }
.brand .word .r{ color:var(--red-light); }
.brand .word .s{ color:var(--green-light); }
.brand .tag{ display:block; font-size:10px; font-weight:500; color:var(--muted-2); margin-top:1px; }

.navlinks{ display:flex; gap:16px; font-size:13px; font-weight:700; white-space:nowrap; }
.navlinks a{ opacity:.82; transition:opacity .15s, color .15s; position:relative; padding:4px 0; }
.navlinks a:hover{ opacity:1; }
.navlinks a[aria-current="page"]{ opacity:1; color:var(--green-light); }
.navlinks a[aria-current="page"]::after{
  content:''; position:absolute; right:0; bottom:-4px; width:100%; height:2px;
  background:var(--green-light); border-radius:2px;
}

.nav-cta{
  display:flex; align-items:center; gap:8px;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding:11px 22px; border-radius:999px; font-size:14.5px; font-weight:800;
  box-shadow:0 10px 24px -8px rgba(29,138,68,.5);
  white-space:nowrap;
}
.nav-cta svg{ width:16px; height:16px; fill:#fff; flex-shrink:0; }

.burger{
  display:none; width:42px; height:42px; border-radius:10px;
  background:rgba(255,255,255,.06); border:1px solid var(--line);
  align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;
}
.burger svg{ width:20px; height:20px; }

.mobile-panel{
  display:none;
}

@media (max-width:1300px){
  .brand .tag{ display:none; }
}
@media (max-width:980px){
  .navlinks{ display:none; }
  .nav-cta{ display:none; }
  .burger{ display:flex; }
  .nav{ flex-wrap:nowrap; }
  .brand .tag{ display:none; }
  .mobile-panel{
    display:block;
    position:fixed; inset:0 0 0 0; top:66px;
    background:#0a0403;
    z-index:140;
    padding:10px 24px 30px;
    transform:translateY(-12px); opacity:0; pointer-events:none;
    transition:transform .2s ease, opacity .2s ease;
    overflow:auto;
    height:calc(100vh - 66px);
  }
  .mobile-panel.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .mobile-panel a{
    display:block; padding:16px 4px; font-size:16px; font-weight:700;
    border-bottom:1px solid var(--line); color:#fff;
  }
  .mobile-panel a[aria-current="page"]{ color:var(--green-light); }
  .mobile-panel .mp-cta{ margin-top:22px; }
}

/* ============ BUTTONS ============ */
.btn-primary{
  display:inline-flex; align-items:center; gap:10px;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  padding:16px 30px; border-radius:14px; font-size:16px; font-weight:800; color:#fff;
  box-shadow:0 20px 40px -12px rgba(29,138,68,.55);
  border:none; cursor:pointer;
}
.btn-primary svg{ width:19px; height:19px; fill:#fff; flex-shrink:0; }
.btn-ghost{
  display:inline-flex; align-items:center; gap:10px;
  border:1.5px solid rgba(255,255,255,.28);
  padding:16px 28px; border-radius:14px; font-size:16px; font-weight:700; color:var(--cream);
}
.btn-sm{ padding:10px 20px; font-size:13.5px; border-radius:11px; }
.btn-block{ width:100%; justify-content:center; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float{
  position:fixed; bottom:26px; left:26px; z-index:200;
  width:58px; height:58px; border-radius:50%;
  background:linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 16px 34px -8px rgba(29,138,68,.6);
}
.wa-float svg{ width:27px; height:27px; fill:#fff; }

/* ============ HERO (home) ============ */
.hero{ position:relative; padding:88px 0 84px; overflow:hidden;
  background:
    radial-gradient(1100px 620px at 88% -8%, rgba(29,122,60,.32), transparent 55%),
    radial-gradient(950px 700px at -8% 105%, rgba(200,32,47,.28), transparent 55%);
}
.hero-diag{ position:absolute; top:0; left:0; width:420px; height:420px; background:linear-gradient(225deg, var(--red) 0%, var(--red-light) 100%); clip-path:polygon(0 0, 100% 0, 0 100%); opacity:.85; }
.hero-diag2{ position:absolute; top:0; left:0; width:420px; height:420px; background:linear-gradient(225deg, var(--green) 0%, var(--green-light) 100%); clip-path:polygon(0 0, 38% 0, 0 38%); }
.hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
@media (max-width:980px){ .hero-grid{ grid-template-columns:1fr; } .hero{ padding:56px 0 52px; } }

.eyebrow{ display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.18); padding:7px 18px; border-radius:999px; font-size:13px; font-weight:700; color:var(--cream); }
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--green-light); flex-shrink:0; }
.hero h1{ font-size:clamp(32px,4.6vw,54px); font-weight:900; line-height:1.22; margin-top:22px; max-width:16ch; }
.hero h1 em{ font-style:normal; color:var(--green-light); }
.hero p.lead{ margin-top:22px; font-size:18px; line-height:1.9; color:#e8d9d4; max-width:560px; }
.hero-actions{ display:flex; gap:16px; margin-top:34px; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:26px; margin-top:44px; flex-wrap:wrap; }
.hero-trust .item{ display:flex; align-items:center; gap:10px; font-size:14px; font-weight:700; color:#d8c9c4; }
.hero-trust .item svg{ width:20px; height:20px; fill:var(--green-light); flex-shrink:0; }

.hero-visual{ position:relative; }
.hv-card{ background:rgba(255,255,255,.055); border:1px solid rgba(255,255,255,.14); border-radius:22px; padding:26px; backdrop-filter:blur(6px); }
.hv-row{ display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08); }
.hv-row:last-child{ border-bottom:none; }
.hv-row .ic{ width:42px; height:42px; border-radius:11px; background:linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hv-row .ic svg{ width:20px; height:20px; fill:#fff; }
.hv-row .txt b{ display:block; font-size:15px; font-weight:800; }
.hv-row .txt span{ font-size:12.5px; color:#c9b9b2; }
.hv-status{ margin-right:auto; background:rgba(57,185,106,.16); color:var(--green-light); font-size:11.5px; font-weight:800; padding:5px 12px; border-radius:999px; white-space:nowrap; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero{ position:relative; overflow:hidden; padding:64px 0 56px;
  background:
    radial-gradient(900px 460px at 92% -10%, rgba(200,32,47,.25), transparent 55%),
    radial-gradient(700px 500px at -6% 110%, rgba(29,122,60,.22), transparent 55%);
  border-bottom:1px solid var(--line);
}
.page-hero-diag{ position:absolute; top:0; left:0; width:220px; height:220px; background:linear-gradient(225deg, var(--green) 0%, var(--green-light) 100%); clip-path:polygon(0 0, 100% 0, 0 100%); opacity:.5; }
.breadcrumb{ position:relative; z-index:2; font-size:.85rem; color:var(--muted-2); margin-bottom:14px; }
.breadcrumb a{ color:var(--green-light); font-weight:700; }
.page-hero h1{ position:relative; z-index:2; font-size:clamp(28px,3.8vw,42px); font-weight:900; max-width:20ch; }
.page-hero p{ position:relative; z-index:2; margin-top:14px; font-size:17px; color:var(--muted); max-width:62ch; line-height:1.85; }

/* ============ SECTION HEADS ============ */
.sec-head{ max-width:680px; margin-bottom:56px; }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.sec-tag{ font-size:13px; font-weight:800; color:var(--green-light); }
.sec-head h2{ font-size:clamp(26px,3.4vw,38px); font-weight:900; margin-top:12px; line-height:1.3; }
.sec-head p{ margin-top:14px; font-size:16.5px; color:var(--muted); line-height:1.85; }

.surface{ background:var(--surface); }
.surface-top{ border-top:1px solid var(--line); }
.surface-bottom{ border-bottom:1px solid var(--line); }

/* ============ SERVICE CARDS ============ */
.svc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .svc-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .svc-grid{ grid-template-columns:1fr; } }
.svc-card{ background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:32px 28px; transition:border-color .15s, transform .15s; display:flex; flex-direction:column; }
.svc-card:hover{ border-color:var(--card-border-hover); transform:translateY(-3px); }
.svc-card .ic{ width:54px; height:54px; border-radius:14px; background:linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); display:flex; align-items:center; justify-content:center; box-shadow:0 14px 26px -8px rgba(29,138,68,.5); flex-shrink:0; }
.svc-card .ic svg{ width:26px; height:26px; fill:#fff; }
.svc-card h3{ font-size:19px; font-weight:800; margin-top:20px; }
.svc-card p{ font-size:14px; color:var(--muted); line-height:1.8; margin-top:10px; flex:1; }
.svc-card .btn-primary{ margin-top:20px; align-self:flex-start; }

/* full service row (services page) */
.svc-row{ display:flex; align-items:center; gap:22px; background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:22px 26px; }
.svc-row + .svc-row{ margin-top:16px; }
.svc-row .ic{ width:56px; height:56px; border-radius:14px; background:linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%); display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:0 14px 26px -8px rgba(214,32,47,.4); }
.svc-row .ic svg{ width:26px; height:26px; fill:#fff; }
.svc-row .body{ flex:1; }
.svc-row h3{ font-size:18px; font-weight:800; }
.svc-row p{ font-size:14px; color:var(--muted); margin-top:6px; line-height:1.75; }
.svc-row .btn-primary{ flex-shrink:0; }
@media (max-width:700px){
  .svc-row{ flex-direction:column; align-items:flex-start; text-align:right; }
  .svc-row .btn-primary{ width:100%; justify-content:center; }
}

/* ============ PROCESS / STEPS ============ */
.process{ position:relative; background:radial-gradient(900px 500px at 15% 10%, rgba(200,32,47,.16), transparent 60%); }
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:30px 24px; }
.step .num{ width:38px; height:38px; border-radius:11px; background:linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%); display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:900; }
.step h4,.step h3{ font-size:16.5px; font-weight:800; margin-top:18px; }
.step p{ font-size:13.5px; color:var(--muted); margin-top:8px; line-height:1.75; }

/* ============ TRUST STRIP ============ */
.trust-strip{ background:linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%); }
.ts-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .ts-grid{ grid-template-columns:repeat(2,1fr); } .ts-item:nth-child(3){ border-left:none; } }
@media (max-width:600px){ .ts-grid{ grid-template-columns:1fr 1fr; } }
.ts-item{ padding:34px 20px; text-align:center; border-left:1px solid rgba(255,255,255,.18); }
.ts-item:first-child{ border-left:none; }
.ts-item .n{ font-size:32px; font-weight:900; }
.ts-item .l{ font-size:13px; font-weight:700; margin-top:6px; opacity:.92; }

/* ============ WHY-US GRID ============ */
.why-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:26px; margin-top:36px; }
.why-item{ background:var(--card-bg); border:1px solid var(--card-border); border-radius:18px; padding:26px; }
.why-item .num{ font-family:inherit; font-weight:900; font-size:1.6rem; color:var(--green-light); }
.why-item h3{ font-size:1.05rem; margin-top:10px; font-weight:800; }
.why-item p{ font-size:.92rem; margin-top:8px; color:var(--muted); line-height:1.75; }

/* ============ VALUE CARDS (about) ============ */
.value-card{ background:var(--card-bg); border:1px solid var(--card-border); border-radius:18px; padding:26px; }
.value-card h3{ font-size:1.05rem; display:flex; align-items:center; gap:10px; font-weight:800; }
.value-card h3 svg{ width:22px; height:22px; fill:var(--green-light); flex-shrink:0; }
.value-card p{ margin-top:10px; font-size:.92rem; color:var(--muted); line-height:1.8; }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:48px; }
@media (max-width:800px){ .two-col{ grid-template-columns:1fr; } }

/* ============ CONTENT BLOCK (legal pages) ============ */
.content-block{ max-width:74ch; }
.content-block h2{ font-size:1.4rem; margin-top:1.6em; font-weight:800; }
.content-block h3{ font-size:1.1rem; margin-top:1.3em; font-weight:800; }
.content-block p{ color:var(--muted); line-height:1.9; margin-top:.8em; }
.content-block ul,.content-block ol{ padding-right:1.4em; margin-top:.8em; }
.content-block li{ margin-bottom:.6em; list-style:disc; color:var(--muted); line-height:1.8; }
.content-block ol li{ list-style:decimal; }
.content-block a{ color:var(--green-light); font-weight:700; }

/* ============ FAQ ============ */
.faq-list{ max-width:820px; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:24px 4px; cursor:pointer; font-size:16.5px; font-weight:800; }
.faq-q .plus{ width:26px; height:26px; border-radius:8px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:transform .2s, background .2s; font-size:16px; }
.faq-item.open .plus{ transform:rotate(45deg); background:linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-item.open .faq-a{ max-height:320px; }
.faq-a p{ padding:0 4px 24px; font-size:15px; color:var(--muted); line-height:1.85; max-width:680px; }

/* ============ CTA BAND ============ */
.cta{ position:relative; overflow:hidden; background:linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 130%); border-radius:28px; padding:56px; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta::after{ content:""; position:absolute; left:-80px; bottom:-100px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.08); }
.cta-txt{ position:relative; z-index:1; }
.cta-txt h2{ font-size:30px; font-weight:900; max-width:480px; line-height:1.35; }
.cta-txt p{ margin-top:14px; font-size:15.5px; opacity:.92; max-width:460px; }
.btn-white{ position:relative; z-index:1; display:inline-flex; align-items:center; gap:10px; background:#fff; color:var(--green-dark); padding:17px 32px; border-radius:14px; font-size:16px; font-weight:900; box-shadow:0 20px 40px -10px rgba(0,0,0,.35); white-space:nowrap; }
.btn-white svg{ width:19px; height:19px; fill:var(--green-dark); flex-shrink:0; }
@media (max-width:600px){ .cta{ padding:36px 24px; } }

/* ============ CONTACT PAGE ============ */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:44px; }
@media (max-width:800px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-item{ display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--line); }
.contact-item .ic{ width:44px; height:44px; border-radius:12px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-item .ic svg{ width:21px; height:21px; fill:var(--green-light); }
.contact-item h3{ font-size:.98rem; font-weight:800; margin-bottom:4px; }
.contact-item p, .contact-item a{ font-size:.92rem; color:var(--muted); }
.contact-item a:hover{ color:var(--green-light); }
.social-row{ display:flex; gap:12px; margin-top:8px; flex-wrap:wrap; }
.social-pill{ display:inline-flex; align-items:center; gap:8px; border:1px solid var(--line); border-radius:999px; padding:9px 16px; font-size:.85rem; font-weight:700; background:rgba(255,255,255,.04); }
.social-pill svg{ width:16px; height:16px; fill:var(--muted); }
.social-pill:hover{ border-color:var(--green-light); }

.contact-form{ background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:30px; }
.form-row{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.form-row label{ font-size:.85rem; font-weight:700; color:var(--cream); }
.form-row input, .form-row select, .form-row textarea{
  border:1px solid var(--line); border-radius:12px; padding:12px 14px;
  font-family:inherit; font-size:.95rem; background:rgba(255,255,255,.04); color:#fff;
}
.form-row input::placeholder, .form-row textarea::placeholder{ color:var(--muted-3); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:2px solid var(--green-light); outline-offset:1px; background:rgba(255,255,255,.07);
}
.form-row select option{ background:#1a0f0d; color:#fff; }
.form-note{ font-size:.8rem; color:var(--muted-3); margin-top:10px; line-height:1.7; }

/* ============ FOOTER ============ */
footer{ background:#0a0403; border-top:1px solid var(--line); padding:64px 0 32px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; }
@media (max-width:800px){ .foot-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:500px){ .foot-grid{ grid-template-columns:1fr; } }
.foot-brand .icon{ height:46px; width:auto; }
.foot-brand .word{ font-size:20px; font-weight:900; margin-top:14px; }
.foot-brand p{ margin-top:14px; font-size:13.5px; color:var(--muted-2); line-height:1.85; max-width:280px; }
.foot-social{ display:flex; gap:10px; margin-top:20px; }
.foot-social a{ width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.06); display:flex; align-items:center; justify-content:center; }
.foot-social a svg{ width:16px; height:16px; fill:#e8d9d4; }
.foot-col h5{ font-size:14px; font-weight:800; margin-bottom:18px; color:var(--cream); }
.foot-col li{ margin-bottom:12px; font-size:13.5px; color:var(--muted-2); }
.foot-col a:hover{ color:var(--green-light); }
.foot-bottom{ margin-top:56px; padding-top:26px; border-top:1px solid var(--line); display:flex; justify-content:space-between; font-size:12.5px; color:var(--muted-3); flex-wrap:wrap; gap:12px; }

/* ============ FEE / DOCS BLOCK (per service) ============ */
.fee-block{ margin-top:18px; background:rgba(255,255,255,.03); border:1px solid var(--card-border); border-radius:14px; padding:16px 18px; }
.fee-block h4{ font-size:13px; font-weight:800; color:var(--cream); margin-bottom:10px; }
.fee-line{ display:flex; align-items:center; justify-content:space-between; padding:7px 0; border-bottom:1px dashed var(--line); font-size:13px; }
.fee-line:last-of-type{ border-bottom:none; }
.fee-line .l{ color:var(--muted); }
.fee-line .v{ color:var(--green-light); font-weight:800; white-space:nowrap; }
.fee-note{ font-size:11.5px; color:var(--muted-3); margin-top:10px; line-height:1.7; }
.doc-mini{ display:flex; align-items:flex-start; gap:8px; padding:5px 0; font-size:13px; color:var(--muted); }
.doc-mini .n{ width:18px; height:18px; border-radius:50%; background:rgba(57,185,106,.16); color:var(--green-light); font-size:10.5px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }

/* ============ VISA TYPES PAGE ============ */
.visa-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:22px; margin-top:36px; }
.visa-card{ background:var(--card-bg); border:1px solid var(--card-border); border-radius:20px; padding:28px; }
.visa-card .visa-tag{ display:inline-flex; align-items:center; background:rgba(57,185,106,.14); color:var(--green-light); font-size:11.5px; font-weight:800; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.visa-card h3{ font-size:17px; font-weight:800; }
.visa-card p{ font-size:13.5px; color:var(--muted); margin-top:10px; line-height:1.8; }
