:root{
  --bg:#08110f;
  --surface:#101c18;
  --card:#14231e;
  --text:#f5f1e8;
  --muted:#c7bdaa;
  --brand:#d4a64a;
  --brand2:#7bd6a9;
  --border:rgba(255,255,255,.12);
  --shadow:0 24px 70px rgba(0,0,0,.35);
}

[data-theme="light"]{
  --bg:#fbf7ef;
  --surface:#fffaf2;
  --card:#fff;
  --text:#17221e;
  --muted:#5d655f;
  --brand:#a87918;
  --brand2:#087c5b;
  --border:rgba(0,0,0,.12);
  --shadow:0 20px 50px rgba(30,23,10,.13);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  background:radial-gradient(circle at top left,rgba(212,166,74,.16),transparent 32%),var(--bg);
  color:var(--text);
  line-height:1.7;
}

body[dir="rtl"]{font-family:Tahoma,Arial,sans-serif}

.container{
  width:min(1140px,92%);
  margin:auto;
}

.progress{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  background:linear-gradient(90deg,var(--brand),var(--brand2));
  width:0;
  z-index:9999;
}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(8,17,15,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}

[data-theme="light"] .topbar{
  background:rgba(251,247,239,.82);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  text-decoration:none;
  font-weight:900;
  letter-spacing:.4px;
}

.brand img{
  width:46px;
  height:46px;
  border-radius:14px;
  object-fit:cover;
  box-shadow:0 8px 22px rgba(0,0,0,.25);
}

.brand small{
  display:block;
  color:var(--muted);
  font-size:10px;
  letter-spacing:1.5px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav-links a,
.footer-links a{
  color:var(--muted);
  text-decoration:none;
  padding:9px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
}

.nav-links a:hover,
.nav-links a.active,
.footer-links a:hover{
  color:var(--text);
  background:rgba(212,166,74,.14);
}

.switches{
  display:flex;
  gap:8px;
}

.mini-btn,
.menu-toggle{
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:800;
}

.menu-toggle{
  display:none;
}

.hero,
.page-hero{
  padding:92px 0;
  background:linear-gradient(135deg,rgba(212,166,74,.13),transparent 50%);
}

.premium-hero{
  min-height:78vh;
  display:flex;
  align-items:center;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
}

.badge{
  display:inline-flex;
  padding:7px 12px;
  border:1px solid rgba(212,166,74,.38);
  border-radius:999px;
  color:var(--brand);
  font-weight:900;
  font-size:13px;
  background:rgba(212,166,74,.1);
}

h1{
  font-size:clamp(38px,6vw,76px);
  line-height:1.02;
  margin:18px 0;
}

h2,
.section-title{
  font-size:clamp(28px,4vw,46px);
  line-height:1.12;
  margin:14px 0;
}

h3{
  margin:10px 0 6px;
}

.hero p,
.section-lead,
.page-hero p{
  color:var(--muted);
  font-size:18px;
  max-width:780px;
}

p{
  color:var(--muted);
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:13px 21px;
  text-decoration:none;
  font-weight:900;
  border:1px solid var(--border);
  transition:.25s;
}

.btn-primary{
  background:linear-gradient(135deg,var(--brand),#f3d27a);
  color:#1d1303;
}

.btn-secondary{
  color:var(--text);
  background:rgba(255,255,255,.06);
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}

.hero-image{
  position:relative;
}

.hero-image img{
  width:100%;
  border-radius:34px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  aspect-ratio:4/3;
  object-fit:cover;
}

.floating-card{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  background:rgba(8,17,15,.78);
  backdrop-filter:blur(14px);
  border:1px solid var(--border);
  padding:16px;
  border-radius:22px;
}

.floating-card small{
  display:block;
  color:var(--muted);
}

.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:22px;
}

.trust-row span{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:999px;
  padding:7px 11px;
  color:var(--muted);
  font-weight:800;
}

.section{
  padding:78px 0;
}

.compact{
  padding:60px 0;
}

.alt{
  background:rgba(255,255,255,.035);
}

.center{
  text-align:center;
}

.mt{
  margin-top:26px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card,
.service-card,
.project-card,
.contact-card,
.contact-form,
.cta,
.service-text-card,
.service-note,
.testimonial,
.before-after{
  background:linear-gradient(180deg,var(--card),var(--surface));
  border:1px solid var(--border);
  border-radius:28px;
  padding:18px;
  box-shadow:var(--shadow);
}

.card,
.service-card,
.project-card,
.service-text-card,
.testimonial{
  transition:.3s;
}

.card:hover,
.service-card:hover,
.project-card:hover,
.service-text-card:hover,
.testimonial:hover{
  transform:translateY(-6px);
}

.service-card{
  display:block;
  color:var(--text);
  text-decoration:none;
}

.service-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:20px;
}

.card-link{
  color:var(--brand);
  font-weight:900;
}

.premium-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:28px;
}

