/* ══════════════════════════════════════════════════════
   NEXFOLD LAUNDRY — DESIGN TOKENS
   Concept: pressed linen + fold creases. Sage from mark,
   warm graphite ink, soft paper ground.
══════════════════════════════════════════════════════ */
:root{
  --sage:      #74AD9C;
  --sage-lt:   #CFE6DD;
  --sage-pale: #EAF1EE;
  --sage-dk:   #4C8A78;
  --ink:       #16262E;
  --ink-soft:  #4E5F66;
  --linen:     #F4F7F6;
  --linen-dp:  #E4EBE8;
  --white:     #FFFFFF;
  --muted:     #8A9591;
  --line:      rgba(22,38,46,0.12);
  --display:   'Poppins', 'Manrope', sans-serif;
  --sans:      'Inter', sans-serif;
  --ar:        'Tajawal', sans-serif;
  --ease:      cubic-bezier(.22,.61,.36,1);
  --nav-h:     76px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);background:var(--linen);color:var(--ink);
  overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{cursor:pointer;font-family:inherit;background:none;border:none}
ul{list-style:none}
:focus-visible{outline:2px solid var(--sage-dk);outline-offset:3px}

/* ══════════════════════════════════════════════════════
   LANGUAGE
══════════════════════════════════════════════════════ */
html[dir="rtl"]                { direction:rtl }
html[dir="rtl"] body           { font-family:var(--ar) }
html[dir="ltr"] .ar-only       { display:none!important }
html[dir="rtl"] .en-only       { display:none!important }
html[dir="rtl"] .nav-phone span,
html[dir="rtl"] .foot-phone,
html[dir="rtl"] .contact-phone-num { direction:ltr!important; unicode-bidi:embed }
html[dir="rtl"] .crease::before{ transform:scaleX(-1) }
html[dir="rtl"] .fold-arrow    { transform:scaleX(-1) }

/* ══════════════════════════════════════════════════════
   FOLD CREASE DIVIDER — signature structural motif
   a soft diagonal fold-line between sections, echoing a
   sheet being pressed into a crease
══════════════════════════════════════════════════════ */
.crease{ position:relative; height:34px; overflow:hidden }
.crease::before{
  content:'';
  position:absolute; left:-5%; right:-5%; top:0; height:70px;
  background:linear-gradient(180deg, transparent 0%, rgba(43,52,64,.05) 46%, transparent 100%);
  transform:skewY(-1.1deg); transform-origin:left;
}
.crease-sage::before{ background:linear-gradient(180deg, transparent 0%, rgba(111,174,156,.16) 46%, transparent 100%) }


/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
nav{
  position:sticky; top:0; z-index:998; height:var(--nav-h);
  background:rgba(243,239,230,.92); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  padding:0 40px; display:flex; align-items:center; justify-content:space-between; gap:16px;
  transition:box-shadow .3s;
}
.nav-brand{ display:flex; align-items:center; flex-shrink:0 }
.nav-brand-logo{ height:52px; width:auto }

.nav-links{ display:flex; gap:30px; align-items:center }
.nav-links a{
  font-size:.82rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:var(--ink-soft); position:relative; padding-bottom:3px; transition:color .2s;
}
html[dir="rtl"] .nav-links a{ letter-spacing:0; font-size:.92rem }
.nav-links a::after{ content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--sage); transform:scaleX(0); transition:transform .25s var(--ease); transform-origin:left }
html[dir="rtl"] .nav-links a::after{ transform-origin:right }
.nav-links a:hover{ color:var(--ink) }
.nav-links a:hover::after{ transform:scaleX(1) }

.nav-right{ display:flex; align-items:center; gap:14px; flex-shrink:0 }
.nav-phone{
  display:flex; align-items:center; gap:8px; font-size:.85rem; font-weight:700; color:var(--white);
  background:var(--ink); padding:10px 18px; border-radius:30px; white-space:nowrap; transition:background .2s;
}
.nav-phone:hover{ background:var(--sage-dk) }
.lang-toggle{ display:flex; border:1px solid var(--line); border-radius:20px; overflow:hidden; flex-shrink:0 }
.lang-btn{ padding:7px 14px; font-size:.72rem; font-weight:700; letter-spacing:.08em; color:var(--muted); transition:background .2s,color .2s }
.lang-btn.active{ background:var(--sage); color:var(--white) }
.lang-btn:hover:not(.active){ background:var(--sage-pale) }
.hamburger{ display:none; flex-direction:column; gap:5px; padding:4px; flex-shrink:0 }
.hamburger span{ width:23px; height:2px; background:var(--ink); border-radius:2px; display:block }

