:root{
  --font-base: "Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: var(--font-base);
}

/* HERO */
.hero{
  position: relative;
  overflow: hidden;
}

/* قريب من شكل الصورة */
.hero-container{
  max-width: 1120px;
}

/* NAV */
.hero-nav{
  position:absolute;
  top:0; left:0; right:0;
  z-index: 10;
  padding-top: 18px;
  padding-bottom: 18px;
  background: transparent;
}

.hero-logo{
  height: 70px;
  width: auto;
  display:block;
}

/* menu */
.hero-menu .nav-link{
  color: rgba(255,255,255,.70);
  font-weight: 600;
  font-size: 13.5px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.hero-menu .nav-link.active{
  color: rgba(255,255,255,.92);
}

/* pills */
.hero-pill{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.18);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.hero-pill--dark{
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.95);
}
.hero-pill--light{
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
}

/* CAROUSEL */
.hero-carousel .carousel-item{
  position: relative;
  min-height: 641px;
}

/* Background image */
.hero-bg{
  position:absolute;
  inset:0;
  background-image: url("../img/slider.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* dark overlay + vignette */
.hero-vignette{
  position:absolute;
  inset:0;
  background:
    radial-gradient(120% 85% at 70% 50%,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.88) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.50) 55%,
      rgba(0,0,0,0.72) 100%);
}

/* CONTENT (يمين، مثل الصورة) */
.hero-content{
  position: relative;
  z-index: 2;
  padding-top: 200px;
  max-width: 550px;
  margin-left: auto; /* تثبيت على اليمين RTL */
  color: #fff;
}



.hero-title{
  /* font-size: 34px; */
  font-size: 50px;
  font-weight: 700;
  margin: 0 0 14px;
}

.hero-text{
  font-size: 28px;
  /* font-size: 16px; */
  line-height: 1.95;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-weight: 600;
}

/* arrows bottom-right */
.hero-arrows{
  position:absolute;
  z-index: 5;
  right: 26px;
  bottom: 22px;
  display:flex;
  gap: 10px;
}

.hero-arrow{
  width: 44px;
  height: 38px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.60);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.hero-arrow:hover{
  background: rgba(255,255,255,.10);
}

.hero-arrow-icon{
  font-size: 22px;
  line-height: 1;
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 992px){
  .hero-content{
    padding-top: 90px;
    max-width: 92%;
  }
  .hero-title{ font-size: 28px; }
  .hero-text{ font-size: 15px; }
  .hero-arrows{ right: 16px; bottom: 16px; }
}





/* ===== NAV LINKS (CURVED UNDERLINE LIKE FIGMA) ===== */
.hero-menu .nav-link{
  position: relative;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 6px 14px; /* فراغ للخط */
  transition: color .25s ease;
}

/* الخط المنحني */
.hero-menu .nav-link::after{
  content:"";
  position:absolute;
  left:50%;
  bottom: 5px;
  width: 45px;
  height:6px;
  background:url("../img/Vector1.svg") no-repeat center / contain;
  transform: translateX(-50%);
  opacity:0;
}
.hero-menu .nav-link.active::after,
.hero-menu .nav-link:hover::after{
  opacity:1;
}

/* .svg */

