:root{
  /* Modern Elegance (2026) — Deep Charcoal + Bronze Gold */
  --charcoal:#2D2E32;
  --gold:#B58951; /* Golden Oak (Bronze Gold) */
  --cement:#8D9196;
  --ivory:#F9F9F9;

  /* Theme tokens (Dark Luxury) */
  --bg:#1F2023;
  --muted:#26272B;
  --text:var(--ivory);
  --textDark:var(--charcoal);
  --sub:rgba(249,249,249,.78);
  --subDark:rgba(45,46,50,.72);

  --dark:var(--bg);
  --beige:#cbb89d;

  --radius:18px;
  --shadow:0 18px 44px rgba(0,0,0,.45);
  --card:rgba(255,255,255,.055);
  --cardBorder:rgba(255,255,255,.12);
  --glow:0 18px 54px rgba(181,137,81,.22);
  --accent:var(--gold);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Cairo","Almarai",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  background:radial-gradient(1200px 700px at 15% 10%, rgba(181,137,81,.10), transparent 60%),
             radial-gradient(900px 520px at 85% 20%, rgba(181,137,81,.08), transparent 58%),
             radial-gradient(1000px 600px at 50% 85%, rgba(181,137,81,.06), transparent 62%),
             var(--bg);
  color:var(--text);
  direction:rtl;
  line-height:1.7;
}

/* subtle ambient lighting layer */
body::before{
  content:"";
  position:fixed;
  inset:-30%;
  background:
    radial-gradient(600px 360px at 20% 10%, rgba(181,137,81,.18), transparent 62%),
    radial-gradient(520px 320px at 78% 18%, rgba(181,137,81,.12), transparent 65%),
    radial-gradient(720px 420px at 50% 80%, rgba(181,137,81,.10), transparent 64%);
  pointer-events:none;
  z-index:-1;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,92%);margin:0 auto}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(45,46,50,.78);
  backdrop-filter:saturate(150%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;gap:16px;
}
.brand{
  display:flex;align-items:center;gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-title{font-size:15px;color:var(--text)}
.brand-sub{font-size:12px;color:rgba(243,244,246,.70);font-weight:700}
.logo{
  width:40px;height:40px;border-radius:12px;
  background:linear-gradient(135deg,var(--dark),#3b3b3b);
  box-shadow:var(--shadow);
  position:relative;
}
.logo:after{
  content:"";position:absolute;inset:10px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--beige),var(--gold));
  opacity:.9;
}
.menu{
  display:flex;align-items:center;gap:14px;
}
.menu a{
  color:rgba(243,244,246,.78);
  padding:8px 10px;border-radius:12px;
  transition:.2s ease;
  font-weight:600;
}
.menu a:hover{background:rgba(181,137,81,.10);color:#fff}
.menu a.active{background:rgba(181,137,81,.16);color:#fff}
.cta{
  display:flex;align-items:center;gap:10px;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  width:auto;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--cardBorder);
  background:var(--card);
  box-shadow:var(--shadow);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:linear-gradient(135deg,var(--gold),#D6A36B);
  border-color:rgba(181,137,81,.35);
  color:#111;
  box-shadow:var(--glow);
}
.btn.ghost{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  box-shadow:none;
  backdrop-filter: blur(8px);
}
.btn.gold{
  background:linear-gradient(135deg,var(--gold),#D6A36B);
  border:0;color:#111;
}
.icon{
  width:18px;height:18px;display:inline-block;
}
.hamburger{
  display:none;
  height:44px;
  padding:0 14px;
  gap:10px;border-radius:14px;
  border:1px solid var(--cardBorder);
  background:rgba(255,255,255,.06);
  align-items:center;justify-content:center;
}
.hamburger span{
  width:18px;height:2px;background:var(--text);
  display:block;position:relative;
}
.hamburger span:before,.hamburger span:after{
  content:"";position:absolute;left:0;right:0;height:2px;background:var(--text);
}
.hamburger span:before{top:-6px}
.hamburger span:after{top:6px}

.hero{
  position:relative;
  min-height:72vh;
  display:flex;align-items:center;
  color:#fff;
  overflow:hidden;
}
.hero-webgpu{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
  opacity:.9;
  mix-blend-mode: screen;
}
.hero.webgpu-off .hero-webgpu{display:none;}
.hero::before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.10) 100%);
  z-index:2;
}

/* warm yellow lighting inside hero */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 12% 18%, rgba(181,137,81,.18), transparent 60%),
    radial-gradient(720px 420px at 82% 22%, rgba(181,137,81,.10), transparent 62%);
  z-index:2;
  mix-blend-mode: screen;
  opacity:.85;
}