/* Mobile nav */
.mobile-nav{
  display:none; position:fixed; inset:0; background:var(--ink); z-index:9998;
  flex-direction:column; align-items:center; justify-content:center; gap:26px;
}
.mobile-nav.open{ display:flex }
.mobile-nav a{ font-family:var(--display); font-size:1.7rem; color:var(--white); font-weight:400 }
html[dir="rtl"] .mobile-nav a{ font-family:var(--ar) }
.mobile-nav a:hover{ color:var(--sage-lt) }
.mob-call{
  display:flex!important; align-items:center; gap:10px; background:var(--sage)!important; color:var(--white)!important;
  padding:14px 30px!important; border-radius:30px; font-family:var(--sans)!important; font-size:1rem!important; font-weight:700!important;
  margin-top:6px;
}
html[dir="rtl"] .mob-call{ font-family:var(--ar)!important }
.mob-close{ position:absolute; top:22px; right:22px; color:var(--white); font-size:2.1rem; line-height:1 }
html[dir="rtl"] .mob-close{ right:auto; left:22px }
.mob-lang{ display:flex; border:1px solid rgba(255,255,255,.25); border-radius:20px; overflow:hidden; margin-top:8px }
.mob-lang .lang-btn{ color:rgba(255,255,255,.55); padding:8px 18px }
.mob-lang .lang-btn.active{ background:var(--sage); color:var(--white) }

/* ══════════════════════════════════════════════════════
   HERO — full-bleed background image slider (1-3 photos)
   behind a single fixed text block; no per-slide copy
══════════════════════════════════════════════════════ */
.hero{
  position:relative; overflow:hidden;
  min-height:calc(100vh - var(--nav-h)); max-height:920px;
  display:flex; align-items:flex-end;
  padding:0 40px 68px;
}
@media(max-width:980px){ .hero{ padding:0 24px 52px; min-height:640px } }

.hero-slider{ position:absolute; inset:0; z-index:0 }
.hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.4s var(--ease);
}
.hero-slide.active{ opacity:1 }
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(22,38,46,.62) 0%, rgba(22,38,46,.55) 42%, rgba(22,38,46,.9) 100%);
}

.hero-copy{ position:relative; z-index:2; max-width:660px }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px; font-size:.72rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:var(--sage-lt); margin-bottom:20px;
}
html[dir="rtl"] .hero-eyebrow{ letter-spacing:0; font-size:.86rem }
.hero-eyebrow::before{ content:''; width:30px; height:1px; background:var(--sage-lt) }
html[dir="rtl"] .hero-eyebrow::before{ order:2 }

.hero-title{
  font-family:var(--display); font-weight:600; font-size:clamp(2.5rem,4.8vw,4rem);
  line-height:1.08; letter-spacing:-.01em; color:var(--white); margin-bottom:20px; max-width:620px;
}
html[dir="rtl"] .hero-title{ font-family:var(--ar); font-weight:700; font-size:clamp(2rem,4.4vw,3.3rem); line-height:1.3 }
.hero-title em{ font-style:normal; font-weight:700; color:var(--sage-lt) }
html[dir="rtl"] .hero-title em{ font-style:normal }

.hero-desc{ font-size:1.02rem; color:rgba(255,255,255,.82); max-width:460px; line-height:1.8; margin-bottom:30px }
html[dir="rtl"] .hero-desc{ font-size:1.06rem }

.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:38px }
.btn-primary{
  display:inline-flex; align-items:center; gap:10px; background:var(--sage); color:var(--white);
  padding:16px 30px; font-size:.86rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  border-radius:32px; transition:all .25s var(--ease);
}
html[dir="rtl"] .btn-primary{ letter-spacing:0; font-size:.95rem; flex-direction:row-reverse }
.btn-primary:hover{ background:var(--sage-dk); transform:translateY(-2px); box-shadow:0 10px 26px rgba(0,0,0,.32) }
.btn-secondary{
  display:inline-flex; align-items:center; gap:10px; background:rgba(255,255,255,.08); color:var(--white);
  padding:16px 28px; font-size:.86rem; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  border:1.5px solid rgba(255,255,255,.55); border-radius:32px; transition:all .25s var(--ease);
  backdrop-filter:blur(4px);
}
html[dir="rtl"] .btn-secondary{ letter-spacing:0; font-size:.95rem }
.btn-secondary:hover{ background:var(--white); color:var(--ink); border-color:var(--white) }