/* ACTIVE */
.hero-menu .nav-link.active{
  color: #fff;
}
.hero-menu .nav-link.active::after{
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* HOVER = نفس الاكتيف */
.hero-menu .nav-link:hover{
  color: rgba(255,255,255,.9);
}
.hero-menu .nav-link:hover::after{
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

/* المسافات بين العناصر */
@media (min-width: 992px){
  .hero-menu{ gap: 20px !important; }
}

.hero-lang-btn:hover{
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  border: 0 !important;
}













/* =========================
   Mobile Navbar Fix (Drawer)
   ========================= */
@media (max-width: 991.98px){

  /* خلي المنيو ثابتة فوق */
  /* .hero-nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  } */
 
  .hero-nav{
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 10px 0;
    background: rgba(0,0,0,.18);   /* شفافية خفيفة */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,.10);
  }


  /* عشان المحتوى ما يختفي تحت الناف */
  .hero{
    padding-top: 86px; /* ارتفاع تقريبي للمنيو */
  }

  /* logo أصغر */
  .hero-logo{
    height: 52px;
  }

  /* زر الهامبرغر */
  .navbar-toggler{
    border: 1px solid rgba(255,255,255,.35) !important;
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: none !important;
  }
  .navbar-toggler:focus{
    box-shadow: 0 0 0 .2rem rgba(255,255,255,.12) !important;
  }

  /* === Drawer panel === */
  .navbar-collapse{
    position: fixed;
    top: 0;
    right: 0;               /* RTL: يفتح من اليمين */
    height: 100vh;
    width: min(86vw, 360px);
    padding: 92px 18px 18px; /* مساحة فوق للناف */
    background: rgba(12,12,12,.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255,255,255,.10);
    transform: translateX(110%);
    transition: transform .28s ease;
    z-index: 9999;
    overflow-y: auto;
  }

  /* لما تفتح */
  .navbar-collapse.show{
    transform: translateX(0);
  }

  /* === قائمة الروابط عمودية === */
  .hero-menu{
    margin: 0 !important;
    padding: 0;
    gap: 6px !important;
  }
  .hero-menu .nav-item{
    width: 100%;
  }
  .hero-menu .nav-link{
    width: 100%;
    padding: 14px 14px 14px;
    border-radius: 14px;
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
  }

  /* underline تبع الديسكتوب لا نحتاجه بالموبايل */
  .hero-menu .nav-link::after{
    display: none;
  }

  /* Active */
  .hero-menu .nav-link.active{
    background: rgba(255,106,0,.14);
    border-color: rgba(255,106,0,.35);
    color: #fff;
  }

  /* Hover على الموبايل (لمس) */
  .hero-menu .nav-link:hover{
    background: rgba(255,255,255,.10);
    color:#fff;
  }

  /* === controls تحت === */
  .hero-controls{
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.10);
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
  }

  /* زر اللغة */
  .hero-lang{
    width: 100%;
  }
  .hero-lang-btn{
    width: 100%;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18) !important;
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    font-weight: 800;
    display:flex;
    align-items:center;
    justify-content: space-between;
    padding: 0 14px;
  }

  /* إزالة hover (زي ما بدك) */
  .hero-lang-btn:hover{
    background: rgba(255,255,255,.08) !important;
    color:#fff !important;
    box-shadow: none !important;
  }

  /* dropdown menu داخل الدرج */
  .hero-lang .dropdown-menu{
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.70);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 8px;
  }

  /* زر اتصل بنا */
  .hero-contact-btn{
    width: 100%;
    height: 46px;
    border-radius: 14px;
    background: #ff6a00;
    border: 0;
    color:#fff;
    font-weight: 900;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .hero-contact-btn:hover{
    opacity: .95;
    transform: translateY(-1px);
  }
}

