  /* style.css — تصميم مُحسّن للموقع العربي (RTL) */
:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --accent:#ff6600;
  --text:#222;
  --muted:#666;
  --container:1100px;
  --radius:12px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  direction:rtl;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
}

/* Container */
.container{
  width:calc(100% - 40px);
  max-width:var(--container);
  margin:0 auto;
  padding:40px 0;
}

/* Header */
.site-header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:40;
}
.header-inner{
  display:flex;
  align-items:center;
  gap:20px;
  justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.logo{width:80px;height:auto;border-radius:8px}
.brand-text h1{margin:0;font-size:18px}
.brand-text .tag{margin:0;font-size:13px;color:var(--muted)}

/* Nav */
.main-nav a{
  color:var(--text);
  text-decoration:none;
  margin-left:16px;
  font-weight:600;
}
.lang{font-size:14px;color:var(--muted)}

/* HERO */
.hero{
  background-size:cover;
  background-position:center;
  padding:80px 0;
  color:#fff;
  display:flex;
  align-items:center;
}
.hero::after{
  content:"";
  display:block;
  position:absolute;
  left:0;right:0;top:0;
  height:320px;
  background:linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
  z-index:0;
}
.hero .hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}
.hero h2{font-size:36px;margin:0 0 12px}
.hero .lead{font-size:18px;margin:0 0 18px;color:rgba(255,255,255,0.95)}
.hero-cta .btn{margin-left:12px}

/* Sections */
.section{background:var(--card); border-radius:12px; padding:30px; margin-bottom:20px; box-shadow:0 6px 18px rgba(20,20,30,0.03)}
.section.light{background:transparent; box-shadow:none; padding:40px 0}
.section-title{margin-top:0;color:#111;font-size:22px}
.section-desc{color:var(--muted); margin-bottom:18px}

/* Services grid */
.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}
@media (min-width:1000px){
  .services-grid{grid-template-columns:repeat(4,1fr)}
}
.card{background:#fff;border-radius:12px; overflow:hidden; box-shadow:0 8px 24px rgba(15,15,20,0.04); padding-bottom:14px}
.card img{width:100%;height:160px;object-fit:cover;display:block}
.card h3{margin:12px 16px 6px;font-size:16px}
.card p{margin:0 16px 14px;color:var(--muted);font-size:14px}

/* Support layout */
.support-grid{display:grid;grid-template-columns:1fr;gap:18px}
@media(min-width:900px){.support-grid{grid-template-columns:2fr 1fr}}
.support-aside{background:#fff;border-radius:12px;padding:18px;box-shadow:0 6px 16px rgba(10,10,20,0.03)}
.support-aside h3{margin-top:0}
.support-aside ul{padding-left:18px;color:var(--muted)}

/* Documentary */
.doc{display:flex;flex-direction:column;gap:18px}
@media(min-width:900px){.doc{flex-direction:row;align-items:center}}
.doc-img{width:100%;max-width:420px;border-radius:10px;object-fit:cover}

/* CTA */
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.btn{
  display:inline-block;
  padding:10px 18px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
  transition:transform .12s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn-outline{
  background:transparent;
  border:2px solid rgba(0,0,0,0.06);
  color:var(--text);
}

/* Contact list */
.contact-list{list-style:none;padding:0;margin:10px 0 0}
.contact-list li{margin-bottom:8px;color:var(--muted)}

/* Footer */
.site-footer{padding:20px 0;background:#111;color:#fff;margin-top:20px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.footer-inner .small{opacity:0.85}

/* Utilities */
.small{font-size:13px;color:var(--muted)}
.lead{font-size:16px;color:var(--muted)}
.section .btn{margin-top:12px}

/* Responsiveness */
@media (max-width:700px){
  .header-inner{flex-direction:column;align-items:flex-start;gap:8px}
  .main-nav{display:flex;gap:8px;overflow:auto;padding-bottom:6px}
  .services-grid{grid-template-columns:1fr}
  .hero{padding:60px 0}
  .hero h2{font-size:28px}
}
