/* ==========================================================================
   ModernFix — Marketing Website
   Design system: teal (#17A9B0) + coral (#E15A5F) on off-white,
   deep navy text. Cairo for Arabic, Poppins for Latin.
   ========================================================================== */

:root{
  --teal:        #14A8AE;
  --teal-dark:   #0C7F84;
  --teal-light:  #5FD1D6;
  --teal-tint:   #EAFAFA;
  --coral:       #E85A5F;
  --coral-dark:  #C93F45;
  --coral-tint:  #FFF1F1;
  --navy:        #10222B;
  --navy-soft:   #4C6470;
  --bg:          #FBFEFE;
  --bg-alt:      #F2FAFA;
  --line:        #E3EEEF;
  --white:       #FFFFFF;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(16,34,43,.06);
  --shadow-md: 0 12px 34px rgba(16,34,43,.10);
  --shadow-lg: 0 24px 60px rgba(16,34,43,.14);

  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .7s;

  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--bg);
  color: var(--navy);
  font-family:"Poppins","Cairo",sans-serif;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

html[lang="ar"] body,
body.lang-ar{
  font-family:"Cairo","Poppins",sans-serif;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
section{ position:relative; }

.container{
  width:100%;
  max-width: var(--container);
  margin-inline:auto;
  padding-inline: 24px;
}

/* ---------- language text swap ----------
   Elements carry data-ar="..." and data-en="..." attributes; main.js swaps
   their textContent to match the active language on load / toggle. */

/* ---------- headings ---------- */
h1,h2,h3,h4{
  margin:0 0 .5em;
  line-height:1.28;
  font-weight:800;
  color: var(--navy);
  letter-spacing:-.01em;
}
h1{ font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3{ font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p{ margin:0 0 1em; color: var(--navy-soft); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--teal-dark);
  background: var(--teal-tint);
  padding:7px 16px;
  border-radius:999px;
  margin-bottom:18px;
}
html[lang="ar"] .eyebrow{ letter-spacing:0; text-transform:none; }
.eyebrow::before{
  content:"";
  width:7px; height:7px; border-radius:50%;
  background: var(--coral);
  flex:none;
}

.section-head{
  max-width:680px;
  margin-bottom:56px;
}
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head p{ font-size:1.05rem; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:.98rem;
  border:2px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, color .35s, border-color .35s;
  white-space:nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color:#fff;
  box-shadow: 0 10px 24px rgba(20,168,174,.35);
}
.btn-primary:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px rgba(20,168,174,.42); }
.btn-coral{
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color:#fff;
  box-shadow: 0 10px 24px rgba(232,90,95,.35);
}
.btn-coral:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px rgba(232,90,95,.42); }
.btn-ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-ghost:hover{ border-color: var(--teal); color: var(--teal-dark); transform: translateY(-2px); }
.btn-white{
  background:#fff;
  color: var(--teal-dark);
  box-shadow: var(--shadow-md);
}
.btn-white:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-sm{ padding:11px 22px; font-size:.88rem; }