/* (اختياري) طبقة تغميق خلف الدرج بدون JS إضافي */
@media (max-width: 991.98px){
  .navbar-collapse::before{
    content:"";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
  }
  .navbar-collapse.show::before{
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 991.98px){
  .hero-container{
    max-width: 1120px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-nav .navbar-brand{
    margin: 0 !important;
  }

  .hero-logo{
    height: 46px;          /* أصغر شوي */
  }

  .navbar-toggler{
    width: 54px;
    height: 46px;
    border-radius: 14px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25) !important;
    background: rgba(255,255,255,.10);
  }

  .navbar-toggler-icon{
    transform: scale(1.05);
    opacity: .95;
  }
}

@media (max-width: 991.98px){
  .hero{ padding-top: 0px; } /* أقل */
}
@media (max-width: 991.98px){
  .hero-content{ padding-top: 110px; }
  .page-hero__content{ padding-top: 65px;}
}
@media (max-width: 991.98px){
  .hero-nav .navbar-brand,
  .hero-nav .navbar-toggler{
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
  }
}
@media (max-width: 991.98px){
  .navbar-collapse{
    background: rgba(10,10,10,.92);
    border-left: 1px solid rgba(255,255,255,.10);
  }
}

/* =========================
   Mobile Close Button
   ========================= */
.nav-close{
  position: absolute;
  top: 18px;
  left: 18px;            /* RTL: يسار */
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
}

.nav-close span{
  position: absolute;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

.nav-close span:first-child{
  transform: rotate(45deg);
}
.nav-close span:last-child{
  transform: rotate(-45deg);
}

.nav-close:hover{
  background: rgba(255,255,255,.18);
}

/* نخفيه على الديسكتوب */
@media (min-width: 992px){
  .nav-close{ display:none; }
}





















/* ===== Controls (اتصل بنا + اللغة) ===== */
.hero-controls{
  gap: 26px !important; /* أقرب للصورة */
}

/* زر اتصل بنا */
.hero-contact-btn{
  min-width: 130px;
  height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;
  border: 1px solid #FB6607;

  background: rgba(255,255,255,.06);

  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}

.hero-contact-btn:hover{
  background: rgba(255,255,255,.10);
  /* border-color: rgba(255, 190, 205, .9); */
  border-color:#fb6507b7;
  color: #fff;
}

/* زر اللغة */
.hero-lang-btn{
  padding: 0;
  border: 0;
  background: transparent !important;

  color:#fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;

  display:inline-flex;
  align-items:center;
  gap: 10px;
}

/* سهم الدروب داون: نخليه صغير ومثل الصورة */
.hero-lang-btn.dropdown-toggle::after{
  width: 8px;
  height: 8px;
  margin-right: 10px; /* RTL */
  border-top: 2px solid rgba(255,255,255,.9);
  border-left: 2px solid rgba(255,255,255,.9);
  border-right: 0;
  border-bottom: 0;
  transform: rotate(-135deg);
}

/* إزالة ستايلات bootstrap الافتراضية */
.hero-lang-btn:focus,
.hero-contact-btn:focus{
  box-shadow: none !important;
}

/* بالموبايل خفف الأحجام */
@media (max-width: 992px){
  .hero-contact-btn{
    min-width: 150px;
    height: 56px;
    font-size: 13px;
    border-radius: 16px;
    padding: 14px 14px 14px;
  }
  .hero-lang-btn{
    font-size: 13px;
     padding: 14px 14px 14px;

  }
}


/* ===== Language dropdown menu styling ===== */
.hero-lang .dropdown-menu{
  min-width: 180px;
  padding: 8px;
  margin-top: 12px;

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);

  /* خلفية زجاجية */
  background: rgba(10,10,10,.70);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

/* السهم الصغير فوق القائمة (اختياري بس يعطي شكل مرتب) */
.hero-lang .dropdown-menu::before{
  content:"";
  position:absolute;
  top:-6px;
  right: 18px;            /* RTL: السهم قريب من زر اللغة */
  width: 12px;
  height: 12px;
  background: rgba(10,10,10,.70);
  border-left: 1px solid rgba(255,255,255,.10);
  border-top: 1px solid rgba(255,255,255,.10);
  transform: rotate(45deg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* عناصر القائمة */
.hero-lang .dropdown-item{
  border-radius: 10px;
  padding: 12px 12px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
  font-size: 14px;
  text-align: right;

}

/* Hover على عناصر القائمة فقط */
.hero-lang .dropdown-item:hover,
.hero-lang .dropdown-item:focus{
  background: rgba(255,255,255,.10);
  color: #fff;
}

/* العنصر المحدد (إذا بدك تمييز العربية مثلًا) */
.hero-lang .dropdown-item.is-active{
  background: rgba(255,255,255,.14);
  color:#fff;
}

/* خط فاصل ناعم لو زودت لغات */
.hero-lang .dropdown-divider{
  border-top: 1px solid rgba(255,255,255,.10);
  margin: 6px 8px;
}



/*  شاشة العملاء  */
/* =========================
   Page Hero (Inner Banner)
   ========================= */
   
.page-hero{
  position: relative;
  overflow: hidden;
  height: 280px;                 /* قريب جدًا للصورة */
  border-radius: 2px;
}

/* Background image */
.page-hero__bg{
  position: absolute;
  inset: 0;
  background: url("../img/slider.jpg") center/cover no-repeat;
  transform: scale(1.03);
  filter: blur(.2px);
}

/* Dark vignette like design */
.page-hero__vignette{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 120% at 70% 50%,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.55) 55%,
      rgba(0,0,0,0.90) 100%),
    linear-gradient(90deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.45) 55%,
      rgba(0,0,0,0.35) 100%);
}

/* Horizontal light band across center */
.page-hero__band{
  position:absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: 70px;
  transform: translateY(-50%);
  background: linear-gradient(180deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.00) 100%);
  mix-blend-mode: screen;
  opacity: .85;
}