.hero img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  filter:saturate(110%);
  z-index:0;
}
.hero .content{
  position:relative;z-index:3;
  padding:58px 0;
}
.kicker{
  display:inline-flex;align-items:center;gap:10px;
  padding:6px 12px;border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  font-weight:700;
  margin-bottom:14px;
}
.hero h1{
  margin:0 0 10px 0;
  font-size:clamp(26px,3.4vw,44px);
  line-height:1.3;
  font-weight:900;
}
.hero p{
  margin:0 0 18px 0;
  max-width:720px;
  color:rgba(255,255,255,.88);
  font-size:clamp(14px,1.2vw,18px);
}
.hero .actions{display:flex;gap:10px;flex-wrap:wrap}

.section{padding:54px 0}
.section.muted{
  background:
    radial-gradient(900px 360px at 85% 0%, rgba(181,137,81,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00)),
    var(--muted);
}
.section h2{
  margin:0 0 16px 0;
  font-size:clamp(20px,2.2vw,32px);
  font-weight:900;
}
.lead{color:var(--sub);margin:0 0 22px 0}

.grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:16px;
}
.card{
  background:var(--card);
  border:1px solid var(--cardBorder);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

/* Gold Border (Interactive) */
.card, .ba-card{
  position:relative;
}
.card::before, .ba-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;
  background:conic-gradient(
    from 0deg at var(--mx,50%) var(--my,50%),
    rgba(181,137,81,0) 0deg,
    rgba(181,137,81,.95) 80deg,
    rgba(181,137,81,0) 160deg,
    rgba(181,137,81,.95) 240deg,
    rgba(181,137,81,0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  pointer-events:none;
  filter:drop-shadow(0 0 14px rgba(181,137,81,.35));
  opacity:.85;
  transform:rotate(0deg);
  animation:goldSpin 6s linear infinite;
}
.card:hover::before, .ba-card:hover::before{
  opacity:1;
  filter:drop-shadow(0 0 18px rgba(181,137,81,.5));
}
@keyframes goldSpin{
  to{ transform:rotate(360deg); }
}
.card.pad{padding:18px}
.card h3{margin:0 0 8px 0;font-weight:900}
.card p{margin:0;color:var(--sub)}
.feature{
  grid-column:span 4;
  display:flex;gap:12px;align-items:flex-start;
}
.feature .dot{
  width:42px;height:42px;border-radius:14px;
  background:rgba(181,137,81,.14);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.service{
  grid-column:span 6;
  display:flex;flex-direction:column;
}
.service .thumb{
  aspect-ratio: 16/10;
  width:100%;
  object-fit:cover;
}
.service .body{padding:16px}
.meta{color:var(--sub);font-weight:700;font-size:14px;margin-bottom:8px}
.service .body h3{margin:0 0 10px 0}
.service .body ul{margin:0;padding:0 18px 0;color:var(--sub)}
.service .body li{margin:6px 0}
.service .body .actions{margin-top:12px}

.banner{
  padding:38px 0;
  background:
    radial-gradient(900px 380px at 12% 40%, rgba(181,137,81,.18), transparent 60%),
    linear-gradient(135deg,var(--dark),#1b1c22);
  color:#fff;
}
.banner h1{margin:0 0 8px 0;font-weight:900}
.banner p{margin:0;color:rgba(255,255,255,.85)}

.bullets{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:16px;
}
.bullets .b{
  grid-column:span 4;
  border-radius:var(--radius);
  background:var(--card);
  border:1px solid var(--cardBorder);
  padding:16px;
  box-shadow:var(--shadow);
  display:flex;gap:12px;
}
.b .ico{
  height:44px;
  padding:0 14px;
  gap:10px;border-radius:16px;
  background:rgba(181,137,81,.14);
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
}
.gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
.g-item{
  grid-column:span 4;
  border-radius:16px;
  overflow:hidden;
  cursor:zoom-in;
  border:1px solid var(--cardBorder);
  background:var(--card);
}
.g-item img{
  width:100%;
  aspect-ratio: 1/1;
  object-fit:cover;
  transition:.25s ease;
}

/* Gradient Shadows (Bronze) — ترند 2026 */
.service .thumb{
  box-shadow: 0 26px 46px rgba(181,137,81,.18);
}
.g-item{
  position:relative;
}
.g-item::after{
  content:"";
  position:absolute;
  left:12%;
  right:12%;
  bottom:10px;
  height:34px;
  background:radial-gradient(closest-side, rgba(181,137,81,.55), rgba(181,137,81,0));
  filter: blur(10px);
  opacity:.90;
  transform: translateY(8px);
  transition: .35s ease;
  pointer-events:none;
}
.g-item:hover::after{
  opacity:1;
  transform: translateY(3px);
}
.about-photo img{
  box-shadow: 0 26px 54px rgba(181,137,81,.14);
}

.g-item:hover img{transform:scale(1.02)}
.lightbox{
  position:fixed;inset:0;
  display:none;
  background:rgba(0,0,0,.88);
  z-index:100;
  align-items:center;justify-content:center;
  padding:18px;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1000px,96vw);
  max-height:86vh;
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.5);
}
.lb-ui{
  position:fixed;inset:0;
  pointer-events:none;
}
.lb-btn{
  pointer-events:auto;
  position:absolute;top:50%;
  transform:translateY(-50%);
  width:46px;height:46px;border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;font-weight:900;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.lb-btn:hover{background:rgba(255,255,255,.16)}
.lb-btn.prev{right:18px}
.lb-btn.next{left:18px}
.lb-close{
  pointer-events:auto;
  position:absolute;top:18px;left:18px;
  width:46px;height:46px;border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;font-weight:900;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}

.form{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
.field{grid-column:span 6}
.field.full{grid-column:span 12}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-family:inherit;
  font-size:15px;
  outline:none;
}
input::placeholder,textarea::placeholder{color:rgba(243,244,246,.55)}
textarea{min-height:120px;resize:vertical}
label{display:block;margin:0 0 6px 0;font-weight:800;color:var(--sub)}
.help{color:var(--sub);font-size:14px;margin-top:8px}

.footer{
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(181,137,81,.14), transparent 60%),
    linear-gradient(135deg,#07070a,#14141b);
  color:rgba(255,255,255,.86);
  padding:34px 0;
  border-top:1px solid rgba(181,137,81,.18);
}
.footer .cols{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:16px;
  align-items:start;
}
.footer .col{grid-column:span 4}
.footer h4{margin:0 0 10px 0;color:#fff}
.footer a{color:rgba(255,255,255,.86)}
.small{font-size:13px;color:rgba(255,255,255,.7);margin-top:10px}

/* SOCIAL-LINKS */
.social-links{display:flex;flex-direction:column;gap:10px;}
.social{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.05);border:1px solid rgba(181,137,81,.25);transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;background-clip:padding-box;}
.social .si{width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;border-radius:12px;background:linear-gradient(135deg, rgba(181,137,81,.35), rgba(181,137,81,.08));border:1px solid rgba(181,137,81,.35);font-weight:800;color:var(--gold);letter-spacing:.5px;}
.social .st{color:rgba(255,255,255,.92);font-weight:700;}
.social:hover{transform:translateY(-2px);border-color:rgba(181,137,81,.55);box-shadow:0 16px 40px rgba(0,0,0,.35);}
@media (max-width: 700px){
  .social-links{flex-direction:row;flex-wrap:wrap;}
  .social{width:100%;justify-content:flex-start;}
}

.floating-wa{
  position:fixed;
  bottom:18px;left:18px;
  z-index:80;
  display:flex;align-items:center;gap:10px;
}
.floating-wa a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,#1f8f4d,#1fae5e);
  color:#fff;
  border-radius:18px;
  padding:12px 14px;
  font-weight:900;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.18);
}
.wa-icon{
  width:28px;height:28px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.18);
}

