/* سطحة شمال الرياض - Stylesheet */
:root{
  --charcoal:#1f2328;
  --charcoal-2:#2b3036;
  --white:#ffffff;
  --bg-light:#f6f7f8;
  --accent:#e94e1b;
  --accent-dark:#c33b12;
  --text:#2b3036;
  --text-muted:#5a6169;
  --border:#e4e6e9;
  --radius:14px;
  --shadow:0 6px 20px rgba(31,35,40,.08);
  --header-h:64px;
  --callbar-h:60px;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important}
}

body{
  margin:0;
  font-family:"Cairo",Tahoma,Arial,sans-serif;
  background:var(--white);
  color:var(--text);
  line-height:1.75;
  direction:rtl;
  -webkit-font-smoothing:antialiased;
  padding-bottom:var(--callbar-h);
}

img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
ul{margin:0;padding:0;list-style:none}
h1,h2,h3{line-height:1.35;margin:0 0 .6em}
p{margin:0 0 1em}
.container{width:100%;max-width:1120px;margin:0 auto;padding:0 20px}
section{padding:56px 0}
.section-bg{background:var(--bg-light)}

.visually-hidden{
  position:absolute !important;
  width:1px;height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  margin:-1px;padding:0;border:0;
}

.skip-link{
  position:absolute;
  right:-999px;top:0;
  background:var(--accent);
  color:#fff;
  padding:10px 18px;
  border-radius:0 0 8px 8px;
  z-index:200;
}
.skip-link:focus{right:0}

:focus-visible{outline:3px solid var(--accent);outline-offset:2px}

.eyebrow{
  display:inline-block;
  color:var(--accent-dark);
  font-weight:700;
  font-size:.9rem;
  margin-bottom:8px;
}
.section-title{font-size:clamp(1.5rem,4vw,2rem);font-weight:800;color:var(--charcoal)}
.section-sub{color:var(--text-muted);max-width:640px;margin-bottom:28px}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 22px;
  border-radius:10px;
  font-weight:700;
  font-size:1rem;
  border:2px solid transparent;
  cursor:pointer;
  min-height:48px;
  transition:transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:active{transform:scale(.98)}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:var(--accent-dark)}