/* Content */
.page-hero__container{
  height: 100%;
  max-width: 1120px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__content{
  text-align: center;
  color: #fff;
  transform: translateY(2px);
}

.page-hero__title{
  margin: 0 0 15px;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: .2px;
  line-height: 1.05;
}

/* Breadcrumbs */
.page-hero__crumbs{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.page-hero__crumb{
  color: rgba(255,255,255,.95);
  text-decoration: none;
}
.page-hero__crumb:hover{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.page-hero__sep{
  color: rgba(255,255,255,.70);
  font-weight: 700;
}

.page-hero__current{
  color: #F59E0B; /* برتقالي مثل التصميم */
  font-weight: 900;
}

/* Responsive */
@media (max-width: 992px){
  .page-hero{ height: 190px; border-width: 6px; }
  .page-hero__title{ font-size: 38px; }
  .page-hero__crumbs{ font-size: 16px; }
}
@media (max-width: 576px){
  .page-hero{ height: 170px; border-width: 5px; }
  .page-hero__title{ font-size: 32px; }
}







/* =========================
   Footer (match design)
   ========================= */
.site-footer{
  background: #5a5a5a;  /* قريب جدًا من الصورة */
  color: rgba(255,255,255,.9);
  padding: 18px 0 14px;
}

.site-footer__container{
  max-width: 1120px;
}

.site-footer__top{
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* social | menu | logo */
  align-items: center;
  gap: 16px;
  padding: 6px 0 10px;
  border-bottom: 1px solid #FFF;
}

/* Social */
.site-footer__social{
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end; /* RTL: هذا رح يكون يسار بصريًا داخل الشبكة */
}

.sf-icon{
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(255,255,255,.95);
  font-weight: 800;
  font-size: 14px;
  opacity: .95;
  transition: transform .2s ease, opacity .2s ease, color .2s ease;
}

/* .sf-icon:first-child{ color: #ff6a00; }  */



.sf-icon:hover{
  transform: translateY(-2px);
  opacity: 1;
  color: #ff6a00;
}

/* Menu */
.site-footer__nav{
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__nav a{
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: color .2s ease, opacity .2s ease;
}

.site-footer__nav a:hover{
  color: rgba(255,255,255,.95);
}

/* Logo */
.site-footer__brand{
  display:flex;
  justify-content: center;
}
.site-footer__logo{
  height: 54px;
  width: auto;
  display:block;
  opacity: .95;
}

/* Bottom line */
.site-footer__bottom{
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,.85);
  padding-top: 14px;
}

/* Responsive */
@media (max-width: 992px){
  .site-footer__top{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .site-footer__social{ justify-content: center; }
  .site-footer__brand{ justify-content: center; }
  .site-footer__nav{ gap: 18px; }
}























/* =========================
   Products grid (match UI)
   ========================= */
.products{
  background:#fff;
  padding: 36px 0 60px;
}

.products__container{
  max-width: 1120px;
}

/* 3 أعمدة مثل الصورة */
.products__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 26px;
}

/* Card */
.product-card{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 1 / 1;           /* كروت مربعة */
  background-position: center center; /* مهم */
  background-size: cover;              /* هذا هو الكافر */
  background-repeat: no-repeat;

  transition: transform .45s ease;
}

/* رابط يغطي الكرت */
.product-card__link{
  display:block;
  width:100%;
  height:100%;
  position: relative;
  text-decoration:none;
}

/* الصورة */
.product-card__media{
  position:absolute;
  inset:0;
  background: var(--img) center/cover no-repeat;
  transform: scale(1);
  transition: transform .45s ease;
}

/* overlay (يظهر فقط بالهوفر/active) */
.product-card__link::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}

/* info box */
.product-card__info{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background:#fff;
  border-radius: 10px;
  padding: 18px 18px 14px;
  z-index: 2;

  transform: translateY(16px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

/* title */
.product-card__title{
  color:#1f2937;
  font-weight: 800;
  font-size: 20px;
  text-align: right;
}

/* orange underline */
.product-card__underline{
  display:block;
  width: 58px;
  height: 3px;
  background: #FB6607;
  border-radius: 99px;
  margin-top: 10px;
  margin-right: 0;
  margin-left: auto; /* RTL: يخليه على اليمين */
}

/* Border أزرق مثل الصورة */
.product-card{
  outline: 0 solid rgba(0,0,0,0);
  transition: outline .25s ease;
}

/* Hover state */
.product-card:hover{
  outline: 3px solid #FB6607; /* أزرق */
  outline-offset: 0;
}

.product-card:hover .product-card__link::before{
  opacity: 1;
}
.product-card:hover .product-card__media{
  transform: scale(1.03);
}
.product-card:hover .product-card__info{
  transform: translateY(0);
  opacity: 1;
}

/* Optional: Active ثابت (لو بدك منتج محدد يظل مفتوح) */
.product-card.is-active{
  outline: 3px solid #FB6607;
}
.product-card.is-active .product-card__link::before{ opacity: 1; }
.product-card.is-active .product-card__info{ transform: translateY(0); opacity: 1; }

/* Responsive */
@media (max-width: 992px){
  .products__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px){
  .products__grid{ grid-template-columns: 1fr; }
}


























/* =========================
   Complaints (New Design)
   ========================= */
.complaints{
  background: #fff;
  padding: 46px 0 64px;
}

.complaints__container{
  max-width: 1120px;
}

/* Info card */
.complaints-info{
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  padding: 22px 22px;
  box-shadow: 0 10px 30px rgba(16,24,40,.06);
  height: 100%;
}

.complaints-title{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 26px;
  color:#111827;
}

.complaints-underline{
  display:block;
  width: 54px;
  height: 3px;
  background: #ff6a00;
  border-radius: 999px;
  margin-bottom: 14px;
}

.complaints-text{
  margin: 0 0 16px;
  color:#374151;
  line-height: 1.9;
  font-weight: 600;
  font-size: 14px;
}

.complaints-list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
}

.complaints-list li{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#111827;
}

.complaints-list i{
  width: 32px;
  height: 32px;
  display:grid;
  place-items:center;
  border-radius: 10px;
  background: #f3f4f6;
  color:#ff6a00;
  flex: 0 0 auto;
}

.complaints-list a{
  color:#111827;
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
}
.complaints-list a:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Note */
.complaints-note{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px dashed #e5e7eb;
  background: #fafafa;
  color:#374151;
  font-weight: 700;
  font-size: 13px;
}
.complaints-note i{
  color:#0d6efd;
}

/* Form card */
.complaints-form{
  background: #f7f7f9;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(16,24,40,.06);
  height: 100%;
}

/* Inputs */
.complaints .form-label{
  font-weight: 800;
  font-size: 12px;
  color:#111827;
  margin-bottom: 6px;
}

.complaints-control{
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 12px;
  font-weight: 700;
  font-size: 13px;
  background:#fff;
}

.complaints-control::placeholder{
  color:#9ca3af;
  font-weight: 700;
}

.complaints-control:focus{
  /* border-color: rgba(13,110,253,.5);
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.12); */
  border-color: rgba(255,106,0,.5);
  box-shadow: 0 0 0 .2rem rgba(247, 113, 17, 0.12);
}

.complaints-textarea{
  resize: none;
}

/* Button */
.complaints-btn{
  background: #ff6a00;
  border: 0;
  color:#fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 900;
  font-size: 13px;
  transition: transform .2s ease, opacity .2s ease;
}

.complaints-btn:hover{
  transform: translateY(-1px);
  opacity: .95;
}


































/* =========================
   About Company (match Figma)
   ========================= */
.about-company{
  background:#fff;
  padding: 40px 0 60px;
}

.about-company__container{
  max-width: 1120px;
}

.about-company__grid{
  display:grid;
  grid-template-columns:1fr 320px; /* صورة يسار + محتوى يمين */
  gap: 28px;
  align-items: start;
}

/* Left image card */
.about-company__image{
  border-radius: 16px;
  overflow:hidden;
  background:#eee;
  height: 410px;
}

.about-company__image img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Text card */
.about-card{
  position: relative;
  background:#fff;
  border: 2px solid #ff6a00;   /* قريب من الصورة */
  border-radius: 10px;
  padding: 18px 18px 16px;
}

.about-card__title{
  color:#ff6a00;
  font-weight: 900;
  font-size: 13px;
  text-align: right;
  margin-bottom: 10px;
}

/* small orange icon top-left inside card */
.about-card__icon{
  position:absolute;
  left: 14px;
  top: 14px;
  width: 12px;
  height: 12px;
  background:#ff6a00;
  border-radius: 2px;
}

/* Text */
.about-card__text{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  color:#6b7280;
  line-height: 1.85;
}

/* Accordion wrapper */
.about-acc{
  margin-top: 16px;
  display: grid;
  gap: 16px;
}

/* Accordion item (bar) */
.about-acc__item{
  width:100%;
  height: 48px;
  border: 0;
  border-radius: 8px;
  background:#f1f3f6;
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  cursor:pointer;

  font-weight: 900;
  font-size: 13px;
  color:#374151;
}

.about-acc__plus{
  width: 18px;
  height: 18px;
  display:grid;
  place-items:center;
  background:#4b4b4b;
  color:#fff;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1;
}

/* Panel hidden by default */
.about-acc__panel{
  overflow:hidden;
  max-height: 0;
  transition: max-height .28s ease;
  border-radius: 8px;
}

.about-acc__panel-inner{
  background:#fff;
  border: 1px solid #ff6a00;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  font-weight: 700;
  color:#6b7280;
  line-height: 1.8;
}

/* Active state */
.about-acc__item.is-open .about-acc__plus{
  background:#ff6a00;
}
.about-acc__item.is-open .about-acc__plus{
  content:"+";
}

/* Responsive */
@media (max-width: 992px){
  .about-company__grid{
    grid-template-columns: 1fr;
  }
  .about-company__image{
    height: 300px;
  }
}

.about-acc__panel-inner--boxed{
  background:#f3f4f6;
  border: 1px solid #ff6a00;
  border-radius: 14px;
  padding: 18px 18px;
}

.about-acc__panel-inner--boxed p{
  margin: 0 0 10px;
}
.about-acc__panel-inner--boxed p:last-child{
  margin-bottom: 0;
}

/* عنوان عن الشركة باللون البرتقالي مثل الصورة */
/* .about-acc__label--accent{
  color:#ff6a00;
} */

.about-acc__item.is-open .about-acc__plus{
  background:#ff6a00;  /* زي الصورة */
}

.is-open .about-acc__label{
   color:#ff6a00;
}



























/* =========================
   Clients Grid (Match Design)
   ========================= */
.clients{
  background:#fff;
  padding: 38px 0 60px;
}

.clients__container{
  max-width: 1120px;
}

.clients__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 24px;
}

/* Card base */
.client-card{
  border-radius: 14px;
  background: #f1f3f6;
  overflow:hidden;
  transition: transform .28s ease, filter .28s ease;
}

.client-card__link{
  display:block;
  text-decoration:none;
  color: inherit;
}

/* Media */
.client-card__media{
  position: relative;
  height: 330px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 14px 14px 0 0;
  overflow:hidden;
  transform: scale(1);
  transition: transform .45s ease;
}

/* Overlay (Hover/Active) */
.client-card__media::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(8, 28, 24, .62); /* أخضر/غامق مثل الصورة */
  opacity: 0;
  transition: opacity .28s ease;
}

/* Title */
.client-card__footer{
  height: 58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 12px;
  position: relative;
}

.client-card__title{
  font-weight: 900;
  font-size: 13px;
  color: #ff6a00; /* برتقالي مثل الصورة */
  position: relative;
  transition: color .25s ease, transform .25s ease;
}

/* underline صغير (كأنه active) */
.client-card__title::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 3px;
  background:#ff6a00;
  border-radius: 99px;
  transform: translateX(-50%);
  transition: width .25s ease;
}

