
:root{
  --sand:        #EFE2C4;   /* base parchment */
  --sand-deep:   #E4D2A9;   /* card surfaces */
  --ink:         #2B2013;   /* primary text */
  --ink-soft:    #5A4C38;   /* secondary text */
  --coffee:      #241811;   /* dark sections */
  --coffee-2:    #32241A;   /* dark surface */
  --rug:         #7C2A28;   /* woven-rug red, primary accent */
  --rug-deep:    #5C1E1D;
  --brass:       #B08A4E;   /* metalwork gold */
  --brass-light: #D9BD84;
  --cream-line:  rgba(43,32,19,.14);

  --display: "Aref Ruqaa", "Amiri", serif;
  --body: "Tajawal", "Segoe UI", sans-serif;

  --wrap: 1180px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--sand);
  color:var(--ink);
  font-family:var(--body);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family:var(--display); margin:0; font-weight:700; }
p{ margin:0; }
.wrap{ max-width:var(--wrap); margin-inline:auto; padding-inline:24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{
  outline:2px solid var(--rug);
  outline-offset:3px;
}

/* progress thread — subtle woven line that fills as you scroll */
.progress-thread{
  position:fixed; top:0; inset-inline:0; height:3px; z-index:999;
  background:linear-gradient(90deg, var(--rug), var(--brass));
  transform-origin:right center;
  transform:scaleX(0);
}

/* =========================================================
   Header
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(239,226,196,.98);  
  border-bottom:1px solid var(--cream-line);
  transition:box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled{
  box-shadow:0 8px 24px -16px rgba(43,32,19,.35);
}
.header-inner{
  display:flex; align-items:center; gap:28px;
  height:76px;
}
.brand{ display:flex; align-items:center; gap:10px; margin-inline-end:auto; }
.brand-seal{ width:34px; height:34px; color:var(--rug); flex:none; }
.brand-seal.small{ width:28px; height:28px; color:var(--brass-light); }
.brand-seal svg{ width:100%; height:100%; }
.brand-seal circle{ fill:none; stroke:currentColor; stroke-width:2.5; }
.brand-seal path{ fill:currentColor; }
.brand-text{ font-family:var(--display); font-size:1.5rem; font-weight:700; letter-spacing:.5px; }

.main-nav{ display:flex; align-items:center; gap:30px; font-weight:500; }
.main-nav > a{ position:relative; padding:6px 2px; color:var(--ink-soft); transition:color .2s; }
.main-nav > a:hover{ color:var(--rug); }
.main-nav > a::after{
  content:""; position:absolute; right:0; bottom:0; width:0; height:2px; background:var(--rug);
  transition:width .25s var(--ease);
}
.main-nav > a:hover::after{ width:100%; }

.dropdown{ position:relative; }
.dropdown-toggle{
  display:flex; align-items:center; gap:6px;
  background:none; border:none; cursor:pointer;
  font-family:var(--body); font-weight:500; font-size:1rem; color:var(--ink-soft);
  padding:6px 2px;
}
.dropdown-toggle:hover{ color:var(--rug); }
.chev{ transition:transform .25s var(--ease); }
.dropdown-toggle[aria-expanded="true"] .chev{ transform:rotate(180deg); }
.dropdown-menu{
  position:absolute; top:calc(100% + 14px); right:0; min-width:210px;
  background:var(--sand-deep); border:1px solid var(--cream-line); border-radius:var(--radius);
  box-shadow:0 20px 40px -20px rgba(43,32,19,.4);
  padding:8px; opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:all .22s var(--ease);
}
.dropdown-menu.open{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown-menu a{ display:block; padding:10px 12px; border-radius:3px; color:var(--ink-soft); font-size:.95rem; }
.dropdown-menu a:hover{ background:rgba(124,42,40,.08); color:var(--rug); }

.header-cta{
  display:flex; align-items:center; gap:8px;
  background:var(--rug); color:var(--sand);
  padding:10px 18px; border-radius:var(--radius); font-weight:700; font-size:.92rem;
  white-space:nowrap; transition:background .2s, transform .2s;
}
.header-cta:hover{ background:var(--rug-deep); transform:translateY(-1px); }

.burger{
  display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px;
}
.burger span{ width:22px; height:2px; background:var(--ink); border-radius:2px; transition:.25s var(--ease); }

/* =========================================================
   Hero
   ========================================================= */
.bsh-hero-img{
  position:relative;
  overflow:hidden;
  padding:90px 0;
  background:var(--sand);
}
.bsh-hero-img .bsh-hero-pattern{
  position:absolute; inset:0; pointer-events:none;
  opacity:.5;
  background-image:
    linear-gradient(45deg, var(--cream-line) 1px, transparent 1px),
    linear-gradient(-45deg, var(--cream-line) 1px, transparent 1px);
  background-size:38px 38px;
  mask-image:radial-gradient(ellipse 70% 60% at 30% 20%, black 10%, transparent 75%);
}
.bsh-hero-img .wrap{
  position:relative;
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:60px;
  align-items:center;
}
 
.bsh-hero-copy .eyebrow{
  font-weight:700; color:var(--rug); letter-spacing:.5px; font-size:.95rem;
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
}
.bsh-hero-copy .eyebrow::before{ content:""; width:26px; height:2px; background:var(--brass); }
.bsh-hero-copy h1{
  font-family:var(--display); font-weight:700; margin:0;
  font-size:clamp(2.2rem, 4.4vw, 3.4rem);
  line-height:1.28; color:var(--ink);
}
.bsh-hero-copy h1 .accent{ color:var(--rug); }
.bsh-hero-copy p{
  margin-top:24px; max-width:520px; font-size:1.1rem; color:var(--ink-soft);
}
.bsh-hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-top:34px; }
 
