:root{
  /* خلفية داكنة فخمة */
  --bg:#0b0a08;

  /* نصوص */
  --text:#f5f1e8;
  --muted:#c9c0b3;

  /* كروت */
  --line:rgba(255,255,255,.10);

  /* اللون الأساسي الجديد (نحاسي/خشبي) */
  --primary:#a7772a;     /* برونزي */
  --primary2:#6b4a1a;    /* خشبي داكن */
  --gold:#e6c56a;        /* لمسات ذهبية خفيفة */

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(14,168,91,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(255,209,102,.14), transparent 55%),
    radial-gradient(800px 520px at 40% 100%, rgba(255,92,122,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.7;
}

a{color:inherit; text-decoration:none}
.container{width:min(1180px, 92vw); margin-inline:auto}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.6rem; padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer; transition:.2s ease;
  font-weight:850;
}
.btn:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.22)}
.btn.primary{
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-color: transparent;
}
.btn.primary:hover{filter: brightness(1.05)}
.btn.ghost{background: transparent}

.pill{
  display:inline-flex; gap:.5rem; align-items:center;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.07);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:750;
  font-size:.95rem;
}

.grid{display:grid; gap:18px}
.card{
  background: rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(0,0,0,.28);
  overflow:hidden;
}
.card.pad{padding:18px}
.muted{color:var(--muted)}
.h1{
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.5;
  margin: 10px 0;
  font-weight: 800;
}
.h2{font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin:0 0 10px}
.h3{font-size:1.2rem; margin:0 0 8px}
section{padding:18px 0}

/* Offer bar (بدون عداد) */
.offerbar{
  position:sticky; top:0; z-index:110;
  background: rgba(167,119,42,.14);
  border-bottom:1px solid rgba(230,197,106,.22);
  backdrop-filter: blur(10px);
}
.offerwrap{
  padding:10px 0;
  display:flex; gap:12px; align-items:center; justify-content:center;
  flex-wrap:wrap;
  font-weight:900;
}
.offerwrap .deal{
  color:var(--gold);
  font-weight:950;
}
.offerwrap .hint{
  color:rgba(255,255,255,.92);
}

/* Header */
header{
  position:sticky; top:52px; z-index:100;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.topbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
}
.brand{
  display:flex; gap:12px; align-items:center;
  min-width:0;
}
.logo{
  width:50px;
  height:50px;
  border-radius:14px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  background: transparent;
}

.logo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.brandText{
  min-width:0;
}
.brandText b{
  display:block;
  font-size:1.05rem;
  white-space:nowrap;      /* مهم: لا ينزل سطر */
  overflow:hidden;
  text-overflow:ellipsis;
}
.brandText small{display:block; color:var(--muted); margin-top:2px}

/* “تواصل” كتابه فقط */
.textLink{
  font-weight:950;
  color:rgba(255,255,255,.92);
  padding:10px 10px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  transition:.2s ease;
  white-space:nowrap;
}
.textLink:hover{border-color: rgba(255,255,255,.22); transform: translateY(-1px)}

/* Burger */
.burger{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  display:grid; place-items:center;
  cursor:pointer;
  flex:0 0 auto;
}
.burger span{width:18px; height:2px; background:#fff; display:block; position:relative;}
.burger span::before,.burger span::after{content:""; position:absolute; left:0; width:18px; height:2px; background:#fff;}
.burger span::before{top:-6px}
.burger span::after{top:6px}

/* Drawer menu */
.drawerBackdrop{
  position:fixed; inset:0; background: rgba(0,0,0,.55);
  opacity:0; pointer-events:none; transition:.2s ease;
  z-index:120;
}
.drawer{
  position:fixed; top:12px; left:12px;
  width:min(360px, 86vw);
  background: rgba(15,26,48,.95);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: translateX(-22px);
  opacity:0; pointer-events:none;
  transition:.2s ease;
  z-index:130;
  overflow:hidden;
}
.drawerHeader{
  padding:14px 14px 10px;
  display:flex; align-items:center; justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.08);
  gap:10px;
}
.drawer a{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--text);
  font-weight:900;
}
.drawer a:hover{background: rgba(255,255,255,.06)}
.drawer small{color:var(--muted); font-weight:750}
.drawerOpen .drawerBackdrop{opacity:1; pointer-events:auto}
.drawerOpen .drawer{transform: translateX(0); opacity:1; pointer-events:auto}

