.elementor-1071 .elementor-element.elementor-element-61efdb6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1071 .elementor-element.elementor-element-ca92a3d{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-ca92a3d *//* =========================================
   COMPACT HERO (مظهر مدمج وصورة واضحة)
   ========================================= */
.global-hero {
  --navy: #0b1d2a;
  --orange: #ff7b00;
  --text-light: #f4f4f4;

  position: relative;
  /* 1. تقليل الارتفاع العام للهيرو */
  height: 60vh;          /* كان 80vh - جعلناه أقصر ليظهر بشكل بانر */
  min-height: 450px;     /* كان 550px - لضمان عدم تمدده كثيراً */
  
  background: var(--hero-bg, url('default.jpg')) center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* 2. تخفيف الظل لتوضيح الصورة الخلفية */
.global-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(11, 29, 42, 0.85) 15%,  /* قللنا الشفافية هنا لرؤية الصورة */
    rgba(11, 29, 42, 0.6) 50%,   /* المنطقة الوسطى أصبحت أشف */
    rgba(11, 29, 42, 0.3) 100%   /* نهاية الصورة شبه شفافة */
  );
  z-index: 1;
}

.global-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  color: #ffffff;
}

/* الشارة */
.global-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 123, 0, 0.15);
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 5px 14px; /* تصغير الشارة قليلاً */
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px; /* تقليل المسافة تحت الشارة */
  text-transform: uppercase;
}

/* العناوين */
.global-container h1 {
  color: #ffffff;
  font-size: 3rem; /* تصغير الخط قليلاً ليتناسب مع الارتفاع الجديد */
  line-height: 1.1;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.global-container h1 span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--orange);
  margin-top: 5px;
}

.global-container p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 25px; /* تقريب الأزرار من النص */
  color: var(--text-light);
  opacity: 0.95;
}

/* الأزرار */
.global-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, var(--orange), #ff9e40);
  color: #ffffff;
  padding: 14px 30px; /* تصغير حجم الأزرار قليلاً */
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #e65100, var(--orange));
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color: var(--navy);
  border-color: #ffffff;
}

/* ===============================
   MOBILE: CINEMATIC LUXURY VIEW
================================ */
@media (max-width: 768px) {
  .global-hero {
    /* 1. جعل الخلفية تغطي مساحة مريحة للعين */
    background-size: cover; /* cover أفضل للاحترافية من 100% لأنه يملأ الفراغات */
    background-position: center center;
    background-attachment: scroll;
    
    /* ارتفاع ثابت يغطي 75% من شاشة الموبايل (مظهر سينمائي) */
    height: 75vh; 
    min-height: 500px;
    
    /* محاذاة العناصر للأسفل واليسار */
    display: flex;
    align-items: flex-end; /* المحتوى في الأسفل */
    justify-content: flex-start; /* المحتوى لليسار */
  }

  /* 2. ظل احترافي ناعم جداً للقراءة (Cinematic Gradient) */
  .global-overlay {
    background: linear-gradient(
      to bottom,
      rgba(11, 29, 42, 0) 0%,       /* شفاف في الأعلى لرؤية السماء/الصورة */
      rgba(11, 29, 42, 0.3) 50%,    
      rgba(11, 29, 42, 0.9) 85%,    /* داكن خلف النص */
      rgba(11, 29, 42, 1) 100%
    );
  }

  .global-container {
    width: 100%;
    padding: 0 24px 50px 24px; /* مسافة سفلية */
    margin-top: 0; /* إلغاء المارجن القديم */
    text-align: left; /* المحاذاة لليسار تعطي فخامة */
    z-index: 5;
  }

  /* --- تنسيق النجوم (Luxury Badge) --- */
  /* قمت بإخفاء الـ global-badge القديم واستبداله بتنسيق خاص */
  .global-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1); /* خلفية زجاجية */
    backdrop-filter: blur(4px); /* تأثير الضبابية خلف النجوم */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffb400; /* ذهبي */
    padding: 6px 14px;
    border-radius: 4px; /* زوايا أقل حدة */
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }

  /* --- تنسيق العنوان (Cinematic Title) --- */
  .global-container h1 {
    font-size: 2.4rem; /* حجم كبير وواضح */
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
    
    /* إضافة خط ذهبي بجانب العنوان (لمسة فندقية) */
    border-left: 4px solid var(--orange);
    padding-left: 15px;
  }

  .global-container h1 span {
    display: block;
    font-size: 1.4rem;
    font-weight: 300; /* خط رفيع للفخامة */
    color: #ddd; /* أبيض مائل للرمادي لتباين راقٍ */
    margin-top: 5px;
    letter-spacing: 0.5px;
  }

  /* --- إخفاء العناصر غير المطلوبة --- */
  .global-container p,
  .global-cta {
    display: none;
  }
}/* End custom CSS */