.door-section {
  display: flex;
  justify-content: center;
  background-color: #0F1626;
  padding-bottom: 346px;
  position: relative;
}

.blur-door {
  position: absolute;
  top: -500px;
  /* عدل حسب موقعها */
  left: 900px;
  width: 717px;
  height: auto;
  z-index: 1;
  /* خليه خلف النص */
  pointer-events: none;
}

.blur-door-bottom {
  position: absolute;
  top: 285px;
  /* عدل حسب موقعها */
  left: 900px;
  width: 717px;
  height: auto;
  z-index: 1;
  /* خليه خلف النص */
  pointer-events: none;
}

.door-card {
  width: 1328px;
  height: 508px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg,
      rgba(0, 255, 232, 0.05) 0%,
      rgba(6, 6, 6, 0.9) 100%);
  box-sizing: border-box;
  gap: 16px;
}

.door-image {
  width: 649px;
  height: 100%;
}

.door-image img {
  width: 649px;
  height: 508px;
  object-fit: cover;
  display: block;
}

.door-content {
  padding-top: 154.5px;
  padding-bottom: 154.5px;
  width: 598px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  margin-left: 57px;
}

.door-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 100%;
}

.door-text {
  font-size: 28px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 440px) {
  .door-section {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 20px 8px !important; /* توحيد مع Camera Section */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: none !important;
    overflow-x: hidden !important;
  }

  .blur-door {
    display: none !important;
  }

  .blur-door-bottom {
    display: none !important;
  }

  .door-card {
    width: 100% !important;
    height: auto !important;
    min-height: 120px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important; /* توحيد مع Camera Section */
    background: none !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    padding: 15px 8px !important; /* توحيد مع Camera Section */
    gap: 15px !important;
    overflow: visible !important;
    border: none !important;
    box-shadow: none !important;
  }

  .door-image {
    width: 120px !important;
    height: 120px !important;
    flex: 0 0 120px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    margin-right: 6px !important; /* تقليل المسافة بين الصورة والنص */
    box-shadow: none !important;
    border: none !important;
    background: none !important;
  }

  .door-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
  }

  .door-image:hover img {
    transform: scale(1.05) !important;
  }

  .door-content {
    flex: 1 !important;
    padding: 0 10px !important; /* توحيد مع Camera Section */
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    overflow: visible !important;
    height: auto !important;
    min-height: 120px !important;
  }

  .door-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 0 12px 0 !important; /* مسافة محسنة */
    color: #ffffff !important;
    text-align: left !important;
    line-height: 1.3 !important;
  }

  .door-text {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #cccccc !important;
    margin: 0 !important;
    text-align: left !important;
    line-height: 1.6 !important; /* تحسين قراءة النص */
    width: 100% !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: block !important;
    white-space: normal !important;
    padding: 0 !important; /* إزالة padding الزائد */
    word-break: keep-all !important; /* منع تكسير الكلمة */
  }
}