/* على الشاشات الكبيرة: نخلي الزر خفيف (أيقونة فقط) */
@media (min-width: 901px){
  .wa-label{display:none}
  .floating-wa a{padding:12px}
}
.badge{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  padding:6px 10px;border-radius:999px;
}

@media (max-width: 900px){
  .feature{grid-column:span 6}
  .service{grid-column:span 12}
  .bullets .b{grid-column:span 6}
  .g-item{grid-column:span 6}
  .footer .col{grid-column:span 6}
  .menu{display:none}
  .hamburger{display:flex}
  .menu.mobile-open{
    display:flex;
    position:absolute;
    top:66px;right:4%;
    left:4%;
    background:rgba(16,18,23,.95);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    padding:10px;
    box-shadow:var(--shadow);
    flex-wrap:wrap;
  }
}
@media (max-width: 560px){
  .feature{grid-column:span 12}
  .bullets .b{grid-column:span 12}
  .g-item{grid-column:span 12}
  .footer .col{grid-column:span 12}
  .field{grid-column:span 12}
}

/* ====== Pro About Section ====== */
.about-pro{
  background: radial-gradient(1200px 400px at 80% 0%, rgba(181,137,81,.16), transparent 60%),
              radial-gradient(900px 500px at 0% 30%, rgba(255,255,255,.05), transparent 55%);
}
.about-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
  align-items:stretch;
}
.about-media{ position:relative; min-height:360px; }
.about-photo{
  border-radius:22px;
  overflow:hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.10);
  background:var(--card);
}
.about-photo.big{ height:100%; }
.about-photo.big img{ width:100%; height:100%; object-fit:cover; display:block; }
.about-photo.small{
  position:absolute;
  width:46%;
  height:46%;
  bottom:-14px;
  left:-14px;
  transform: rotate(-2deg);
}
.about-photo.small img{ width:100%; height:100%; object-fit:cover; display:block; }
.about-badge{
  position:absolute;
  top:14px;
  right:14px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(16,18,23,.72);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  font-weight:700;
}
.about-badge .dot{
  width:10px;height:10px;border-radius:99px;background:var(--accent);
  box-shadow: 0 0 0 6px rgba(181,137,81,.18);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:var(--text);
  margin:0 0 10px 0;
}
.kicker:before{
  content:"";
  width:36px;height:2px;
  background:linear-gradient(90deg,var(--accent),transparent);
  border-radius:2px;
}
.h2{ font-size:32px; line-height:1.25; margin:0 0 10px 0; }
.about-content .muted{ color:var(--sub); max-width:52ch; }
.about-pills{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:14px;
}
.pill{
  background:var(--card);
  border:1px solid var(--cardBorder);
  padding:10px 12px;
  border-radius:999px;
  font-weight:700;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}
