/* =========================================================
   Abaad Iraq — styles.css (REBUILT CLEAN)
   - No duplicates / no patches
   - Mobile-first fixes included
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Inter:wght@400;600;700;800;900&display=swap");

/* =========================
   1) TOKENS
========================= */
:root{
  --bg:#0b0f18;
  --panel:#0e1523;
  --panel2:#0c1220;

  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.10);
  --stroke2: rgba(255,255,255,.16);

  --text:#ffffff;
  --muted: rgba(255,255,255,.74);
  --muted2: rgba(255,255,255,.58);

  --brand:#e11d48;
  --brand2:#fb7185;
  --brandSoft: rgba(225,29,72,.16);
  --brandStroke: rgba(225,29,72,.32);

  --shadow3d: 0 26px 70px rgba(0,0,0,.60);
  --shadowCard: 0 18px 44px rgba(0,0,0,.55);
  --shadowCard2: 0 12px 28px rgba(0,0,0,.42);

  --r: 18px;
  --wrap: 1180px;

  --font-ar: "Cairo", system-ui, -apple-system, "Segoe UI", Arial;
  --font-en: "Inter", system-ui, -apple-system, "Segoe UI", Arial;

  --scroll-offset: 74px;
}

/* =========================
   2) BASE / RESET
========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ar);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
img,video{ max-width:100%; display:block; }
.wrap{ width:min(var(--wrap), calc(100% - 40px)); margin-inline:auto; }

::selection{ background: rgba(225,29,72,.22); }

/* RTL/LTR */
html[data-dir="ltr"]{ direction:ltr; }
html[data-dir="ltr"] body{ font-family: var(--font-en); }

/* Anchor offset */
#siteFooter, #contact, #tours, #pricing{ scroll-margin-top: var(--scroll-offset); }

/* =========================
   3) TYPO
========================= */
p{ line-height:1.85; color: var(--muted); margin:0; }
.secTitle{
  margin:0 0 10px;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 900;
  letter-spacing: .2px;
}
.secDesc{ margin:0; color: var(--muted); font-weight:700; }

/* =========================
   4) BUTTONS
========================= */
.btn, .pillBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  font-weight: 900;
  cursor:pointer;
  white-space: nowrap;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--text);
  transition: transform .18s ease, background .18s ease, filter .18s ease;
}
.btn{ padding: 12px 18px; }
.pillBtn{ padding: 8px 12px; font-size: 12px; }
.btn:hover, .pillBtn:hover{ transform: translateY(-1px); }

.btn--primary, .pillBtn--primary{
  background: var(--brand);
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 18px 40px rgba(225,29,72,.22);
  color:#fff;
}
.btn--primary:hover{ filter: brightness(1.03); }

.btn--secondary{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

/* =========================
   5) TOPBAR (glass + scroll)
========================= */
.topbar{
  position: fixed;
  inset-inline:0;
  top: 10px;
  z-index: 80;
  pointer-events:none;
}
.topbar__inner{
  pointer-events:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 8px 12px;

  border-radius: 999px;
  background: rgba(10,15,25,.34);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 44px rgba(0,0,0,.55);
}
.brand{ display:flex; align-items:center; gap:10px; flex:0 0 auto; }
.brand__logo{ width:34px; height:34px; object-fit:contain; }
.topbar__left{ display:flex; gap:8px; align-items:center; flex:0 0 auto; }

.topbar__nav{
  display:flex;
  align-items:center;
  gap: 8px;
  flex: 1 1 auto;
  justify-content:center;

  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  scrollbar-width:none;
}
.topbar__nav::-webkit-scrollbar{ height:0; }

.topbar__nav a{
  padding: 7px 9px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: 12.5px;
  font-weight: 800;
  transition:.18s ease;
}
.topbar__nav a:hover{ background: rgba(255,255,255,.08); }
.topbar__nav a.is-active,
.topbar__nav a[aria-current="page"]{
  background: var(--brandSoft);
  border: 1px solid var(--brandStroke);
}

/* =========================
   6) HERO (Video cover)
========================= */
.heroCover{
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  overflow: hidden;
  background:#000;

  /* full-bleed */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.heroCover__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
  transform: scale(1.02);
}
.heroCover__shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,15,25,.92) 0%, rgba(10,15,25,.70) 45%, rgba(10,15,25,.18) 80%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.62) 100%);
}
.heroCover__content{
  position: relative;
  z-index: 2;
  padding-top: clamp(120px, 14vh, 160px);
  padding-bottom: 90px;
}
.heroCover__copy{ max-width: 620px; }