.bsh-hero-trust{
  display:flex; align-items:center; gap:22px; margin-top:44px;
  padding-top:28px; border-top:1px solid var(--cream-line);
  flex-wrap:wrap;
}
.bsh-hero-trust-item{ display:flex; align-items:center; gap:10px; }
.bsh-hero-trust-icon{
  width:20px; height:20px; flex:none; color:var(--brass);
}
.bsh-hero-trust-label{ color:var(--ink-soft); font-weight:500; font-size:.92rem; }
 
.bsh-hero-figure{
  position:relative;
  aspect-ratio:4/5;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--sand-deep);
  border:1px solid var(--cream-line);
}
.bsh-hero-figure img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.bsh-hero-figure .bsh-frame{
  position:absolute; inset:14px;
  border:1.5px solid var(--brass);
  border-radius:2px;
  pointer-events:none;
}
.bsh-hero-figure .bsh-tag{
  position:absolute; top:20px; inset-inline-start:20px;
  background:var(--rug); color:var(--sand);
  padding:10px 18px; border-radius:var(--radius);
  font-family:var(--display); font-weight:700; font-size:.95rem;
}
.bsh-hero-figure .bsh-caption{
  position:absolute; bottom:0; inset-inline:0;
  background:linear-gradient(to top, rgba(36,24,17,.85), transparent);
  color:var(--sand);
  padding:50px 24px 22px;
  font-size:.92rem;
  font-weight:500;
}
 
@media (max-width:980px){
  .bsh-hero-img .wrap{ grid-template-columns:1fr; }
  .bsh-hero-figure{ order:-1; aspect-ratio:16/10; }
}

/* reveal-on-scroll */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.hero-title.reveal{ transition-delay:.05s; }
.hero-lede.reveal{ transition-delay:.15s; }
.hero-actions.reveal{ transition-delay:.25s; }
.hero-strip.reveal{ transition-delay:.35s; }

/* =========================================================
   Section shared
   ========================================================= */
.section-head{ max-width:620px; margin-bottom:56px; }
.section-head h2{ font-size:clamp(1.9rem,3.4vw,2.6rem); margin-top:10px; }
.section-sub{ margin-top:16px; color:var(--ink-soft); font-size:1.05rem; }

