/* Add custom CSS styles below */ 

/* ===== Luxury Popup (CSS Only) ===== */

/* الحاوية الأساسية */
.luxury-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: 0.4s ease;
}


/* تفعيل النافذة */
.luxury-popup.active {
  opacity: 1;
  visibility: visible;
}

/* الخلفية الداكنة */
.luxury-popup::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
}

/* صندوق النافذة */
.luxury-popup .popup-box {
  position: relative;
  max-width: 420px;
  margin: 10% auto;
  background: linear-gradient(145deg, #0c0c0c, #1a1a1a);
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9);
  transform: translateY(40px) scale(0.95);
  transition: 0.5s ease;
}

/* حركة الظهور */
.luxury-popup.active .popup-box {
  transform: translateY(0) scale(1);
}

/* العنوان */
.luxury-popup .popup-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #d4af37;
  letter-spacing: 1px;
}

/* الوصف */
.luxury-popup .popup-box p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* زر CTA */
.luxury-popup .popup-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #d4af37, #b8962e);
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.luxury-popup .popup-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
}

/* زر الإغلاق */
.luxury-popup .popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
}

.luxury-popup .popup-close:hover {
  color: #fff;
}

/* موبايل */
@media (max-width: 480px) {
  .luxury-popup .popup-box {
    margin: 30% 15px;
    padding: 30px 20px;
  }

  .luxury-popup .popup-box h2 {
    font-size: 20px;
  }
}