/* ================================
   عام
================================= */

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0F1626;
  color: white;
}

/* ================================
   الكونتينر الرئيسي
================================= */

.main-wrapper {
  width: 1294px;
  height: 854px;
  /* padding-bottom: 80px; */
  gap: 40px;
  padding-left: 109px;
  padding-top: 80px; /* إضافة بادينج توب للديسكتوب */
  margin-top: 0; /* إزالة المارجن السالب */
}

/* ================================
   عنوان Why Phantom
================================= */

.why-title-container {
  margin-bottom: 64px;
  padding-left: 482.5px;
  padding-right: 482.5px;
}

.main-title {
  width: auto;
  height: auto;
  font-size: 48px; /* توحيد مع باقي السكاشن */
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  white-space: nowrap;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;
}


/* ================================
   محتوى العمودين الأساسيين
================================= */

.content-row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* ================================
   الجزء النصي (الشمال)
================================= */

.desktop-text {
  width: 630px;
  height: 401px;
  gap: 40px;
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}

.desktop-text .sub-title-container h3 {
  width: 630px;
  height: auto;
  font-size: 36px; /* تصغير من 48px إلى 36px */
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 32px;
  margin-top: 0;
  text-transform: uppercase;
}

.desktop-text .paragraph-container p {
  width: 611px;
  height: auto;
  font-size: 40px !important; /* تكبير من 32px إلى 40px */
  font-weight: 400;
  color: #CCCCCC !important; /* تغيير إلى رمادي */
  line-height: 1.6 !important; /* زيادة المسافة بين الأسطر */
  margin-top: 0;
  margin-bottom: 32px;
}

/* إضافة بادينج بين النقاط */
.desktop-text .paragraph-container p:not(:last-child) {
  margin-bottom: 24px !important; /* مسافة بين كل نقطة */
}

.desktop-text .button-container {
  margin-top: -56px;
}

.desktop-text .button-container .contact-btn {
  display: inline-block;
  background-color: #19A79B;
  text-decoration: none;
  padding: 10px;
  border-radius: 16px;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

/* ================================
   الجزء الخاص بالصور
================================= */

.right-image-group {
  display: flex;
  gap: 10px;
  padding-right: -120px;
}

/* كل عمود صور */
.img-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* كل صورة داخل كونتينر */
.img-wrapper {
  background-color: #D9D9D9;
  border-radius: 16px;
  overflow: hidden;
}

/* أحجام الصور بناءً على بياناتك السابقة */
.img-col:nth-child(1) .img-wrapper {
  width: 344px;
  height: 652px;
}

.img-col:nth-child(2) .img-wrapper:nth-child(1) {
  width: 300px;
  height: 296px;
  border-radius: 16px 0 0 16px;
}

.img-col:nth-child(2) .img-wrapper:nth-child(2) {
  width: 300px;
  height: 280px;
  border-radius: 0 16px 16px 0;
}

.img-col:nth-child(3) .img-wrapper {
  width: 161px;
  height: 280px;
  /* border-top-right-radius: 16px;
    border-bottom-right-radius: 16px; */
}

/* الصور نفسها */
.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* إخفاء نسخة الموبايل بشكل افتراضي */
.mobile-text {
  display: none;
}

/* تنسيق النقاط في features-list */
.desktop-text .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-text .features-list li {
  font-size: 24px !important; /* تصغير من 40px إلى 24px */
  font-weight: 400;
  color: #CCCCCC !important; /* لون رمادي */
  line-height: 1.5 !important; /* مسافة مناسبة بين الأسطر */
  margin-bottom: 16px !important; /* مسافة مناسبة بين كل نقطة */
  text-align: left;
}

.desktop-text .features-list li:last-child {
  margin-bottom: 0 !important; /* إزالة المسافة من آخر نقطة */
}