.heroTitle{
  margin:0 0 12px;
  color: var(--text);
  font-weight: 950;
  line-height: 1.08;
  font-size: clamp(34px, 4.2vw, 56px);
}
.heroDesc{
  margin:0 0 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
  max-width: 54ch;
}
.heroActions{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
}

/* =========================
   7) SERVICES BAND
========================= */
.servicesBand{
  position: relative;
  margin-top: -72px;
  z-index: 5;
}
.servicesBand .wrap{
  background: linear-gradient(180deg, rgba(10,15,25,.96) 0%, rgba(10,15,25,.985) 100%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: var(--shadow3d);
}
.bandTitle{
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
  font-weight: 950;
  font-size: 20px;
}

.svcGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.svcCard{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: var(--shadowCard2);
  transform: translateZ(0);
  transition: transform .18s ease, background .18s ease;
}
.svcCard:hover{ background: rgba(255,255,255,.07); transform: translateY(-2px); }

.svcIcon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(225,29,72,.14);
  border: 1px solid rgba(225,29,72,.28);
  color: var(--brand);
  margin-bottom: 10px;
}
.svcIcon svg{ width: 22px; height: 22px; }

.svcTitle{
  margin:0 0 6px;
  color: rgba(255,255,255,.94);
  font-weight: 950;
  font-size: 14px;
}
.svcDesc{
  margin:0;
  color: rgba(255,255,255,.70);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.55;
}
.bandLink{
  display:inline-block;
  margin-top: 14px;
  color: rgba(255,255,255,.86);
  font-weight: 900;
}
.bandLink:hover{ color: var(--brand2); }

/* =========================
   8) STATS BAND
========================= */
.statsBand{
  padding: 78px 0 64px;
  background: var(--bg);
}
.statsBand__title{
  margin: 0 0 26px;
  text-align:center;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 950;
  color: rgba(255,255,255,.96);
}

.statsGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px 18px;
  text-align:center;
  box-shadow: var(--shadowCard);
}
.stat strong{
  display:block;
  font-size: 34px;
  font-weight: 950;
  color: var(--brand);
  margin-bottom: 8px;
}
.stat span{
  display:block;
  font-weight: 900;
  color: rgba(255,255,255,.90);
  font-size: 13px;
  margin-bottom: 6px;
}
.stat em{
  display:block;
  font-style: normal;
  color: rgba(255,255,255,.66);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.6;
}

.sectionDivider{
  height: 1px;
  width: min(760px, 90%);
  margin: 34px auto 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity: .9;
}

/* =========================
   9) GATES
========================= */
.gates{ padding: 54px 0 30px; background: var(--bg); }

.gatesTopLine{
  margin: 0 0 18px;
  text-align:center;
  color: rgba(255,255,255,.68);
  font-weight: 750;
}
.gatesBenefits{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
}

.gBenefit{
  position: relative;
  padding: 18px 22px 12px;
}
.gBenefit::before{
  content:"";
  position:absolute;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(255,255,255,.16);
  inset-inline-start: 0;
}
.gBenefit:nth-child(4n + 1)::before{ display:none; }