.btn-secondary{background:var(--charcoal);color:#fff}
.btn-secondary:hover{background:var(--charcoal-2)}
.btn-outline{background:transparent;color:var(--charcoal);border-color:var(--border)}
.btn-outline:hover{border-color:var(--charcoal)}
.btn-whatsapp{background:#25963f;color:#fff}
.btn-whatsapp:hover{background:#1f7f35}
.btn-block{width:100%}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(180%) blur(6px);
  border-bottom:1px solid var(--border);
  height:var(--header-h);
}
.header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{display:flex;align-items:center;gap:8px}
.brand img{height:38px;width:auto}
.brand-text{display:none}

.main-nav{
  position:fixed;
  inset:var(--header-h) 0 0 0;
  background:#fff;
  transform:translateX(100%);
  transition:transform .2s ease;
  overflow-y:auto;
  z-index:99;
  padding:20px;
  border-top:1px solid var(--border);
}
.main-nav.is-open{transform:translateX(0)}
.main-nav ul{display:flex;flex-direction:column;gap:4px}
.main-nav a{
  display:block;
  padding:14px 10px;
  font-weight:700;
  color:var(--charcoal);
  border-radius:8px;
  min-height:48px;
  display:flex;align-items:center;
}
.main-nav a:hover,.main-nav a:focus-visible{background:var(--bg-light)}
.nav-call{margin-top:10px}

.header-actions{display:flex;align-items:center;gap:10px}
.header-phone{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:800;
  color:var(--charcoal);
  font-size:.95rem;
  white-space:nowrap;
}
.header-phone svg{flex:none;color:var(--accent)}

.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;height:44px;
  background:transparent;
  border:1px solid var(--border);
  border-radius:8px;
  cursor:pointer;
}
.nav-toggle svg{width:22px;height:22px}

.header-cta{display:none}

@media (min-width: 900px){
  .brand-text{display:block;font-weight:800;color:var(--charcoal);font-size:1.05rem}
  .nav-toggle{display:none}
  .header-cta{display:inline-flex}
  .main-nav{
    position:static;
    transform:none;
    background:transparent;
    border-top:0;
    padding:0;
    overflow:visible;
    inset:auto;
  }
  .main-nav ul{flex-direction:row;align-items:center;gap:6px}
  .main-nav a{padding:10px 14px;min-height:auto}
  .nav-call{display:none}
}

/* Hero */
.hero{
  background:var(--charcoal);
  color:#fff;
  padding:36px 0 44px;
}
.hero-inner{
  display:grid;
  gap:28px;
}
.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid #383e45;
  background:#2a2f35;
}
.hero-media img{width:100%;height:auto}
.hero h1{
  font-size:clamp(1.7rem,5vw,2.5rem);
  font-weight:800;
  color:#fff;
}
.hero-lead{color:#c8ccd1;font-size:1.05rem;max-width:60ch}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:18px 0 22px}
.trust-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.trust-list li{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.92rem;
  color:#e7e9ec;
  background:#2a2f35;
  border:1px solid #3a3f45;
  padding:10px 12px;
  border-radius:10px;
}
.trust-list svg{flex:none;color:var(--accent)}

@media (min-width:900px){
  .hero-inner{grid-template-columns:1.1fr .9fr;align-items:center}
  .hero-media{order:2}
  .hero-content{order:1}
}

/* Service form */
.request-form{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.form-row{margin-bottom:16px}
.form-row label{
  display:block;
  font-weight:700;
  margin-bottom:6px;
  font-size:.95rem;
  color:var(--charcoal);
}
.form-row input,.form-row select,.form-row textarea{
  width:100%;
  padding:12px 14px;
  border:1.5px solid var(--border);
  border-radius:10px;
  font-family:inherit;
  font-size:1rem;
  background:#fff;
  color:var(--text);
  min-height:48px;
}
.form-row textarea{min-height:90px;resize:vertical}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{
  border-color:var(--accent);
}
.form-error{color:#b3261e;font-size:.85rem;margin-top:4px;display:none}
.form-row.has-error input,.form-row.has-error select{border-color:#b3261e}
.form-row.has-error .form-error{display:block}
.form-note{font-size:.85rem;color:var(--text-muted);margin-top:10px}

/* Services grid */
.services-grid{
  display:grid;
  gap:16px;
  grid-template-columns:1fr;
}
@media (min-width:640px){.services-grid{grid-template-columns:1fr 1fr}}
@media (min-width:980px){.services-grid{grid-template-columns:repeat(4,1fr)}}

.service-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  transition:box-shadow .15s ease, transform .15s ease;
}
.service-card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.service-icon{
  width:46px;height:46px;
  display:flex;align-items:center;justify-content:center;
  background:#fdeee6;
  color:var(--accent);
  border-radius:10px;
  margin-bottom:14px;
}
.service-card h3{font-size:1.05rem;font-weight:800;color:var(--charcoal)}
.service-card p{color:var(--text-muted);font-size:.94rem;margin:0}

/* Coverage */
.coverage-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-bottom:18px;
}
@media (min-width:640px){.coverage-grid{grid-template-columns:repeat(3,1fr)}}
@media (min-width:980px){.coverage-grid{grid-template-columns:repeat(4,1fr)}}
.coverage-chip{
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding:12px 14px;
  text-align:center;
  font-weight:700;
  font-size:.92rem;
  color:var(--charcoal);
}
.coverage-note{
  background:#fff3ec;
  border:1px solid #f4c9ab;
  color:#7a3312;
  padding:14px 16px;
  border-radius:10px;
  font-size:.92rem;
}

/* Steps */
.steps-list{
  display:grid;
  gap:16px;
  counter-reset:step;
}
@media (min-width:900px){.steps-list{grid-template-columns:repeat(4,1fr)}}
.step-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:20px;
  position:relative;
}
.step-num{
  width:36px;height:36px;
  border-radius:50%;
  background:var(--charcoal);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;
  margin-bottom:12px;
}
.step-card h3{font-size:1rem;font-weight:800;color:var(--charcoal)}
.step-card p{color:var(--text-muted);font-size:.92rem;margin:0}

/* Trust section */
.trust-grid{
  display:grid;
  gap:16px;
}
@media (min-width:768px){.trust-grid{grid-template-columns:1fr 1fr}}
.trust-item{
  display:flex;
  gap:14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}
.trust-item svg{flex:none;color:var(--accent);width:26px;height:26px;margin-top:2px}
.trust-item h3{font-size:1rem;font-weight:800;margin-bottom:4px;color:var(--charcoal)}
.trust-item p{margin:0;color:var(--text-muted);font-size:.92rem}

/* Info list */
.info-list{display:grid;gap:12px}
.info-list li{
  display:flex;
  gap:10px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px 16px;
  font-size:.95rem;
  color:var(--text);
}
.info-list svg{flex:none;color:var(--accent);margin-top:3px}

/* FAQ */
.faq-list{border-top:1px solid var(--border)}
.faq-item{border-bottom:1px solid var(--border)}
.faq-q{
  width:100%;
  text-align:right;
  background:none;
  border:0;
  padding:18px 4px;
  font-family:inherit;
  font-size:1rem;
  font-weight:700;
  color:var(--charcoal);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:48px;
}
.faq-q .chevron{transition:transform .18s ease;flex:none}
.faq-q[aria-expanded="true"] .chevron{transform:rotate(180deg)}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .22s ease;
}
.faq-a[hidden]{display:none}
.faq-a-inner{padding:0 4px 18px;color:var(--text-muted);font-size:.95rem}