.about-stats{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.stat{
  background:rgba(16,18,23,.72);
  backdrop-filter: blur(10px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:14px 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,.45);
}
.stat-num{
  font-size:32px;
  font-weight:900;
  letter-spacing:-.02em;
}
.stat-label{
  margin-top:4px;
  color:var(--sub);
  font-weight:700;
  font-size:13px;
}
.about-actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.18);
  color:var(--text);
}
.btn.ghost:hover{ transform: translateY(-1px); }

/* ====== Before / After Slider ====== */
#beforeAfter{position:relative; z-index:2;}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.section-head h2{ margin:0; }
.ba-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.ba-card{
  background:var(--card);
  border:1px solid var(--cardBorder);
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.ba-wrap{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 11;
  background:#111;
  --pos:50%;
}
.ba-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.ba-before{
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-label{
  position:absolute;
  top:12px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  background:rgba(17,17,17,.55);
  color:#fff;
  backdrop-filter: blur(8px);
  border:1px solid rgba(255,255,255,.18);
 font-size:14px;}
.ba-label.before{ left:12px; }
.ba-label.after{ right:12px; }
.ba-handle{
  position:absolute;
  top:0;
  bottom:0;
  left:var(--pos);
  width:2px;
  background:rgba(255,255,255,.9);
  transform: translateX(-1px);
  box-shadow: 0 0 0 8px rgba(181,137,81,.10);
 width:64px;height:64px;}
.ba-handle:before{
  content:"⇆";
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.92);
  color:#111;
  font-weight:900;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.ba-range{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0;
  cursor: ew-resize;
}
.ba-caption{
  padding:12px 14px 14px;
  font-weight:800;
}

/* ====== Reveal animation ====== */
[data-reveal]{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ min-height:320px; }
  .about-photo.small{ left:12px; bottom:12px; width:52%; height:42%; }
  .ba-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
}

/* ====== Luxury Enhancements (Dark + Gold) ====== */
:root{
  --goldSoft: rgba(181,137,81,.22);
  --goldSoft2: rgba(181,137,81,.14);
  --glass: rgba(255,255,255,.055);
  --glassBorder: rgba(255,255,255,.12);
}

/* Fine noise texture for premium feel */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  opacity:.22;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

/* Stronger glassy navigation */
.topbar{
  backdrop-filter:saturate(165%) blur(14px);
}

/* Glass cards + subtle highlight */
.card,
.bullets .b,
.g-item{
  background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.035));
  border-color: var(--glassBorder);
  backdrop-filter: blur(14px) saturate(140%);
}

.card::before,
.bullets .b::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background: radial-gradient(900px 280px at 20% 0%, var(--goldSoft), transparent 60%);
  opacity:.55;
}
.card,
.bullets .b{ position:relative; }

