:root{
  --bg: #0f0f0f;
  --paper: #ffffff;
  --muted: #6b6b6b;
  --ink: #151515;
  --alt: #f6f2ea;
  --gold: #c7a063;
  --gold2:#b78a44;
  --line: rgba(0,0,0,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", Arial;
  color:var(--ink);
  background: #fff;
}

.container{
  width:min(1100px, calc(100% - 32px));
  margin-inline:auto;
}

.topbar{
  background:#111;
  color:#eee;
  font-size:14px;
}
.topbar__inner{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
  flex-wrap:wrap;
}
.chip{
  background:rgba(255,255,255,.08);
  padding:6px 10px;
  border-radius:999px;
}
.toplink{ color:#eee; text-decoration:none; }
.toplink:hover{ text-decoration:underline; }
.dot{ opacity:.5; }

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--ink);
}
.brand__mark{
  width:44px;height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--gold), var(--gold2));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  letter-spacing:.5px;
}
.brand__name{ font-weight:800; }
.brand__sub{ font-size:12px; color:var(--muted); margin-top:2px; }

.nav{ display:flex; gap:14px; align-items:center; }
.nav a{
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  opacity:.9;
}
.nav a:hover{ opacity:1; }
.nav__cta{
  padding:10px 12px;
  border-radius:999px;
  background:var(--ink);
  color:#fff !important;
}

.burger{
  display:none;
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px;
  background:#111;
  margin:6px 10px;
}

.mnav{
  display:none;
  border-top:1px solid var(--line);
  background:#fff;
  padding:10px 16px 16px;
}
.mnav a{
  display:block;
  padding:10px 0;
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
}
.mnav__cta{
  margin-top:6px;
  background:var(--ink);
  color:#fff !important;
  border-radius:14px;
  padding:12px !important;
  text-align:center;
}

.hero{
  position:relative;
  min-height: calc(100vh - 120px);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(16,16,16,.75), rgba(16,16,16,.35));
}
.hero__content{
  position:relative;
  color:#fff;
  padding:60px 0;
}
.kicker{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:700;
  margin:0 0 14px;
}
.hero__title{
  font-size: clamp(30px, 4vw, 52px);
  margin:0 0 14px;
  line-height:1.15;
}
.hero__lead{
  font-size: clamp(15px, 1.6vw, 18px);
  opacity:.92;
  max-width: 64ch;
  margin:0 0 22px;
}
.hero__actions{ display:flex; gap:10px; flex-wrap:wrap; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
}
.btn--gold{
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color:#111;
}
.btn--ghost{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  color:#fff;
}
.btn--line{
  background:#fff;
  border-color: var(--line);
  color: var(--ink);
}
.btn--line:hover{ box-shadow: var(--shadow); }

.hero__stats{
  margin-top:28px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.stat{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding:14px;
}
.stat__n{ font-weight:900; }
.stat__t{ font-size:13px; opacity:.9; margin-top:4px; }

.section{ padding:70px 0; }
.section--alt{ background: var(--alt); }
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.section__head h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
}
.section__head p{
  margin:0;
  color: var(--muted);
  max-width: 70ch;
}

.grid{ display:grid; gap:14px; }
.grid--2{ grid-template-columns: 1.1fr .9fr; }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0 0 10px; color:#333; }
.card--soft{
  background: linear-gradient(180deg, #fff, #fbf8f2);
}
.card--img{
  padding:0;
  overflow:hidden;
}
.card--img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  min-height:280px;
}
.list{
  margin:0;
  padding:0 18px 0 0;
  color:#333;
}
.list li{ margin:8px 0; }
.muted{ color: var(--muted) !important; }
.tiny{ font-size: 12px; }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.gitem{
  padding:0;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  cursor:pointer;
}
.gitem img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  transition: transform .25s ease;
}
.gitem:hover img{ transform: scale(1.04); }

.card--map{ padding:0; overflow:hidden; }
.card--map iframe{ width:100%; height:380px; border:0; display:block; }

