/* ================================================================
   الالة - قطاع المقاولات | Frontend Styles
   Colors: Navy #0B2441 | Gold #C9A84C | White #FFFFFF
   ================================================================ */

:root {
  --al-navy:       #0B2441;
  --al-navy-dark:  #071829;
  --al-navy-light: #163560;
  --al-gold:       #C9A84C;
  --al-gold-light: #E2C175;
  --al-gold-dark:  #A8872E;
  --al-white:      #FFFFFF;
  --al-gray-50:    #F8F9FA;
  --al-gray-100:   #F1F3F5;
  --al-gray-200:   #E9ECEF;
  --al-gray-500:   #6C757D;
  --al-gray-700:   #343A40;
  --al-text:       #1A1A2E;
  --al-radius:     12px;
  --al-radius-lg:  20px;
  --al-shadow:     0 4px 24px rgba(11,36,65,0.10);
  --al-shadow-lg:  0 8px 40px rgba(11,36,65,0.16);
  --al-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --al-font:       'Cairo', 'Segoe UI', Tahoma, sans-serif;
  --al-max-width:  1240px;
}

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

.al-hero, .al-about, .al-stats, .al-services, .al-projects,
.al-features, .al-cta, .al-partners,
.al-single-project { font-family: var(--al-font); direction: rtl; }

/* ── Buttons ──────────────────────────────────────────────────── */
.al-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px; font-weight: 700;
  font-size: 15px; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: var(--al-transition);
  white-space: nowrap; font-family: var(--al-font);
}
.al-btn--primary   { background: var(--al-gold); color: var(--al-navy); border-color: var(--al-gold); }
.al-btn--primary:hover { background: var(--al-gold-dark); border-color: var(--al-gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.al-btn--gold      { background: var(--al-gold); color: var(--al-navy); }
.al-btn--gold:hover { background: var(--al-gold-light); transform: translateY(-2px); }
.al-btn--outline   { background: transparent; color: var(--al-navy); border-color: var(--al-navy); }
.al-btn--outline:hover { background: var(--al-navy); color: var(--al-white); }
.al-btn--outline-white { background: transparent; color: var(--al-white); border-color: rgba(255,255,255,0.7); }
.al-btn--outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--al-white); }
.al-btn--ghost     { background: transparent; color: var(--al-gold); border-color: var(--al-gold); font-size: 14px; padding: 9px 22px; }
.al-btn--ghost:hover { background: var(--al-gold); color: var(--al-navy); }

/* ── Section Badge ────────────────────────────────────────────── */
.al-section-badge {
  display: inline-block; background: rgba(201,168,76,0.12);
  color: var(--al-gold); border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 20px; border-radius: 50px; font-size: 13px;
  font-weight: 700; letter-spacing: 1px; margin-bottom: 16px;
}

/* ── Tags ─────────────────────────────────────────────────────── */
.al-tag {
  display: inline-block; background: rgba(201,168,76,0.1);
  color: var(--al-gold); padding: 4px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin: 3px;
}
.al-tag--link { text-decoration: none; transition: var(--al-transition); }
.al-tag--link:hover { background: var(--al-gold); color: var(--al-navy); }

/* ================================================================
   HERO SECTION
   ================================================================ */
