:root{
  --bg:#0b0f0c;
  --card:#111816;
  --muted:#9fb0a5;
  --text:#eaf3ee;
  --line:#223028;
  --brand:#57d44a;     /* green */
  --brand2:#0ea5a5;    /* teal */
  --gold:#b08b3d;      /* for button like sample */
  --shadow: 0 12px 32px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(87,212,74,.18), transparent 60%),
    radial-gradient(700px 420px at 90% 10%, rgba(14,165,165,.12), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px,92%); margin:0 auto}

/* HEADER */
header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,12,.78);
  border-bottom:1px solid rgba(34,48,40,.9);
  backdrop-filter: blur(10px);
}
.topbar{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:12px}
.logoWrap{
  width:72px;height:72px;border-radius:18px;
  border:1px solid rgba(34,48,40,.9);
  background: rgba(17,24,22,.75);
  display:grid; place-items:center;
  overflow:hidden;
}
.logoWrap img{width:100%;height:100%;object-fit:contain;padding:4px}
.brandText h1{margin:0;font-size:16px; letter-spacing:.4px}
.brandText p{margin:3px 0 0; color:var(--muted); font-size:12px}

nav{display:flex; align-items:center; gap:14px}
.navlinks{display:flex; align-items:center; gap:12px}
.navlinks a{
  color:#d5e4db;
  padding:10px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.navlinks a:hover{border-color:rgba(34,48,40,.9); background:rgba(17,24,22,.55)}
.getTouch{
  padding:11px 16px;
  border-radius:12px;
  border:1px solid rgba(176,139,61,.7);
  background: rgba(176,139,61,.18);
  color:#fff;
  font-weight:800;
}
.getTouch:hover{background: rgba(176,139,61,.28)}
.lang{display:flex; gap:8px}
.lang button{
  padding:9px 12px; border-radius:12px; cursor:pointer;
  border:1px solid rgba(34,48,40,.95);
  background:rgba(17,24,22,.7); color:#d5e4db; font-weight:800;
}
.lang button:hover{border-color:rgba(87,212,74,.55)}
.menuBtn{display:none; padding:10px 12px; border-radius:12px; border:1px solid rgba(34,48,40,.9); background:rgba(17,24,22,.7); color:#fff; cursor:pointer}

/* HERO */
.hero{position:relative}
.heroSlider{
  position:relative; height:520px;
  border-bottom:1px solid rgba(34,48,40,.9);
  overflow:hidden;
}
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 1.4s ease;
}
.hero-slide.active{opacity:1; transform: scale(1.00)}
.heroOverlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.25), rgba(0,0,0,.15));
}
.heroContent{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
}
.heroBox{
  width:min(720px, 92%);
  margin: 0 0 60px 0;
  padding: 22px;
  border-radius: 18px;
  border:1px solid rgba(34,48,40,.9);
  background: rgba(17,24,22,.62);
  box-shadow: var(--shadow);
}
.heroSmall{color:rgba(255,255,255,.7); letter-spacing:.12em; text-transform:uppercase; font-size:12px}
.heroTitle{margin:10px 0 10px; font-size:46px; line-height:1.05}
.heroTitle span{color:var(--brand)}
.heroBtns{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:12px;
  border:1px solid rgba(34,48,40,.95);
  background: rgba(17,24,22,.75);
  color:#fff;
  font-weight:800;
}
.btn:hover{border-color:rgba(87,212,74,.55)}
.btn.gold{
  background: rgba(176,139,61,.85);
  border-color: rgba(176,139,61,.75);
  color:#0b0f0c;
}
.btn.gold:hover{background: rgba(176,139,61,.95)}

/* SECTIONS */
.section{padding:48px 0}
.titleCenter{text-align:center}
.kicker{color:var(--muted); letter-spacing:.14em; text-transform:uppercase; font-size:12px}
.h2{
  margin:10px 0 8px; font-size:36px; color:#fff;
}
.sub{margin:0 auto; max-width:800px; color:var(--muted); line-height:1.8}

/* ABOUT (like sample: image left, text right) */
.aboutGrid{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:22px; align-items:stretch;
  margin-top:26px;
}
.aboutImg{
  border-radius:18px; overflow:hidden;
  border:1px solid rgba(34,48,40,.9);
  background:#0a0f0c;
  min-height:360px;
}
.aboutImg img{width:100%;height:100%;object-fit:cover}
.card{
  border:1px solid rgba(34,48,40,.9);
  background: rgba(17,24,22,.68);
  border-radius:18px;
  box-shadow: var(--shadow);
}
.cardPad{padding:20px}
.cardPad h3{margin:0 0 10px; font-size:28px}
.cardPad p{margin:0 0 14px; color:var(--muted); line-height:1.85}