/* Premium hover */
.card:hover,
.bullets .b:hover,
.g-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(181,137,81,.18), 0 18px 60px rgba(181,137,81,.14);
}
.card,
.bullets .b,
.g-item{
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* Gold button shine */
.btn.primary{
  position:relative;
  overflow:hidden;
}
.btn.primary::after{
  content:"";
  position:absolute;
  inset:-60% -40%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.38), transparent);
  transform: translateX(-55%) rotate(18deg);
  transition: transform .65s ease;
  opacity:.95;
}
.btn.primary:hover::after{ transform: translateX(55%) rotate(18deg); }
.btn.primary:hover{ box-shadow: 0 22px 70px rgba(181,137,81,.26); }

/* Softer gold accents */
.feature .dot,
.b .ico{
  background: radial-gradient(120px 120px at 30% 30%, rgba(181,137,81,.26), rgba(181,137,81,.10));
  border: 1px solid rgba(181,137,81,.18);
}

/* Hero title glow (subtle) */
.hero h1{
  text-shadow: 0 10px 40px rgba(0,0,0,.55), 0 0 26px rgba(181,137,81,.10);
}

/* Before/After handle glow */
.ba-handle{
  box-shadow: 0 18px 60px rgba(181,137,81,.22), 0 20px 70px rgba(0,0,0,.50);
 width:64px;height:64px;}
.ba-line{
  box-shadow: 0 0 0 1px rgba(181,137,81,.18), 0 22px 70px rgba(181,137,81,.18);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ transition:none !important; animation:none !important; }
}

/* ====== Cinematic Lux Pack ====== */
@keyframes ambientShift{
  0%{ transform:translate3d(0,0,0) scale(1); opacity:.95; }
  50%{ transform:translate3d(-2%,1%,0) scale(1.02); opacity:.90; }
  100%{ transform:translate3d(2%,-1%,0) scale(1.015); opacity:.92; }
}

/* Animate ambient lights subtly */
body::before{ animation: ambientShift 14s ease-in-out infinite; }
.hero::after{ animation: ambientShift 10s ease-in-out infinite; }

/* Elegant section separators */
.section{
  position:relative;
}
.section::before,
.section::after{
  content:"";
  position:absolute;
  left:0;right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(181,137,81,.20), transparent);
  opacity:.65;
}
.section::before{ top:0; }
.section::after{ bottom:0; opacity:.35; }

/* Premium image hover on service cards */
.service .thumb{
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(110%) contrast(104%);
}
.service:hover .thumb{ transform: scale(1.03); filter:saturate(120%) contrast(108%); }

/* Slight glow on active nav item */
.menu a.active{
  box-shadow: 0 14px 44px rgba(181,137,81,.12);
}

/* Softer typography rhythm */
.section h2{
  letter-spacing:.2px;
}
.lead{ max-width: 820px; }

/* Upgraded inputs (glass) */
input,select,textarea{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(12px) saturate(140%);
}
input:focus,select:focus,textarea:focus{
  box-shadow: 0 0 0 3px rgba(181,137,81,.16), 0 18px 60px rgba(0,0,0,.35);
  border-color: rgba(181,137,81,.30);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  body::before, .hero::after{ animation:none !important; }
}

/* Staggered reveal for premium motion */
[data-reveal]{
  transition-delay: var(--reveal-delay, 0s);
}
.grid > [data-reveal]:nth-child(1){--reveal-delay:.05s}
.grid > [data-reveal]:nth-child(2){--reveal-delay:.10s}
.grid > [data-reveal]:nth-child(3){--reveal-delay:.15s}
.grid > [data-reveal]:nth-child(4){--reveal-delay:.20s}
.grid > [data-reveal]:nth-child(5){--reveal-delay:.25s}
.grid > [data-reveal]:nth-child(6){--reveal-delay:.30s}

.bullets > [data-reveal]:nth-child(1){--reveal-delay:.05s}
.bullets > [data-reveal]:nth-child(2){--reveal-delay:.10s}
.bullets > [data-reveal]:nth-child(3){--reveal-delay:.15s}
.bullets > [data-reveal]:nth-child(4){--reveal-delay:.20s}
.bullets > [data-reveal]:nth-child(5){--reveal-delay:.25s}
.bullets > [data-reveal]:nth-child(6){--reveal-delay:.30s}