.al-hero {
  position: relative; min-height: 90vh; display: flex;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--al-navy-dark) 0%, var(--al-navy) 50%, var(--al-navy-light) 100%);
  overflow: hidden; text-align: center;
}
.al-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.al-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,24,41,0.3) 0%, rgba(11,36,65,0.6) 100%);
}
.al-hero__content {
  position: relative; z-index: 2; max-width: 860px;
  padding: 40px 24px; margin: 0 auto;
}
.al-hero__badge {
  display: inline-block; background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5); color: var(--al-gold);
  padding: 7px 24px; border-radius: 50px; font-size: 14px;
  font-weight: 700; margin-bottom: 24px; letter-spacing: 1.5px;
}
.al-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  color: var(--al-white); line-height: 1.25; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.al-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.85);
  line-height: 1.8; margin-bottom: 36px; max-width: 680px; margin-inline: auto;
}
.al-hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.al-hero__stats {
  display: flex; gap: 0; justify-content: center;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--al-radius-lg);
  padding: 24px 40px; flex-wrap: wrap;
}
.al-hero__stat {
  padding: 12px 32px; text-align: center;
  border-inline-end: 1px solid rgba(255,255,255,0.15);
}
.al-hero__stat:last-child { border-inline-end: none; }
.al-hero__stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--al-gold); }
.al-hero__stat span   { font-size: 13px; color: rgba(255,255,255,0.75); }
.al-hero__scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
}
.al-hero__scroll-hint span {
  display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px; margin: 0 auto; position: relative;
}
.al-hero__scroll-hint span::after {
  content:''; position: absolute; left: 50%; transform: translateX(-50%);
  top: 6px; width: 4px; height: 8px; background: var(--al-gold);
  border-radius: 2px; animation: scrollHint 1.8s infinite;
}
@keyframes scrollHint { 0%,100%{top:6px;opacity:1} 80%{top:22px;opacity:0} }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.al-about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 100px var(--al-max-width);
  max-width: 1240px; margin: 0 auto; padding: 100px 40px;
}
.al-about__img-wrap {
  position: relative; border-radius: var(--al-radius-lg); overflow: hidden;
  box-shadow: var(--al-shadow-lg);
}
.al-about__img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }
.al-about__exp-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--al-gold); color: var(--al-navy);
  padding: 16px 24px; border-radius: var(--al-radius); text-align: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.al-about__exp-badge strong { display: block; font-size: 2rem; font-weight: 900; }
.al-about__exp-badge span   { font-size: 13px; font-weight: 600; }
.al-about__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--al-navy); margin-bottom: 16px; line-height: 1.4; }
.al-about__text  { color: var(--al-gray-500); line-height: 1.9; margin-bottom: 16px; font-size: 15.5px; }
.al-about__points { list-style: none; margin: 20px 0 28px; }
.al-about__check {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0; font-size: 15px; color: var(--al-gray-700);
}
.al-about__check i {
  width: 22px; height: 22px; background: rgba(201,168,76,0.12);
  color: var(--al-gold); border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-style: normal; font-weight: 700; font-size: 12px; flex-shrink: 0;
}

/* ================================================================
   STATS SECTION
   ================================================================ */