/* PRODUCT CATEGORIES GRID */
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; margin-top:26px}
.cat{
  overflow:hidden;
}
.cat .thumb{height:240px; background:#0a0f0c; border-bottom:1px solid rgba(34,48,40,.9)}
.cat .thumb img{width:100%;height:100%;object-fit:cover}
.cat h4{margin:12px 0 6px; font-size:18px}
.cat p{margin:0 0 12px; color:var(--muted); line-height:1.7; font-size:13px}

/* SERVICES (3 big blocks like sample) */
.servicesRow{display:grid; grid-template-columns: repeat(3, 1fr); gap:0; margin-top:26px; border-radius:18px; overflow:hidden; border:1px solid rgba(34,48,40,.9)}
.sBlock{padding:28px}
.s1{background:#3c4346}
.s2{background: rgba(176,139,61,.95); color:#10100d}
.s3{background:#f1f3f2; color:#10100d}
.sBlock .kicker{color:rgba(255,255,255,.85)}
.s2 .kicker, .s3 .kicker{color:rgba(0,0,0,.55)}
.sBlock h3{margin:10px 0 10px; font-size:34px; font-family: Georgia, "Times New Roman", serif; font-style:italic}
.sBlock p{margin:0; line-height:1.8; opacity:.9}

/* LOGOS SLIDER (simple scroll) */
.logos{
  margin-top:22px;
  display:flex; gap:18px; flex-wrap:wrap; justify-content:center;
}
.logoBox{
  width:190px; height:80px;
  border-radius:16px;
  border:1px solid rgba(34,48,40,.9);
  background: rgba(17,24,22,.6);
  display:grid; place-items:center;
  padding:10px;
}
/* FIX PARTNER LOGOS */
.logoBox{
  width:210px;
  height:95px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}

.logoBox img{
  width:100%;
  height:100%;
  object-fit:contain;
  transform: scale(1.6);
}


/* FOOTER like sample: 4 columns */
footer{
  margin-top:40px;
  border-top:1px solid rgba(34,48,40,.9);
  background: rgba(11,15,12,.85);
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap:18px;
  padding:30px 0;
}
.footerCol h4{margin:0 0 10px; font-size:14px; letter-spacing:.12em; text-transform:uppercase; color:#d5e4db}
.footerCol p, .footerCol a{color:var(--muted); line-height:1.75; font-size:13px}
.quick a{display:block; padding:6px 0}
.mapWrap{
  border-radius:16px; overflow:hidden;
  border:1px solid rgba(34,48,40,.9);
  background:#0a0f0c;
}
.mapWrap iframe{width:100%; height:190px; border:0}
.copy{padding:14px 0; border-top:1px solid rgba(34,48,40,.7); color:var(--muted); font-size:13px}

/* WhatsApp */
.whatsapp{
  position:fixed; left:18px; bottom:18px; z-index:80;
  width:56px; height:56px; border-radius:999px;
  display:grid; place-items:center;
  background:#22c55e; color:#05240f; font-weight:900;
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.whatsapp span{font-size:16px}

/* Back to top */
.toTop{
  position:fixed; right:18px; bottom:22px;
  width:44px; height:44px; border-radius:12px;
  border:1px solid rgba(34,48,40,.95);
  background: rgba(17,24,22,.75);
  color:#fff;
  display:grid; place-items:center;
  cursor:pointer;
  opacity:0; pointer-events:none;
  transition:.25s ease;
  z-index:80;
}
.toTop.show{opacity:1; pointer-events:auto}

/* RTL */
body.rtl .heroTitle{letter-spacing:0}
body.rtl .navlinks{gap:10px}

/* Responsive */
@media (max-width: 980px){
  .aboutGrid{grid-template-columns:1fr}
  .grid3{grid-template-columns: repeat(2, 1fr)}
  .footerGrid{grid-template-columns:1fr 1fr}
  .heroSlider{height:520px}
}
@media (max-width: 720px){
  .menuBtn{display:inline-flex}
  .navlinks{
    position:fixed; left:0; right:0; top:78px;
    background: rgba(11,15,12,.94);
    border-top:1px solid rgba(34,48,40,.9);
    padding:14px;
    display:none; flex-direction:column; align-items:flex-start;
  }
  body.menu-open .navlinks{display:flex}
  .grid3{grid-template-columns: 1fr}
  .servicesRow{grid-template-columns:1fr}
  .heroTitle{font-size:38px}
}