/* ===== Hover => يتحول لنفس الكرت المميز ===== */
.client-card:hover{
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.12));
}

/* تكبير بسيط للصورة */
.client-card:hover .client-card__media{
  transform: scale(1.03);
}

/* إظهار التعتيم */
.client-card:hover .client-card__media::before{
  opacity: 1;
}

/* نقل العنوان ليصير داخل الصورة بأسفلها */
.client-card:hover .client-card__footer{
  height: 0;
  padding: 0;
}

.client-card:hover .client-card__title{
  color:#fff;
}

/* شريط العنوان داخل الصورة (نفس شكل الكرت الغامق) */
.client-card:hover .client-card__media::after{
  content: attr(data-title);
}

.client-card:hover .client-card__media::after{
  /* نخلي العنوان نص داخل الصورة */
  content: "";
}

.client-card:hover .client-card__media .client-card__title{ display:none; }

/* بدل الحركات أعلاه: نستخدم “label” داخل الميديا */
/* Label inside media */
.client-card__label{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 14px 14px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 2;
}

.client-card__label::after{
  content:"";
  display:block;
  width: 54px;
  height: 3px;
  background:#ff6a00;
  border-radius: 99px;
  margin: 10px auto 0;
}

/* Hover => show label in image + hide footer */
.client-card:hover .client-card__media::before{
  opacity: 1;
}
.client-card:hover .client-card__label{
  opacity: 1;
  transform: translateY(0);
}
.client-card:hover .client-card__footer{
  height: 0;
  padding: 0;
  overflow:hidden;
}