.gBenefit__body strong{
  display:block;
  font-size: 20px;
  font-weight: 950;
  color: rgba(255,255,255,.92);
}
.gBenefit__body p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.64);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.7;
}
.gBenefit__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 14px;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(225,29,72,.30);
  background: rgba(225,29,72,.14);
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 900;
}
.gBenefit:hover .gBenefit__btn{ background: rgba(225,29,72,.18); }

/* =========================
   10) TOURS (basic safe)
========================= */
#tours{ padding: 72px 0 56px; background: var(--bg); }
#tours iframe{
  width:100%;
  aspect-ratio: 16/9;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: var(--shadow3d);
  background: rgba(255,255,255,.04);
}

/* =========================
   11) PARTNERS (light section only)
========================= */
.partners{
  background: #f6f4ef;
  color: #111;
  color-scheme: light;
  padding: 26px 0 30px;
}
.partners .secTitle,
.partners .secDesc{ color:#111; }

.partnersRow{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 46px;
  flex-wrap: wrap;

  padding: 18px 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}
.partnerLogo{
  display:grid;
  place-items:center;
  width: 240px;
  height: 92px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .18s ease;
}
.partnerLogo:hover{ transform: translateY(-2px); }
.partnerLogo img{
  width:100%;
  height:100%;
  object-fit: contain;
  max-width: 200px;
  max-height: 62px;
  filter: none;
}
/* فرض مسافة قبل الفوتر */
footer,
.uFooter {
  margin-top: 120px !important;
}
/* =========================
   HERO — EXACT STYLE (DESKTOP + MOBILE SAME)
========================= */

.heroHero{
  max-width: 720px;
}

.heroEyebrow{
  display: block;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}

.heroTitleMain{
  margin: 0 0 16px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: .5px;
  line-height: 1.05;
  color: #fff;
}

.heroText{
  margin: 0 0 26px;
  max-width: 520px;
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
}

.heroCta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: .2s ease;
}

.heroCta:hover{
  background: rgba(255,255,255,.12);
}

/* =========================
   MOBILE — SAME LAYOUT, SMALLER ONLY
========================= */
@media (max-width: 640px){

  .heroHero{
    max-width: 100%;
  }

  .heroEyebrow{
    font-size: 10px;
    margin-bottom: 12px;
  }

  .heroTitleMain{
    font-size: 36px; /* يصغر فقط */
  }

  .heroText{
    font-size: 13.5px;
    max-width: 100%;
  }

  .heroCta{
    height: 42px;
    font-size: 12.5px;
  }
}
/* HERO — push content slightly down */
.heroCover__content{
  padding-top: clamp(160px, 20vh, 220px);
}
/* HERO — force LTR & push block to LEFT (English reference) */
.heroCover__content{
  direction: ltr;           /* يكسر RTL */
}

.heroCover__copy{
  text-align: left;
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 640px;
}