/* Final CTA */
.final-cta{
  background:var(--charcoal);
  color:#fff;
  text-align:center;
  padding:52px 0;
}
.final-cta h2{color:#fff;font-size:clamp(1.5rem,4vw,2.1rem)}
.final-cta p{color:#c8ccd1;max-width:56ch;margin:0 auto 22px}
.final-cta .cta-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}

/* Footer */
.site-footer{
  background:#181b1e;
  color:#c8ccd1;
  padding:40px 0 24px;
}
.footer-grid{
  display:grid;
  gap:28px;
  margin-bottom:24px;
}
@media (min-width:768px){.footer-grid{grid-template-columns:1.3fr 1fr 1fr}}
.footer-brand h2{color:#fff;font-size:1.15rem;margin-bottom:8px}
.footer-brand p{color:#9aa0a6;font-size:.92rem;margin:0}
.footer-col h3{color:#fff;font-size:.95rem;margin-bottom:12px}
.footer-col ul{display:flex;flex-direction:column;gap:8px}
.footer-col a{color:#c8ccd1;font-size:.92rem}
.footer-col a:hover{color:#fff}
.footer-phone{display:flex;align-items:center;gap:8px;font-weight:700;color:#fff;margin-bottom:10px}
.footer-bottom{
  border-top:1px solid #2b2f33;
  padding-top:18px;
  font-size:.85rem;
  color:#8a9096;
  text-align:center;
}

/* Sticky call bar (mobile) */
.call-bar{
  position:fixed;
  inset-inline:0;
  bottom:0;
  z-index:150;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--border);
  border-top:1px solid var(--border);
  box-shadow:0 -4px 14px rgba(0,0,0,.08);
}
.call-bar a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:var(--callbar-h);
  font-weight:800;
  font-size:1rem;
}
.call-bar .call-link{background:var(--accent);color:#fff}
.call-bar .wa-link{background:#25963f;color:#fff}

@media (min-width:900px){
  .call-bar{display:none}
  body{padding-bottom:0}
}

/* Breadcrumb */
.breadcrumb{font-size:.85rem;color:var(--text-muted);padding:14px 0 0}
.breadcrumb a{color:var(--text-muted)}
.breadcrumb a:hover{color:var(--accent)}

.section-icon-title{display:flex;align-items:center;gap:10px}