.store-badges{ display:flex; flex-wrap:wrap; gap:14px; }
.store-badge{
  display:flex; align-items:center; gap:12px;
  background: var(--navy);
  color:#fff;
  padding:11px 20px;
  border-radius:14px;
  transition: transform .3s var(--ease), background .3s;
}
.store-badge:hover{ transform: translateY(-3px); background:#0a1920; }
.store-badge svg{ flex:none; width:26px; height:26px; }
.store-badge .txt{ display:flex; flex-direction:column; line-height:1.2; text-align:start; }
.store-badge .txt small{ font-size:.66rem; opacity:.75; }
.store-badge .txt strong{ font-size:.95rem; font-weight:700; }

/* ---------- header ---------- */
.site-header{
  position:sticky; top:0; z-index:200;
  background: rgba(251,254,254,.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom:1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
.site-header.scrolled{
  box-shadow: 0 4px 24px rgba(16,34,43,.06);
  border-color: var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding-block:11px;
  gap:20px;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; font-size:1.2rem; }
.brand svg{ height:38px; width:auto; }
.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links a{
  padding:10px 16px;
  border-radius:999px;
  font-weight:600;
  font-size:.95rem;
  color: var(--navy-soft);
  transition: background .25s, color .25s;
}
.nav-links a:hover, .nav-links a.active{ background: var(--teal-tint); color: var(--teal-dark); }
.nav-actions{ display:flex; align-items:center; gap:10px; }

.lang-switch{
  display:flex; border:1px solid var(--line); border-radius:999px; padding:3px; gap:2px; background:#fff;
}
.lang-switch button{
  border:0; background:transparent; padding:7px 13px; border-radius:999px;
  font-weight:700; font-size:.8rem; color: var(--navy-soft); transition:.25s;
}
.lang-switch button.active{ background: var(--navy); color:#fff; }

.burger{
  display:none; flex-direction:column; gap:5px; background:none; border:0; padding:8px;
}
.burger span{ width:24px; height:2px; background:var(--navy); border-radius:2px; transition:.3s; }

.mobile-panel{
  display:none;
  position:fixed; inset:0; top:0; z-index:300;
  background: var(--bg);
  padding: 20px 24px 40px;
  overflow-y:auto;
}
.mobile-panel.open{ display:block; }
.mobile-panel .close-row{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px;}
.mobile-panel a{
  display:block; padding:16px 4px; font-size:1.2rem; font-weight:700;
  border-bottom:1px solid var(--line); color: var(--navy);
}

/* ---------- hero ---------- */
.hero{
  padding-block: 70px 40px;
  overflow:hidden;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute; inset-inline-end:-15%; top:-25%;
  width:60vw; height:60vw; max-width:820px; max-height:820px;
  background: radial-gradient(circle at 30% 30%, rgba(20,168,174,.20), transparent 65%);
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute; inset-inline-start:-20%; bottom:-30%;
  width:50vw; height:50vw; max-width:700px; max-height:700px;
  background: radial-gradient(circle at 70% 70%, rgba(232,90,95,.14), transparent 65%);
  z-index:0;
}
.hero-grid{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.05fr .95fr; gap:56px; align-items:center;
}
.hero-copy h1{ margin-bottom:.42em; }
.hero-copy h1 .block{ display:block; }
.hero-copy .accent{
  background: linear-gradient(100deg, var(--teal) 10%, var(--coral) 95%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-copy p.lead{ font-size:1.14rem; max-width:520px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-block: 30px 26px; }
.trust-row{ display:flex; flex-wrap:wrap; gap:26px; margin-top:10px; }
.trust-row .item{ display:flex; align-items:center; gap:10px; font-weight:700; font-size:.92rem; color:var(--navy); }
.trust-row .item svg{ width:22px; height:22px; color: var(--teal-dark); flex:none; }

.hero-visual{
  position:relative;
  display:flex; align-items:center; justify-content:center;
}
.phone-frame{
  position:relative;
  width: min(320px, 80vw);
  aspect-ratio: 9/18.3;
  border-radius: 46px;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1920 100%);
  padding:14px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
  transition: transform .6s var(--ease);
}
.phone-frame:hover{ transform: rotate(0deg); }
.phone-screen{
  width:100%; height:100%; border-radius:32px;
  background: linear-gradient(200deg, var(--teal) 0%, var(--teal-dark) 55%, var(--coral-dark) 130%);
  position:relative; overflow:hidden;
  display:flex; flex-direction:column; justify-content:space-between; padding:26px 18px;
}
.phone-screen .app-badge{
  align-self:flex-start; background:rgba(255,255,255,.18); color:#fff; font-size:.65rem; font-weight:700;
  padding:6px 12px; border-radius:999px; backdrop-filter: blur(6px);
}
.phone-screen .app-title{ color:#fff; font-weight:800; font-size:1.3rem; margin-top:auto; }
.phone-screen .app-sub{ color:rgba(255,255,255,.85); font-size:.82rem; }
.phone-cards{ display:flex; flex-direction:column; gap:10px; margin-top:14px; }
.phone-card{
  background:rgba(255,255,255,.94); border-radius:14px; padding:10px 12px;
  display:flex; align-items:center; gap:10px; box-shadow:0 6px 16px rgba(0,0,0,.12);
}
.phone-card .ico{ width:32px; height:32px; border-radius:9px; background: var(--teal-tint); display:flex; align-items:center; justify-content:center; color:var(--teal-dark); flex:none;}
.phone-card .txt strong{ display:block; font-size:.78rem; color:var(--navy); }
.phone-card .txt span{ font-size:.68rem; color:var(--navy-soft); }

.float-chip{
  position:absolute; background:#fff; border-radius:16px; padding:12px 16px;
  box-shadow: var(--shadow-md); display:flex; align-items:center; gap:10px;
  font-weight:700; font-size:.82rem; animation: floaty 5s ease-in-out infinite;
}
.float-chip svg{ width:20px; height:20px; color:var(--coral); flex:none; }
.chip-1{ top:8%; inset-inline-start:-6%; animation-delay:.2s; }
.chip-2{ bottom:12%; inset-inline-end:-8%; animation-delay:1.4s; }
@keyframes floaty{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }

/* ---------- logos / marquee ---------- */
.coverage-strip{
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding-block:26px; background: var(--bg-alt);
}
.coverage-strip .container{ display:flex; flex-wrap:wrap; gap:14px 34px; align-items:center; justify-content:center; }
.coverage-strip .emirate{ font-weight:700; color: var(--navy-soft); font-size:.92rem; display:flex; align-items:center; gap:8px;}
.coverage-strip .emirate svg{ width:16px; height:16px; color:var(--teal-dark); }

/* ---------- generic section spacing ---------- */
.section{ padding-block:100px; }
.section.alt{ background: var(--bg-alt); }
.section.tight{ padding-block:70px; }

/* ---------- about ---------- */
.about-grid{
  display:grid; grid-template-columns: .9fr 1.1fr; gap:64px; align-items:start;
}
.about-card{
  background: linear-gradient(150deg,#fff, var(--teal-tint));
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding:34px;
  box-shadow: var(--shadow-sm);
}
.value-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:8px;
}
.value-item{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  padding:22px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.value-item:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color:transparent; }
.value-item .ico{
  width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
  background: var(--teal-tint); color:var(--teal-dark); margin-bottom:14px;
}
.value-item:nth-child(even) .ico{ background: var(--coral-tint); color: var(--coral-dark); }
.value-item h4{ font-size:1rem; margin-bottom:6px; }
.value-item p{ font-size:.9rem; margin:0; }

.services-list{ columns:2; column-gap:28px; margin-top:10px; }
.services-list li{
  break-inside: avoid; display:flex; gap:10px; align-items:flex-start; padding:9px 0; font-size:.94rem; color:var(--navy);
}
.services-list li svg{ width:18px; height:18px; color: var(--teal-dark); flex:none; margin-top:3px; }

/* ---------- how it works ---------- */
.steps{
  display:grid; grid-template-columns: repeat(3,1fr); gap:26px; counter-reset: step;
}
.step-card{
  position:relative;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding:32px 26px 28px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-num{
  position:absolute; top:-16px; inset-inline-start:26px;
  width:36px; height:36px; border-radius:50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color:#fff; font-weight:800; font-size:.95rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 18px rgba(232,90,95,.4);
}
.step-ico{
  width:56px; height:56px; border-radius:16px; margin-top:14px; margin-bottom:18px;
  background: var(--teal-tint); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center;
}
.step-ico svg{ width:28px; height:28px; }
.step-card h3{ margin-bottom:8px; }
.step-card p{ font-size:.92rem; margin:0; }

/* ---------- why choose ---------- */
.feature-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md); padding:28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card .ico{
  width:48px; height:48px; border-radius:13px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color:#fff; margin-bottom:16px;
}
.feature-card:nth-child(3n-1) .ico{ background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.feature-card:nth-child(3n) .ico{ background: linear-gradient(135deg, var(--navy), #24404c); }

/* ---------- stats ---------- */
.stats-band{
  background: linear-gradient(120deg, var(--navy) 0%, #163540 60%, var(--teal-dark) 130%);
  border-radius: var(--radius-lg);
  padding:52px 40px;
  color:#fff;
  display:grid; grid-template-columns:repeat(4,1fr); gap:24px;
  position:relative; overflow:hidden;
}
.stats-band::after{
  content:""; position:absolute; inset-inline-end:-10%; top:-40%; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, rgba(232,90,95,.35), transparent 70%);
}
.stat{ position:relative; z-index:1; text-align:center; }
.stat .num{ font-size:2.2rem; font-weight:800; display:block; }
.stat .lbl{ font-size:.85rem; opacity:.8; }
.stat .note{ font-size:.7rem; opacity:.55; margin-top:2px; }

/* ---------- CTA download ---------- */
.cta-download{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 55%, var(--coral-dark) 130%);
  border-radius: var(--radius-lg);
  padding:64px 48px;
  color:#fff;
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-download h2{ color:#fff; }
.cta-download p{ color:rgba(255,255,255,.9); max-width:560px; margin-inline:auto; }
.cta-download .store-badges{ justify-content:center; margin-top:26px; }
.cta-download .store-badge{ background:rgba(255,255,255,.14); backdrop-filter:blur(6px); }
.cta-download .store-badge:hover{ background:rgba(255,255,255,.24); }

/* ---------- FAQ ---------- */
.faq-list{ display:flex; flex-direction:column; gap:14px; max-width:820px; margin-inline:auto; }
.faq-item{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-md);
  overflow:hidden; transition: border-color .3s, box-shadow .3s;
}
.faq-item.open{ border-color: var(--teal); box-shadow: var(--shadow-md); }
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 24px; font-weight:700; font-size:1rem; background:none; border:0; width:100%; text-align:start; color:var(--navy);
}
.faq-q .plus{
  flex:none; width:30px; height:30px; border-radius:50%; background: var(--teal-tint); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center; transition: transform .35s var(--ease), background .3s, color .3s;
}
.faq-item.open .faq-q .plus{ transform: rotate(135deg); background:var(--coral); color:#fff; }
.faq-a{
  max-height:0; overflow:hidden; transition: max-height .45s var(--ease);
  padding-inline:24px;
}
.faq-a p{ padding-bottom:22px; margin:0; font-size:.95rem; }
.faq-item.open .faq-a{ max-height:400px; }

/* ---------- Privacy ---------- */
.policy-doc{ max-width:840px; margin-inline:auto; }
.policy-doc h2{ margin-top:2em; font-size:1.3rem; display:flex; align-items:center; gap:12px; }
.policy-doc h2 .num{
  width:34px; height:34px; border-radius:10px; background: var(--teal-tint); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center; font-size:.95rem; flex:none;
}
.policy-doc ul{ margin: 0 0 1.2em; }
.policy-doc li{ display:flex; gap:10px; padding:6px 0; font-size:.96rem; color:var(--navy-soft); }
.policy-doc li svg{ width:16px; height:16px; margin-top:6px; color:var(--teal-dark); flex:none; }
.policy-meta{
  display:flex; flex-wrap:wrap; gap:14px; margin-bottom:40px;
}
.policy-meta span{
  background: var(--bg-alt); border:1px solid var(--line); padding:8px 16px; border-radius:999px; font-size:.82rem; font-weight:600; color:var(--navy-soft);
}
.notice-box{
  background: var(--coral-tint); border:1px solid #F6CACB; border-radius: var(--radius-md);
  padding:20px 24px; font-size:.92rem; color:#7c2a2e; margin-block:26px;
}

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap:48px; align-items:start; }
.contact-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding:30px; box-shadow: var(--shadow-sm);
  display:flex; gap:16px; align-items:flex-start; margin-bottom:16px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.contact-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ico{
  width:50px; height:50px; border-radius:14px; background: var(--teal-tint); color:var(--teal-dark);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.contact-card h4{ margin-bottom:4px; }
.contact-card .val{ font-weight:700; color:var(--navy); }
.contact-card .pending{
  display:inline-block; margin-top:6px; font-size:.72rem; font-weight:700; color:var(--coral-dark);
  background: var(--coral-tint); padding:3px 10px; border-radius:999px;
}
.social-row{ display:flex; gap:12px; margin-top:8px; }
.social-btn{
  width:44px; height:44px; border-radius:12px; background: var(--bg-alt); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; color:var(--navy); transition:.3s;
}
.social-btn:hover{ background: var(--teal); color:#fff; transform: translateY(-3px); border-color:transparent; }

.form-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding:36px; box-shadow: var(--shadow-md);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.85rem; font-weight:700; margin-bottom:8px; color:var(--navy); }
.field input, .field textarea, .field select{
  width:100%; padding:13px 16px; border-radius:12px; border:1.5px solid var(--line);
  background: var(--bg-alt); font-family:inherit; font-size:.95rem; color:var(--navy);
  transition: border-color .25s, background .25s;
}
.field input:focus, .field textarea:focus, .field select:focus{
  outline:none; border-color: var(--teal); background:#fff;
}
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:.8rem; color:var(--navy-soft); margin-top:14px; }

/* ---------- footer ---------- */
.site-footer{ background: var(--navy); color:#cfe0e5; padding-block:64px 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap:40px; }
.footer-brand .brand{ color:#fff; margin-bottom:14px; }
.footer-brand p{ color:#9db3ba; font-size:.9rem; max-width:280px; }
.site-footer h4{ color:#fff; font-size:.92rem; margin-bottom:16px; text-transform:uppercase; letter-spacing:.06em; }
html[lang="ar"] .site-footer h4{ letter-spacing:0; text-transform:none; }
.site-footer ul li{ margin-bottom:10px; }
.site-footer ul li a{ color:#9db3ba; font-size:.92rem; transition: color .25s; }
.site-footer ul li a:hover{ color:#fff; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  margin-top:48px; padding-top:26px; border-top:1px solid rgba(255,255,255,.1);
  font-size:.82rem; color:#7f97a0;
}
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px; height:38px; border-radius:10px; background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center; color:#cfe0e5; transition:.3s;
}
.footer-social a:hover{ background: var(--teal); color:#fff; }

/* ---------- media slots (images/videos added by the owner, no code needed) ---------- */
.hero-bg-photo{
  position:absolute; inset:0; z-index:0; opacity:0; pointer-events:none;
  background-position:center; background-size:cover;
  transition: opacity 1.2s ease;
  border-radius: inherit;
}
.hero-bg-photo.has-media{ opacity:.16; }

.media-slot{ display:none; }
.media-slot.has-media{ display:block; }
.media-slot img{ width:100%; display:block; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-photo{ margin-bottom:26px; }
.about-photo img{ aspect-ratio:16/10; object-fit:cover; }

.media-video-slot{ display:none; }
.media-video-slot.has-media{ display:block; }
.media-video-slot video{ width:100%; display:block; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background:#0a1920; }
.demo-video-slot{ max-width:760px; margin:0 auto 46px; }

.gallery-section{ display:none; }
.gallery-section.has-media{ display:block; }
.gallery-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(250px,1fr)); gap:18px; margin-top:10px; }
.gallery-item{
  margin:0; border-radius: var(--radius-md); overflow:hidden; cursor:zoom-in; position:relative;
  aspect-ratio:4/3; box-shadow: var(--shadow-sm);
  opacity:0; transform:translateY(16px);
  transition:opacity .5s var(--ease), transform .5s var(--ease), box-shadow .3s;
}
.gallery-item.in{ opacity:1; transform:none; }
.gallery-item:hover{ box-shadow: var(--shadow-lg); }
.gallery-item img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .5s var(--ease); }
.gallery-item:hover img{ transform:scale(1.07); }

.lightbox-overlay{
  position:fixed; inset:0; z-index:500; background:rgba(10,20,25,.92);
  display:flex; align-items:center; justify-content:center; padding:30px;
  animation: mfFadeIn .25s ease;
}
.lightbox-overlay img{ max-width:92vw; max-height:88vh; border-radius:14px; box-shadow:0 20px 60px rgba(0,0,0,.5); }
.lightbox-close{
  position:absolute; top:22px; inset-inline-end:26px; background:rgba(255,255,255,.14); color:#fff;
  border:0; width:44px; height:44px; border-radius:50%; font-size:1.6rem; line-height:1; cursor:pointer;
  transition: background .25s;
}
.lightbox-close:hover{ background:rgba(255,255,255,.26); }
@keyframes mfFadeIn{ from{ opacity:0 } to{ opacity:1 } }

/* ---------- reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal-delay-1{ transition-delay:.1s; }
.reveal-delay-2{ transition-delay:.2s; }
.reveal-delay-3{ transition-delay:.3s; }
.reveal-delay-4{ transition-delay:.4s; }

/* ---------- page hero (inner pages) ---------- */
.page-hero{
  padding-block: 62px 50px; text-align:center; position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset-inline-start:50%; top:-40%; transform:translateX(-50%);
  width:70vw; height:70vw; max-width:900px; max-height:900px;
  background: radial-gradient(circle, rgba(20,168,174,.14), transparent 65%);
}
.page-hero .container{ position:relative; z-index:1; }
.breadcrumb{ display:flex; gap:8px; justify-content:center; font-size:.85rem; color:var(--navy-soft); margin-bottom:16px; }
.breadcrumb a{ color: var(--teal-dark); font-weight:700; }

/* ---------- Articles / Blog listing ---------- */
.articles-toolbar{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-bottom:46px;
}
.article-filter{
  border:1.5px solid var(--line); background:#fff; color:var(--navy-soft);
  padding:9px 20px; border-radius:999px; font-weight:700; font-size:.86rem; transition:.25s;
}
.article-filter:hover{ border-color: var(--teal); color: var(--teal-dark); }
.article-filter.active{ background: var(--navy); border-color: var(--navy); color:#fff; }

.articles-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.article-card{
  display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  overflow:hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.article-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.article-thumb{
  position:relative; aspect-ratio:16/10; display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.article-thumb svg{ width:64px; height:64px; position:relative; z-index:1; color:#fff; opacity:.92; }
.article-thumb::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 25% 20%, rgba(255,255,255,.22), transparent 55%);
}
.thumb-teal{ background: linear-gradient(150deg, var(--teal) 0%, var(--teal-dark) 100%); }
.thumb-coral{ background: linear-gradient(150deg, var(--coral) 0%, var(--coral-dark) 100%); }
.thumb-navy{ background: linear-gradient(150deg, var(--navy) 0%, #1f3944 100%); }
.article-body{ padding:26px 24px 28px; display:flex; flex-direction:column; flex:1; }
.article-tags{ display:flex; align-items:center; gap:10px; margin-bottom:12px; flex-wrap:wrap; }
.article-tag{
  font-size:.72rem; font-weight:800; letter-spacing:.04em; text-transform:uppercase;
  color: var(--teal-dark); background: var(--teal-tint); padding:5px 12px; border-radius:999px;
}
html[lang="ar"] .article-tag{ letter-spacing:0; text-transform:none; }
.article-date{ font-size:.78rem; color: var(--navy-soft); }
.article-body h3{ font-size:1.12rem; margin-bottom:10px; }
.article-body h3 a{ transition: color .25s; }
.article-body h3 a:hover{ color: var(--teal-dark); }
.article-excerpt{ font-size:.92rem; margin-bottom:18px; flex:1; }
.article-more{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.88rem; color: var(--coral-dark);
  margin-top:auto;
}
.article-more svg{ width:16px; height:16px; transition: transform .3s var(--ease); }
html[dir="rtl"] .article-more svg{ transform: scaleX(-1); }
.article-card:hover .article-more svg{ transform: translateX(4px); }
html[dir="rtl"] .article-card:hover .article-more svg{ transform: scaleX(-1) translateX(4px); }
.articles-empty{ text-align:center; color: var(--navy-soft); padding-block:40px; }

/* ---------- Single article page ---------- */
.article-hero{ padding-block:56px 20px; }
.article-hero .meta-row{
  display:flex; flex-wrap:wrap; gap:16px; align-items:center; justify-content:center;
  margin-bottom:18px; font-size:.86rem; color: var(--navy-soft);
}
.article-hero .meta-row span{ display:flex; align-items:center; gap:6px; }
.article-hero .meta-row svg{ width:16px; height:16px; color: var(--teal-dark); }
.article-hero h1{ max-width:760px; margin-inline:auto; text-align:center; }
.article-banner{
  max-width: 920px; margin:0 auto 10px; aspect-ratio:21/9; border-radius: var(--radius-lg);
  display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden;
  box-shadow: var(--shadow-md);
}
.article-banner svg{ width:96px; height:96px; color:#fff; opacity:.92; position:relative; z-index:1; }
.article-banner::before{ content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.25), transparent 55%); }

.article-content{ max-width:760px; margin-inline:auto; }
.article-content h2{ margin-top:1.7em; font-size:1.35rem; }
.article-content h2:first-child{ margin-top:0; }
.article-content p{ font-size:1.02rem; }
.article-content ul{ margin:0 0 1.3em; }
.article-content li{ display:flex; gap:10px; padding:6px 0; font-size:.98rem; color:var(--navy-soft); }
.article-content li svg{ width:17px; height:17px; margin-top:5px; color: var(--teal-dark); flex:none; }
.tip-box{
  background: var(--teal-tint); border:1px solid #CFEEEF; border-radius: var(--radius-md);
  padding:22px 24px; margin-block:28px; display:flex; gap:14px; align-items:flex-start;
}
.tip-box svg{ width:24px; height:24px; color: var(--teal-dark); flex:none; margin-top:2px; }
.tip-box p{ margin:0; font-size:.95rem; color: var(--navy); }
.tip-box strong{ display:block; margin-bottom:4px; color: var(--teal-dark); }

.article-author-box{
  display:flex; gap:16px; align-items:center; background: var(--bg-alt); border:1px solid var(--line);
  border-radius: var(--radius-md); padding:22px 24px; margin-top:46px;
}
.article-author-box .logo-badge{
  width:52px; height:52px; border-radius:14px; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display:flex; align-items:center; justify-content:center; flex:none;
}
.article-author-box .logo-badge svg{ width:26px; height:26px; color:#fff; }
.article-author-box p{ margin:0; font-size:.88rem; }
.article-author-box strong{ display:block; font-size:.98rem; color:var(--navy); margin-bottom:2px; }

.article-share{ display:flex; gap:10px; align-items:center; margin-top:24px; }
.article-share span{ font-size:.85rem; font-weight:700; color:var(--navy-soft); }

.related-articles{ max-width:920px; margin:64px auto 0; }
.related-articles h3{ text-align:center; margin-bottom:28px; }
.related-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:22px; }

.back-to-articles{
  display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.9rem;
  color: var(--teal-dark); margin-bottom:22px;
}
.back-to-articles svg{ width:16px; height:16px; }
html[dir="rtl"] .back-to-articles svg{ transform: scaleX(-1); }

@media (max-width: 980px){
  .articles-grid{ grid-template-columns:1fr 1fr; }
  .related-grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .articles-grid{ grid-template-columns:1fr; }
  .article-banner svg{ width:64px; height:64px; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px){
  .nav-links, .nav-actions .lang-switch{ display:none; }
  .burger{ display:flex; }
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-actions, .trust-row{ justify-content:center; }
  .hero-copy p.lead{ margin-inline:auto; }
  .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:1fr 1fr; }
  .stats-band{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .services-list{ columns:1; }
  .form-row{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .section{ padding-block:70px; }
  .feature-grid{ grid-template-columns:1fr; }
  .stats-band{ grid-template-columns:1fr 1fr; padding:36px 22px; }
  .footer-grid{ grid-template-columns:1fr; gap:30px; }
  .cta-download{ padding:44px 22px; }
}

/* ==========================================================================
   Additions: offer banner · floating WhatsApp · testimonials
   ========================================================================== */

/* ---------- offer banner ---------- */
.offer-banner{
  background: linear-gradient(100deg, var(--navy) 0%, var(--teal-dark) 62%, var(--coral-dark) 130%);
  color:#fff; position:relative; z-index:5;
}
.offer-inner{
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap;
  gap:12px 18px; padding-block:12px; text-align:center;
}
.offer-tag{
  background:#fff; color:var(--coral-dark); flex:none;
  font-weight:800; font-size:.72rem; letter-spacing:.05em; text-transform:uppercase;
  padding:5px 13px; border-radius:999px;
}
html[lang="ar"] .offer-tag{ letter-spacing:0; text-transform:none; }
.offer-text{ font-weight:700; font-size:1rem; }
.offer-btn{
  display:inline-flex; align-items:center; gap:8px; flex:none;
  background:#25D366; color:#fff; font-weight:800; font-size:.9rem;
  padding:9px 18px; border-radius:999px;
  box-shadow:0 6px 16px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.offer-btn:hover{ transform: translateY(-2px); box-shadow:0 10px 22px rgba(37,211,102,.5); }
.offer-btn svg{ width:18px; height:18px; flex:none; }

/* ---------- floating WhatsApp button ---------- */
.wa-float{
  position:fixed; bottom:22px; inset-inline-end:22px; z-index:400;
  display:inline-flex; align-items:center; gap:10px;
  background:#25D366; color:#fff; padding:14px; border-radius:999px;
  box-shadow:0 10px 26px rgba(37,211,102,.45), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float::after{
  content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.45); }
  70%{ box-shadow:0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}
.wa-float svg{ width:30px; height:30px; flex:none; position:relative; z-index:1; }
.wa-float-label{
  font-weight:800; font-size:.92rem; white-space:nowrap; position:relative; z-index:1;
  max-width:0; overflow:hidden; opacity:0;
  transition: max-width .4s var(--ease), opacity .3s;
}
.wa-float:hover{ transform: translateY(-3px); box-shadow:0 14px 32px rgba(37,211,102,.55); }
.wa-float:hover .wa-float-label{ max-width:220px; opacity:1; }
@media (max-width:600px){
  .wa-float{ bottom:16px; inset-inline-end:16px; padding:13px; }
  .wa-float svg{ width:26px; height:26px; }
  .wa-float-label{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  .wa-float::after{ animation:none; }
}

/* ---------- testimonials ---------- */
.testimonial-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.testimonial-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding:28px 24px; box-shadow: var(--shadow-sm); margin:0;
  display:flex; flex-direction:column; gap:14px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testimonial-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testimonial-card .stars{ display:flex; gap:3px; color:#F5B301; }
.testimonial-card .stars svg{ width:18px; height:18px; }
.testimonial-card blockquote{
  margin:0; font-size:.95rem; color:var(--navy); font-weight:500; line-height:1.75; flex:1;
}
.testimonial-card figcaption{ display:flex; align-items:center; gap:12px; margin-top:2px; }
.t-avatar{
  width:44px; height:44px; border-radius:50%; flex:none;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color:#fff; font-weight:800; font-size:1.05rem;
}
.testimonial-card:nth-child(2) .t-avatar{ background: linear-gradient(135deg, var(--coral), var(--coral-dark)); }
.testimonial-card:nth-child(3) .t-avatar{ background: linear-gradient(135deg, var(--navy), #24404c); }
.testimonial-card:nth-child(4) .t-avatar{ background: linear-gradient(135deg, var(--teal-dark), var(--coral-dark)); }
.t-meta{ display:flex; flex-direction:column; line-height:1.3; }
.t-meta strong{ font-size:.95rem; color:var(--navy); }
.t-meta span{ font-size:.82rem; color:var(--navy-soft); }

@media (max-width:980px){
  .testimonial-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:600px){
  .testimonial-grid{ grid-template-columns:1fr; }
  .offer-text{ font-size:.92rem; }
  .offer-inner{ padding-block:10px; }
}

/* ==========================================================================
   v2 additions: emergency call · offer banner (permanent + toggle) ·
   services icon animation · disabled store badge · careers
   ========================================================================== */

/* ---------- emergency call (header, prominent) ---------- */
.emergency-call{
  display:inline-flex; align-items:center; gap:10px; flex:none;
  background: var(--coral-tint);
  border:1.5px solid #F3B9BB;
  color: var(--coral-dark);
  padding:6px 14px 6px 8px;
  border-radius:999px;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
}
.emergency-call:hover{ transform: translateY(-2px); box-shadow:0 8px 20px rgba(232,90,95,.28); background:#fff; }
.emergency-call .ec-icon{
  width:34px; height:34px; border-radius:50%; flex:none; position:relative;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.emergency-call .ec-icon svg{ width:18px; height:18px; position:relative; z-index:1; }
.emergency-call .ec-icon::after{
  content:""; position:absolute; inset:0; border-radius:inherit; pointer-events:none;
  animation: ecPulse 2.4s var(--ease) infinite;
}
@keyframes ecPulse{
  0%{ box-shadow:0 0 0 0 rgba(232,90,95,.5); }
  70%{ box-shadow:0 0 0 12px rgba(232,90,95,0); }
  100%{ box-shadow:0 0 0 0 rgba(232,90,95,0); }
}
.emergency-call .ec-text{ display:flex; flex-direction:column; line-height:1.15; }
.emergency-call .ec-badge{ font-size:.64rem; font-weight:800; letter-spacing:.02em; opacity:.9; }
.emergency-call .ec-num{ font-size:1.02rem; font-weight:900; letter-spacing:.03em; font-family:"Poppins",sans-serif; }
@media (max-width:980px){
  .emergency-call{ padding:5px 12px 5px 6px; gap:8px; }
  .emergency-call .ec-badge{ display:none; }
  .emergency-call .ec-icon{ width:30px; height:30px; }
  .emergency-call .ec-num{ font-size:.95rem; }
}
@media (max-width:420px){
  .emergency-call .ec-num{ display:none; }
}
@media (prefers-reduced-motion: reduce){
  .emergency-call .ec-icon::after{ animation:none; }
}
/* emergency call block inside the mobile menu panel */
.mobile-panel .emergency-call{
  display:flex; margin:6px 0 18px; width:100%; justify-content:flex-start;
  padding:12px 16px; border-radius: var(--radius-md);
}
.mobile-panel .emergency-call .ec-badge{ display:block; font-size:.72rem; }
.mobile-panel .emergency-call .ec-num{ font-size:1.15rem; }

/* emergency card (contact page) */
.contact-card.emergency-card{
  background: linear-gradient(150deg,#fff, var(--coral-tint));
  border-color:#F3B9BB;
}
.contact-card.emergency-card .ico{ background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color:#fff; }
.contact-card.emergency-card .ec-badge{
  display:inline-block; margin-bottom:6px; font-size:.7rem; font-weight:800;
  color:#fff; background: var(--coral-dark); padding:3px 12px; border-radius:999px;
}
.contact-card.emergency-card .val{ font-size:1.5rem; font-weight:900; color: var(--coral-dark); font-family:"Poppins",sans-serif; letter-spacing:.03em; }

/* ---------- offer banner: permanent CTA + toggleable limited offer ---------- */
.offer-limited, .offer-permanent{
  display:inline-flex; align-items:center; flex-wrap:wrap; justify-content:center;
  gap:10px 14px;
}
.offer-limited.off{ display:none; }               /* <-- toggle the limited offer OFF here */
.offer-divider{ width:1px; height:26px; background:rgba(255,255,255,.28); flex:none; }
@media (max-width:700px){ .offer-divider{ display:none; } }
.offer-btn.offer-btn-app{
  background:#fff; color: var(--teal-dark);
  box-shadow:0 6px 16px rgba(0,0,0,.14);
}
.offer-btn.offer-btn-app:hover{ box-shadow:0 10px 22px rgba(0,0,0,.2); }
.offer-permanent .offer-tag{ background: var(--coral); color:#fff; }

/* ---------- services list: scroll reveal + gentle icon float ---------- */
.services-list li{
  opacity:0; transform: translateY(12px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.in .services-list li{ opacity:1; transform:none; }
.reveal.in .services-list li:nth-child(1){ transition-delay:.03s; }
.reveal.in .services-list li:nth-child(2){ transition-delay:.06s; }
.reveal.in .services-list li:nth-child(3){ transition-delay:.09s; }
.reveal.in .services-list li:nth-child(4){ transition-delay:.12s; }
.reveal.in .services-list li:nth-child(5){ transition-delay:.15s; }
.reveal.in .services-list li:nth-child(6){ transition-delay:.18s; }
.reveal.in .services-list li:nth-child(7){ transition-delay:.21s; }
.reveal.in .services-list li:nth-child(8){ transition-delay:.24s; }
.reveal.in .services-list li:nth-child(9){ transition-delay:.27s; }
.reveal.in .services-list li:nth-child(10){ transition-delay:.30s; }
.reveal.in .services-list li:nth-child(11){ transition-delay:.33s; }
.reveal.in .services-list li:nth-child(12){ transition-delay:.36s; }
.reveal.in .services-list li:nth-child(13){ transition-delay:.39s; }
.reveal.in .services-list li:nth-child(14){ transition-delay:.42s; }
.reveal.in .services-list li:nth-child(15){ transition-delay:.45s; }
.services-list li svg{
  transition: transform .3s var(--ease), color .3s;
  animation: svcFloat 3.8s ease-in-out infinite;
}
.services-list li:nth-child(even) svg{ animation-delay:-1.9s; }
.services-list li:nth-child(3n) svg{ animation-duration:4.4s; }
.services-list li:hover svg{ color: var(--coral); transform: scale(1.18); }
@keyframes svcFloat{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-4px); } }
@media (prefers-reduced-motion: reduce){
  .services-list li{ opacity:1; transform:none; transition:none; }
  .services-list li svg{ animation:none; }
  .reveal.in .services-list li{ transition-delay:0s; }
}

/* ---------- disabled / coming-soon store badge ---------- */
.store-badge.is-soon{ opacity:.5; cursor:not-allowed; position:relative; }
.store-badge.is-soon:hover{ transform:none; background: var(--navy); }
.cta-download .store-badge.is-soon:hover{ background:rgba(255,255,255,.14); }
.store-badge .soon-pill{
  position:absolute; top:-9px; inset-inline-end:8px;
  background: var(--coral); color:#fff; font-size:.6rem; font-weight:800;
  padding:2px 8px; border-radius:999px; box-shadow:0 3px 8px rgba(0,0,0,.2);
}
.footer-link-soon{ opacity:.55; }

/* ---------- coverage strip lead label ---------- */
.coverage-strip .coverage-lead{
  font-weight:800; color: var(--navy); font-size:.92rem;
}

/* ---------- careers ---------- */
.careers-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:48px; align-items:start; }
.careers-benefits{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:8px; }
@media (max-width:980px){
  .careers-grid{ grid-template-columns:1fr; }
}
@media (max-width:600px){
  .careers-benefits{ grid-template-columns:1fr; }
}

/* ============================================================
   تحديث ١١ يوليو ٢٠٢٦ (نسخة ٢) — تعديلات عبده
   ============================================================ */
/* المنيو: لون الصفحة الحالية زي زر حمّل التطبيق */
.nav-links a.active, .nav-links a.active:hover{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color:#fff;
}
.nav{ padding-block:12px; }

/* لوجو بخط حديث */
.brand-mark{ display:inline-flex; }
.brand-mark svg{ height:38px; width:auto; }
.brand-text{ font-family:"Montserrat","Poppins",sans-serif; font-weight:700; font-size:1.4rem; line-height:1; letter-spacing:-.02em; color:var(--navy); }
.brand-text b{ font-weight:700; color:var(--teal); }

/* زر الطوارئ العائم (مقابل الواتساب) */
.emergency-float{
  position:fixed; bottom:22px; inset-inline-start:22px; z-index:400;
  display:inline-flex; align-items:center; gap:10px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color:#fff;
  padding:13px; border-radius:999px;
  box-shadow:0 10px 26px rgba(232,90,95,.45), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.emergency-float svg{ width:28px; height:28px; flex:none; position:relative; z-index:1; }
.emergency-float::after{ content:""; position:absolute; inset:0; border-radius:inherit; animation: ecPulse 2.4s var(--ease) infinite; pointer-events:none; }
.emergency-float .ef-label{ display:flex; flex-direction:column; max-width:0; overflow:hidden; white-space:nowrap; opacity:0; transition:max-width .4s var(--ease), opacity .3s; }
.emergency-float .ef-label small{ font-size:.68rem; font-weight:700; opacity:.92; }
.emergency-float .ef-label strong{ font-size:1.06rem; font-weight:900; font-family:"Poppins",sans-serif; letter-spacing:.03em; }
.emergency-float:hover{ transform:translateY(-3px); box-shadow:0 14px 32px rgba(232,90,95,.55); }
.emergency-float:hover .ef-label{ max-width:220px; opacity:1; }
@media (max-width:600px){
  .emergency-float{ bottom:16px; inset-inline-start:16px; padding:12px; }
  .emergency-float svg{ width:25px; height:25px; }
  .emergency-float .ef-label{ display:none; }
}

/* قسم الخدمات الحيّ (بدل صورة "من نحن") — أيقونات فقط */
.about-services{
  position:relative; overflow:hidden; margin-bottom:24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(95,209,214,.30), transparent 44%),
    radial-gradient(circle at 6% 96%, rgba(232,90,95,.22), transparent 46%),
    linear-gradient(140deg,#0d2a30 0%,#123f47 58%,#0f333a 100%);
  border-radius: var(--radius-lg); padding:18px;
  box-shadow: var(--shadow-md);
}
.as-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.as-tile{
  background:rgba(255,255,255,.10); border:1px solid rgba(255,255,255,.16);
  border-radius:15px; padding:12px 5px 10px; display:flex; flex-direction:column;
  align-items:center; gap:8px; text-align:center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.as-ico{ width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,#16b3ba,#0f8f95); box-shadow:0 6px 15px rgba(0,0,0,.22); }
.as-tile:nth-child(4n+2) .as-ico, .as-tile:nth-child(4n+3) .as-ico{ background:linear-gradient(135deg,#E85A5F,#cf464b); }
.as-ico svg{ width:29px; height:29px; stroke:#fff; fill:none; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.as-tile span{ color:#fff; font-size:.78rem; font-weight:700; line-height:1.2; }
@media (max-width:560px){ .as-grid{ grid-template-columns:repeat(3,1fr); } }

/* أهدافنا: مربعين */
.goals-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:26px; }
.goals-grid .about-card{ margin:0; padding:24px; }
@media (max-width:640px){ .goals-grid{ grid-template-columns:1fr; } }

/* إصلاح شيب الهيرو */
.hero-visual .float-chip{ z-index:3; }

/* منع لف روابط المنيو لسطرين + إحكام */
.nav-links{ gap:2px; flex-wrap:nowrap; }
.nav-links a{ white-space:nowrap; padding:9px 12px; font-size:.9rem; }
/* تقارب ارتفاع شبكة الخدمات مع مربعات "لماذا تختار" */
.as-tile{ padding:10px 4px 8px; gap:6px; }
.as-ico{ width:46px; height:46px; }
.as-ico svg{ width:27px; height:27px; }

/* حجز مكان الاسكرول-بار بدون كسر ثبات الشريط */
html{ scrollbar-gutter: stable; }

/* ============================================================
   تحديث ١٩ يوليو ٢٠٢٦ — إضافات مطلوبة
   ============================================================ */
/* البند رقم ١٦ في قائمة الخدمات (بعد تقسيم النجارة/الأرضيات) */
.reveal.in .services-list li:nth-child(16){ transition-delay:.48s; }

/* ---------- App screenshots showcase (6 rich screens) ----------
   تعيد استخدام .phone-frame / .phone-screen / .phone-card / .app-badge نفسها.
   الخلفية = درجة فاتحة جدًا من التركوازي (مثل الهيرو)، مش أبيض. */
.app-shots{
  background:
    radial-gradient(circle at 12% 0%, rgba(20,168,174,.10), transparent 42%),
    var(--teal-tint);
}
.app-shots-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:46px 30px; align-items:start;
}
.app-shot{ margin:0; display:flex; flex-direction:column; align-items:center; }
.app-shots .phone-frame{
  transform:rotate(0deg); width:100%; max-width:250px; aspect-ratio:9/18.3;
  padding:11px; border-radius:38px; box-shadow: var(--shadow-md);
}
.app-shots .phone-frame:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.app-shots .phone-screen{
  border-radius:28px; padding:14px 12px;
  justify-content:flex-start; gap:9px; overflow:hidden;
}
.app-shots .phone-screen .app-badge{ font-size:.6rem; padding:5px 11px; }
.app-shot-cap{ display:flex; align-items:center; gap:10px; margin-top:18px; text-align:start; width:100%; max-width:250px; }
.app-shot-cap .asc-step{
  width:30px; height:30px; border-radius:50%; flex:none;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color:#fff;
  font-weight:800; font-size:.9rem; display:flex; align-items:center; justify-content:center;
  box-shadow:0 6px 14px rgba(232,90,95,.35);
}
.app-shot-cap .asc-text{ display:flex; flex-direction:column; line-height:1.25; }
.app-shot-cap .asc-text strong{ font-size:.96rem; color:var(--navy); }
.app-shot-cap .asc-text span{ font-size:.8rem; color:var(--navy-soft); }

/* shared inner bits (scoped) */
.app-shots .ps-top{ display:flex; align-items:center; justify-content:space-between; }
.app-shots .ps-time{ color:#fff; font-size:.62rem; font-weight:700; opacity:.85; font-family:"Poppins",sans-serif; }
.app-shots .ps-search{
  display:flex; align-items:center; gap:7px; background:rgba(255,255,255,.95);
  border-radius:11px; padding:8px 11px; color:var(--navy-soft); font-size:.72rem; font-weight:600;
}
.app-shots .ps-search svg{ width:14px; height:14px; color:var(--teal-dark); flex:none; }
.app-shots .ps-promo{
  background:linear-gradient(120deg, rgba(255,255,255,.24), rgba(255,255,255,.10));
  border:1px solid rgba(255,255,255,.35); border-radius:12px; padding:9px 11px; color:#fff;
}
.app-shots .ps-promo strong{ display:block; font-size:.75rem; font-weight:800; }
.app-shots .ps-promo span{ font-size:.63rem; opacity:.9; }
.app-shots .ps-cats{ display:grid; grid-template-columns:repeat(3,1fr); gap:7px; }
.app-shots .ps-cat{
  background:rgba(255,255,255,.94); border-radius:11px; padding:9px 4px;
  display:flex; flex-direction:column; align-items:center; gap:5px; text-align:center;
}
.app-shots .ps-cat svg{ width:19px; height:19px; color:var(--teal-dark); }
.app-shots .ps-cat span{ font-size:.6rem; font-weight:700; color:var(--navy); line-height:1.15; }
.app-shots .ps-map{
  position:relative; height:116px; border-radius:13px; overflow:hidden;
  border:1px solid rgba(255,255,255,.5);
  background:
    linear-gradient(0deg, rgba(12,127,132,.12), rgba(12,127,132,.12)),
    repeating-linear-gradient(0deg, #eaf6f6 0 21px, #e0efef 21px 23px),
    repeating-linear-gradient(90deg, #eaf6f6 0 21px, #e0efef 21px 23px);
}
.app-shots .ps-map.track::before{
  content:""; position:absolute; left:28%; top:36%; width:44%; height:34%;
  border:2.5px dashed var(--teal-dark); border-radius:0 0 0 14px; opacity:.55;
  border-top:0; border-right:0;
}
.app-shots .ps-pin{
  position:absolute; left:50%; top:56%; transform:translate(-50%,-100%) rotate(-45deg);
  width:24px; height:24px; border-radius:50% 50% 50% 0;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow:0 6px 12px rgba(0,0,0,.25);
}
.app-shots .ps-pin::after{ content:""; position:absolute; inset:6px; background:#fff; border-radius:50%; }
.app-shots .ps-tech-dot{
  position:absolute; left:28%; top:36%; width:13px; height:13px; border-radius:50%;
  background:var(--teal-dark); border:3px solid #fff; box-shadow:0 3px 8px rgba(0,0,0,.3);
}
.app-shots .ps-eta{
  position:absolute; top:8px; inset-inline-end:8px; z-index:2; background:#fff; color:var(--teal-dark);
  font-size:.6rem; font-weight:800; padding:4px 9px; border-radius:999px; box-shadow:0 4px 10px rgba(0,0,0,.15);
}
.app-shots .ps-field{
  display:flex; align-items:center; gap:7px; background:rgba(255,255,255,.95);
  border-radius:11px; padding:8px 11px; color:var(--navy); font-size:.66rem; font-weight:700;
}
.app-shots .ps-field svg{ width:14px; height:14px; color:var(--coral); flex:none; }
.app-shots .ps-chips{ display:flex; gap:6px; flex-wrap:wrap; }
.app-shots .ps-chip{
  background:rgba(255,255,255,.9); color:var(--navy-soft); font-size:.6rem; font-weight:700;
  padding:6px 10px; border-radius:999px;
}
.app-shots .ps-chip.active{ background:#fff; color:var(--teal-dark); box-shadow:0 3px 8px rgba(0,0,0,.14); }
.app-shots .ps-bill{ flex-direction:column; align-items:stretch; gap:0; padding:10px 12px; }
.app-shots .ps-row{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  font-size:.7rem; color:var(--navy-soft); padding:5px 0;
}
.app-shots .ps-row b{ color:var(--navy); font-family:"Poppins",sans-serif; }
.app-shots .ps-row.total{ border-top:1px dashed var(--line); margin-top:3px; padding-top:8px; font-size:.82rem; }
.app-shots .ps-row.total span, .app-shots .ps-row.total b{ color:var(--navy); font-weight:800; }
.app-shots .ps-tag{
  align-self:center; background:#fff; color:var(--teal-dark); font-size:.63rem; font-weight:800;
  padding:6px 12px; border-radius:999px; box-shadow:0 4px 10px rgba(0,0,0,.14); text-align:center;
}
.app-shots .ps-tech{ align-items:center; gap:9px; padding:9px 10px; }
.app-shots .ps-ava{
  width:33px; height:33px; border-radius:50%; flex:none; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--teal), var(--teal-dark)); color:#fff; font-weight:800; font-size:.85rem;
}
.app-shots .ps-tech-meta{ flex:1; min-width:0; display:flex; flex-direction:column; line-height:1.25; }
.app-shots .ps-tech-meta strong{ font-size:.68rem; color:var(--navy); }
.app-shots .ps-tech-meta .ps-rate{ font-size:.6rem; color:var(--navy-soft); }
.app-shots .ps-tech-meta .ps-rate b{ color:#F5B301; }
.app-shots .ps-actions{ display:flex; gap:6px; flex:none; }
.app-shots .ps-ib{
  width:26px; height:26px; border-radius:8px; display:flex; align-items:center; justify-content:center;
  background:var(--teal-tint); color:var(--teal-dark);
}
.app-shots .ps-ib svg{ width:14px; height:14px; }
.app-shots .ps-ib.call{ background:var(--coral-tint); color:var(--coral-dark); }
.app-shots .ps-amount{
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.3); border-radius:12px;
  padding:10px 12px; color:#fff; display:flex; align-items:center; justify-content:space-between;
}
.app-shots .ps-amount span{ font-size:.66rem; opacity:.9; }
.app-shots .ps-amount b{ font-size:1rem; font-family:"Poppins",sans-serif; }
.app-shots .ps-pays{ display:flex; flex-direction:column; gap:7px; }
.app-shots .ps-pay{ align-items:center; gap:9px; padding:9px 11px; }
.app-shots .ps-pay .ps-pico{
  width:26px; height:26px; border-radius:7px; background:var(--bg-alt); flex:none;
  display:flex; align-items:center; justify-content:center; color:var(--navy);
}
.app-shots .ps-pay .ps-pico svg{ width:15px; height:15px; }
.app-shots .ps-pay span{ font-size:.7rem; font-weight:700; color:var(--navy); flex:1; }
.app-shots .ps-pay .ps-check{ color:var(--teal-dark); font-weight:800; flex:none; }
.app-shots .ps-pay.active{ outline:2px solid var(--teal); outline-offset:-2px; }
.app-shots .ps-secure{
  display:flex; align-items:center; gap:6px; color:#fff; font-size:.6rem; opacity:.92; justify-content:center;
}
.app-shots .ps-secure svg{ width:13px; height:13px; }
.app-shots .ps-thanks{ color:#fff; font-weight:800; font-size:1rem; text-align:center; margin-top:2px; }
.app-shots .ps-stars{ color:#FFD35C; font-size:1.05rem; letter-spacing:3px; text-align:center; }
.app-shots .ps-crit{ flex-direction:column; align-items:stretch; gap:0; padding:9px 12px; }
.app-shots .ps-crit .ps-row{ font-size:.64rem; }
.app-shots .ps-crit .ps-row span:last-child{ color:#F5B301; letter-spacing:1px; }
.app-shots .ps-comment{
  background:rgba(255,255,255,.92); border-radius:10px; padding:9px 11px; color:var(--navy-soft);
  font-size:.64rem; font-weight:600;
}
@media (max-width:900px){ .app-shots-grid{ grid-template-columns:1fr 1fr; gap:40px 26px; } }
@media (max-width:560px){ .app-shots-grid{ grid-template-columns:1fr; } .app-shots .phone-frame{ max-width:260px; } }

/* official brand logo image */
.brand-logo{ height:35px; width:auto; display:block; }
.footer-brand .brand-logo{ height:33px; }

/* company name beside header logo (switches with language) */
.brand-name{ font-family:"Montserrat","Cairo",sans-serif; font-weight:800; font-size:1.55rem; color:var(--navy); line-height:1; white-space:nowrap; }

/* ===== dark header bar + bigger brand (Abdo option B) ===== */
.site-header{ background:#0C4E5E; background:radial-gradient(140% 220% at 82% -50%, #1f7e8b 0%, #0C4E5E 55%) !important; backdrop-filter:none !important; -webkit-backdrop-filter:none !important; border-bottom:1px solid rgba(255,255,255,.10) !important; }
.site-header.scrolled{ box-shadow:0 6px 22px rgba(0,0,0,.22) !important; border-color:rgba(255,255,255,.14) !important; }
.site-header .brand-name{ color:#fff !important; }
.site-header .nav-links a{ color:rgba(255,255,255,.86) !important; }
.site-header .nav-links a:hover{ background:rgba(255,255,255,.14) !important; color:#fff !important; }
.site-header .nav-links a.active, .site-header .nav-links a.active:hover{ background:linear-gradient(135deg,#19C6D6 0%, #14A8AE 100%) !important; color:#053039 !important; }
.site-header .lang-switch{ background:rgba(255,255,255,.16) !important; }
.site-header .lang-switch button{ color:rgba(255,255,255,.9) !important; }
.site-header .lang-switch button.active{ background:#fff !important; color:#0C4E5E !important; }
.site-header .burger span{ background:#fff !important; }
/* offers strip brighter so it differs from the dark header */
.offer-banner{ background:linear-gradient(100deg,#FF7A5C 0%,#E85A5F 100%) !important; }
.offer-tag{ background:#fff !important; color:var(--coral-dark) !important; }
.offer-text{ font-size:.84rem !important; }

/* tighten offers so EN fits one line on desktop */
@media(min-width:900px){
 .offer-inner{ gap:8px 12px !important; flex-wrap:nowrap !important; }
 .offer-btn{ padding:7px 14px !important; font-size:.82rem !important; }
 .offer-tag{ font-size:.66rem !important; padding:4px 10px !important; }
 .offer-limited, .offer-permanent{ gap:9px !important; }
}