.hero-strip{
  display:flex; flex-wrap:nowrap; gap:0; border-top:1px solid rgba(255,255,255,.25);
  padding-top:22px; max-width:520px;
}
.hero-stat{ padding-right:clamp(14px,3vw,34px); margin-right:clamp(14px,3vw,34px); border-right:1px solid rgba(255,255,255,.25); flex-shrink:0 }
html[dir="rtl"] .hero-stat{ padding-right:0; margin-right:0; padding-left:clamp(14px,3vw,34px); margin-left:clamp(14px,3vw,34px); border-right:none; border-left:1px solid rgba(255,255,255,.25) }
.hero-stat:last-child{ border:none; margin:0; padding:0 }
.hero-stat-num{ font-family:var(--display); font-size:clamp(1.3rem,2.6vw,1.9rem); font-weight:700; color:var(--white); line-height:1; white-space:nowrap }
.hero-stat-lbl{ font-size:.68rem; color:rgba(255,255,255,.72); text-transform:uppercase; letter-spacing:.04em; margin-top:5px; white-space:nowrap }
html[dir="rtl"] .hero-stat-lbl{ letter-spacing:0; font-size:.76rem }

.hero-dots{ position:absolute; z-index:3; right:40px; bottom:26px; display:flex; gap:8px }
html[dir="rtl"] .hero-dots{ right:auto; left:40px }
@media(max-width:980px){ .hero-dots{ right:24px; bottom:16px } html[dir="rtl"] .hero-dots{ left:24px } }
.hero-dot{ width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,.4); border:none; transition:all .3s }
.hero-dot.active{ background:var(--white); width:22px; border-radius:4px }

/* ══════════════════════════════════════════════════════
   SHARED SECTION
══════════════════════════════════════════════════════ */
.sec{ padding:84px 40px }
@media(max-width:900px){ .sec{ padding:60px 24px } }
@media(max-width:480px){ .sec{ padding:48px 18px } }
.sec-head{ max-width:640px; margin-bottom:52px }
.sec-head.center{ margin-left:auto; margin-right:auto; text-align:center }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px; font-size:.72rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:var(--sage-dk); margin-bottom:14px;
}
html[dir="rtl"] .eyebrow{ letter-spacing:0; font-size:.86rem }
.eyebrow::before{ content:''; width:26px; height:1px; background:var(--sage-dk) }
.sec-head.center .eyebrow{ justify-content:center }
html[dir="rtl"] .eyebrow::before{ order:2 }
.sec-title{ font-family:var(--display); font-weight:600; font-size:clamp(1.9rem,3.2vw,2.9rem); line-height:1.12; color:var(--ink); margin-bottom:16px; text-transform:uppercase; letter-spacing:.01em }
html[dir="rtl"] .sec-title{ font-family:var(--ar); font-weight:700; font-size:clamp(1.7rem,3.2vw,2.6rem); line-height:1.3 }
.sec-title em{ font-style:normal; font-weight:700; color:var(--sage-dk) }
html[dir="rtl"] .sec-title em{ font-style:normal }
.sec-desc{ font-size:1rem; color:var(--ink-soft); line-height:1.85 }
html[dir="rtl"] .sec-desc{ font-size:1.05rem }

.fu{ opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease) }
.fu.vis{ opacity:1; transform:none }

