.elementor-11326 .elementor-element.elementor-element-3a7280c{--display:flex;--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-11326 .elementor-element.elementor-element-bd65d29 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-bd65d29 *//* --- الحاوية العامة --- */
.city-list-container {
    max-width: 1000px; /* عرض متوسط لتركيز العين */
    margin: 0 auto 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px; /* مسافة واضحة بين كل مدينة والأخرى */
}

/* --- العناوين --- */
.organized-header { text-align: center; margin: 50px 0; }
.organized-header h2 { font-size: 2.2rem; margin-bottom: 5px; color: #222; }
.sub-text { color: #777; margin-bottom: 15px; }
.gold-line-center { width: 50px; height: 3px; background: #dec065; margin: 0 auto; }

/* --- تصميم الصف (The Row Card) --- */
.city-row {
    display: flex; /* ترتيب أفقي */
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06); /* ظل خفيف جداً ونظيف */
    border: 1px solid #f0f0f0; /* حدود خفيفة جداً للتنظيم */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); /* تأثير عند الماوس */
}

/* --- عمود الصورة (يسار) --- */
.city-img-col {
    flex: 0 0 35%; /* الصورة تأخذ 35% من العرض */
    position: relative;
    overflow: hidden;
}

.city-img-col img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}

.city-row:hover .city-img-col img { transform: scale(1.05); }

.city-tag {
    position: absolute; top: 15px; left: 15px;
    background: rgba(0,0,0,0.7); color: #dec065;
    padding: 4px 10px; font-size: 0.75rem; font-weight: 700;
    border-radius: 4px; text-transform: uppercase;
}

/* --- عمود المعلومات (يمين) --- */
.city-info-col {
    flex: 1; /* يأخذ باقي المساحة */
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* رأس المعلومات */
.info-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee; /* خط فاصل للتنظيم */
    padding-bottom: 10px;
}

.info-header h3 {
    font-size: 1.5rem; color: #222; margin: 0; font-family: 'Poppins', sans-serif;
}

.city-price { font-size: 0.9rem; color: #777; }
.city-price span { color: #b3882a; font-weight: 700; font-size: 1.2rem; }

/* الوصف */
.city-desc { font-size: 0.95rem; color: #555; line-height: 1.6; margin-bottom: 20px; }

/* شبكة التفاصيل (Checklist) */
.city-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* عمودين للتفاصيل */
    gap: 10px;
    margin-bottom: 25px;
}

.city-highlights-grid span {
    font-size: 0.9rem; color: #444; display: flex; align-items: center; font-weight: 500;
}
.city-highlights-grid span i { color: #dec065; margin-right: 8px; }

/* الزر */
.small-gold-btn {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(90deg, #dec065 0%, #b3882a 100%);
    color: #fff; text-decoration: none; border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start; /* محاذاة لليسار */
}
.small-gold-btn:hover { background: linear-gradient(90deg, #ebd179 0%, #c49a3e 100%); }

/* --- الموبايل --- */
@media (max-width: 768px) {
    .city-row { flex-direction: column; } /* الصورة فوق والنص تحت */
    .city-img-col { height: 200px; } /* ارتفاع ثابت للصورة */
    .info-header { flex-direction: column; align-items: flex-start; gap: 5px; }
    .city-highlights-grid { grid-template-columns: 1fr; } /* عمود واحد للتفاصيل */
}/* End custom CSS */