.al-stats { padding: 80px 40px; text-align: center; }
.al-stats--navy { background: linear-gradient(135deg, var(--al-navy-dark), var(--al-navy)); color: var(--al-white); }
.al-stats--gold  { background: linear-gradient(135deg, var(--al-gold), var(--al-gold-dark)); color: var(--al-navy); }
.al-stats--white { background: var(--al-gray-50); color: var(--al-navy); }
.al-stats__header { max-width: 680px; margin: 0 auto 60px; }
.al-stats__title    { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
.al-stats--navy .al-stats__title { color: var(--al-white); }
.al-stats__subtitle { opacity: 0.8; line-height: 1.8; }
.al-stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px; max-width: 1000px; margin: 0 auto;
  background: rgba(255,255,255,0.06); border-radius: var(--al-radius-lg);
  overflow: hidden; border: 1px solid rgba(255,255,255,0.1);
}
.al-stats--white .al-stats__grid { background: var(--al-gray-200); border-color: var(--al-gray-200); }
.al-stat {
  padding: 40px 24px; background: rgba(255,255,255,0.04);
  transition: var(--al-transition);
}
.al-stats--white .al-stat { background: var(--al-white); }
.al-stat:hover { background: rgba(201,168,76,0.1); }
.al-stat__icon { font-size: 2rem; margin-bottom: 12px; }
.al-stat__num  { font-size: 2.5rem; font-weight: 900; color: var(--al-gold); line-height: 1; margin-bottom: 8px; }
.al-stats--white .al-stat__num { color: var(--al-navy); }
.al-stat__label { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.al-stats--navy .al-stat__label { color: var(--al-white); }
.al-stat__desc  { font-size: 13px; opacity: 0.65; }

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.al-services { padding: 100px 40px; background: var(--al-white); }
.al-services__header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.al-services__title    { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--al-navy); margin-bottom: 14px; }
.al-services__subtitle { color: var(--al-gray-500); line-height: 1.8; }
.al-services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; max-width: var(--al-max-width); margin: 0 auto;
}
.al-service-card {
  background: var(--al-white); border: 1px solid var(--al-gray-200);
  border-radius: var(--al-radius-lg); padding: 36px 28px;
  transition: var(--al-transition); position: relative; overflow: hidden;
}
.al-service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 4px; height: 0; background: var(--al-gold);
  transition: var(--al-transition); border-radius: 0 var(--al-radius-lg) var(--al-radius-lg) 0;
}
.al-service-card:hover { transform: translateY(-6px); box-shadow: var(--al-shadow-lg); border-color: transparent; }
.al-service-card:hover::before { height: 100%; }
.al-service-card__icon  { font-size: 2.5rem; margin-bottom: 16px; }
.al-service-card__title { font-size: 1.1rem; font-weight: 800; color: var(--al-navy); margin-bottom: 10px; }
.al-service-card__desc  { color: var(--al-gray-500); line-height: 1.8; font-size: 14.5px; margin-bottom: 16px; }
.al-service-card__feats { list-style: none; }
.al-service-card__feats li {
  font-size: 13.5px; color: var(--al-gray-700); padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.al-service-card__feats li::before { content: '✓'; color: var(--al-gold); font-weight: 700; }

/* ================================================================
   PROJECTS SECTION
   ================================================================ */
.al-projects { padding: 100px 40px; background: var(--al-gray-50); }
.al-projects__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.al-projects__title    { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--al-navy); margin-bottom: 14px; }
.al-projects__subtitle { color: var(--al-gray-500); line-height: 1.8; }
.al-projects__filter {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px;
}
.al-filter-btn {
  padding: 9px 22px; border-radius: 50px; border: 2px solid var(--al-gray-200);
  background: var(--al-white); color: var(--al-gray-700); font-weight: 600;
  font-size: 14px; cursor: pointer; transition: var(--al-transition); font-family: var(--al-font);
}
.al-filter-btn:hover, .al-filter-btn.active {
  background: var(--al-navy); color: var(--al-white); border-color: var(--al-navy);
}
.al-projects__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px; max-width: var(--al-max-width); margin: 0 auto;
}
.al-project-card {
  background: var(--al-white); border-radius: var(--al-radius-lg);
  overflow: hidden; box-shadow: var(--al-shadow);
  transition: var(--al-transition); display: flex; flex-direction: column;
}
.al-project-card:hover { transform: translateY(-8px); box-shadow: var(--al-shadow-lg); }
.al-project-card__img { position: relative; overflow: hidden; height: 220px; }
.al-project-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.al-project-card:hover .al-project-card__img img { transform: scale(1.08); }
.al-project-card__cat {
  position: absolute; top: 14px; right: 14px;
  background: var(--al-gold); color: var(--al-navy);
  padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.al-project-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.al-project-card__title { font-size: 1.05rem; font-weight: 800; color: var(--al-navy); margin-bottom: 8px; }
.al-project-card__title a { text-decoration: none; color: inherit; transition: var(--al-transition); }
.al-project-card__title a:hover { color: var(--al-gold); }
.al-project-card__excerpt { color: var(--al-gray-500); font-size: 14px; line-height: 1.7; margin-bottom: 14px; flex: 1; }
.al-project-card__meta { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.al-project-card__meta span { font-size: 13px; color: var(--al-gray-500); display: flex; align-items: center; gap: 5px; }
.al-projects__loadmore { text-align: center; margin-top: 48px; }
.al-projects__empty { text-align: center; color: var(--al-gray-500); padding: 60px; grid-column: 1/-1; }

/* ================================================================
   FEATURES / WHY US
   ================================================================ */
.al-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 100px 40px;
  max-width: var(--al-max-width); margin: 0 auto;
}
.al-features__title    { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color: var(--al-navy); margin-bottom: 14px; }
.al-features__subtitle { color: var(--al-gray-500); line-height: 1.8; margin-bottom: 32px; }
.al-features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.al-feature-item { display: flex; gap: 14px; align-items: flex-start; }
.al-feature-item__icon {
  font-size: 1.5rem; width: 48px; height: 48px; background: rgba(201,168,76,0.1);
  border-radius: var(--al-radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.al-feature-item__title { font-size: 14.5px; font-weight: 800; color: var(--al-navy); margin-bottom: 4px; }
.al-feature-item__text  { font-size: 13.5px; color: var(--al-gray-500); line-height: 1.6; }
.al-features__img-col img { width: 100%; border-radius: var(--al-radius-lg); box-shadow: var(--al-shadow-lg); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.al-cta {
  padding: 100px 40px; text-align: center;
  background: linear-gradient(135deg, var(--al-navy-dark) 0%, var(--al-navy) 60%, var(--al-navy-light) 100%);
  position: relative; overflow: hidden;
}
.al-cta::before {
  content: ''; position: absolute; top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.al-cta__content { position: relative; max-width: 700px; margin: 0 auto; }
.al-cta__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; color: var(--al-white); margin-bottom: 16px; }
.al-cta__text  { color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 36px; font-size: 1.05rem; }
.al-cta__btns  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.al-cta__phone { display: flex; align-items: center; justify-content: center; gap: 10px; }
.al-cta__phone a { color: var(--al-gold); font-weight: 700; font-size: 1.1rem; text-decoration: none; direction: ltr; }

/* ================================================================
   PARTNERS SECTION
   ================================================================ */
.al-partners { padding: 80px 40px; background: var(--al-white); }
.al-partners__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.al-partners__title    { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 900; color: var(--al-navy); margin-bottom: 12px; }
.al-partners__subtitle { color: var(--al-gray-500); line-height: 1.8; }
.al-partners__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px; max-width: var(--al-max-width); margin: 0 auto;
}
.al-partner-item {
  background: var(--al-gray-50); border: 1px solid var(--al-gray-200);
  border-radius: var(--al-radius); padding: 24px 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 90px; transition: var(--al-transition);
}
.al-partner-item:hover { border-color: var(--al-gold); box-shadow: 0 4px 16px rgba(201,168,76,0.15); }
.al-partner-item img { max-width: 120px; max-height: 50px; object-fit: contain; filter: grayscale(0.4); transition: var(--al-transition); }
.al-partner-item:hover img { filter: none; }
.al-partner-item__text { font-weight: 700; font-size: 14px; color: var(--al-navy); text-align: center; }

/* ================================================================
   SINGLE PROJECT
   ================================================================ */
.al-single-project { font-family: var(--al-font); direction: rtl; }
.al-sp-hero {
  position: relative; min-height: 420px; display: flex;
  align-items: flex-end; background-size: cover;
  background-position: center; background-color: var(--al-navy);
}
.al-sp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(7,24,41,0.88) 0%, rgba(7,24,41,0.3) 100%);
}
.al-sp-hero__content { position: relative; z-index: 2; padding: 48px 40px; width: 100%; max-width: var(--al-max-width); margin: 0 auto; }
.al-sp-hero__breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 12px; flex-wrap: wrap; }
.al-sp-hero__breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.al-sp-hero__breadcrumb a:hover { color: var(--al-gold); }
.al-sp-hero__title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--al-white); margin-bottom: 16px; }
.al-sp-hero__cats  { display: flex; gap: 8px; flex-wrap: wrap; }