.gallery > [data-reveal]:nth-child(1){--reveal-delay:.04s}
.gallery > [data-reveal]:nth-child(2){--reveal-delay:.08s}
.gallery > [data-reveal]:nth-child(3){--reveal-delay:.12s}
.gallery > [data-reveal]:nth-child(4){--reveal-delay:.16s}
.gallery > [data-reveal]:nth-child(5){--reveal-delay:.20s}
.gallery > [data-reveal]:nth-child(6){--reveal-delay:.24s}


/* Hero title – clearer & more premium */
.hero-title-box{
  display:inline-block;
  max-width: 860px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(181,137,81,.28);
  box-shadow: 0 18px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(181,137,81,.10) inset;
  backdrop-filter: blur(10px);
}
.hero-title{
  margin: 0;
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}
.hero-title-top{
  display:block;
  font-weight: 900;
  letter-spacing: .3px;
}
.hero-title-bottom{
  display:block;
  margin-top: 6px;
  font-weight: 900;
}
.hero-title .gold{
  color: var(--gold);
  position:relative;
}
.hero-title .gold::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-6px;
  height:2px;
  background: linear-gradient(90deg, rgba(181,137,81,0), rgba(181,137,81,.95), rgba(181,137,81,0));
  filter: drop-shadow(0 0 10px rgba(181,137,81,.35));
}

/* Featured gallery tweaks */
.gallery--featured .g-item{
  border-color: rgba(181,137,81,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.gallery--featured .g-item:hover{
  box-shadow: 0 14px 44px rgba(0,0,0,.35), 0 0 0 1px rgba(181,137,81,.26) inset;
}
@media (max-width: 820px){
  .gallery--featured .g-item{ grid-column: span 6; }
}
@media (max-width: 560px){
  .gallery--featured .g-item{ grid-column: span 12; }
  .hero-title-box{ padding: 14px 14px; border-radius: 16px; }
}


/* Intent UI (Generative-style personalization) */
.intentbar{
  position: sticky;
  top:64px;
  z-index: 40;
  background: rgba(45,46,50,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(181,137,81,.18);
}
.intentbar-inner{
  display:flex;
  align-items:center;
  gap:.6rem;
  padding:.55rem 0;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
.intentbar-label{
  color: rgba(249,249,249,.85);
  font-weight:700;
  white-space: nowrap;
}
.intent-pill{
  border: 1px solid rgba(181,137,81,.35);
  background: rgba(31,32,35,.55);
  color: var(--ivory);
  padding: .45rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
}
.intent-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(181,137,81,.7);
  box-shadow: 0 10px 30px rgba(181,137,81,.15);
}
.intent-pill.active{
  background: linear-gradient(135deg, rgba(181,137,81,.95), rgba(181,137,81,.55));
  color: var(--dark);
  border-color: rgba(181,137,81,1);
  box-shadow: 0 16px 40px rgba(181,137,81,.22);
}
.intent-clear{
  margin-inline-start:auto;
  color: rgba(249,249,249,.8);
  text-decoration: none;
  font-weight:700;
  padding: .35rem .5rem;
  border-radius: 10px;
  border: 1px solid rgba(249,249,249,.12);
}
.intent-clear:hover{ color: var(--gold); border-color: rgba(181,137,81,.35); }

/* Spotlight */
.section.spotlight{
  background: radial-gradient(1200px 500px at 50% 0%, rgba(181,137,81,.18), transparent 60%),
              linear-gradient(180deg, rgba(31,32,35,.35), transparent);
  border-top: 1px solid rgba(181,137,81,.12);
  border-bottom: 1px solid rgba(181,137,81,.10);
}
.spotlight-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1rem;
  margin-bottom: 1rem;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-weight:800;
  letter-spacing:.2px;
  color: rgba(181,137,81,.95);
  margin-bottom:.4rem;
}
.spotlight-title{
  margin:0;
}
.spotlight-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}
@media (max-width: 900px){
  .spotlight-grid{ grid-template-columns: 1fr; }
  .spotlight-head{ align-items:flex-start; flex-direction:column; }
}
.spotlight-gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (max-width: 640px){
  .spotlight-gallery{ grid-template-columns: repeat(2, 1fr); }
}
.sg-thumb{
  padding:0;
  border:0;
  background: transparent;
  cursor:pointer;
  border-radius: 18px;
  overflow:hidden;
  position:relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.sg-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 18px;
  border: 1px solid rgba(181,137,81,.22);
  pointer-events:none;
}
.sg-thumb img{
  width:100%;
  height: 180px;
  object-fit: cover;
  display:block;
  filter: saturate(1.05) contrast(1.05);
  transition: .35s ease;
}
.sg-thumb:hover img{
  transform: scale(1.03);
  filter: saturate(1.15) contrast(1.1);
}
.spotlight-form .form-title{ margin:0 0 .25rem; }
.spotlight-form .form-sub{ margin:0 0 .9rem; color: rgba(249,249,249,.78); }
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:.75rem;
}
@media (max-width: 640px){
  .form-grid{ grid-template-columns: 1fr; }
}
.field span{
  display:block;
  font-weight:800;
  color: rgba(249,249,249,.9);
  margin-bottom:.35rem;
}
.field input, .field textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(181,137,81,.18);
  background: rgba(31,32,35,.55);
  color: var(--ivory);
  padding: .7rem .8rem;
  outline: none;
}
.field input:focus, .field textarea:focus{
  border-color: rgba(181,137,81,.55);
  box-shadow: 0 0 0 4px rgba(181,137,81,.10);
}
.wfull{ width:100%; }
.form-hint{
  margin-top:.6rem;
  color: rgba(249,249,249,.65);
  font-size: .92rem;
}