/* Hero */
.hero{padding:18px 0 10px}
.heroWrap{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:18px;
  align-items:stretch;
}
.heroLeft{padding:22px}
.heroRight{padding:22px; display:flex; flex-direction:column; gap:12px}
.ctas{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.kpis{display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px}
.kpi{
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.kpi b{font-size:1.05rem}
.kpi span{display:block; color:var(--muted); font-weight:750; font-size:.92rem; margin-top:4px}
.mini{
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

/* Green box */
.greenBox{
  background: linear-gradient(135deg, rgba(167,119,42,.95), rgba(107,74,26,.95));
  border:1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding:16px;
  text-align:center;
  box-shadow: 0 20px 60px rgba(167,119,42,.18);
}
.greenBox h3{margin:0 0 8px; font-size:1.25rem}
.greenBox p{margin:0 0 12px; opacity:.95}
.greenBox .btn{background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.25)}
.greenBox .btn:hover{background: rgba(255,255,255,.20)}
.discount{
  margin-top:10px;
  font-weight:950;
  display:inline-flex;
  gap:.5rem;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.22);
}

/* Section heads */
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; margin-bottom:12px; flex-wrap:wrap
}

/* Services list / steps */
.serviceGrid{grid-template-columns: repeat(2, 1fr)}
.service{padding:16px; display:flex; gap:14px; align-items:flex-start;}
.tick{
  width:42px; height:42px; border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:grid; place-items:center;
  font-weight:950;
}
.steps{grid-template-columns: repeat(3, 1fr)}
.stepNum{
  width:42px; height:42px; border-radius:16px;
  background: rgba(255,209,102,.12);
  border:1px solid rgba(255,209,102,.35);
  display:grid; place-items:center;
  font-weight:950;
  color: var(--gold);
}

/* FAQ */
details{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding:12px 14px;
}
summary{cursor:pointer; font-weight:950; list-style:none;}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted); font-weight:750}

/* Contact form */
.contactGrid{grid-template-columns: 1fr 1fr}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.55);
  color: var(--text);
  outline:none;
  font-weight:800;
}
textarea{min-height:120px; resize:vertical}
label{display:block; margin:10px 0 6px; font-weight:900; color:#fff}
.formRow{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.help{color:var(--muted); font-weight:750; font-size:.95rem; margin-top:8px}

/* Footer */
.footer{
  padding:18px 0 26px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted);
  font-weight:750;
  font-size:.95rem;
}

/* WhatsApp floating */
.floatStack{
  position:fixed;
  bottom:18px;
  left:18px;
  z-index:150;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:flex-start;
}
.waRow{display:flex; gap:10px; align-items:center;}
.waBtn{
  width:56px; height:56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 18px 50px rgba(14,168,91,.28);
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.18);
}
.waHint{
  padding:10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.65);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-weight:950;
  font-size:.95rem;
  max-width: 220px;
}

/* Responsive */
@media (max-width: 980px){
  header{top:52px}
  .heroWrap{grid-template-columns: 1fr}
  .serviceGrid{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .kpis{grid-template-columns: 1fr}
  .contactGrid{grid-template-columns: 1fr}
  .formRow{grid-template-columns: 1fr}
}


/* عنوان فاخر ذهبي داكن */
.goldTitle{
  background: linear-gradient(
    90deg,
    #7a5c1e,
    #b68a2f,
    #e6c56a,
    #b68a2f,
    #7a5c1e
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}


/* صورة فوق كروت الخدمات */
.serviceImg{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
  border-bottom:1px solid rgba(255,255,255,.10);
}