/* =========================================================
   Services
   ========================================================= */
.services{ padding:100px 0; }
.service-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.service-card{
  background:var(--sand-deep);
  border:1px solid var(--cream-line);
  border-radius:var(--radius);
  padding:34px 26px;
  transition:transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 40px -26px rgba(43,32,19,.4);
  border-color:var(--brass);
}
.service-icon{
  width:52px; height:52px; color:var(--rug); display:block; margin-bottom:22px;
}
.service-icon svg{ width:100%; height:100%; }
.service-card h3{ font-size:1.25rem; margin-bottom:10px; }
.service-card p{ color:var(--ink-soft); font-size:.95rem; }

/* =========================================================
   Why us
   ========================================================= */
.why{ background:var(--coffee); color:var(--sand); padding:110px 0; position:relative; overflow:hidden; }
.why::before{
  content:""; position:absolute; inset:0;
  background-image:repeating-linear-gradient(135deg, rgba(217,189,132,.05) 0 2px, transparent 2px 26px);
  pointer-events:none;
}
.why-inner{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.why .eyebrow{ color:var(--brass-light); }
.why .eyebrow::before{ background:var(--brass-light); }
.why-copy h2{ font-size:clamp(1.9rem,3.4vw,2.5rem); margin-top:10px; color:var(--sand); }
.why-text{ margin-top:22px; color:#D8C8A6; font-size:1.05rem; max-width:480px; }

.why-list{ margin:30px 0 36px; display:flex; flex-direction:column; gap:14px; }
.why-list li{ display:flex; align-items:center; gap:12px; font-weight:500; font-size:1.02rem; }
.check{
  width:26px; height:26px; flex:none; border-radius:50%; background:rgba(176,138,78,.18);
  color:var(--brass-light); display:flex; align-items:center; justify-content:center; font-size:.75rem;
}
.why .btn-primary{ background:var(--brass); color:var(--coffee); }
.why .btn-primary:hover{ background:var(--brass-light); }

.why-steps{ display:flex; flex-direction:column; gap:0; }
.step{
  display:flex; gap:20px; padding:26px 0; border-top:1px solid rgba(217,189,132,.18);
}
.step:last-child{ border-bottom:1px solid rgba(217,189,132,.18); }
.step-num{
  font-family:var(--display); font-size:1.4rem; color:var(--brass); flex:none; width:44px;
}
.step h3{ font-size:1.1rem; color:var(--sand); margin-bottom:6px; }
.step p{ color:#C9B995; font-size:.92rem; }

/* =========================================================
   Contact CTA
   ========================================================= */
.contact-cta{
  padding:100px 0; text-align:center; background:var(--sand);
  background-image:radial-gradient(circle at 50% 0%, var(--sand-deep), var(--sand) 70%);
}
.cta-inner{ max-width:640px; margin-inline:auto; }
.contact-cta h2{ font-size:clamp(1.9rem,3.4vw,2.6rem); margin-top:10px; }
.cta-text{ margin-top:18px; color:var(--ink-soft); font-size:1.08rem; }
.cta-actions{ margin-top:36px; display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.contact-cta .eyebrow{ justify-content:center; }
.contact-cta .eyebrow::before{ display:none; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{ background:var(--coffee-2); color:#C9B995; padding-top:70px; }
.footer-inner{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:50px; border-bottom:1px solid rgba(217,189,132,.15);
}
.footer-about p{ margin-top:18px; font-size:.92rem; line-height:1.8; max-width:340px; }
.footer-col h4{ font-family:var(--body); color:var(--brass-light); font-weight:700; margin-bottom:18px; font-size:1rem; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; font-size:.92rem; }
.footer-col a:hover{ color:var(--brass-light); }
.footer-bottom{ padding:22px 0; text-align:center; font-size:.85rem; color:#8A7A5C; }

/* =========================================================
   Back to top
   ========================================================= */
.to-top{
  position:fixed; bottom:26px; left:26px; z-index:90;
  width:46px; height:46px; border-radius:50%;
  background:var(--rug); color:var(--sand); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:all .25s var(--ease);
}
.to-top.show{ opacity:1; visibility:visible; transform:translateY(0); }
.to-top:hover{ background:var(--rug-deep); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width:980px){
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .why-inner{ grid-template-columns:1fr; gap:48px; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
}

@media (max-width:760px){
  .main-nav{
    position:fixed; inset-inline:0; top:76px; bottom:0;
    background:var(--sand); flex-direction:column; align-items:flex-start; gap:0;
    padding:20px 24px; overflow-y:auto;
    transform:translateX(100%); transition:transform .3s var(--ease);
    border-top:1px solid var(--cream-line);
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav > a{ width:100%; padding:16px 0; border-bottom:1px solid var(--cream-line); }
  .dropdown{ width:100%; }
  .dropdown-toggle{ width:100%; justify-content:space-between; padding:16px 0; border-bottom:1px solid var(--cream-line); }
  .dropdown-menu{ position:static; box-shadow:none; border:none; opacity:1; visibility:visible; transform:none; height:0; overflow:hidden; padding:0; transition:height .25s var(--ease); }
  .dropdown-menu.open{ height:auto; padding:8px 0 8px 14px; }
  .header-cta{ display:none; }
  .burger{ display:flex; }

  .service-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; gap:34px; }
  .hero{ padding:25px 0 60px; }
  .hero-strip{ gap:18px; }
}

.burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2){ opacity:0; }
.burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }


.bsh-about-figure{
  padding:100px 0;
  background:var(--sand);
}
.bsh-about-figure .wrap{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:56px;
  align-items:center;
}
.bsh-about-figure .bsh-img-wrap{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:4/5;
  background:var(--sand-deep);
  border:1px solid var(--cream-line);
}
.bsh-about-figure .bsh-img-wrap img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.bsh-about-figure .bsh-img-frame{
  position:absolute; inset:14px;
  border:1.5px solid var(--brass);
  border-radius:2px;
  pointer-events:none;
}
.bsh-about-figure .bsh-badge{
  position:absolute; bottom:-1px; inset-inline-start:-1px;
  background:var(--rug); color:var(--sand);
  padding:14px 22px; border-radius:0 var(--radius) 0 0;
  font-family:var(--display); font-weight:700; font-size:1rem;
}
.bsh-about-figure .bsh-copy h2{
  font-size:clamp(1.9rem,3.4vw,2.5rem);
  margin-top:10px;
}
.bsh-about-figure .bsh-copy p{
  margin-top:20px; color:var(--ink-soft); font-size:1.05rem; max-width:520px;
}
.bsh-about-figure .bsh-stats{
  display:flex; gap:0; margin-top:34px; flex-wrap:wrap;
}
.bsh-about-figure .bsh-stat{
  padding-inline-end:34px; margin-inline-end:34px; border-inline-end:1px solid var(--cream-line);
}
.bsh-about-figure .bsh-stat:last-child{ border-inline-end:none; margin-inline-end:0; padding-inline-end:0; }
.bsh-about-figure .bsh-stat-num{
  font-family:var(--display); font-size:2rem; color:var(--rug); font-weight:700; display:block;
}
.bsh-about-figure .bsh-stat-label{ color:var(--ink-soft); font-size:.9rem; margin-top:4px; display:block; }
 
@media (max-width:980px){
  .bsh-about-figure .wrap{ grid-template-columns:1fr; }
}
 
/* ===== 2) سكشن: آراء العملاء ===== */
.bsh-testimonials{
  padding:100px 0;
  background:var(--coffee);
  color:var(--sand);
  position:relative;
  overflow:hidden;
}
.bsh-testimonials::before{
  content:"";
  position:absolute; inset:0;
  background-image:repeating-linear-gradient(135deg, rgba(217,189,132,.05) 0 2px, transparent 2px 26px);
  pointer-events:none;
}
.bsh-testimonials .wrap{ position:relative; }
.bsh-testimonials .eyebrow{ color:var(--brass-light); }
.bsh-testimonials .eyebrow::before{ background:var(--brass-light); }
.bsh-testimonials h2{ color:var(--sand); margin-top:10px; font-size:clamp(1.9rem,3.4vw,2.5rem); }
 
.bsh-t-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:50px;
}
.bsh-t-card{
  background:var(--coffee-2);
  border:1px solid rgba(217,189,132,.18);
  border-radius:var(--radius);
  padding:30px 26px;
  transition:transform .28s var(--ease), border-color .28s;
}
.bsh-t-card:hover{
  transform:translateY(-6px);
  border-color:var(--brass);
}
.bsh-t-quote{
  color:var(--brass-light); font-family:var(--display); font-size:2.2rem; line-height:1; display:block; margin-bottom:10px;
}
.bsh-t-text{ color:#D8C8A6; font-size:.98rem; line-height:1.8; }
.bsh-t-person{
  display:flex; align-items:center; gap:12px; margin-top:22px;
  padding-top:18px; border-top:1px solid rgba(217,189,132,.15);
}
.bsh-t-avatar{
  width:44px; height:44px; border-radius:50%; overflow:hidden; flex:none;
  background:var(--rug); display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-weight:700; color:var(--sand);
}
.bsh-t-avatar img{ width:100%; height:100%; object-fit:cover; }
.bsh-t-name{ font-weight:700; color:var(--sand); font-size:.95rem; }
.bsh-t-role{ color:#9C8A66; font-size:.82rem; margin-top:2px; }
 
@media (max-width:980px){
  .bsh-t-grid{ grid-template-columns:1fr; }
}
 
/* ===== 3) سكشن: الأسئلة الشائعة ===== */
.bsh-faq{
  padding:100px 0;
  background:var(--sand);
}
.bsh-faq .wrap{
  display:grid;
  grid-template-columns:0.8fr 1.2fr;
  gap:56px;
  align-items:start;
}
.bsh-faq-list{ display:flex; flex-direction:column; gap:14px; }
.bsh-faq-item{
  background:var(--sand-deep);
  border:1px solid var(--cream-line);
  border-radius:var(--radius);
  overflow:hidden;
}
.bsh-faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px;
  background:none; border:none; cursor:pointer;
  font-family:var(--body); font-weight:700; font-size:1rem; color:var(--ink);
  text-align:start;
}
.bsh-faq-q:hover{ color:var(--rug); }
.bsh-faq-icon{
  flex:none; width:22px; height:22px; color:var(--rug);
  transition:transform .25s var(--ease);
}
.bsh-faq-item[data-open="true"] .bsh-faq-icon{ transform:rotate(45deg); }
.bsh-faq-a{
  max-height:0; overflow:hidden;
  transition:max-height .3s var(--ease);
  padding:0 24px;
}
.bsh-faq-item[data-open="true"] .bsh-faq-a{
  max-height:240px;
  padding:0 24px 22px;
}
.bsh-faq-a p{ color:var(--ink-soft); font-size:.95rem; line-height:1.8; }
 
@media (max-width:980px){
  .bsh-faq .wrap{ grid-template-columns:1fr; }
}
/* ============ إصلاح main-nav في الموبايل ============ */
@media (max-width:760px){
  .main-nav{
    position:fixed;
    inset-inline:0;
    top:76px;
    bottom:0;
    background-color:var(--sand);   /* لون صريح solid بدل ما يتورث */
    opacity:1;
    z-index:9999;                   /* أعلى من أي حاجة تانية في الصفحة */
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:20px 24px;
    overflow-y:auto;
    transform:translateX(100%);
    transition:transform .3s var(--ease);
    border-top:1px solid var(--cream-line);
  }
  .main-nav.open{
    transform:translateX(0);
  }
  .main-nav > a{
    width:100%;
    padding:16px 0;
    border-bottom:1px solid var(--cream-line);
    color:var(--ink);          /* تأكيد اللون عشان النص يبان واضح */
  }
}