/* Dim non-primary services when intent is set */
.card.service.dim{
  opacity: .45;
  filter: grayscale(.15);
  transform: scale(.99);
}
.card.service.dim:hover{ opacity: .75; }

/* Simple spotlight lightbox */
.spotlight-lb{
  position:fixed;
  inset:0;
  z-index: 80;
  display:none;
}
.spotlight-lb.open{ display:block; }
.slb-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.72);
}
.slb-dialog{
  position:absolute;
  inset: 8% 6%;
  border-radius: 22px;
  background: rgba(31,32,35,.85);
  border: 1px solid rgba(181,137,81,.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 1rem;
}
@media (max-width: 640px){
  .slb-dialog{ inset: 10% 4%; }
}
.slb-img{
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
}
.slb-close{
  position:absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(181,137,81,.28);
  background: rgba(31,32,35,.65);
  color: var(--ivory);
  cursor:pointer;
}
.slb-close:hover{ color: var(--gold); border-color: rgba(181,137,81,.55); }

/* ===== Level 2: Intent-based Module Flow ===== */
[data-module].module-collapsed .container{
  max-height: 320px;
  overflow: hidden;
  position: relative;
}

[data-module].module-collapsed .container::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(45,46,50,.95), rgba(45,46,50,0));
  pointer-events: none;
}

[data-module].expanded .container{
  max-height: none;
  overflow: visible;
}
[data-module].expanded .container::after{ display:none; }

.collapse-bar{
  display:flex;
  justify-content:center;
  margin-top: 12px;
}

.collapse-toggle{
  border-color: rgba(181,137,81,.45) !important;
}


/* Scrollytelling (Sandwich Panel) */
.scrolly{position:relative}
.scrolly .section-head{margin-bottom:18px}
.scrolly-wrap{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:start;
  min-height: min(620px, calc(100vh - 190px));
  align-items: center;
}
.scrolly-graphic{
  position: sticky;
  top: 92px;
  min-height: 440px;
  padding: 18px;
  background: radial-gradient(1000px 520px at 30% 15%, rgba(181,137,81,.12), rgba(255,255,255,0) 55%),
              linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.build{
  position:relative;
  width:100%;
  height: 404px;
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(900px 380px at 40% 20%, rgba(181,137,81,.18), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  overflow:hidden;
}

/* Final delivery stamp (appears after roof completes) */
.delivery-badge{
  position:absolute;
  inset: auto 18px 18px 18px;
  display:flex;
  flex-direction:column;
  gap:6px;
  align-items:flex-end;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(181,137,81,.55);
  background:
    radial-gradient(600px 200px at 90% 0%, rgba(255,232,170,.22), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, rgba(12,12,12,.62), rgba(12,12,12,.35));
  box-shadow:
    0 18px 54px rgba(0,0,0,.55),
    0 0 40px rgba(181,137,81,.20);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  pointer-events:none;
}
.delivery-badge .t{
  font-weight: 900;
  letter-spacing: .3px;
  color: #fff;
  text-shadow: 0 6px 26px rgba(0,0,0,.45);
}
.delivery-badge .s{
  color: rgba(249,249,249,.78);
  font-weight: 600;
  font-size: .92rem;
}
.layer{
  position:absolute;
  inset: 0;
  width:100%;
  height:100%;
  transform: translateY(70px);
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.55)) drop-shadow(0 18px 54px rgba(181,137,81,.18));
  will-change: transform, opacity;
}
.layer.foundation{background-image: url('../img/scrolly_sandwich/step1-foundation.png');}
.layer.frame{
  background-image: url('../img/scrolly_sandwich/step2-frame.png');
  /* Make the steel skeleton pop (higher clarity + depth) */
  filter:
    contrast(1.28)
    brightness(1.08)
    saturate(1.05)
    drop-shadow(0 22px 58px rgba(0,0,0,.62))
    drop-shadow(0 12px 34px rgba(181,137,81,.22));
}
.layer.walls{background-image: url('../img/scrolly_sandwich/step3-walls.png'); filter: contrast(1.08) brightness(1.01);}
.layer.roof{background-image: url('../img/scrolly_sandwich/step4-roof.png');}
.layer.shine{
  /* Pure gold cinematic sweep (no external image needed) */
  background-image:
    linear-gradient(120deg,
      rgba(255,255,255,0) 0%,
      rgba(181,137,81,0) 38%,
      rgba(181,137,81,.35) 48%,
      rgba(255,232,170,.85) 52%,
      rgba(181,137,81,.28) 60%,
      rgba(255,255,255,0) 78%
    );
  background-size: 220% 220%;
  background-position: 0% 50%;
  mix-blend-mode: screen;
  filter: blur(0.35px);
  opacity: 0;
}