/* تأكيد على النص */
.heroTitle,
.heroDesc{
  text-align: left;
}
/* MOBILE — push hero content down */
@media (max-width: 640px){
  .heroCover__content{
    padding-top: 250px !important; /* زيد/نقص حسب مزاجك */
    padding-bottom: 72px !important;
  }
}
/* SERVICES — mobile cards text tidy (4 in a row) */
@media (max-width: 640px){

  .svcGrid{
    grid-template-columns: repeat(4, minmax(0,1fr)) !important;
    gap: 10px !important;
  }

  .svcCard{
    padding: 10px !important;
    min-height: 140px !important;     /* يثبت الارتفاع */
    display: flex !important;
    flex-direction: column !important;
  }

  .svcIcon{
    width: 34px !important;
    height: 34px !important;
    margin-bottom: 6px !important;
    flex: 0 0 auto;
  }

  .svcTitle{
    font-size: 11px !important;
    line-height: 1.2 !important;
    margin: 0 0 4px !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .svcDesc{
    margin-top: auto !important;      /* ينزل الوصف لتحت ويثبت شكل الكارت */
    font-size: 10px !important;
    line-height: 1.35 !important;

    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    opacity: .78;
  }
}
/* =========================================================
   FEATURED GATES — (like reference) 4 items
========================================================= */

.featuredGates{
  position: relative;
  padding: 70px 0 74px;
  background: var(--bg, #0b0f18);
  overflow: hidden;
}

/* soft neon haze behind (like reference) */
.featuredGates::before{
  content:"";
  position:absolute;
  inset:-120px;
  background:
    radial-gradient(600px 420px at 22% 48%, rgba(77,238,234,.18), transparent 60%),
    radial-gradient(640px 460px at 50% 46%, rgba(155,92,255,.20), transparent 62%),
    radial-gradient(600px 420px at 78% 52%, rgba(225,29,72,.16), transparent 58%);
  filter: blur(18px);
  opacity: .9;
  pointer-events:none;
}

.featuredGates .wrap{ position: relative; z-index: 1; }

.featuredGates__head{
  text-align: center;
  margin-bottom: 26px;
}

.featuredGates__title{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: .3px;
  color: rgba(255,255,255,.95);
  font-size: clamp(28px, 4vw, 56px);
}

.featuredGates__sub{
  margin: 0;
  color: rgba(255,255,255,.70);
  font-weight: 650;
}

/* grid: 4 on desktop */
.featuredGates__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

/* card */
.fGate{
  display: block;
  text-decoration: none;
  color: inherit;
  transform: translateZ(0);
  transition: transform .2s ease;
}

.fGate:hover{ transform: translateY(-6px); }

.fGate__media{
  position: relative;
  height: 260px;
  border-radius: 22px;
  overflow: hidden;

  /* subtle border like reference */
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.10);

  background: rgba(255,255,255,.06);
}

/* “arched” top corners feel (like ref rounded top) */
.fGate__media::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.55));
  opacity: .95;
  pointer-events:none;
}

.fGate__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.03);
}

/* CTA button on image */
.fGate__btn{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.92);

  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 12px 34px rgba(0,0,0,.55);
}

.fGate:hover .fGate__btn{
  background: rgba(225,29,72,.18);
  border-color: rgba(225,29,72,.38);
}

/* meta */
.fGate__meta{
  text-align: center;
  padding-top: 14px;
}

.fGate__kicker{
  display: block;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}

.fGate__h{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 950;
  color: rgba(255,255,255,.95);
}

.fGate__p{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255,255,255,.68);

  display: -webkit-box;
  -webkit-line-clamp: 2; /* مثل الريفرنس: وصف قصير */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* responsive */
@media (max-width: 1100px){
  .featuredGates__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fGate__media{ height: 250px; }
}

@media (max-width: 600px){
  .featuredGates{ padding: 56px 0 62px; }
  .featuredGates__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2×2 بالموبايل */
    gap: 14px;
  }
  .fGate__media{ height: 190px; border-radius: 18px; }
  .fGate__btn{ height: 34px; padding: 0 14px; bottom: 12px; font-size: 12px; }
  .fGate__h{ font-size: 14px; }
  .fGate__p{ font-size: 11.5px; -webkit-line-clamp: 2; }
  .fGate__kicker{ font-size: 10px; }
}
/* =========================================================
   4K SHOTS SLIDER (before partners)
========================================================= */
.shots4k{
  padding: 64px 0 34px;
  background: var(--bg, #0b0f18);
}

.shots4k__head{
  text-align: start;
  margin-bottom: 16px;
}

.shots4k__slider{
  position: relative;
  margin-top: 18px;
}

.shots4k__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 420px);
  gap: 14px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 16px;

  padding: 10px 6px 14px;
  border-radius: 18px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);

  scrollbar-width: none;
}
.shots4k__track::-webkit-scrollbar{ height:0; }

.shots4k__item{
  margin: 0;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 48px rgba(0,0,0,.55);
  background: rgba(255,255,255,.04);
}