.field{ display:block; margin-bottom:12px; }
.field span{ display:block; font-weight:800; margin-bottom:6px; }
input, select, textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 12px;
  font: inherit;
  outline:none;
  background:#fff;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(199,160,99,.6);
  box-shadow: 0 0 0 4px rgba(199,160,99,.18);
}
.form__actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; }

.contactbox{ display:grid; gap:10px; margin:10px 0 0; }
.contactline{
  text-decoration:none;
  color:var(--ink);
  font-weight:700;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
}
.contactline:hover{ box-shadow: var(--shadow); }
.divider{ height:1px; background: var(--line); margin:16px 0; }

.footer{
  background:#0f0f0f;
  color:#ddd;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:18px 0;
  flex-wrap:wrap;
}
.toTop{ color:#ddd; text-decoration:none; }
.toTop:hover{ text-decoration:underline; }

.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:100;
}
.lightbox img{
  max-width:min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.lightbox__close{
  position:fixed;
  top:16px;
  left:16px;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.12);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

@media (max-width: 900px){
  .nav{ display:none; }
  .burger{ display:block; }
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .hero__stats{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .gallery{ grid-template-columns: 1fr; }
}
/* Hero reveal + slider */
.hero{
  position:relative;
}

.hero__slider{
  position:absolute;
  inset:0;
  overflow:hidden;
}

/* كل سلايد */
.hero__slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 5.5s ease;
}

/* السلايد النشط */
.hero__slide.is-active{
  opacity:1;
  transform: scale(1.0);
}

/* دخلة متحركة للمحتوى */
.hero__content{
  animation: heroIn .9s ease both;
}

@keyframes heroIn{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}

/* دخلة متحركة للـ Hero كله (ستارة فخمة) */
.hero__overlay{
  animation: curtain .9s ease both;
}

@keyframes curtain{
  from{ opacity:0; }
  to{ opacity:1; }
}
/* حركة خاصة لأول سلايد */
.hero__slide.first-slide{
  opacity:1;
  transform: translateX(-100%);
  animation: firstSlideIn 1.2s ease forwards;
}

/* Keyframes */
@keyframes firstSlideIn{
  from{
    transform: translateX(-100%);
  }
  to{
    transform: translateX(0);
  }
}
.brand__logo{
  height:44px;
  width:auto;
  object-fit:contain;
}
.card--video{
  padding:0;
  overflow:hidden;
  border-radius:18px;
}

.card--video iframe{
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  display:block;
}
/* إطار ريلز (9:16) */
.reel-frame{
  position: relative;
  width: 100%;
  max-width: 360px;   /* تحكم بعرض الريلز */
  margin: auto;       /* يخليه بالنص */
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

/* iframe داخل الإطار */
.reel-frame iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}.reel-frame{
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
}

.reel-frame video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-card{
  position:relative;
  overflow:hidden;
}

.card__watermark{
  position:absolute;
  inset:0;
  margin:auto;
  width:110px;
  opacity:0.1;        /* شفافية عالية */
  pointer-events:none;
  filter: grayscale(1);
}

.section__head--with-logo{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap: nowrap; /* 🔥 هذا هو الحل */
}
.section__title{
  max-width: 70%;
}
.section__logo{
  width:90px;
  flex-shrink:0; /* 🔥 مهم */
}
/* Force layout for features header */
.section__head.section__head--with-logo{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:nowrap !important;
}

.section__head.section__head--with-logo .section__title{
  flex:1;
  max-width:none !important;
}

.section__head.section__head--with-logo .section__logo{
  width:90px;
  height:auto;
  flex:0 0 auto;
  margin:0;
}
.feature-card{
  position:relative;
  overflow:hidden;
}
.card--map{
  padding:0;
  overflow:hidden;
  border-radius:18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

.card--map iframe{
  width:100%;
  height:380px;
  border:0;
  display:block;
}

@media (max-width: 768px){
  .card--map iframe{
    height:300px;
  }
}

















* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}