/* Optional “camera shake” target */
.build.shake{ will-change: transform; }
.glow-orb{
  position:absolute;
  inset:-35%;
  background: radial-gradient(closest-side, rgba(181,137,81,.22), rgba(255,255,255,0) 62%);
  filter: blur(10px);
  opacity:.85;
  transform: translate(var(--sx,0px), var(--sy,0px));
  transition: transform .12s linear;
}
.code-drops{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle at 10% 15%, rgba(181,137,81,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 20%, rgba(181,137,81,.14) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 45%, rgba(181,137,81,.14) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 65%, rgba(181,137,81,.12) 0 2px, transparent 3px);
  animation: drops 3.6s ease-in-out infinite;
  opacity:.7;
}
@keyframes drops{
  0%,100%{ transform: translateY(0px); opacity:.55; }
  50%{ transform: translateY(10px); opacity:.9; }
}

.scrolly-steps{padding-top: 10px}
.scrolly-steps{max-height: min(520px, calc(100vh - 220px)); overflow:auto; padding-left: 6px; scrollbar-width: thin;}
.scrolly-steps .step{
  padding: 16px 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin-bottom: 14px;
  opacity: .55;
  transform: translateY(6px);
  transition: .28s ease;
}
.scrolly-steps .step.active{
  opacity: 1;
  transform: translateY(0);
  background: rgba(255,255,255,.06);
  border-color: rgba(181,137,81,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.45), 0 18px 54px rgba(181,137,81,.18);
}
.step-n{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  margin-left: 10px;
  background: rgba(181,137,81,.16);
  border: 1px solid rgba(181,137,81,.32);
  color: var(--ivory);
  font-weight: 800;
}
.scrolly-steps h3{margin: 0 0 8px; font-size: 1.05rem}
.scrolly-steps p{margin: 0 0 10px; color: var(--sub)}
.scrolly-steps ul{margin:0; padding:0 18px 0 0; color: var(--sub); display:grid; gap:6px}
.scrolly-steps li{list-style: "•  "}

@media (max-width: 900px){
  .scrolly-wrap{grid-template-columns: 1fr; gap: 16px}
  .scrolly-graphic{position:relative; top:auto}
}

/* ====== Social Links (Footer) ====== */
.social-icons{display:flex;gap:10px;flex-wrap:wrap}
.social{
  height:44px;
  padding:0 14px;
  gap:10px;
  display:inline-flex;align-items:center;justify-content:center;
  width:auto;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(181,137,81,.28);
  color:rgba(255,255,255,.92);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.social:hover{
  transform:translateY(-2px);
  border-color:rgba(181,137,81,.55);
  box-shadow:0 14px 34px rgba(0,0,0,.35);
}

/* ====== Bigger Before/After (اعلاني) ====== */
.ba-wrap{aspect-ratio: 16 / 9; min-height: 420px;}
.ba-title{font-size:34px;}
.ba-sub{font-size:15px;}
.ba-card{padding:18px;}
.ba-chip{font-size:14px; padding:8px 12px;}
.ba-handle{width:64px;height:64px;}
.ba-handle svg{width:22px;height:22px;}
@media (min-width: 901px){
  .ba-wrap{min-height: 520px;}
}
@media (max-width: 560px){
  .ba-title{font-size:28px;}
  .ba-wrap{min-height: 320px;}
}