/* Active card (مثل الكرت الغامق بالصورة) */
.client-card.is-active .client-card__media::before{ opacity: 1; }
.client-card.is-active .client-card__label{ opacity: 1; transform: translateY(0); }
.client-card.is-active .client-card__footer{ height:0; padding:0; overflow:hidden; }


   @media (max-width: 992px){
  .clients__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px){
  .clients__grid{ grid-template-columns: 1fr; }
  .client-card__media{ height: 250px; }
}









































/* =========================
   Contact Page (On-brand)
   ========================= */
.contact-page{
  position: relative;
  background: #fff;
  padding: 44px 0 70px;
}

/* خلفية خفيفة جدًا مثل pattern (إبداع بسيط) */
.contact-page::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 220px at 15% 0%, rgba(255,106,0,.08), transparent 60%),
    radial-gradient(700px 220px at 85% 10%, rgba(13,110,253,.08), transparent 60%);
  pointer-events:none;
}

.contact-page__container{
  max-width: 1120px;
  position: relative;
  z-index: 1;
}

.contact-card{
  background: #fff;
  border: 1px solid #edf0f3;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(16,24,40,.06);
  height: 100%;
}

/* Titles */
.contact-title{
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 26px;
  color:#111827;
}
.contact-underline{
  display:block;
  width: 58px;
  height: 3px;
  background:#ff6a00;
  border-radius: 999px;
  margin-bottom: 12px;
}
.contact-desc{
  margin: 0;
  color:#4b5563;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.9;
}