/* ══════════════════════════════════════════════════════
   SERVICES — core grid, numbered like a pressed stack
══════════════════════════════════════════════════════ */
.services-sec{ background:var(--white) }
.svc-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:18px; overflow:hidden }
@media(max-width:980px){ .svc-grid{ grid-template-columns:repeat(2,1fr) } }
@media(max-width:520px){ .svc-grid{ grid-template-columns:1fr } }
.svc-card{ background:var(--white); padding:32px 26px; transition:background .25s; position:relative }
.svc-card:hover{ background:var(--sage-pale) }
.svc-ico-badge{
  width:52px; height:52px; border-radius:50%; background:var(--sage);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.svc-ico{ width:26px; height:26px; color:var(--white) }
.svc-name{ font-family:var(--display); font-size:1.05rem; font-weight:700; margin-bottom:8px; color:var(--ink); text-transform:uppercase; letter-spacing:.01em }
html[dir="rtl"] .svc-name{ font-family:var(--ar); font-weight:700; font-size:1.12rem }
.svc-desc{ font-size:.86rem; color:var(--ink-soft); line-height:1.7 }
html[dir="rtl"] .svc-desc{ font-size:.92rem; line-height:1.8 }

/* ══════════════════════════════════════════════════════
   ADDITIONAL SERVICES — intro left, compact rows right
══════════════════════════════════════════════════════ */
.extra-sec{ background:var(--sage-pale) }
.extra-wrap{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:center }
@media(max-width:860px){ .extra-wrap{ grid-template-columns:1fr; gap:28px } }
.extra-left .sec-desc{ margin-top:2px }
.extra-right{ display:flex; flex-direction:column; background:var(--white); border:1px solid var(--line); border-radius:16px; padding:6px 22px }
.extra-row{ display:flex; gap:16px; align-items:flex-start; padding:18px 0; border-bottom:1px dashed var(--line) }
.extra-row:last-child{ border-bottom:none }
html[dir="rtl"] .extra-row{ text-align:right }
.extra-ico{ font-size:1.25rem; flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; background:var(--sage); border-radius:50% }
.extra-name{ font-family:var(--display); font-size:.98rem; font-weight:700; margin-bottom:3px; color:var(--ink); text-transform:uppercase; letter-spacing:.01em }
html[dir="rtl"] .extra-name{ font-family:var(--ar); font-weight:700; font-size:1rem }
.extra-desc{ font-size:.84rem; color:var(--ink-soft); line-height:1.6 }
html[dir="rtl"] .extra-desc{ font-size:.9rem }


/* ══════════════════════════════════════════════════════
   PROCESS STRIP — how it works (real sequence -> numbers ok)
   discrete step-circles joined by directional arrows, not
   one continuous line
══════════════════════════════════════════════════════ */
.process-sec{ background:var(--linen) }
.process-grid{
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;
  gap:0; margin-top:8px; align-items:start;
}
@media(max-width:900px){ .process-grid{ grid-template-columns:1fr 1fr; row-gap:36px; column-gap:24px } }
@media(max-width:520px){ .process-grid{ grid-template-columns:1fr } }

.process-step{ position:relative; padding-right:20px }
html[dir="rtl"] .process-step{ padding-right:0; padding-left:20px }
@media(max-width:900px){ .process-step{ padding:0 } }

.process-arrow{
  display:flex; align-items:center; justify-content:center; color:var(--sage);
  padding-top:16px; opacity:.75;
}
html[dir="rtl"] .process-arrow svg{ transform:scaleX(-1) }
@media(max-width:900px){ .process-arrow{ display:none } }

.process-num{
  display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px;
  border-radius:50%; background:var(--white); border:1.5px solid var(--sage);
  font-family:var(--display); font-size:.92rem; font-weight:700; color:var(--sage-dk); margin-bottom:14px;
}
.process-ico{
  display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px;
  border-radius:50%; background:var(--sage); font-size:1.2rem; margin-bottom:14px;
}
.process-name{ font-weight:700; font-size:1rem; color:var(--ink); margin-bottom:6px }
html[dir="rtl"] .process-name{ font-size:1.05rem }
.process-desc{ font-size:.86rem; color:var(--ink-soft); line-height:1.7; max-width:240px }
html[dir="rtl"] .process-desc{ font-size:.92rem }

/* ══════════════════════════════════════════════════════
   CONTACT BAND — details in left panel, map fills right
══════════════════════════════════════════════════════ */
.contact-sec{ background:var(--white) }
.contact-wrap{
  display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line); border-radius:22px; overflow:hidden;
  min-height:560px;
}
@media(max-width:820px){ .contact-wrap{ grid-template-columns:1fr; min-height:auto } }
.contact-left{
  background:var(--ink); color:var(--white); padding:52px 48px; display:flex; flex-direction:column;
  justify-content:center; gap:18px;
}
@media(max-width:600px){ .contact-left{ padding:40px 26px } }
.contact-left .eyebrow{ color:var(--sage-lt) }
.contact-left .eyebrow::before{ background:var(--sage-lt) }
.contact-left-title{ font-family:var(--display); font-size:clamp(1.6rem,2.8vw,2.2rem); font-weight:500; margin-bottom:4px }
html[dir="rtl"] .contact-left-title{ font-family:var(--ar); font-weight:700 }
.contact-left-desc{ color:rgba(255,255,255,.62); font-size:.92rem; line-height:1.75; max-width:400px }
html[dir="rtl"] .contact-left-desc{ font-size:.98rem }
.contact-call-btn{
  display:inline-flex; align-items:center; gap:12px; background:var(--sage); color:var(--white);
  padding:15px 24px; border-radius:14px; transition:background .2s; width:fit-content;
}
html[dir="rtl"] .contact-call-btn{ flex-direction:row-reverse }
.contact-call-btn:hover{ background:var(--sage-dk) }
.contact-phone-num{ font-size:1.15rem; font-weight:700 }
.contact-call-sub{ font-size:.66rem; text-transform:uppercase; letter-spacing:.1em; opacity:.8 }
html[dir="rtl"] .contact-call-sub{ letter-spacing:0; font-size:.75rem }

