/* السهم الذهبي Golden Narrow - Landing Page */
/* Mobile-first, fast, no external libs */

:root{
  --bg: #070A12;
  --bg2:#0b0f19;
  --card:#0f1628;
  --text:#eef2ff;
  --muted:#b8c0d9;
  --stroke: rgba(255,255,255,.08);
  --accent:#f6c14b;
  --accent2:#7cf0d2;
  --shadow: 0 12px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Kufi Arabic", "Noto Sans Arabic", Tahoma, sans-serif;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(246,193,75,.24), transparent 55%),
              radial-gradient(900px 500px at 10% 0%, rgba(124,240,210,.18), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.7;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 16px}
.skip-link{
  position:absolute; inset-inline-start:12px; top:10px;
  background:var(--accent); color:#121212;
  padding:10px 12px; border-radius:999px;
  transform:translateY(-150%);
  transition:transform .2s ease;
  z-index:9999;
}
.skip-link:focus{transform:translateY(0)}

.site-header{
  position:sticky; top:0; z-index:80;
  backdrop-filter:saturate(160%) blur(10px);
  background: rgba(7,10,18,.65);
  border-bottom:1px solid var(--stroke);
}
.header-inner{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:12px;
  align-items:center;
  padding:12px 0;
}

.brand{display:flex; gap:10px; align-items:center; min-width: 0}
.brand-mark{
  width:42px; height:42px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(246,193,75,.18), rgba(124,240,210,.12));
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  font-size:18px;
}
.brand-text{display:flex; flex-direction:column; line-height:1.1; min-width:0}
.brand-ar{font-weight:800; letter-spacing:.2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
.brand-en{color:var(--muted); font-size:12.5px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

.site-nav{
  display:none;
  gap:10px;
  align-items:center;
  justify-content:center;
}
.site-nav a{
  color:var(--muted);
  font-weight:650;
  font-size:13.5px;
  padding:10px 10px;
  border-radius:999px;
  border:1px solid transparent;
  transition: all .15s ease;
}
.site-nav a:hover{color:var(--text); border-color:var(--stroke); background: rgba(255,255,255,.03)}

.header-cta{display:flex; gap:8px; align-items:center}

.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color:var(--text);
  cursor:pointer;
}
.nav-toggle-lines{
  width:18px; height:12px; position:relative; display:block;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute; inset-inline-start:0;
  width:18px; height:2px;
  background: var(--text);
  border-radius:10px;
  transition: transform .2s ease, top .2s ease, bottom .2s ease, opacity .2s ease;
}
.nav-toggle-lines::before{top:0}
.nav-toggle-lines::after{bottom:0}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before{top:5px; transform: rotate(45deg)}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after{bottom:5px; transform: rotate(-45deg)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:750;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.05)}
.btn:active{transform: translateY(0)}
.btn-primary{
  background: linear-gradient(135deg, rgba(246,193,75,.95), rgba(246,193,75,.75));
  color:#161616;
  border-color: rgba(246,193,75,.35);
}
.btn-primary:hover{background: linear-gradient(135deg, rgba(246,193,75,1), rgba(246,193,75,.82))}
.btn-ghost{background: rgba(255,255,255,.02)}
.btn-lg{padding:12px 16px; font-size:15px}
.w-full{width:100%}

.hero{padding:42px 0 10px}
.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:20px;
  align-items:stretch;
}
.badge{
  display:inline-flex;
  align-items:center;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  color:var(--muted);
  background: rgba(255,255,255,.02);
  width:fit-content;
}
.hero h1{
  font-size: clamp(28px, 4.8vw, 46px);
  line-height:1.12;
  margin:12px 0 10px;
  letter-spacing:-.2px;
}
.accent{color:var(--accent)}
.lead{color:var(--muted); margin:0 0 16px; font-size:15.5px}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 18px}

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top: 8px;
}
.stat{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:10px 12px;
}
.stat-num{font-weight:900; font-size:18px}
.stat-label{color:var(--muted); font-size:12.5px}

.hero-visual{position:relative; min-height: 320px}
.card{
  border:1px solid var(--stroke);
  background: rgba(15,22,40,.72);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
}
.visual-card{
  padding:16px;
  position:relative;
  overflow:hidden;
}
.visual-top{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:10px}
.chip{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(246,193,75,.12);
  border: 1px solid rgba(246,193,75,.22);
  color: var(--text);
  font-weight:800;
  font-size:12.5px;
}
.chip-alt{
  background: rgba(124,240,210,.10);
  border-color: rgba(124,240,210,.18);
}
.visual-title{font-weight:900; font-size:18px; margin:6px 0 12px}
.visual-row{display:grid; grid-template-columns: 1fr 1fr; gap:10px; margin-bottom:10px}
.mini{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius);
  padding:10px 12px;
}
.mini-title{font-weight:900}
.mini-sub{color:var(--muted); font-size:12.5px}
.visual-cta{display:flex; gap:10px; align-items:center; margin-top: 12px}
.note{color:var(--muted); font-weight:700; font-size:12.5px}

.glow{
  position:absolute;
  inset: -60px -40px auto auto;
  width: 320px; height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(246,193,75,.25), transparent 55%),
              radial-gradient(circle at 60% 60%, rgba(124,240,210,.18), transparent 55%);
  filter: blur(6px);
  pointer-events:none;
}