.al-sp-body {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 40px; max-width: var(--al-max-width);
  margin: 0 auto; padding: 60px 40px;
}
.al-sp-featured-img { border-radius: var(--al-radius-lg); overflow: hidden; margin-bottom: 32px; }
.al-sp-featured-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.al-sp-the-content { line-height: 1.9; color: var(--al-gray-700); font-size: 16px; }
.al-sp-the-content h2, .al-sp-the-content h3 { color: var(--al-navy); margin: 24px 0 12px; font-weight: 800; }
.al-sp-the-content p { margin-bottom: 16px; }
.al-sp-the-content img { border-radius: var(--al-radius); max-width: 100%; }

/* Sidebar Cards */
.al-sp-info-card, .al-sp-cats-card, .al-sp-share-card, .al-sp-cta-card {
  background: var(--al-white); border: 1px solid var(--al-gray-200);
  border-radius: var(--al-radius-lg); padding: 24px; margin-bottom: 20px;
}
.al-sp-info-card__title { font-size: 16px; font-weight: 800; color: var(--al-navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--al-gold); }
.al-sp-sidebar h3 { font-size: 15px; font-weight: 800; color: var(--al-navy); margin-bottom: 14px; }
.al-sp-info-list { list-style: none; }
.al-sp-info-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--al-gray-100); }
.al-sp-info-item:last-child { border-bottom: none; }
.al-sp-info-item__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.al-sp-info-item__label { font-size: 12px; color: var(--al-gray-500); }
.al-sp-info-item__value { font-size: 14px; font-weight: 700; color: var(--al-navy); }
.al-sp-cats { display: flex; gap: 8px; flex-wrap: wrap; }
.al-sp-share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.al-share-btn { padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: var(--al-transition); }
.al-share-btn--fb { background: #1877F2; color: #fff; }
.al-share-btn--wa { background: #25D366; color: #fff; }
.al-share-btn--tw { background: #1DA1F2; color: #fff; }
.al-share-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.al-sp-cta-card { background: linear-gradient(135deg, var(--al-navy), var(--al-navy-light)); text-align: center; }
.al-sp-cta-card h3 { color: var(--al-white); }
.al-sp-cta-card p  { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.al-sp-cta-card .al-btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.al-sp-related { padding: 60px 40px; background: var(--al-gray-50); }
.al-sp-related__title { font-size: 1.5rem; font-weight: 900; color: var(--al-navy); margin-bottom: 32px; text-align: center; }
.al-sp-related .al-projects__grid { max-width: var(--al-max-width); margin: 0 auto; }

/* ================================================================
   LOADING ANIMATIONS
   ================================================================ */
.al-fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.al-fade-in.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .al-about, .al-features { grid-template-columns: 1fr; gap: 40px; }
  .al-about__img-col { order: -1; }
  .al-features__grid { grid-template-columns: 1fr; }
  .al-sp-body { grid-template-columns: 1fr; }
  .al-sp-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .al-sp-cta-card { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .al-hero { min-height: 100svh; }
  .al-hero__stats { padding: 16px 20px; }
  .al-hero__stat  { padding: 10px 16px; }
  .al-about, .al-services, .al-projects, .al-features, .al-cta, .al-partners { padding: 60px 20px; }
  .al-features__grid { grid-template-columns: 1fr; }
  .al-services__grid { grid-template-columns: 1fr; }
  .al-projects__grid { grid-template-columns: 1fr; }
  .al-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .al-cta__btns  { flex-direction: column; align-items: center; }
  .al-sp-body    { padding: 32px 20px; }
  .al-sp-hero__content { padding: 32px 20px; }
  .al-sp-sidebar { grid-template-columns: 1fr; }
  .al-sp-related { padding: 40px 20px; }
  .al-stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .al-hero__stat { padding: 10px 12px; }
  .al-hero__stat strong { font-size: 1.5rem; }
  .al-partners__grid { grid-template-columns: repeat(2, 1fr); }
  .al-features__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   VISION + CLIENTS COMBINED SECTION
   ================================================================ */
.al-vision-clients { font-family: var(--al-font); direction: rtl; }

/* ── TOP: Hero + Columns ── */
.al-vc__top {
  position: relative; min-height: 600px; display: flex;
  align-items: center; background-size: cover; background-position: center;
  background-color: var(--al-navy);
}
.al-vc__overlay { position: absolute; inset: 0; }
.al-vc__inner {
  position: relative; z-index: 2; width: 100%; max-width: 1240px;
  margin: 0 auto; padding: 60px 40px; display: flex;
  flex-direction: column; gap: 0;
}

/* Hero text (عنوان رئيسي) */
.al-vc__hero-text { text-align: center; margin-bottom: 48px; }
.al-vc__main-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900;
  color: var(--al-white); line-height: 1.3; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.al-vc__main-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.75); font-style: italic;
}

/* الأعمدة الثلاثة */
.al-vc__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.al-vc__col {
  padding: 32px 36px;
  border-inline-start: 1px solid rgba(201,168,76,0.3);
}
.al-vc__col:last-child { border-inline-start: none; }
.al-vc__col-label {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px;
}
.al-vc__col-title {
  font-size: 1.3rem; font-weight: 900; color: var(--al-gold);
  margin-bottom: 12px; border-bottom: 2px solid rgba(201,168,76,0.3);
  padding-bottom: 12px;
}
.al-vc__col-desc {
  font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.8;
  margin-bottom: 16px;
}
.al-vc__col-points {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.al-vc__col-points li {
  font-size: 13.5px; color: rgba(255,255,255,0.85);
  padding-right: 20px; position: relative;
}
.al-vc__col-points li::before {
  content: '+'; position: absolute; right: 0; top: 0;
  color: var(--al-gold); font-weight: 900; font-size: 14px;
}

/* ── BOTTOM: Clients Carousel ── */
.al-vc__clients {
  background: var(--al-white);
  box-shadow: 0 -4px 32px rgba(11,36,65,0.08);
}
.al-vc__clients-inner {
  max-width: 1240px; margin: 0 auto; padding: 48px 40px;
  display: grid; grid-template-columns: 320px 1fr; gap: 48px;
  align-items: center;
}
.al-vc__clients-title {
  font-size: 1.5rem; font-weight: 900; color: var(--al-navy);
  margin-bottom: 10px;
}
.al-vc__clients-desc {
  font-size: 14px; color: var(--al-gray-500); line-height: 1.8;
  margin-bottom: 20px;
}

/* Carousel */
.al-vc__carousel-wrap {
  position: relative; overflow: hidden;
}
.al-vc__carousel {
  display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.al-vc__slide {
  flex-shrink: 0; padding: 16px 24px; display: flex;
  align-items: center; justify-content: center; min-height: 90px;
}
.al-vc__slide img {
  max-width: 120px; max-height: 60px; object-fit: contain;
  filter: grayscale(0.3); transition: var(--al-transition);
}
.al-vc__slide:hover img { filter: none; transform: scale(1.05); }
.al-vc__slide-name {
  font-size: 14px; font-weight: 700; color: var(--al-navy);
  text-align: center; padding: 16px;
  background: var(--al-gray-100); border-radius: var(--al-radius);
  width: 100%;
}

/* Nav arrows */
.al-vc__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--al-navy); color: var(--al-white);
  font-size: 18px; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: var(--al-transition); z-index: 10;
}
.al-vc__nav:hover { background: var(--al-gold); color: var(--al-navy); }
.al-vc__nav--prev { left: -14px; }
.al-vc__nav--next { right: -14px; }

/* Dots */
.al-vc__dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.al-vc__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--al-gray-200); border: none; cursor: pointer;
  transition: var(--al-transition); padding: 0;
}
.al-vc__dot.active { background: var(--al-navy); width: 24px; border-radius: 4px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .al-vc__clients-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .al-vc__cols { grid-template-columns: 1fr; }
  .al-vc__col  { border-inline-start: none !important; border-top: 1px solid rgba(201,168,76,0.3); padding: 24px 20px; }
  .al-vc__inner { padding: 40px 20px; }
  .al-vc__clients-inner { padding: 32px 20px; }
  .al-vc__nav--prev { left: 4px; }
  .al-vc__nav--next { right: 4px; }
}

/* ================================================================
   SERVICES ACCORDION (خلفية + كارد أكورديون)
   ================================================================ */
.al-sa {
  position: relative; display: flex; align-items: center;
  min-height: 560px; background-size: cover; background-position: center;
  background-color: var(--al-navy); font-family: var(--al-font); direction: rtl;
  overflow: hidden;
}
.al-sa__overlay { position: absolute; inset: 0; }

/* كارد موضعه يمين أو يسار */
.al-sa__card {
  position: relative; z-index: 2;
  width: 520px; max-width: 90%;
  padding: 48px 44px; border-radius: 4px;
  backdrop-filter: blur(4px);
  background: rgba(11,36,65,0.93);
  margin: 40px;
  flex-shrink: 0;
}
.al-sa--card-right { justify-content: flex-end; }
.al-sa--card-left  { justify-content: flex-start; }

/* شارة */
.al-sa__badge-wrap {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.al-sa__badge-line {
  display: block; width: 28px; height: 2px; background: var(--al-gold);
}
.al-sa__badge {
  font-size: 13px; color: var(--al-gold); font-weight: 700; letter-spacing: 1px;
}
.al-sa__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900;
  color: var(--al-white); margin-bottom: 28px; line-height: 1.4;
}

/* الأكورديون */
.al-sa__accordion { border-top: 1px solid rgba(255,255,255,0.15); }
.al-sa__item      { border-top: 1px solid rgba(255,255,255,0.12); }
.al-sa__item:first-child { border-top: none; }

.al-sa__item-head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 18px 0; text-align: right;
  font-family: var(--al-font); direction: rtl;
}
.al-sa__item-title {
  font-size: 15.5px; font-weight: 700; color: var(--al-white);
  flex: 1; text-align: right;
}
.al-sa__item-icon {
  font-size: 18px; font-weight: 300; color: var(--al-gold);
  width: 24px; text-align: center; flex-shrink: 0;
  transition: var(--al-transition);
}

