.elementor-1077 .elementor-element.elementor-element-956003f{--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-1077 .elementor-element.elementor-element-d864503{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-d864503 *//* =========================================
   GLOBAL HERO STYLES
   ========================================= */
.global-hero {
  /* --- إعدادات الألوان (Variables) --- */
  --navy: #0b1d2a;
  --orange: #ff7b00;       /* البرتقالي (Sunset Orange) */
  --orange-hover: #e65100; /* درجة أغمق عند التحويم */
  --text-light: #f4f4f4;

  /* --- الإعدادات الأساسية --- */
  position: relative;
  height: 80vh;          /* ارتفاع مناسب للشاشات الكبيرة */
  min-height: 550px;     /* أقل ارتفاع مسموح به */
  
  /* الخلفية: يتم تمرير الصورة عبر HTML أو وضعها هنا */
  background: var(--hero-bg, url('default-image.jpg')) center/cover no-repeat fixed;
  
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* --- طبقة الظل المتدرجة (Overlay) --- */
.global-overlay {
  position: absolute;
  inset: 0;
  /* تدرج لوني داكن لضمان وضوح النص الأبيض */
  background: linear-gradient(
    110deg,
    rgba(11, 29, 42, 0.92) 20%,
    rgba(11, 29, 42, 0.75) 50%,
    rgba(11, 29, 42, 0.4) 100%
  );
  z-index: 1;
}

/* --- الحاوية (Container) --- */
.global-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  color: #ffffff;
}

/* --- الشارة العلوية (Badge) --- */
.global-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 123, 0, 0.15); /* خلفية شفافة برتقالية */
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* --- العناوين (Typography) --- */
.global-container h1 {
  color: #ffffff; /* أبيض ناصع حسب طلبك */
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  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: 2rem;
  font-weight: 400;
  color: var(--orange); /* النص الفرعي باللون البرتقالي */
  margin-top: 10px;
  text-shadow: none;
}

.global-container p {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--text-light);
  opacity: 0.95;
}

/* --- الأزرار (Buttons) --- */
.global-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* الزر الأساسي (البرتقالي) */
.btn-primary {
  /* تدرج لوني يعطي عمقاً */
  background: linear-gradient(45deg, var(--orange), #ff9e40);
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  /* توهج برتقالي */
  box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #e65100, var(--orange));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 123, 0, 0.5);
}

/* الزر الثانوي (الشفاف) */
.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  padding: 14px 38px;
  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 */