.shots4k__item img{
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transform: scale(1.01);
}

.shots4k__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,15,25,.45);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 0;
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
  transition: .2s ease;
  z-index: 3;
}
.shots4k__nav:hover{ transform: translateY(-50%) translateY(-2px); }
.shots4k__nav--prev{ inset-inline-start: -10px; }
.shots4k__nav--next{ inset-inline-end: -10px; }

@media (max-width: 820px){
  .shots4k__nav{ display: none; } /* على الموبايل السوايب يكفي */
  .shots4k__track{ grid-auto-columns: clamp(220px, 78vw, 340px); }
}

.shots4k__dots{
  display:flex;
  justify-content:center;
  gap: 8px;
  margin-top: 10px;
}
.shots4k__dot{
  width: 7px; height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.14);
}
.shots4k__dot.is-active{
  background: rgba(225,29,72,.85);
  border-color: rgba(225,29,72,.35);
  box-shadow: 0 0 18px rgba(225,29,72,.28);
}

/* =========================================================
   LIGHTBOX
========================================================= */
.lb{
  position: fixed;
  inset: 0;
  background: rgba(5,8,14,.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lb.is-open{ display: flex; }

.lb__img{
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 90px rgba(0,0,0,.65);
}

.lb__close{
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

.lb__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display:grid;
  place-items:center;
}
.lb__nav--prev{ inset-inline-start: 14px; }
.lb__nav--next{ inset-inline-end: 14px; }

.lb__hint{
  position: absolute;
  bottom: 14px;
  inset-inline: 0;
  text-align: center;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}

.lb { display: none; }
.lb.isOpen { display: grid; }

html.lbOpen {
  overflow: hidden;
}

/* =========================================================
   TOPBAR — make text lighter & less dominant
========================================================= */

/* روابط التوب بار */
.topbar__nav a{
  font-weight: 600 !important;          /* كان 900 — ثقيل زيادة */
  color: rgba(255, 255, 255, 0.65) !important;    /* أخف بصرياً */
  letter-spacing: .2px;                 /* ينعّم الإحساس */
}

/* hover: يبرز بدون ما يصير فاقع */
.topbar__nav a:hover{
  color: rgba(0,0,0,.85) !important;
  background: rgba(0,0,0,.04);
}

/* العنصر النشط (الصفحة الحالية) */
.topbar__nav a.active,
.topbar__nav a[aria-current="page"]{
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  background: transparent !important;
}

/* زر EN */
.topbar .langBtn,
.topbar .lang,
.topbar .langSwitch{
  font-weight: 600 !important;
  color: rgba(0,0,0,.6) !important;
}
/* =========================
   GATES LAYOUT
========================= */

.featuredGates__grid {
  display: grid;
  gap: 28px;
  margin-top: 40px;
}

/* Desktop — 3 بوابات جنب بعض */
@media (min-width: 1024px) {
  .featuredGates__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet — 2 جنب بعض */
@media (min-width: 768px) and (max-width: 1023px) {
  .featuredGates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — وحدة بالنص مو ملزگة */
@media (max-width: 767px) {
  .featuredGates__grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .featuredGate {
    max-width: 420px;
    margin: 0 auto;
  }
}
/* =========================
   Universal Footer Fix (All Pages)
   - Better contrast (no white text on light bg)
   - Mobile: 2 columns (less scroll)
   - Icons more tidy
   - RTL/LTR auto alignment
========================= */

:root{
  --footerBg: #f4efe6;          /* خلفية فاتحة مرتبة */
  --footerCard: rgba(255,255,255,.70);
  --footerInk: #161616;         /* نص داكن */
  --footerMuted: rgba(22,22,22,.65);
  --footerLine: rgba(22,22,22,.12);
  --footerAccent: #c33;         /* أكسنت أحمر */
}

/* Main footer container */
.uFooter{
  background: var(--footerBg);
  color: var(--footerInk);
  border-top: 1px solid var(--footerLine);
  padding-block: 28px 18px;
}

/* prevent any inherited "white text" */
.uFooter *{
  color: inherit;
}

/* Grid */
.uFooter__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}

/* Headings */
.uFooter__h{
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  color: var(--footerInk);
}

/* Links */
.uFooter__link{
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  padding: 6px 0;
  color: var(--footerInk);
  opacity: .92;
  text-align: start;                 /* مهم: يشتغل RTL/LTR */
}

.uFooter__link:hover{
  opacity: 1;
  color: var(--footerAccent);
}

/* mini contact */
.uFooter__contactMini{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.uFooter__miniLink{
  text-decoration: none;
  font-size: 13px;
  color: var(--footerMuted);
  text-align: start;
}

.uFooter__miniLink:hover{
  color: var(--footerInk);
}

/* Social icons row */
.uFooter__social{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start; /* default */
  margin-top: 6px;
}

.uFooter__ico{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--footerCard);
  border: 1px solid var(--footerLine);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.uFooter__ico svg{
  width: 20px;
  height: 20px;
  fill: currentColor;
  color: var(--footerInk);
  opacity: .9;
}

.uFooter__ico:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.88);
  border-color: rgba(195,51,51,.35);
}

.uFooter__ico:hover svg{
  color: var(--footerAccent);
  opacity: 1;
}

/* Bottom line */
.uFooter__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--footerLine);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--footerMuted);
}