/* مفتوح */
.al-sa__item.active .al-sa__item-title { color: var(--al-white); }
.al-sa__item.active .al-sa__item-head  { border-bottom: 1px solid rgba(255,255,255,0.1); }

/* المحتوى */
.al-sa__item-body {
  overflow: hidden; padding: 0;
  animation: saSlideDown 0.28s ease;
}
@keyframes saSlideDown {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}
.al-sa__item-content {
  padding: 16px 0 20px;
  font-size: 14px; line-height: 1.85;
  color: rgba(255,255,255,0.80);
}
.al-sa__item-content p { margin: 0 0 10px; }
.al-sa__item-content p:last-child { margin-bottom: 0; }
.al-sa__item-content ul { padding-right: 18px; margin: 8px 0; }
.al-sa__item-content li { margin-bottom: 6px; }

/* Responsive */
@media (max-width: 768px) {
  .al-sa { flex-direction: column; justify-content: flex-end !important; min-height: auto; }
  .al-sa__card { width: 100%; max-width: 100%; margin: 0; border-radius: 0; padding: 32px 20px; }
}

/* ================================================================
   NEWS / BLOG POSTS SECTION
   ================================================================ */
.al-news {
  padding: 80px 40px; font-family: var(--al-font); direction: rtl;
  max-width: var(--al-max-width); margin: 0 auto;
}
.al-news__section-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900;
  color: var(--al-navy); margin-bottom: 48px; text-align: center;
}