.map-directions{
  display:inline-flex; align-items:center; gap:8px; font-size:.78rem; font-weight:700; color:var(--sage-lt);
  margin-top:8px;
}
html[dir="rtl"] .map-directions{ flex-direction:row-reverse }
.map-directions:hover{ color:var(--white) }
.ci-row{ display:flex; gap:14px; align-items:flex-start }
html[dir="rtl"] .ci-row{ text-align:right }
.ci-ico{ width:36px; height:36px; flex-shrink:0; border-radius:50%; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); display:flex; align-items:center; justify-content:center; font-size:.88rem }
.ci-lbl{ font-size:.66rem; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.5); margin-bottom:3px }
html[dir="rtl"] .ci-lbl{ letter-spacing:0; font-size:.76rem }
.ci-val{ font-size:.92rem; color:var(--white); font-weight:600 }

.ci-socials{ display:flex; gap:10px; margin-top:8px }
html[dir="rtl"] .ci-socials{ flex-direction:row-reverse }
.ci-social-ico{
  display:flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:var(--white);
  transition:background .2s, border-color .2s, transform .2s;
}
.ci-social-ico:hover{ background:var(--sage); border-color:var(--sage); transform:translateY(-2px) }

.contact-right{ display:flex }
.map-wrap{ position:relative; overflow:hidden; width:100%; height:100%; min-height:320px; background:var(--linen-dp) }
.map-wrap iframe{ width:100%; height:100%; min-height:320px; border:0; display:block }
@media(max-width:820px){ .map-wrap{ min-height:340px } .map-wrap iframe{ min-height:340px } }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer{
  background:var(--linen-dp); color:var(--ink-soft); padding:34px 40px; display:flex; align-items:center;
  justify-content:space-between; gap:24px; flex-wrap:wrap; border-top:1px solid var(--line);
}
html[dir="rtl"] footer{ direction:rtl }
.foot-brand{ display:flex; align-items:center; gap:16px }
.foot-brand-logo{ height:44px; width:auto }
.foot-copy{ font-size:.78rem; line-height:1.7 }
.foot-phone{ font-weight:700 }
.foot-links{ display:flex; gap:20px; flex-wrap:wrap }
.foot-links a{ font-size:.78rem; color:var(--ink-soft); transition:color .2s }
.foot-links a:hover{ color:var(--sage-dk) }

/* ══════════════════════════════════════════════════════
   FLOATING CALL BUTTON
══════════════════════════════════════════════════════ */
.float-call{
  position:fixed; bottom:22px; right:22px; z-index:9999; display:flex; align-items:center; gap:10px;
  background:var(--ink); color:var(--white); padding:14px 22px; border-radius:50px;
  font-size:.82rem; font-weight:700; letter-spacing:.03em; box-shadow:0 6px 22px rgba(43,52,64,.35);
  transition:all .25s var(--ease);
}
html[dir="rtl"] .float-call{ right:auto; left:22px; flex-direction:row-reverse }
.float-call:hover{ background:var(--sage-dk); transform:translateY(-2px) }
@media(max-width:480px){
  .float-call{ padding:15px; border-radius:50%; width:52px; height:52px; justify-content:center }
  .float-call-txt{ display:none }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — NAV / HERO
══════════════════════════════════════════════════════ */
@media(max-width:980px){
  nav{ padding:0 20px }
  .nav-links{ display:none }
  .nav-phone{ display:none }
  .hamburger{ display:flex }
}
@media(max-width:640px){
  .hero-ctas{ flex-direction:column; align-items:stretch }
  .hero-ctas .btn-primary,.hero-ctas .btn-secondary{ justify-content:center }
  .hero-strip{ max-width:100% }
  .hero-stat{ padding-right:12px; margin-right:12px }
  html[dir="rtl"] .hero-stat{ padding-left:12px; margin-left:12px }
  .hero-stat-num{ font-size:1.15rem }
  .hero-stat-lbl{ font-size:.6rem }
  html[dir="rtl"] .hero-stat-lbl{ font-size:.68rem }
}