.premium-stats div{
  padding:20px;
  border:1px solid var(--border);
  border-radius:24px;
  background:rgba(255,255,255,.035);
}

.premium-stats strong{
  font-size:34px;
  color:var(--brand);
  display:block;
}

.premium-stats span{
  color:var(--muted);
  font-weight:800;
}

.project-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin:28px 0;
}

.project-strip a{
  position:relative;
  display:block;
  color:#fff;
  text-decoration:none;
  overflow:hidden;
  border-radius:24px;
}

.project-strip img,
.project-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  border:1px solid var(--border);
  cursor:pointer;
  display:block;
}

.project-strip span{
  position:absolute;
  left:14px;
  bottom:14px;
  background:rgba(0,0,0,.55);
  padding:8px 13px;
  border-radius:999px;
  font-weight:900;
}

.projects-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.project-card{
  padding:0;
  overflow:hidden;
  transition:.35s;
}

.project-card.highlight{
  box-shadow:0 0 0 3px var(--brand),var(--shadow);
}

.project-body{
  padding:22px;
}

.project-tag{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(212,166,74,.15);
  color:var(--brand);
  font-size:13px;
  font-weight:700;
}

.project-body h2{
  font-size:20px;
  margin:10px 0;
}

.service-text-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  margin-top:22px;
}

.service-number{
  color:var(--brand);
  font-size:34px;
  font-weight:900;
}

.before-after{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
  align-items:center;
}

.ba-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.ba-grid img{
  width:100%;
  height:270px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid var(--border);
}

.testimonial p{
  font-size:18px;
}

.contact-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:22px;
}

.contact-card a{
  color:var(--brand);
}

.contact-form{
  display:grid;
  gap:10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:var(--bg);
  color:var(--text);
}

.map-box{
  min-height:150px;
  display:grid;
  place-items:center;
  text-align:center;
  border:1px dashed var(--border);
  border-radius:22px;
  margin-top:18px;
  background:rgba(255,255,255,.04);
}

.faq{
  display:grid;
  gap:12px;
}

.faq details{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
}

.faq summary{
  cursor:pointer;
  font-weight:900;
}

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer{
  padding:34px 0;
  border-top:1px solid var(--border);
  background:rgba(0,0,0,.13);
}

.footer-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.footer-links{
  display:flex;
  gap:4px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer a{
  color:var(--brand);
  text-decoration:none;
}

.footer a:hover{
  color:var(--text);
}

.copy{
  text-align:center;
  color:var(--muted);
  font-size:13px;
  margin:18px 0 0;
}

.top-btn{
  position:fixed;
  right:18px;
  bottom:78px;
  border:0;
  border-radius:50%;
  width:44px;
  height:44px;
  background:var(--brand);
  color:#1d1303;
  font-weight:900;
  display:none;
  cursor:pointer;
}

.whatsapp{
  position:fixed;
  right:18px;
  bottom:20px;
  background:#25d366;
  color:#082013;
  text-decoration:none;
  font-weight:900;
  padding:12px 16px;
  border-radius:999px;
  box-shadow:var(--shadow);
  z-index:900;
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:.7s ease;
}

.reveal.show{
  opacity:1;
  transform:none;
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:grid;
  place-items:center;
  z-index:9998;
  padding:22px;
}

.lightbox img{
  max-width:94%;
  max-height:88vh;
  border-radius:24px;
}

.lightbox span{
  position:absolute;
  top:20px;
  right:30px;
  color:white;
  font-size:38px;
  cursor:pointer;
}

@media(max-width:900px){
  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:absolute;
    top:76px;
    left:4%;
    right:4%;
    display:none;
    flex-direction:column;
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:24px;
    padding:14px;
  }

  .nav-links.open{
    display:flex;
  }

  .hero-grid,
  .contact-grid,
  .before-after{
    grid-template-columns:1fr;
  }

  .grid-4,
  .grid-3,
  .projects-grid,
  .project-strip,
  .premium-stats,
  .service-text-grid{
    grid-template-columns:1fr 1fr;
  }

  .cta,
  .footer-grid{
    flex-direction:column;
    align-items:flex-start;
  }

  .switches{
    margin-left:auto;
  }

  h1{
    font-size:42px;
  }
}

@media(max-width:560px){
  .grid-4,
  .grid-3,
  .projects-grid,
  .project-strip,
  .premium-stats,
  .service-text-grid,
  .ba-grid{
    grid-template-columns:1fr;
  }

  .nav{
    gap:10px;
  }

  .switches{
    gap:5px;
  }

  .mini-btn,
  .menu-toggle{
    padding:7px 10px;
    font-size:12px;
  }

  .brand span{
    font-size:13px;
  }

  .brand small{
    font-size:8px;
  }

  .section{
    padding:55px 0;
  }

  .hero,
  .page-hero{
    padding:62px 0;
  }

  .whatsapp{
    left:18px;
    right:auto;
  }

  .top-btn{
    right:18px;
  }

  .project-strip img,
  .project-card img{
    height:220px;
  }
}