/* ── Grid Layout ── */
.al-news--grid .al-news__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* ── List Layout (مثل الصورة: مقال واحد كبير) ── */
.al-news--list .al-news__grid {
  display: flex; flex-direction: column; gap: 32px; max-width: 700px; margin-right: auto;
}
.al-news--list .al-news__card { display: grid; grid-template-columns: 340px 1fr; gap: 28px; align-items: start; }
.al-news--list .al-news__img-wrap { height: 260px; }

/* ── Card ── */
.al-news__card {
  background: var(--al-white); border-radius: var(--al-radius-lg);
  overflow: hidden; transition: var(--al-transition);
}
.al-news__card:hover { transform: translateY(-4px); box-shadow: var(--al-shadow-lg); }

/* Image */
.al-news__img-wrap {
  display: block; position: relative; overflow: hidden;
  height: 220px; border-radius: var(--al-radius-lg) var(--al-radius-lg) 0 0;
  text-decoration: none;
}
.al-news--list .al-news__img-wrap {
  border-radius: var(--al-radius-lg); height: 100%;
}
.al-news__img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease; display: block;
}
.al-news__card:hover .al-news__img-wrap img { transform: scale(1.06); }
.al-news__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--al-navy) 0%, var(--al-navy-light) 100%);
}

/* Badge على الصورة */
.al-news__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--al-navy); color: var(--al-white);
  padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}

