/* ===========================================================
   ابو باسط نقل اثاث — Main Stylesheet
   تصميم مسطح وبسيط وملون: ألوان صريحة بدون تدرجات أو حدود سميكة أو ظلال قوية
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root{
  --ink: #2D3436;
  --text-soft: #636E72;

  --bg: #FFFFFF;
  --bg-soft: #F6F7FB;

  --coral: #FF6B4A;
  --coral-soft: #FFEDE7;

  --mint: #00B894;
  --mint-soft: #E1F7F1;

  --violet: #6C5CE7;
  --violet-soft: #ECEAFD;

  --amber: #FDA429;
  --amber-soft: #FFF2DF;

  --rose: #FD79A8;
  --rose-soft: #FFEBF2;

  --sky: #0984E3;
  --sky-soft: #E5F1FD;

  --border: #ECEEF2;
  --radius: 20px;
  --shadow: 0 4px 18px rgba(45,52,54,.07);
  --shadow-hover: 0 10px 26px rgba(45,52,54,.11);
}

*{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; }

body{
  font-family: 'Cairo', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }

a{ text-decoration: none; color: inherit; }

ul{ list-style: none; }

button{ font-family: inherit; cursor: pointer; border: none; background: none; }

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

section{ padding: 88px 0; }

h1, h2, h3, h4{ font-weight: 800; line-height: 1.35; }

.section-head{ text-align: center; max-width: 640px; margin: 0 auto 50px; }

.section-head h2{ font-size: clamp(28px, 4vw, 40px); color: var(--ink); margin-bottom: 14px; }

.section-head p{ color: var(--text-soft); font-size: 17px; }

.section-head.right{ text-align: right; margin: 0 0 32px; max-width: none; }

/* scroll reveal */
.reveal{ opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  white-space: nowrap;
}

.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn:active{ transform: translateY(0); opacity: .92; }

.btn svg{ width: 20px; height: 20px; flex-shrink: 0; }