.uFooter__sep{
  opacity: .45;
}

/* =========================
   RTL / LTR alignment (automatic)
========================= */

/* everything aligns “start” automatically,
   but social row direction we enforce for cleanliness */

html[dir="rtl"] .uFooter{
  direction: rtl;
}
html[dir="rtl"] .uFooter__social{
  justify-content: flex-start; /* start = يمين بالـ RTL */
}

html[dir="ltr"] .uFooter{
  direction: ltr;
}
html[dir="ltr"] .uFooter__social{
  justify-content: flex-start; /* start = يسار بالـ LTR */
}

/* =========================
   Responsive: Mobile 2 Columns
========================= */

/* Tablet -> 2 columns */
@media (max-width: 980px){
  .uFooter__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phone -> still 2 columns (less scroll) */
@media (max-width: 640px){
  .uFooter{
    padding-block: 20px 14px;
  }

  .uFooter__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 14px;
  }

  .uFooter__h{
    font-size: 13px;
    margin-bottom: 8px;
  }

  .uFooter__link{
    font-size: 13px;
    padding: 5px 0;
  }

  .uFooter__ico{
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
}

/* Very small screens: keep 2 columns but tighten */
@media (max-width: 380px){
  .uFooter__grid{
    gap: 12px 10px;
  }
  .uFooter__ico{
    width: 38px;
    height: 38px;
  }
}
/* ===== Footer links stacking fix (stop links from going inline) ===== */

.uFooter__col{
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.uFooter__col .uFooter__link{
  display: block;          /* أهم سطر */
  width: 100%;
  max-width: 100%;
  white-space: normal;     /* يخليها تنزل سطر إذا طويلة */
  padding: 6px 0;
}

/* إذا تريد مسافة مرتبة بين الروابط */
.uFooter__col{
  gap: 2px;
}
/* ===== Hero CTA Layout ===== */

.hero__actions{
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* خلي زر التسعير بارز */
.hero__ctaPrice{
  background: linear-gradient(135deg, #e11d48, #b91c1c);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(225,29,72,.35);
}

.hero__ctaPrice:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(225,29,72,.45);
}

/* موبايل */
@media (max-width:768px){
  .hero__actions{
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn{
    width: 100%;
    justify-content: center;
  }
}
/* ===== Indicators layout: 2 per row ===== */

.vrGrid4,
.indicators,
.statsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* إذا عندك كلاس مختلف للمؤشرات استبدليه هنا */