/* Body */
.al-news__body { padding: 20px 4px 8px; }
.al-news--grid .al-news__body { padding: 20px; }
.al-news__date {
  display: block; font-size: 12.5px; color: var(--al-gray-500);
  margin-bottom: 10px; direction: ltr; text-align: right;
}
.al-news__post-title {
  font-size: 1rem; font-weight: 800; color: var(--al-navy);
  line-height: 1.55; margin-bottom: 12px;
}
.al-news__post-title a { text-decoration: none; color: inherit; transition: var(--al-transition); }
.al-news__post-title a:hover { color: var(--al-gold); }
.al-news__excerpt { font-size: 14px; color: var(--al-gray-500); line-height: 1.8; margin-bottom: 12px; }
.al-news__readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--al-navy);
  text-decoration: none; transition: var(--al-transition);
}
.al-news__readmore:hover { color: var(--al-gold); gap: 10px; }

/* Footer / Button */
.al-news__footer { text-align: center; margin-top: 48px; }
.al-news__all-btn {
  background: var(--al-navy); color: var(--al-white);
  border-color: var(--al-navy); padding: 14px 44px;
  border-radius: 50px; font-size: 15px; font-weight: 700;
}
.al-news__all-btn:hover { background: var(--al-gold); border-color: var(--al-gold); color: var(--al-navy); }

.al-news__empty { text-align: center; color: var(--al-gray-500); padding: 48px; }

/* Responsive */
@media (max-width: 768px) {
  .al-news { padding: 48px 20px; }
  .al-news--list .al-news__card { grid-template-columns: 1fr; }
  .al-news--list .al-news__img-wrap { height: 220px; border-radius: var(--al-radius-lg) var(--al-radius-lg) 0 0; }
  .al-news--grid .al-news__grid { grid-template-columns: 1fr; }
}

/* ================================================================
   QUOTE REQUEST FORM
   ================================================================ */
