:root{
  --bg:#0b0f16;
  --bg2:#0e1420;
  --card: rgba(255,255,255,.06);
  --card2:#111827;
  --text:#e5e7eb;
  --muted:#a7b0bf;
  --line: rgba(255,255,255,.12);
  --accent:#9ca3af;      /* رمادي فضي */
  --primary:#ffffff;     /* أبيض */
  --btn:#e5e7eb;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Tahoma, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255,255,255,.08), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.9;
}

a{color:inherit; text-decoration:none}
.container{max-width:1180px; margin:auto; padding:0 18px}
.center{text-align:center}
.mt-24{margin-top:24px}
.muted{color:var(--muted)}

/* Topbar */
.topbar{
  background: rgba(255,255,255,.04);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  font-size:13px;
}
.chip--muted{color:var(--muted)}
.sep{opacity:.5; margin:0 8px}
.link{color:#fff; opacity:.9}
.link:hover{opacity:1; text-decoration:underline}
.link--light{color:#fff}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,22,.62);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{
  width:42px; height:42px;
  border-radius:12px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight:800;
}
.brand__text strong{display:block; font-size:16px}
.brand__text span{display:block; font-size:12px; color:var(--muted)}

.nav{display:flex; gap:10px; flex-wrap:wrap}
.nav__link{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav__link:hover{
  color:#fff;
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}
.nav__link.is-active{
  color:#fff;
  background: rgba(255,255,255,.06);
  border-color: var(--line);
}

.header__cta{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--line);
  font-weight:700;
  background: rgba(255,255,255,.06);
  color:#fff;
  transition:.2s;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.1)}
.btn--primary{
  background: #fff;
  color:#0b0f16;
  border-color: rgba(255,255,255,.35);
}
.btn--primary:hover{background:#f3f4f6}
.btn--ghost{
  background: transparent;
}
.btn--whatsapp{
  background:#25d366;
  border-color: rgba(37,211,102,.55);
  color:#08140d;
}
.btn--whatsapp:hover{background:#1ebe5d}
.btn--lg{padding:12px 18px; border-radius:14px; font-size:15px}
.w-100{width:100%}

/* Hero */
.hero{padding:54px 0 24px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:22px;
  align-items:start;
}
.hero__content h1{
  margin:0 0 14px;
  font-size:38px;
  letter-spacing:.2px;
  line-height:1.35;
}
.hl{
  display:inline-block;
  padding:0 10px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
}
.lead{color:var(--muted); font-size:16px; margin:0 0 18px}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin:16px 0 18px}

.hero__badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.badge{
  display:flex; gap:10px;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.badge__icon{font-size:18px}
.badge strong{display:block}
.badge span{display:block; color:var(--muted); font-size:12px}

/* Card */
.card{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.card--glass{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
}
.card__header{padding:18px 18px 0}
.card__header h2{margin:0; font-size:18px}
.card__header p{margin:6px 0 0; color:var(--muted); font-size:13px}
.card__body{padding:18px}
.stat{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px dashed rgba(255,255,255,.14)}
.stat:last-of-type{border-bottom:0}
.stat__k{color:var(--muted); font-size:13px}
.stat__v{font-weight:700}
.divider{height:1px; background: var(--line); margin:14px 0}
.mini-form__title{margin:0 0 6px; font-weight:800}
.mini-form__note{margin:0 0 12px; color:var(--muted); font-size:13px}

/* Trust */
.trust{padding:10px 0 24px}
.trust__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap:12px;
}
.trust__item{
  padding:14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.trust__item strong{display:block}
.trust__item span{display:block; color:var(--muted); font-size:12px}

/* Sections */
.section{padding:56px 0}
.section--soft{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{text-align:center; margin-bottom:22px}
.section__head h2{margin:0 0 10px; font-size:28px}
.section__head p{margin:0; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.card--service{
  padding:18px;
  background: rgba(255,255,255,.04);
  transition:.2s;
}
.card--service:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
}
.card--service h3{margin:0 0 8px}
.card--service p{margin:0 0 12px; color:var(--muted)}
.card__more{color:#fff; opacity:.9; font-weight:800}

/* Content area */
.content h2{margin-top:0}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.panel{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  padding:16px;
}
.panel h3{margin:0 0 10px}
.panel ul, .panel ol{margin:0; padding-right:18px}
.panel li{margin:6px 0}

/* FAQ */
.faq{display:grid; gap:10px; max-width:900px; margin:0 auto}
.faq__item{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px 14px;
  background: rgba(255,255,255,.04);
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
}
.faq__item p{margin:10px 0 0; color:var(--muted)}

/* Footer */
.footer{
  padding:46px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:14px;
}
.footer h3{margin:0 0 10px}
.footer p{margin:0 0 10px; color:var(--muted)}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{
  padding:8px 10px;
  border-radius:10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:#fff;
}
.footer__links a:hover{background: rgba(255,255,255,.08)}
.dev{color:#fff; letter-spacing:.3px}

.footer__bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
}

/* Floating WhatsApp */
.float-wa{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:999;
  padding:12px 14px;
  border-radius:999px;
  background:#25d366;
  color:#08140d;
  font-weight:900;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  border:1px solid rgba(37,211,102,.55);
}
.float-wa:hover{background:#1ebe5d}
.float-wa span{margin-left:6px}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__badges{grid-template-columns: 1fr}
  .trust__grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .two-col{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .hero__content h1{font-size:30px}
}

@media (max-width: 520px){
  .cards{grid-template-columns: 1fr}
  .topbar__inner{flex-direction:column; align-items:flex-start}
  .header__cta{display:none}
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Hero Image */
.hero--image {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.45);
}
.hero--image .container {
  position: relative;
  z-index: 2;
}

/* Service card images */
.card--service img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:12px;
  border:1px solid rgba(255,255,255,.12);
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
}
.gallery img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
}

/* Before / After */
.ba { max-width: 980px; margin: 0 auto; }
.ba__wrap{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  height: 380px;
  background: rgba(255,255,255,.04);
}
.ba__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ba__before{
  position:absolute;
  inset:0;
  overflow:hidden;
}
.ba__line{
  position:absolute;
  top:0;
  bottom:0;
  width:3px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 9999px rgba(0,0,0,.0);
}
.ba__range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor: ew-resize;
}
.ba__labels{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
}

/* Responsive */
@media (max-width: 520px){
  .ba__wrap{ height: 260px; }
  .card--service img{ height: 170px; }
  .gallery img{ height: 170px; }
}

