:root{
  --brand:#0b3d91;
  --accent:#d90000;
  --bg:#f4f6f9;
  --card:#ffffff;
  --text:#1b1f24;
  --muted:#586174;
  --border:#e2e8f0;
  --radius:14px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:"Cairo", Tahoma, Arial, sans-serif;
  background:linear-gradient(180deg, #f4f6f9 0%, #ffffff 45%, #f4f6f9 100%);
  color:var(--text);
  direction:rtl;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:0 16px;
}

.header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(11,61,145,.96);
  backdrop-filter:blur(8px);
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.call-btn{
background:#d90000;
color:#fff;
padding:10px 20px;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.footer{
background:#0b3d91;
color:#fff;
text-align:center;
padding:20px;
margin-top:40px;
}
.hero{background:#e9eef8;padding:28px 0}
.hero-wrap{gap:18px}
.hero-wrap{display:flex;justify-content:space-between;align-items:stretch;flex-wrap:wrap}
.hero-text{flex:1;min-width:280px}
.hero-text h1{margin:0 0 10px 0;color:#0b3d91;font-size:28px}
.hero-text p{margin:0 0 14px 0;color:#333}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin:12px 0}
.btn{padding:11px 18px;border-radius:8px;text-decoration:none;font-weight:bold;display:inline-block}
.btn.primary{background:#d90000;color:#fff}
.btn.ghost{background:#fff;color:#0b3d91;border:1px solid #0b3d91}
.mini-info{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px;color:#222}
.mini-info span{background:#fff;border:1px solid #dfe6ef;padding:6px 10px;border-radius:999px}

.hero-card{width:340px;max-width:100%;background:#fff;border:1px solid #dfe6ef;border-radius:12px;padding:16px}
.hero-card h2{margin:0 0 8px 0;color:#0b3d91;font-size:20px}
.hero-card p{margin:0 0 12px 0;color:#333}
.card-contacts{display:flex;flex-wrap:wrap;gap:8px}
.chip{background:#f4f6f9;border:1px solid #dfe6ef;border-radius:999px;padding:8px 10px;text-decoration:none;color:#222;font-size:14px}

.seo{padding:22px 0}
.seo h2{margin:0 0 8px 0}
.seo p{margin:0;color:#333}
.services{
padding:30px 0;
background:#ffffff;
}

.section-desc{
color:#555;
margin-bottom:20px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:18px;
}

.service-box{
background:#f7f9fc;
border:1px solid #e1e6ef;
padding:18px;
border-radius:10px;
transition:0.3s;
}

.service-box:hover{
transform:translateY(-5px);
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.service-box h3{
margin-top:0;
color:#0b3d91;
}
/* Header polish */
.header .container{display:flex;justify-content:space-between;align-items:center}
.header h2{margin:0;font-size:18px;letter-spacing:.2px}

/* Buttons polish */
.btn{border-radius:10px}
.btn.primary{box-shadow:0 10px 20px rgba(217,0,0,.18)}
.btn.ghost:hover{background:#f1f6ff}

/* Section head */
.section-head{margin-bottom:14px}
.section-head h2{margin:0 0 6px 0}
.section-head p{margin:0;color:var(--muted)}

/* Areas */
.areas{padding:30px 0}
.areas-grid{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.tag{
  background:var(--card);
  border:1px solid var(--border);
  padding:8px 12px;
  border-radius:999px;
  color:var(--text);
  font-size:14px;
}

/* CTA card */
.cta{
  margin-top:18px;
  background:linear-gradient(135deg, rgba(11,61,145,.08), rgba(217,0,0,.06));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.cta h3{margin:0 0 6px 0;color:var(--brand)}
.cta p{margin:0;color:var(--muted)}
.cta-actions{display:flex;gap:10px;flex-wrap:wrap}
.why{
  padding:30px 0;
  background:var(--card);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:14px;
  margin-top:14px;
}

.why-card{
  background:#f7f9fc;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}

.why-card h3{
  margin:0 0 8px 0;
  color:var(--brand);
  font-size:16px;
}

.why-card p{
  margin:0;
  color:var(--muted);
}

.stats{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:12px;
}

.stat{
  background:linear-gradient(135deg, rgba(11,61,145,.08), rgba(217,0,0,.06));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  text-align:center;
}

.stat .num{
  font-size:22px;
  font-weight:bold;
  color:var(--brand);
  margin-bottom:4px;
}

.stat .label{
  color:var(--muted);
  font-size:13px;
}
.faq{
  padding:30px 0;
  background:var(--bg);
}

.faq-item{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px 16px;
  margin:10px 0;
}

.faq-item summary{
  cursor:pointer;
  font-weight:bold;
  color:var(--brand);
  outline:none;
}

.faq-item p{
  margin:10px 0 0 0;
  color:var(--muted);
}

.faq-cta{
  margin-top:16px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.faq-cta h3{margin:0 0 6px 0;color:var(--brand)}
.faq-cta p{margin:0;color:var(--muted)}
.articles{
  padding:35px 0;
  background:#ffffff;
}

.articles-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
  margin-top:15px;
}

.article-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  transition:.3s;
}

.article-card:hover{
  transform:translateY(-6px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.article-card h3{
  margin-top:0;
  color:var(--brand);
  font-size:17px;
}

.article-card p{
  margin:8px 0 0 0;
  color:var(--muted);
  line-height:1.8;
}
.seo-boost{
  padding:35px 0;
  background:#f4f7fb;
  border-top:1px solid var(--border);
}

.seo-columns{
  margin-top:15px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
}

.seo-columns div{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}

.seo-columns h3{
  margin-top:0;
  color:var(--brand);
}

.seo-columns p{
  margin:8px 0 0 0;
  color:var(--muted);
  line-height:1.9;
}
.content-blocks{
  padding:35px 0;
  background:#ffffff;
}

.blocks-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:16px;
}

.block-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}

.block-card h3{
  margin:0 0 8px 0;
  color:var(--brand);
  font-size:17px;
}

.block-card p{
  margin:8px 0 0 0;
  color:var(--muted);
  line-height:1.9;
}

.block-card .kw{
  margin-top:10px;
  padding-top:10px;
  border-top:1px dashed var(--border);
  font-size:13px;
  color:#6b7280;
}

.inline-actions{
  margin-top:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.geo-articles{
  padding:35px 0;
  background:var(--bg);
}

.geo-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}

.geo-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}

.geo-card h3{
  margin:0 0 8px 0;
  color:var(--brand);
  font-size:16px;
}

.geo-card p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}

.cta.slim{
  margin-top:16px;
  padding:14px;
}
.troubleshoot{
  padding:35px 0;
  background:#ffffff;
  border-top:1px solid var(--border);
}

.ts-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:16px;
}

.ts-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}

.ts-card h3{
  margin:0 0 10px 0;
  color:var(--brand);
  font-size:16px;
}

.ts-card ul{
  margin:0;
  padding-right:18px;
  color:var(--muted);
  line-height:1.9;
}

.ts-card .note{
  margin:10px 0 0 0;
  padding-top:10px;
  border-top:1px dashed var(--border);
  color:#6b7280;
  font-size:13px;
}
.pricing-info{
  padding:35px 0;
  background:var(--bg);
  border-top:1px solid var(--border);
}

.price-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px;
}

.price-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}

.price-card h3{
  margin:0 0 8px 0;
  color:var(--brand);
  font-size:16px;
}

.price-card p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}

.note-box{
  margin-top:16px;
  background:#ffffff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
}

.note-box p{
  margin:0;
  color:var(--muted);
  line-height:1.9;
}
.booking-steps{
  padding:35px 0;
  background:#ffffff;
  border-top:1px solid var(--border);
}

.steps-grid{
  margin-top:15px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:16px;
}

.step-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  position:relative;
}

.step-num{
  position:absolute;
  top:-12px;
  right:12px;
  background:var(--accent);
  color:#fff;
  width:28px;
  height:28px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
}

.step-card h3{
  margin-top:10px;
  color:var(--brand);
}

.step-card p{
  color:var(--muted);
  line-height:1.9;
}

.prepare-box{
  margin-top:18px;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}

.prepare-box h3{
  margin-top:0;
  color:var(--brand);
}

.prepare-box ul{
  margin:10px 0;
  padding-right:18px;
  color:var(--muted);
  line-height:1.9;
}
.floating-buttons{
  position:fixed;
  left:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:9999;
}

.float-call,
.float-whatsapp{
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition:.3s;
}

.float-call{
  background:#d90000;
}

.float-whatsapp{
  background:#25D366;
}

.float-call:hover,
.float-whatsapp:hover{
  transform:scale(1.1);
}
.footer{
  background:#0b3d91;
  color:#fff;
  margin-top:40px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  padding:30px 0;
}

.footer-col h3{
  margin-top:0;
  margin-bottom:10px;
}

.footer-col p,
.footer-col li{
  color:#e4e8f3;
  line-height:1.9;
  font-size:14px;
}

.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-bottom{
  text-align:center;
  border-top:1px solid rgba(255,255,255,0.2);
  padding:15px;
  font-size:14px;
}
/* Global polish */
.section-head h2{font-size:22px}
.section-head p{max-width:820px}

.hero{
  border-bottom:1px solid var(--border);
}
.hero-text p{
  max-width:820px;
  font-size:16px;
}

.hero-card{
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.services, .content-blocks, .troubleshoot{
  border-bottom:1px solid var(--border);
}

.service-box, .article-card, .block-card, .ts-card, .geo-card, .price-card, .why-card{
  box-shadow:0 10px 22px rgba(0,0,0,.06);
}

.btn.primary:hover{transform:translateY(-2px)}
.btn.ghost:hover{transform:translateY(-2px)}

/* Better container spacing between sections */
section{scroll-margin-top:90px}

/* Mobile tweaks */
@media (max-width: 768px){
  .hero-text h1{font-size:22px}
  .hero-card{width:100%}
  .floating-buttons{left:14px;bottom:14px}
  .float-call,.float-whatsapp{width:52px;height:52px}
  .section-head h2{font-size:20px}
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
}

.brand-dot{
  width:10px;height:10px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 8px 18px rgba(217,0,0,.35);
}

.brand-name{color:#fff}

.menu{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.menu a{
  color:rgba(255,255,255,.92);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:10px;
  transition:.2s;
}

.menu a:hover{
  background:rgba(255,255,255,.12);
}

.nav-actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.nav-wa{
  background:rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
}

.nav-wa:hover{background:rgba(255,255,255,.18)}

@media (max-width: 900px){
  .menu{display:none;}
}
html{scroll-behavior:smooth;}
.menu-toggle{
  display:none;
  background:none;
  border:none;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}

/* موبايل */
@media (max-width:900px){

  .menu-toggle{
    display:block;
  }

  .menu{
    position:absolute;
    top:60px;
    right:0;
    width:100%;
    background:#0b3d91;
    flex-direction:column;
    display:none;
    padding:15px 0;
    text-align:center;
  }

  .menu a{
    padding:14px;
    display:block;
    border-bottom:1px solid rgba(255,255,255,.15);
  }

  .menu.show{
    display:flex;
  }
}
/* Smooth reveal on scroll */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

/* Card hover polish */
.service-box, .article-card, .block-card, .ts-card, .geo-card, .price-card, .why-card, .hero-card{
  transition:transform .25s ease, box-shadow .25s ease;
}
.service-box:hover, .article-card:hover, .block-card:hover, .ts-card:hover, .geo-card:hover, .price-card:hover, .why-card:hover, .hero-card:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 28px rgba(0,0,0,.10);
}

/* Header shadow on scroll */
.header.scrolled{
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}
@media (max-width:900px){
  .header{position:sticky}
}
/* Smart Pulse */
.call-btn.pulse{
  animation:pulseCall 2s infinite;
}

@keyframes pulseCall{
  0%{
    box-shadow:0 0 0 0 rgba(217,0,0,0.6);
  }
  70%{
    box-shadow:0 0 0 14px rgba(217,0,0,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(217,0,0,0);
  }
}
.reviews-bar{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:14px 0;
}

.reviews-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.stars{
  font-size:20px;
  color:#f5b301;
  letter-spacing:2px;
}

.review-text{
  margin:0;
  color:var(--muted);
  font-weight:600;
}

.review-call a{
  background:var(--brand);
  color:#fff;
  text-decoration:none;
  padding:8px 14px;
  border-radius:10px;
  font-weight:bold;
}