.al-qf {
  padding: 80px 40px; font-family: var(--al-font); direction: rtl;
  background: linear-gradient(135deg, var(--al-navy-dark) 0%, var(--al-navy) 60%, var(--al-navy-light) 100%);
}
.al-qf--split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1160px; margin: 0 auto; align-items: start;
}
.al-qf--center {
  max-width: 800px; margin: 0 auto;
}

/* Text column */
.al-qf__title    { font-size: clamp(1.6rem,3vw,2.4rem); font-weight:900; color:var(--al-white); line-height:1.35; margin-bottom:14px; }
.al-qf__subtitle { color:rgba(255,255,255,0.8); line-height:1.85; margin-bottom:28px; font-size:15px; }
.al-qf__title--dark    { color:var(--al-navy); }
.al-qf__subtitle--dark { color:var(--al-gray-500); }

/* Contact info */
.al-qf__contact-info { display:flex; flex-direction:column; gap:14px; margin-bottom:28px; }
.al-qf__contact-item {
  display:flex; align-items:center; gap:14px; text-decoration:none;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--al-radius); padding:14px 16px; transition:var(--al-transition);
}
.al-qf__contact-item:hover { background:rgba(201,168,76,0.15); border-color:rgba(201,168,76,0.4); }
.al-qf__contact-item--wa:hover { background:rgba(37,211,102,0.15); }
.al-qf__contact-icon { font-size:1.5rem; flex-shrink:0; }
.al-qf__contact-label { font-size:12px; color:rgba(255,255,255,0.6); margin-bottom:2px; }
.al-qf__contact-val   { font-size:14px; font-weight:700; color:var(--al-white); }

/* Perks */
.al-qf__perks { list-style:none; display:flex; flex-direction:column; gap:10px; }
.al-qf__perks li { font-size:14px; color:rgba(255,255,255,0.85); display:flex; align-items:center; gap:8px; }

/* Form card */
.al-qf__form-card {
  background:var(--al-white); border-radius:var(--al-radius-lg);
  padding:36px 32px; box-shadow:0 20px 60px rgba(0,0,0,0.2);
}
.al-qf__row   { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
.al-qf__field { display:flex; flex-direction:column; gap:6px; }
.al-qf__field--full { grid-column:1/-1; margin-bottom:16px; }
.al-qf__field label { font-size:13px; font-weight:700; color:var(--al-navy); }
.al-req       { color:#d63638; }
.al-qf__field input,
.al-qf__field select,
.al-qf__field textarea {
  padding:11px 14px; border:1.5px solid var(--al-gray-200);
  border-radius:8px; font-size:14px; font-family:var(--al-font);
  color:var(--al-text); transition:var(--al-transition);
  background:var(--al-gray-50);
}
.al-qf__field input:focus,
.al-qf__field select:focus,
.al-qf__field textarea:focus {
  outline:none; border-color:var(--al-navy);
  background:var(--al-white); box-shadow:0 0 0 3px rgba(11,36,65,0.08);
}
.al-qf__field textarea { resize:vertical; min-height:110px; }
.al-qf__field select   { cursor:pointer; }

/* Submit */
.al-qf__submit {
  width:100%; justify-content:center; padding:14px;
  font-size:15px; border-radius:10px; margin-top:8px;
  background:var(--al-navy); color:var(--al-white);
  border:2px solid var(--al-navy);
}
.al-qf__submit:hover:not(:disabled) { background:var(--al-gold); border-color:var(--al-gold); color:var(--al-navy); transform:translateY(-2px); box-shadow:0 6px 20px rgba(201,168,76,0.3); }
.al-qf__submit:disabled { opacity:0.7; cursor:not-allowed; transform:none; }

/* Messages */
.al-qf__messages {
  padding:14px 16px; border-radius:8px; margin-bottom:16px;
  font-size:14px; font-weight:600; line-height:1.6;
}
.al-qf__messages--success { background:#d1fae5; color:#065f46; border:1px solid #6ee7b7; }
.al-qf__messages--error   { background:#fee2e2; color:#991b1b; border:1px solid #fca5a5; }

/* Responsive */
@media (max-width:900px) {
  .al-qf--split { grid-template-columns:1fr; gap:32px; }
}
@media (max-width:600px) {
  .al-qf { padding:48px 20px; }
  .al-qf__form-card { padding:24px 18px; }
  .al-qf__row { grid-template-columns:1fr; }
}