.trust{padding: 8px 0 22px}
.trust-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  border-radius: var(--radius2);
  padding: 14px 14px;
}
.trust-title{margin:0; color:var(--muted); font-weight:800}
.trust-logos{display:flex; gap:10px; flex-wrap:wrap}
.logo-pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  color: var(--text);
  font-weight:800;
  background: rgba(255,255,255,.02);
}

.section{padding: 38px 0}
.section.alt{background: rgba(255,255,255,.02)}
.section-head{margin-bottom: 16px}
.section-head h2{margin:0 0 6px; font-size:22px; letter-spacing:-.2px}
.section-head p{margin:0; color:var(--muted)}

.grid{display:grid; gap:12px}
.cards-3{grid-template-columns: 1fr}
.service, .package, .post, .quote{padding:16px}
.icon{font-size:22px}
.service h3, .package h3, .post h3{margin:10px 0 8px}
.muted{color:var(--muted)}
.bullets{margin: 10px 0 0; padding: 0 18px 0 0; color: var(--muted)}
.bullets li{margin: 6px 0}

.package-top{display:flex; align-items:center; justify-content:space-between; gap:10px}
.tag{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  font-weight:900;
  font-size:12px;
  white-space:nowrap;
}
.tag-gold{
  background: rgba(246,193,75,.12);
  border-color: rgba(246,193,75,.22);
  color: var(--text);
}
.price{margin: 10px 0 12px}
.price-big{display:block; font-weight:950; font-size:18px}
.price-sub{display:block; color:var(--muted); font-size:12.5px}

.checklist{margin: 10px 0 14px; padding:0 18px 0 0}
.checklist li{margin: 6px 0; color: var(--muted)}
.checklist li::marker{content:"✓  "; color: var(--accent2)}
.featured{
  border-color: rgba(246,193,75,.25);
  background: linear-gradient(180deg, rgba(246,193,75,.08), rgba(15,22,40,.72));
}

.cta-banner{
  margin-top: 14px;
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:flex-start;
  justify-content:space-between;
}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

.post-meta{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom: 10px}
.pill{
  padding:7px 10px;
  border-radius:999px;
  background: rgba(124,240,210,.10);
  border: 1px solid rgba(124,240,210,.18);
  font-weight:900;
  font-size:12px;
}
.date{color:var(--muted); font-weight:800; font-size:12px}
.link{display:inline-flex; margin-top: 10px; font-weight:900; color: var(--accent)}
.link:hover{text-decoration:underline}

.quote blockquote{margin:0; color: var(--text); font-weight:750}
.quote figcaption{margin-top: 10px; color: var(--muted); font-weight:800}

.faq{display:grid; gap:10px}
details{padding:14px 16px}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:8px 0 0}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.contact-card{padding:16px}
.contact-item{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid var(--stroke)}
.contact-item:last-of-type{border-bottom: none}
.contact-label{color:var(--muted); font-weight:850}
.contact-value{font-weight:950}
.divider{height:1px; background: var(--stroke); margin: 14px 0}

.mini-form{display:grid; gap:10px}
.mini-form h4{margin:0}
label{display:grid; gap:6px}
input{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline: none;
}
input::placeholder{color: rgba(184,192,217,.7)}
input:focus{border-color: rgba(246,193,75,.35); box-shadow: 0 0 0 4px rgba(246,193,75,.08)}
.form-note{margin:0; font-size:12.5px}

.map-card{overflow:hidden}
.map-head{padding:16px 16px 0}
.map-wrap{padding: 12px 16px 0}
.map-wrap iframe{
  width:100%;
  height: 320px;
  border:0;
  border-radius: var(--radius);
}
.map-actions{display:grid; gap:10px; padding: 12px 16px 16px}

.site-footer{margin-top: 14px}
.footer-inner{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  padding: 14px 0;
}
.footer-title{font-weight:950}
.footer-sub{font-size:12.5px}
.footer-links{display:flex; gap:10px; flex-wrap:wrap; color: var(--muted); font-weight:850}
.footer-links a:hover{color: var(--text)}
.footer-bottom{
  border-top:1px solid var(--stroke);
  padding: 12px 0 18px;
  font-size:12.5px;
}

.fab{
  position: fixed;
  inset-inline-end: 14px;
  bottom: 14px;
  z-index: 90;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124,240,210,.22);
  background: rgba(7,10,18,.70);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.fab-text{font-weight:950}
.fab:hover{transform: translateY(-1px)}
.fab:active{transform: translateY(0)}

@media (min-width: 920px){
  .header-inner{grid-template-columns: 1fr auto auto auto}
  .site-nav{display:flex}
  .nav-toggle{display:none}
  .hero{padding: 56px 0 16px}
  .hero-grid{grid-template-columns: 1.12fr .88fr; gap:18px}
  .cards-3{grid-template-columns: repeat(3, minmax(0,1fr))}
  .cta-banner{flex-direction:row; align-items:center}
  .contact-grid{grid-template-columns: 1fr 1fr}
  .map-wrap iframe{height: 420px}
}

/* Mobile nav drawer */
@media (max-width: 919.98px){
  .site-nav.is-open{
    display:grid;
    position: fixed;
    top: 70px;
    inset-inline-start: 12px;
    inset-inline-end: 12px;
    padding: 12px;
    border-radius: var(--radius2);
    border:1px solid var(--stroke);
    background: rgba(7,10,18,.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    z-index: 120;
  }
  .header-cta .btn{padding:10px 12px}
}