/* Info items */
.contact-info__items{
  margin-top: 16px;
  display:grid;
  gap: 12px;
}

.contact-item{
  display:flex;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  background:#f7f7f9;
  border: 1px solid #eef1f4;
}

.contact-ico{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 14px;
  background:#fff;
  border: 1px solid #eef1f4;
  color:#ff6a00;
  flex: 0 0 auto;
  font-size: 16px;
}

.contact-item__label{
  font-size: 12px;
  font-weight: 900;
  color:#111827;
  margin-bottom: 2px;
}

.contact-item__value{
  font-size: 13px;
  font-weight: 800;
  color:#374151;
  text-decoration:none;
}
.contact-item__value:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}
.contact-item__value--text{
  text-decoration:none !important;
}

/* Actions */
.contact-actions{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.contact-action{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #e7eaee;
  background:#fff;
  color:#111827;
  font-weight: 900;
  font-size: 13px;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-action:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(16,24,40,.08);
  border-color:#d8dde3;
}

.contact-action--primary{
  background:#ff6a00;
  color:#fff;
  border-color: transparent;
}
.contact-action--primary:hover{
  box-shadow: 0 12px 26px rgba(255,106,0,.25);
}

.contact-note{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px dashed #e5e7eb;
  background:#fafafa;
  display:flex;
  gap: 10px;
  align-items:center;
  color:#4b5563;
  font-weight: 800;
  font-size: 13px;
}
.contact-note i{ color:#0d6efd; }

/* Form head */
.contact-form__head{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 16px;
}

.contact-form__badge{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255,106,0,.12);
  border: 1px solid rgba(255,106,0,.25);
  position: relative;
}
.contact-form__badge::after{
  content:"";
  position:absolute;
  inset: 9px;
  border-radius: 8px;
  background:#ff6a00;
}

.contact-form__title{
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color:#111827;
}
.contact-form__sub{
  margin-top: 2px;
  font-weight: 800;
  font-size: 12px;
  color:#6b7280;
}

/* Inputs */
.contact-page .form-label{
  font-weight: 900;
  font-size: 12px;
  color:#111827;
  margin-bottom: 6px;
}

.contact-control{
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 12px;
  font-weight: 800;
  font-size: 13px;
  background:#fff;
}

.contact-control::placeholder{
  color:#9ca3af;
  font-weight: 800;
}

.contact-control:focus{
  border-color: rgba(13,110,253,.55);
  box-shadow: 0 0 0 .2rem rgba(13,110,253,.12);
}

.contact-textarea{ resize: none; }

/* Button */
.contact-btn{
  background:#ff6a00;
  border:0;
  color:#fff;
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 900;
  font-size: 13px;
  transition: transform .2s ease, opacity .2s ease;
}
.contact-btn:hover{
  transform: translateY(-1px);
  opacity: .96;
}

.contact-hint{
  display:flex;
  gap: 8px;
  align-items:center;
  color:#6b7280;
  font-weight: 900;
  font-size: 12px;
}
.contact-hint i{ color:#0d6efd; }

.contact-success{
  margin-top: 6px;
  background: rgba(23,165,62,.10);
  border: 1px solid rgba(23,165,62,.28);
  color:#14532d;
  border-radius: 12px;
  padding: 12px 12px;
  font-weight: 900;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 992px){
  .contact-actions{ grid-template-columns: 1fr; }
}





























/* =========================
   Product View (WOW)
   ========================= */
.product-view{
  background:#fff;
  padding: 60px 0 80px;
}

.product-view__container{
  max-width: 1120px;
}

.product-view__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ========== Image Side ========== */
.product-media{
  perspective: 1000px;
}

.product-media__frame{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  transform-style: preserve-3d;
  transition: transform .4s ease;
}

.product-media__img{
  width:100%;
  height:auto;
  display:block;
  transform: scale(1.05);
}

/* ========== Info Side ========== */
.product-info{
  padding-inline-start: 10px;
}

.product-badge{
  display:inline-block;
  background: rgba(255,106,0,.12);
  color:#ff6a00;
  font-weight: 900;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.product-title{
  font-size: 34px;
  font-weight: 900;
  color:#111827;
  margin-bottom: 6px;
}

.product-underline{
  display:block;
  width: 70px;
  height: 4px;
  background:#ff6a00;
  border-radius: 999px;
  margin-bottom: 16px;
}

.product-desc{
  color:#4b5563;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 18px;
}

.product-points{
  list-style:none;
  padding:0;
  margin:0 0 26px;
  display:grid;
  gap: 10px;
}

.product-points li{
  font-weight: 800;
  font-size: 13px;
  color:#111827;
}

/* Actions */
.product-actions{
  display:flex;
  gap: 18px;
  align-items: center;
}

.product-btn{
  background:#ff6a00;
  color:#fff;
  border-radius: 14px;
  padding: 12px 26px;
  font-weight: 900;
  font-size: 14px;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,106,0,.35);
}

.product-link{
  color:#0d6efd;
  font-weight: 800;
  font-size: 13px;
  text-decoration:none;
}

.product-link:hover{
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Responsive */
@media (max-width: 992px){
  .product-view__grid{
    grid-template-columns: 1fr;
  }
}












/* =========================
   Partners (Figma Match)
   ========================= */
.partners{
  background:#fff;
  padding: 44px 0 70px;
}

.partners__container{
  max-width: 1120px;
}

/* 4 أعمدة مثل الصورة */
.partners__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 46px;
  justify-items:center;
}

/* Card */
.partner-card{
  width: 100%;
  text-align:center;
}

.partner-card__link{
  text-decoration:none;
  color: inherit;
  display:block;
}

/* Badge area */
.partner-card__badge{
  position: relative;
  width: 235px;
  height: 255px;
  margin: 0 auto;
}

/* The one-piece SVG shape */
.partner-card__shape{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display:block;
  transform: translateZ(0);
  transition: transform .45s ease, filter .45s ease;
}

/* Logo placeholder (نفس مكان الرمادي في التصميم) */
.partner-card__logo{
  position:absolute;
  left: 50%;
  top: 36px;
  width: 175px;
  height: 175px;
  transform: translateX(-50%);
  /* background: #cfcfcf; */
  border-radius: 0 0 999px 999px;
  z-index: 2;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
  overflow:hidden;
}

/* إذا حطيت img داخل اللوجو */
.partner-card__logo img{
  width:100%;
  height:100%;
  object-fit: contain;
  padding: 10px;
  display:block;
}

/* Name */
.partner-card__name{
  margin-top: 14px;
  font-size: 20px;
  font-weight: 800;
  color:#111;
}

/* =========================
   Hover (Creative, On-brand)
   ========================= */
.partner-card__link:hover .partner-card__shape{
  transform: translateY(-4px) rotate(6deg) scale(1.03);
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.14));
}

.partner-card__link:hover .partner-card__logo{
  transform: translateX(-50%) translateY(-6px) scale(1.04);
  /* background: #e5e5e5; */
  /* box-shadow: 0 14px 26px rgba(255,106,0,.18); */
}

/* إضافة لمعة برتقالية خفيفة حول الشكل */
.partner-card__link:hover .partner-card__badge::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 18px;
  background: radial-gradient(circle at 60% 60%, rgba(255,106,0,.22), transparent 55%);
  z-index: 1;
  pointer-events:none;
  filter: blur(2px);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 992px){
  .partners__grid{ grid-template-columns: repeat(2, 1fr); gap: 26px 26px; }
}
@media (max-width: 576px){
  .partners__grid{ grid-template-columns: 1fr; }
}