.btn-call{ background: var(--ink); color: #fff; }

.btn-whatsapp{ background: #25D366; color: #fff; }

.btn-outline{ background: #fff; color: var(--ink); border: 1px solid var(--border); }

.btn-block{ width: 100%; justify-content: center; }

/* ===========================================================
   HEADER
   =========================================================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo{ display: flex; align-items: center; flex-shrink: 0; }

.logo img{ height: 64px; width: auto; }

.main-nav{ display: flex; }

/* مهم: هذا السيلكتور يستهدف قائمة المستوى الأول بس، مو كل ul جوه main-nav،
   عشان قائمة الدروب داون ما تاخذ نفس نمط flex الأفقي وتطلع بصف واحد */
.main-nav > ul{ display: flex; align-items: center; gap: 4px; }

.main-nav > ul > li{ position: relative; }

.main-nav a{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  transition: color .2s ease, background .2s ease;
}

.main-nav > ul > li > a:hover{ color: var(--coral); background: var(--coral-soft); }

.has-dropdown > a::after{
  content: '';
  width: 7px;
  height: 7px;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform .2s ease;
}

.has-dropdown:hover > a::after{ transform: rotate(225deg); margin-top: 4px; }

.has-dropdown{ padding-bottom: 14px; margin-bottom: -14px; }

.dropdown{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.has-dropdown:hover .dropdown{ opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown li a{ display: block; padding: 11px 14px; border-radius: 10px; font-weight: 500; font-size: 15px; }

.dropdown li a:hover{ background: var(--coral-soft); color: var(--coral); }

.header-cta{ display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.header-call{
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: #fff;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15.5px;
  direction: ltr;
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-call:hover{ transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.header-call svg{ width: 18px; height: 18px; }

.menu-toggle{ display: none; flex-direction: column; gap: 5px; padding: 6px; }

.menu-toggle span{ width: 26px; height: 3px; background: var(--ink); border-radius: 3px; }

/* ---------- Breadcrumb (inner pages) ---------- */

.breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 20px;
}

.breadcrumb a:hover{ color: var(--coral); }
.breadcrumb .sep{ opacity: .5; }
.breadcrumb .current{ color: var(--ink); font-weight: 700; }

/* ---------- Included / not included checklist ---------- */

.check-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.check-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.check-icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon svg{ width: 15px; height: 15px; }

.check-icon.no{ background: var(--rose-soft); color: var(--rose); }

.check-item p{ font-size: 14.5px; color: var(--ink); font-weight: 600; }

/* ---------- Note / callout box ---------- */

.note-box{
  background: var(--amber-soft);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.note-box .note-icon{
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.note-box .note-icon svg{ width: 20px; height: 20px; }

.note-box p{ font-size: 15px; color: var(--ink); font-weight: 600; }

/* ---------- Page tag pill (inner page hero) ---------- */

.page-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--coral-soft);
  color: var(--coral);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.page-tag svg{ width: 15px; height: 15px; }

.page-tag.mint{ background: var(--mint-soft); color: var(--mint); }
.page-tag.violet{ background: var(--violet-soft); color: var(--violet); }
.page-tag.sky{ background: var(--sky-soft); color: var(--sky); }
.page-tag.amber{ background: var(--amber-soft); color: var(--amber); }
.page-tag.rose{ background: var(--rose-soft); color: var(--rose); }

/* ---------- Inner page hero (About / Services hub / Service pages) ---------- */

.page-hero{ padding: 36px 0 76px; background: var(--bg); }

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

.page-hero-text h1{ font-size: clamp(32px, 4.4vw, 48px); color: var(--ink); margin-bottom: 18px; }

.page-hero-text h1 span{ color: var(--coral); }

.page-hero-text .lead{ font-size: 17px; color: var(--text-soft); max-width: 520px; margin-bottom: 26px; }

.page-hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; }

.intro-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.intro-cta svg{ width: 17px; height: 17px; color: var(--coral); flex-shrink: 0; }

.hero-media.bg-coral::before{ background: var(--coral-soft); }
.hero-media.bg-mint::before{ background: var(--mint-soft); }
.hero-media.bg-violet::before{ background: var(--violet-soft); }
.hero-media.bg-sky::before{ background: var(--sky-soft); }
.hero-media.bg-amber::before{ background: var(--amber-soft); }
.hero-media.bg-rose::before{ background: var(--rose-soft); }

/* ---------- Quick fact cards (3-up strip under intro) ---------- */

.fact-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }

.fact-card{
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.fact-card .fact-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--coral-soft);
  color: var(--coral);
}

.fact-card .fact-icon svg{ width: 19px; height: 19px; }

.fact-card strong{ display: block; font-size: 14.5px; color: var(--ink); }
.fact-card span{ font-size: 12px; color: var(--text-soft); font-weight: 600; }

.fact-icon.mint{ background: var(--mint-soft); color: var(--mint); }
.fact-icon.violet{ background: var(--violet-soft); color: var(--violet); }
.fact-icon.sky{ background: var(--sky-soft); color: var(--sky); }
.fact-icon.amber{ background: var(--amber-soft); color: var(--amber); }
.fact-icon.rose{ background: var(--rose-soft); color: var(--rose); }
.fact-icon.coral{ background: var(--coral-soft); color: var(--coral); }

/* ---------- Rich content sections (About / Service page body) ---------- */

.content-section{ background: var(--bg); }
.content-section.alt{ background: var(--bg-soft); }

.content-block{ max-width: 800px; margin: 0 auto; }

.content-block .kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 12px;
}

.content-block h2{ font-size: clamp(25px, 3.4vw, 32px); margin-bottom: 18px; }

.content-block h3{ font-size: 19.5px; margin: 30px 0 12px; color: var(--ink); }

.content-block p{ color: var(--text-soft); font-size: 16px; margin-bottom: 14px; }

.content-block p strong{ color: var(--ink); }

.content-block ul{ margin: 14px 0 18px; display: flex; flex-direction: column; gap: 11px; }

.content-block ul li{
  position: relative;
  padding-right: 26px;
  color: var(--text-soft);
  font-size: 15.5px;
}

.content-block ul li::before{
  content: '';
  position: absolute;
  right: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.content-block.mint ul li::before{ background: var(--mint); }
.content-block.violet ul li::before{ background: var(--violet); }
.content-block.sky ul li::before{ background: var(--sky); }
.content-block.amber ul li::before{ background: var(--amber); }
.content-block.rose ul li::before{ background: var(--rose); }

/* ---------- CTA color variants ---------- */

.cta-section.mint{ background: var(--mint); }
.cta-section.violet{ background: var(--violet); }
.cta-section.sky{ background: var(--sky); }
.cta-section.amber{ background: var(--amber); }
.cta-section.rose{ background: var(--rose); }

.cta-inner p{ color: rgba(255,255,255,.88); }

/* ---------- Contact page: centered hero ---------- */

.contact-hero{ padding: 40px 0 20px; background: var(--bg); text-align: center; }

.contact-hero .breadcrumb{ justify-content: center; }

.contact-hero h1{ font-size: clamp(32px, 4.4vw, 48px); color: var(--ink); margin-bottom: 16px; }

.contact-hero h1 span{ color: var(--coral); }

.contact-hero .lead{ font-size: 17px; color: var(--text-soft); max-width: 560px; margin: 0 auto; }

/* ---------- Contact channel cards ---------- */

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

.channel-card{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 30px 28px;
  border-radius: var(--radius);
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.channel-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.channel-icon{
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(255,255,255,.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-icon svg{ width: 25px; height: 25px; }

.channel-card h3{ font-size: 19px; }

.channel-card p{ font-size: 14px; opacity: .92; }

.channel-card .channel-value{ font-size: 16.5px; font-weight: 800; direction: ltr; text-align: right; }

/* ---------- Map section: full-bleed with floating card ---------- */

.map-section{ background: var(--bg-soft); }

.map-wrap{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  line-height: 0;
}

.map-wrap iframe{
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
  filter: grayscale(.15) contrast(1.03);
}

.map-float-card{
  position: absolute;
  top: 28px;
  right: 28px;
  background: #fff;
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: var(--shadow-hover);
  max-width: 300px;
}

.map-float-card .map-badge{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.map-float-card .map-badge svg{ width: 13px; height: 13px; }

.map-float-card h4{ font-size: 18px; margin-bottom: 8px; }

.map-float-card p{ font-size: 14px; color: var(--text-soft); margin-bottom: 18px; }

.map-float-card .btn{ padding: 12px 22px; font-size: 14px; width: 100%; justify-content: center; }

/* ---------- City page: subtitle under H1 ---------- */

.page-hero-text .subtitle{
  display: inline-block;
  font-size: 16.5px;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 16px;
}

/* ---------- Price table (city pages) ---------- */

.price-table{
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.price-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
}

.price-row:last-child{ border-bottom: none; }

.price-row:nth-child(odd){ background: var(--bg-soft); }

.price-type{
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.price-icon{
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--coral-soft);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-icon svg{ width: 17px; height: 17px; }

.price-value{ font-weight: 800; font-size: 16px; color: var(--coral); white-space: nowrap; }

.price-value span{ font-size: 12.5px; color: var(--text-soft); font-weight: 600; }

/* ---------- Reviews grid (static 3-up, city pages) ---------- */

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

/* ===========================================================
   HERO
   =========================================================== */

.hero{ padding: 56px 0 88px; background: var(--bg); }

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

.hero-text h1{ font-size: clamp(38px, 5vw, 60px); color: var(--ink); margin-bottom: 16px; }

.hero-text h1 span{ color: var(--coral); }

.hero-text .tagline{ font-size: 18.5px; color: var(--text-soft); max-width: 500px; margin-bottom: 30px; }

.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }

.hero-trust{ display: flex; gap: 10px; flex-wrap: wrap; }

.hero-chip{
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-soft);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

.hero-chip svg{ width: 15px; height: 15px; color: var(--coral); flex-shrink: 0; }

.hero-media{ position: relative; }

.hero-media::before{
  content: '';
  position: absolute;
  width: 88%;
  height: 88%;
  background: var(--amber-soft);
  border-radius: 32px;
  top: -22px;
  right: -22px;
  z-index: 0;
}

.hero-media img{
  position: relative;
  z-index: 1;
  border-radius: 28px;
  box-shadow: var(--shadow-hover);
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
}

/* ===========================================================
   ABOUT / NO 1 SECTION
   =========================================================== */

.about-section{ background: var(--bg-soft); }

.about-section .container{
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.about-text h2{ font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 20px; }

.about-text p{ color: var(--text-soft); margin-bottom: 16px; font-size: 16.5px; }

.stat-strip{ display: flex; align-items: center; gap: 30px; margin-top: 34px; flex-wrap: wrap; }

.stat-item strong{ display: block; font-size: 40px; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.stat-item:nth-of-type(1) strong{ color: var(--coral); }
.stat-item:nth-of-type(2) strong{ color: var(--sky); }

.stat-item span{ font-size: 13.5px; color: var(--text-soft); font-weight: 600; max-width: 160px; display: block; }

.stat-divider{ width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ===========================================================
   SERVICES
   =========================================================== */

.services-section{ background: var(--bg); }

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

.service-card{
  display: block;
  border-radius: var(--radius);
  padding: 32px 26px;
  color: #fff;
  transition: transform .22s ease, box-shadow .22s ease;
}

.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.service-icon{
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,.22);
}

.service-icon svg{ width: 27px; height: 27px; }

.service-card h3{ font-size: 20px; margin-bottom: 10px; }

.service-card p{ font-size: 15px; margin-bottom: 18px; opacity: .92; }

.service-link{ font-size: 14.5px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; color: #fff; }

.service-link svg{ width: 15px; height: 15px; transition: transform .2s ease; }
.service-card:hover .service-link svg{ transform: translateX(-4px); }

.c-orange{ background: var(--coral); }
.c-teal{ background: var(--mint); }
.c-purple{ background: var(--violet); }
.c-yellow{ background: var(--amber); }
.c-blue{ background: var(--sky); }
.c-pink{ background: var(--rose); }

/* ===========================================================
   PROCESS — 4 steps
   =========================================================== */

.process-section{ background: var(--bg); }

.process-grid{ position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.process-grid::before{
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step{ position: relative; z-index: 1; text-align: center; }

.process-num{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 27px;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--shadow);
}

.process-step:nth-child(1) .process-num{ background: var(--coral); }
.process-step:nth-child(2) .process-num{ background: var(--mint); }
.process-step:nth-child(3) .process-num{ background: var(--violet); }
.process-step:nth-child(4) .process-num{ background: var(--rose); }

.process-step h4{ font-size: 17.5px; margin-bottom: 8px; }
.process-step p{ font-size: 14.5px; color: var(--text-soft); }

.process-cta{ text-align: center; margin-top: 46px; }
.process-cta p{ color: var(--text-soft); margin-bottom: 18px; font-size: 15.5px; }

/* ===========================================================
   WHY CHOOSE US — عناصر متساوية + بنر تواصل
   =========================================================== */

.why-section{ background: var(--bg-soft); }

.why-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 22px; }

.why-card{
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.why-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.why-icon{
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
}

.why-icon svg{ width: 25px; height: 25px; }

.why-card:nth-child(1) .why-icon{ background: var(--coral); }
.why-card:nth-child(2) .why-icon{ background: var(--mint); }
.why-card:nth-child(3) .why-icon{ background: var(--violet); }
.why-card:nth-child(4) .why-icon{ background: var(--sky); }

.why-card h4{ font-size: 17.5px; margin-bottom: 8px; }
.why-card p{ font-size: 14.5px; color: var(--text-soft); }

.why-strip{
  background: var(--amber);
  border-radius: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 30px;
}

.why-strip .strip-text{ display: flex; align-items: center; gap: 16px; }

.why-strip .strip-icon{
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,.26);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-strip .strip-icon svg{ width: 22px; height: 22px; }

.why-strip h4{ font-size: 17px; margin-bottom: 2px; }
.why-strip p{ font-size: 13.5px; opacity: .92; }

.why-strip .strip-actions{ display: flex; gap: 10px; }

.strip-btn{
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease;
}
.strip-btn:hover{ transform: translateY(-2px); }
.strip-btn svg{ width: 16px; height: 16px; }
.strip-btn.wa{ background: #25D366; }

/* ===========================================================
   AREAS WE SERVE
   =========================================================== */

.areas-section{ background: var(--bg); }

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

.area-card{
  display: block;
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform .22s ease, box-shadow .22s ease;
  color: #fff;
}

.area-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.area-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.24);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.area-icon svg{ width: 20px; height: 20px; }

.area-card h3{ font-size: 18.5px; margin-bottom: 8px; }
.area-card p{ font-size: 13.5px; opacity: .92; }

.area-card .service-link{ margin-top: 16px; }

.area-1{ background: var(--coral); }
.area-2{ background: var(--mint); }
.area-3{ background: var(--violet); }
.area-4{ background: var(--amber); }
.area-5{ background: var(--sky); }
.area-6{ background: var(--rose); }

/* ===========================================================
   GALLERY — من شغلنا
   =========================================================== */

.gallery-section{ background: var(--bg-soft); }

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

.gallery-item{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item:hover img{ transform: scale(1.07); }

.gallery-caption{
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  background: linear-gradient(0deg, rgba(45,52,54,.75) 0%, transparent 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */

.testimonials-section{ background: var(--bg); }

.testi-track-wrap{ position: relative; }

.testi-track{
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  direction: ltr;
  padding: 6px 2px 26px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar{ display: none; }

.testi-slide{ flex: 0 0 100%; scroll-snap-align: start; }

.testi-card{
  position: relative;
  background: var(--bg-soft);
  border-radius: 22px;
  padding: 32px 28px;
  direction: rtl;
  height: 100%;
  overflow: hidden;
}

.testi-card::before{
  content: '\201D';
  position: absolute;
  top: -46px;
  right: 14px;
  font-size: 160px;
  font-weight: 900;
  color: rgba(45,52,54,.06);
  line-height: 1;
  z-index: 0;
  font-family: Georgia, serif;
}

.testi-top{ position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.testi-avatar{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.avatar-1{ background: var(--coral); }
.avatar-2{ background: var(--sky); }
.avatar-3{ background: var(--violet); }
.avatar-4{ background: var(--mint); }
.avatar-5{ background: var(--rose); }
.avatar-6{ background: var(--amber); }

.testi-name{ font-weight: 700; color: var(--ink); font-size: 15px; }
.testi-city{ font-size: 12.5px; color: var(--text-soft); font-weight: 600; }

.testi-stars{ position: relative; z-index: 1; color: var(--amber); margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }

.testi-text{ position: relative; z-index: 1; font-size: 15.5px; color: var(--ink); line-height: 1.9; min-height: 130px; }

.testi-controls{ display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 16px; }

.testi-arrow{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.testi-arrow:hover{ background: var(--coral); color: #fff; transform: translateY(-2px); }
.testi-arrow svg{ width: 18px; height: 18px; }

.testi-dots{ display: flex; gap: 9px; }

.testi-dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--border); transition: background .2s ease, width .2s ease; }

.testi-dot.active{ background: var(--coral); width: 26px; border-radius: 6px; }

@media (min-width: 641px){ .testi-slide{ flex-basis: calc(50% - 11px); } }

@media (min-width: 1000px){ .testi-slide{ flex-basis: calc(33.333% - 15px); } }

/* ===========================================================
   FAQ
   =========================================================== */

.faq-section{ background: var(--bg-soft); }

.faq-list{ max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s ease;
}

.faq-item.open{ box-shadow: var(--shadow); }

.faq-question{
  width: 100%;
  cursor: pointer;
  padding: 21px 24px;
  font-weight: 700;
  font-size: 16.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: right;
  color: var(--ink);
}

.faq-plus{
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--coral-soft);
  flex-shrink: 0;
  transition: transform .3s ease, background .2s ease;
}

.faq-plus::before,
.faq-plus::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--coral);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq-plus::before{ width: 14px; height: 2px; }
.faq-plus::after{ width: 2px; height: 14px; }

.faq-item.open .faq-plus{ transform: rotate(45deg); background: var(--coral); }
.faq-item.open .faq-plus::before,
.faq-item.open .faq-plus::after{ background: #fff; }

.faq-answer-wrap{ display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }

.faq-item.open .faq-answer-wrap{ grid-template-rows: 1fr; }

.faq-answer-inner{ overflow: hidden; }

.faq-answer{ padding: 0 24px 22px; color: var(--text-soft); font-size: 15.5px; }

/* ===========================================================
   CTA — full bleed
   =========================================================== */

.cta-section{ background: var(--coral); padding: 80px 0; }

.cta-inner{ text-align: center; max-width: 640px; margin: 0 auto; }

.cta-inner h2{ color: #fff; font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; }
.cta-inner p{ font-size: 16.5px; margin-bottom: 32px; }

.cta-actions{ display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.cta-actions .btn-call{ background: var(--ink); color: #fff; }
.cta-actions .btn-whatsapp{ background: #25D366; color: #fff; }

.cta-trust{ margin-top: 26px; color: #FFDFD3; font-size: 14px; }

/* ===========================================================
   FOOTER
   =========================================================== */

.site-footer{ background: var(--ink); color: #C7CBCF; padding: 72px 0 0; }

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo img{ height: 46px; margin-bottom: 18px; filter: brightness(0) invert(1); }

.footer-about p{ font-size: 14.5px; line-height: 1.8; color: #9AA0A6; margin-bottom: 20px; }

.footer-social{ display: flex; gap: 10px; }

.footer-social a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover{ background: var(--coral); }
.footer-social svg{ width: 18px; height: 18px; }

.footer-col h4{ color: #fff; font-size: 16.5px; margin-bottom: 20px; }

.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }

.footer-col a{ font-size: 14.5px; color: #9AA0A6; transition: color .2s ease; }
.footer-col a:hover{ color: var(--coral); }

.footer-contact li{ display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: #9AA0A6; }

.footer-contact svg{ width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; color: var(--coral); }
.footer-contact a{ direction: ltr; text-align: right; }

.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13.5px;
  color: #767C82;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a{ color: #9AA0A6; }
.footer-bottom a:hover{ color: var(--coral); }

/* ===========================================================
   الأزرار العائمة: اتصال وواتساب
   =========================================================== */

.sticky-actions{
  position: fixed;
  left: 20px;
  bottom: 22px;
  z-index: 550;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-btn{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-hover);
  transition: transform .2s ease;
}

.sticky-btn:hover{ transform: scale(1.08); }

.sticky-btn svg{ width: 26px; height: 26px; }

.sticky-btn.wa{ background: #25D366; }
.sticky-btn.call{ background: var(--coral); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width: 1080px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .areas-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px){
  .main-nav, .header-cta .btn-outline{ display: none; }
  .menu-toggle{ display: flex; }

  .hero .container, .about-section .container, .page-hero .container{ grid-template-columns: 1fr; }

  .hero-media{ order: -1; }
  .fact-grid{ grid-template-columns: 1fr 1fr; }

  .process-grid{ grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .process-grid::before{ display: none; }

  .channels-grid{ grid-template-columns: 1fr; }
  .map-float-card{ position: static; max-width: none; margin-top: 18px; border-radius: 20px; }
  .map-wrap{ border-radius: 20px; }
  .reviews-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  section{ padding: 56px 0; }
  .services-grid{ grid-template-columns: 1fr; }
  .areas-grid{ grid-template-columns: 1fr 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn{ flex: 1; justify-content: center; }
  .hero-actions{ width: 100%; }
  .footer-bottom{ flex-direction: column; text-align: center; }
  .process-grid{ grid-template-columns: 1fr; }
  .why-strip{ flex-direction: column; align-items: flex-start; }
  .stat-divider{ height: 38px; }
  .check-grid{ grid-template-columns: 1fr; }
  .note-box{ flex-direction: column; }
  .fact-grid{ grid-template-columns: 1fr; }
  .map-wrap iframe{ height: 340px; }
  .price-row{ padding: 16px 18px; }
  .price-type{ font-size: 13.5px; gap: 10px; }
  .price-icon{ width: 30px; height: 30px; }
  .sticky-actions{ left: 14px; bottom: 16px; }
  .sticky-btn{ width: 50px; height: 50px; }
  .sticky-btn svg{ width: 23px; height: 23px; }
}

/* Mobile nav panel (JS toggles .open on body) */

.mobile-nav{
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 600;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
}

body.nav-open .mobile-nav{ transform: translateX(0); }

.mobile-nav-top{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-nav-top img{ height: 42px; }

.mobile-close{ width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-soft); }
.mobile-close svg{ width: 20px; height: 20px; }

.mobile-nav ul{ display: flex; flex-direction: column; }

.mobile-nav > ul > li{ border-bottom: 1px solid var(--border); }

.mobile-nav a{ display: block; padding: 16px 4px; font-weight: 700; font-size: 17px; }

.mobile-sub{ padding-inline-start: 16px; display: none; flex-direction: column; }
.mobile-sub.open{ display: flex; }
.mobile-sub a{ font-weight: 500; font-size: 15px; padding: 12px 4px; }

.mobile-nav-cta{ margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
