html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    left: 0 !important;
    right: 0 !important;
}

/* ... (كود :root و body و container لم يتغير) ... */
:root {
    /* الألوان الجديدة: فخامة ورقي (أزرق ليلي وذهبي/نحاسي) */
    --color-primary: #2C3E50; /* أزرق ليلي/كحلي عميق - للرأس والعناوين الأساسية */
    --color-secondary: #C89446; /* ذهبي/نحاسي غني - للزخارف والأزرار المميزة */
    --color-text-dark: #1F2E3A; /* داكن جداً للنصوص الرئيسية */
    --color-text-light: #F9F9F9; /* أبيض ناصع */
    --color-background-light: #afd7e3dc; /* خلفية بيضاء ناصعة ونظيفة */
    --color-background-dark: ##afd7e3dc; /* خلفية الأقسام البيضاء */
    --color-shadow: rgba(0, 0, 0, 0.15); /* ظل أعمق قليلاً */
    --color-nile-blue: #708090; /* رمادي حجري - للتباين الخفيف */

    /* خطوط عربية احترافية */
    --font-heading: 'Changa', sans-serif;
    --font-body: 'Cairo', sans-serif;
    
    /* متغيرات الألوان للـ Modals والرحلات - تم توحيدها */
    --primary-color: var(--color-primary); /* #2C3E50 */
    --secondary-color-trip: var(--color-secondary); /* #C89446 */ 
    --whatsapp-color: #25D366; 
    --bg-light: var(--color-background-light); /* #F8F8F8 */
}

/* تنسيق العناصر الأساسية */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.7;
    background-color: var(--color-background-light);
    direction: rtl;
    text-align: right;
    scroll-behavior: smooth; /* 👈 🌟 هذا هو السطر المسؤول عن الحركة السلسة */
    font-weight: 300;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    margin-bottom: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary); /* ذهبي */
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-description {
    text-align: center;
    color: #555; /* أغمق قليلاً من السابق */
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    font-weight: 400;
}


/* ------------------------------------------------------------------ */
/* الأزرار العامة */
/* ------------------------------------------------------------------ */
button, .hero-btn {
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.hero-btn {
    background-color: var(--color-primary); /* أزرق ليلي */
    color: var(--color-text-light);
}
.hero-btn:hover {
    background-color: #1A2733; /* أغمق قليلاً من الأساسي */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--color-shadow);
}
.hero-btn i {
    margin-right: 10px;
}

/* ------------------------------------------------------------------ */
/* العناصر العائمة (واتساب والحجز) */


/* 1. تصميم الزرار العائم الأساسي (Floating Button) */
.floating-booking-btn {
    /* Positioning - لتثبيته في مكان ما على الشاشة */
    position: fixed; 
    bottom: 20px; /* مسافة من أسفل الشاشة */
    right: 20px;  /* مسافة من يمين الشاشة (لو واجهة عربية: استخدم left: 20px) */
    z-index: 1000; /* لضمان ظهوره فوق باقي المحتوى */

    /* Look & Feel - نفس تصميم الواتساب الجذاب */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px; 
    border-radius: 50px;
    background-color: #021329d3; 
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* ظل داكن ليعطي عمقًا */
    
    /* Animation Call */
    animation: floating-bounce 2s ease-in-out infinite; /* <-- تطبيق انيميشن التنطيط */
    transition: all 0.3s ease;
}

/* الأيقونة */
.floating-booking-btn i {
    margin-right: 8px;
    font-size: 1.3rem;
}

/* Hover Effect - إيقاف الحركة عند التفاعل */
.floating-booking-btn:hover {
    transform: scale(1.05); /* تكبير خفيف */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    animation: none; /* إيقاف التنطيط عندما يمر الماوس */
}


/* 2. تعريف انيميشن التنطيط الخفيف (Floating Bounce Keyframes) */
@keyframes floating-bounce {
    0% {
        transform: translateY(0); /* نقطة البداية */
    }
    50% {
        transform: translateY(-8px); /* الارتفاع للأعلى */
    }
    100% {
        transform: translateY(0); /* العودة لنقطة البداية */
    }
}


.btn-eden:hover { background: white; color: var(--eden-dark); transform: translateY(-5px); }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); /* طبقة أغمق قليلاً للتركيز على النص */
}

.hero-content {
    position: relative;
    color: var(--color-text-light);
    z-index: 10;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--color-text-light);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9);
}

.hero-content p {
    font-size: 1.35rem;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
    margin-right: auto;
    margin-left: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 400;
} 

/* ------------------------------------------------------------------ */
/* سكشن بطاقات الصور والخدمات (Image Cards) - العودة للأصل */
/* ------------------------------------------------------------------ */
#image-cards {
    padding: 80px 0;
    /* لون الخلفية الجديد اللي اخترته */
    background-color: #afd7e3dc; 
}

.cards-grid {
    display: grid;
    /* رجعنا للأصل: 3 أعمدة جنب بعض */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* التابلت: 2 جنب بعض */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* الموبايل: تحت بعض */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.image-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 20px;
    text-align: left;
}

.card-content h3 {
    color: #c5a059; /* ذهبي إيدن */
    font-size: 1.4rem;
}

.carousel-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    transition: opacity 0.5s ease;
}

.carousel-image.active {
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.carousel-button:hover {
    opacity: 1;
}

.carousel-prev {
    right: 10px;
}

.carousel-next {
    left: 10px;
}

.room-features {
    list-style: none;
    padding: 10px 0 0;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

.room-features li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

.room-features i {
    color: #0f172a; /* أزرق ليلي إيدن */
    margin-right: 10px;
}

.small-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #fff; /* خليت النص تحت أبيض عشان يبان على الخلفية الخضراء */
    font-size: 0.9rem;
} 

/* ---------------------------------------------------- */
/* ⚖️ POLICIES SECTION (#rules) - تصميم نهائي مصغر وجذاب */
/* ---------------------------------------------------- */
#rules {
    text-align: center;
    background-color: #afd7e3dc; 
    padding: 70px 0;
    direction: rtl; 
}

/* 🖼️ حاوية البطاقات: نستخدم Grid */
.rules-container {
    display: grid;
    /* 4 أعمدة في الشاشات الكبيرة لتصغير البطاقات */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px; /* تقليل المسافة بين البطاقات */
    margin-top: 30px;
    padding: 0 15px; 
}

/* 🧱 تنسيق بطاقة السياسة (Rule Item) - تصميم مصغر ونظيف */
.rule-item {
    background-color: #fcfcfc; /* خلفية فاتحة جداً */
    padding: 15px; /* تقليل التباعد الداخلي لتصغير الحجم */
    border-radius: 10px; 
    text-align: right; 
    
    box-shadow: none; 
    border: 1px solid #eee; /* حد خفيف جداً */
    border-right: 4px solid var(--color-primary); /* حد ملون سميك على اليمين */
    
    transition: transform 0.3s, border-color 0.3s, background-color 0.3s;
}

.rule-item:hover {
    transform: translateY(-3px); /* حركة رفع بسيطة */
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* ظل خفيف جداً عند المرور */
    border-right-color: var(--color-secondary); 
}

/* 💠 تنسيق الأيقونة المميز (عودة للدائرة الصغيرة) */
.rule-item i {
    font-size: 1rem; 
    margin-bottom: 0;
    margin-left: 10px; 
    float: right; 
    
    /* الأيقونة داخل دائرة صغيرة وجميلة */
    width: 35px; 
    height: 35px;
    border-radius: 50%;
    color: white; 
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
    transition: background-color 0.3s;
}

.rule-item:hover i {
    background-color: var(--color-secondary); /* تغيير لون الدائرة عند المرور */
}

/* 📝 تنسيق النص داخل البطاقة */
.rule-item p {
    margin: 0; 
    font-weight: 500;
    color: var(--color-dark); 
    font-size: 0.95rem; /* تصغير حجم النص */
    line-height: 1.5;
    overflow: hidden; 
    padding-top: 7px; /* محاذاة النص مع الأيقونة */
}

/* 🎨 إعادة تعريف ألوان الأيقونات */
.check-icon { background-color: #2ecc71; } /* أخضر */
.info-icon { background-color: var(--color-secondary); } /* ذهبي/ثانوي */
.ban-icon { background-color: #e74c3c; } /* أحمر */
.animal-icon, .child-icon { background-color: var(--color-primary); } /* أزرق */

/* ---------------------------------------------------- */
/* 📱 Media Query (للتليفونات) */
/* ---------------------------------------------------- */
@media (max-width: 768px) { 
    /* ... أكواد أخرى للهاتف ... */
    
    .logo a {
        /* أبحث عن هذه الكلمة: font-size */
        font-size: 1.3rem; /* 👈 تأكد أن القيمة هي 1.3rem */
    }
    /* ... أكواد أخرى للهاتف ... */
}

@media (max-width: 500px) {
    .rules-container {
        /* عمود واحد في الشاشات الأصغر جداً */
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------- */
/* 💎 SERVICES SECTION (الخدمات - تصميم جديد أنيق) */
/* ---------------------------------------------------- */
.services-modern-section {
    background-color: #afd7e3dc ; /* خلفية فاتحة جداً للقسم */
    padding: 60px 0 80px 0;
}

.services-container-modern {
    display: grid;
    /* 3 أعمدة في الشاشات الكبيرة */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; /* مسافة جيدة بين البطاقات */
    margin-top: 30px;
}

.service-card-modern {
    padding: 25px 20px;
    border-radius: 15px; /* حواف مستديرة أنيقة */
    background-color: white; /* البطاقة نفسها بيضاء */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* ظل خفيف وعميق */
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid var(--color-primary); /* خط مميز أسفل البطاقة */
    text-align: center;
}

.service-card-modern:hover {
    transform: translateY(-8px); /* ارتقاء ملحوظ عند المرور */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); 
    border-bottom-color: var(--color-secondary); /* تغيير لون الخط السفلي */
}

/* 💠 تنسيق الأيقونة المميز */
.icon-circle {
    width: 60px; /* حجم متوسط ومناسب */
    height: 60px; 
    border-radius: 50%;
    /* خلفية متدرجة (Gradient) أو لون ثانوي */
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); 
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem; 
    margin: 0 auto 15px; 
    /* ظل خفيف للأيقونة نفسها */
    box-shadow: 0 5px 15px rgba(var(--color-primary-rgb), 0.3); 
    transition: transform 0.3s;
}

.service-card-modern:hover .icon-circle {
    transform: scale(1.05); /* تكبير بسيط للأيقونة عند المرور */
}

.service-card-modern h4 {
    color: var(--color-dark);
    margin-bottom: 5px;
    font-size: 1.2rem; 
    font-weight: 700;
}

.service-card-modern p {
    font-size: 0.95rem; 
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

/* ---------------------------------------------------- */
/* 📱 تعديل استجابة الشاشات الصغيرة (للهواتف) */
/* ---------------------------------------------------- */
@media (max-width: 650px) {
    .services-container-modern {
        /* إظهار عمودين بحد أدنى 140px لضمان صغر حجم البطاقة */
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
        gap: 15px; /* تقليل التباعد قليلاً */
        padding: 0 10px;
    }
    
    .service-card-modern {
        padding: 18px 10px; /* تباعد داخلي أصغر على الهاتف */
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); /* ظل أقل حدة */
    }

    .icon-circle {
        width: 45px; 
        height: 45px; 
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .service-card-modern h4 {
        font-size: 1.05rem;
    }
    
    /* يمكن إخفاء النص الطويل جداً على شاشات الهواتف الصغيرة */
    .service-card-modern p {
        display: none; 
    }
}

/* ------------------------------------------------------------------ */
/* سكشن معرض الصور (Gallery) - الشريطين المتحركين (النهائي) */
/* ------------------------------------------------------------------ */

#gallery {
    padding: 60px 0;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. الحاوية الخارجية (تمنع التمرير وتخفي ما يخرج عن الشاشة) */
.scrolling-container {
    margin-top: 20px; /* تقليل التباعد بين الشريطين */
    margin-bottom: 20px;
    width: 100%;
    overflow: hidden; 
    white-space: nowrap; 
}


/* 2. المسار (Track) الذي يتحرك بشكل تلقائي */
.track {
    display: flex;
    width: max-content; 
    
    /* الحركة الافتراضية: من اليمين إلى اليسار */
    animation: scroll 25s linear infinite; 
}

/* 🛑 إيقاف الحركة عند مرور الماوس (ينطبق على الشريطين) */
.track:hover {
    animation-play-state: paused;
}

/* 3. تطبيق الحركة المعكوسة على الشريط الثاني فقط */
.scrolling-container-reverse .track {
    animation-name: scroll-reverse; 
    animation-duration: 28s; /* سرعة مختلفة للتباين */
}


/* 4. تنسيق الصور (كما تم التوافق عليه) */
.image-group {
    display: flex;
}

.img-box {
    width: 250px;       
    min-width: 250px;   
    height: 350px;      
    margin: 0 15px;     
    position: relative;
    border-radius: 20px; 
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15); 
    transition: all 0.3s ease;
    flex-shrink: 0; 
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; 
    transition: transform 0.3s ease; 
}

.img-box:hover img {
    transform: scale(1.15);
    z-index: 11; 
    position: relative; 
}

.img-box:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
    position: relative; 
}


/* ------------------------------------------------------------------ */
/* 🔑 تعريف الحركات (Keyframes) */
/* ------------------------------------------------------------------ */

/* 1. الحركة الأساسية (من اليمين لليسار) */
@keyframes scroll {
    from {
        transform: translateX(0); 
    }
    to {
        transform: translateX(-50%); 
    }
}

/* 2. الحركة المعكوسة (من اليسار لليمين) */
@keyframes scroll-reverse {
    from {
        transform: translateX(-50%); 
    }
    to {
        transform: translateX(0); 
    }
}


/* ------------------------------------------------------------------ */
/* 📱 تعديلات الهواتف (Touch Devices) */
/* ------------------------------------------------------------------ */

@media (max-width: 768px) {
    /* **إجبار الحركة على الاستمرار في الشريطين** */
    .track:hover {
        animation-play-state: running; 
    }
    
    /* تقليل حجم الصور على الهواتف */
    .img-box {
        margin: 0 8px;
        width: 180px;
        min-width: 180px;
        height: 250px;
    }
    
    /* إلغاء تأثيرات التحويم على الهواتف */
    .img-box:hover img {
        transform: scale(1.0);
    }
    .img-box:hover {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        z-index: 1;
    }
}
/* ------------------------------------------------------------------ */
/* تنسيق سكشن التقييمات - الأزرار الحقيقية */
/* ------------------------------------------------------------------ */

.reviews-container {
    display: block;
    margin-top: 30px;
}

.reviews-button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px 0;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 35px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    min-width: 280px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-btn i {
    margin-left: 10px;
    font-size: 1.3rem;
}

/* 🔵 تنسيق زر جوجل - تم تغيير لون الحدود ليتماشى مع الفخامة */
.google-btn {
    background-color: #4285F4;
    color: #FFFFFF;
    border: 2px solid var(--color-secondary); /* إطار ذهبي للرقي */
}

.google-btn:hover {
    background-color: #357ae8;
    box-shadow: 0 6px 15px rgba(66, 133, 244, 0.3);
    transform: translateY(-2px);
}

/* 🔷 تنسيق زر بوكينج - تم تغيير لون الحدود ليتماشى مع الفخامة */
.booking-btn {
    background-color: #003580;
    color: #FFFFFF;
    border: 2px solid var(--color-secondary); /* إطار ذهبي للرقي */
}

.booking-btn:hover {
    background-color: #0071C2;
    box-shadow: 0 6px 15px rgba(0, 53, 128, 0.3);
    transform: translateY(-2px);
}

/* ------------------------------------------------------------------ */
/* سكشن الخريطة (Map) */
/* ------------------------------------------------------------------ */
.map-container {
    background-color: var(--color-background-dark);
    padding: 80px 0;
    text-align: center;
}
.map-iframe-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.map-iframe-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}
.cta-social-btn, .cta-review-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
}

/* التنسيق العام للأزرار (Facebook / Instagram) */
.cta-social-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 240px;
    justify-content: center;
}

/* تنسيق الأيقونة */
.cta-social-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* تنسيق زر فيسبوك */
.facebook-btn {
    background-color: #1877F2;
    color: #FFFFFF;
    border: 2px solid var(--color-secondary); /* إطار ذهبي */
}
.facebook-btn:hover {
    background-color: #005fbc;
}


/* تنسيق زر إنستجرام */
.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #FFFFFF;
    border: 2px solid var(--color-secondary); /* إطار ذهبي */
}

.cta-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}
.external-reviews-cta {
    text-align: center;
    padding: 30px 0 60px;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.external-reviews-cta h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


/* ------------------------------------------------------------------ */
/* سكشن الأسئلة الشائعة (FAQ) - التنسيق المُعدّل */
/* ------------------------------------------------------------------ */
#faq {
    padding: 80px 0;
    background-color: var(--color-background-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-background-light);
    margin-bottom: 20px;
    border-radius: 12px;
    /* مهم جداً: الإبقاء على overflow: hidden; */
    overflow: hidden; 
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    border: none;
    background-color: transparent;
    text-align: right;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    transition: transform 0.3s ease;
    margin-right: 15px;
    color: var(--color-secondary);
}

/* حالة الأيقونة عند تفعيل السؤال */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* __________________________________________________________________ */
/* 🛠️ التعديل الرئيسي: إخفاء الإجابة باستخدام max-height: 0; */
/* __________________________________________________________________ */
.faq-answer {
    /* 1. استخدام max-height: 0 للإخفاء السلس بدلاً من height: 0 */
    max-height: 0;
    overflow: hidden;
    box-sizing: content-box;

    /* 2. تعديل الانتقال ليصبح على max-height */
    transition: max-height 0.4s ease-in-out, 
                padding 0.3s ease 0.1s;

    background-color: var(--color-background-dark);
    border-top: 1px dashed #DDD;

    /* البادنج يكون صفر في حالة الإخفاء */
    padding: 0 25px;
}

/* __________________________________________________________________ */
/* 🛠️ التعديل الرئيسي: إظهار الإجابة باستخدام max-height: 500px; */
/* __________________________________________________________________ */
.faq-item.active .faq-answer {
    /* 1. قيمة رقمية كبيرة كافية لإظهار أطول إجابة (مثلاً 500px) */
    max-height: 500px; 

    /* 2. البادنج في حالة الإظهار */
    padding: 15px 25px 20px;
    
    /* ملاحظة: تم حذف الخصائص المسببة للمشكلة مثل height: auto و max-height: none */
}

.faq-answer p {
    padding-top: 10px;
    color: var(--color-text-dark);
    font-weight: 400;
}

/* ------------------------------------------------------------------ */
/* سكشن تواصل معنا (Contact) - تنسيق فخم جديد (Glassy Elegant) */
/* ------------------------------------------------------------------ */
#contact {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-background-light);
}
.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.contact-item {
    /* 🛠️ الشكل الجديد: بطاقة عائمة أنيقة */
    flex-basis: calc(33.333% - 30px);
    max-width: 280px; 
    padding: 20px 15px; /* زيادة بسيطة في الحشو العمودي */
    
    background-color: var(--color-background-dark); 
    
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.1); 

    transition: all 0.4s ease;
    border-right: none; 
    border-bottom: none; 
}
.contact-item:hover {
    transform: translateY(-8px); /* رفع أكبر عند المرور */
    /* إضافة حدود باللون الثانوي عند المرور */
    border: 1px solid var(--color-secondary); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); 
}

.contact-item i {
    /* 🛠️ تنسيق الأيقونة كلوحة محورية */
    font-size: 1.8rem; 
    margin-bottom: 0;
    
    width: 60px; 
    height: 60px;
    border-radius: 50%;
    
    background-color: transparent; 
    color: var(--color-secondary); 
    border: 3px solid var(--color-secondary); 
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* وضع الأيقونة في المنتصف العلوي */
    float: none; 
    margin: 0 auto 15px auto; 
}

.contact-item h3 {
    font-size: 1.3rem; 
    color: var(--color-primary);
    margin-bottom: 8px;
    text-align: center; 
}
.contact-item p {
    font-weight: 400;
    font-size: 1rem; 
    text-align: center; 
    clear: none;
}

.contact-whatsapp-btn {
    background-color: #25d366;
    color: white;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}
.contact-whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}
.contact-whatsapp-btn i {
    margin-left: 10px;
    font-size: 1.2rem;
    width: auto;
    height: auto;
    background: none;
    color: white;
    border: none;
    margin: 0 0 0 10px;
}
/* ------------------------------------------------------------------ */
/* سكشن الرحلات (Trips Section) */
/* ------------------------------------------------------------------ */
.trips-section {
    background-color: var(--color-background-dark); /* الخلفية بيضاء أو فاتحة */
    padding: 100px 0;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 أعمدة متساوية */
    gap: 30px;
    margin-top: 50px;
}

.trip-card {
    background-color: var(--color-background-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--color-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 5px solid var(--color-secondary); /* شريط ذهبي أنيق */
    display: flex; 
    flex-direction: column;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.trip-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.trip-card:hover .trip-img {
    transform: scale(1.05); /* تكبير الصورة قليلاً عند المرور عليها */
}

.card-body {
    padding: 25px;
    text-align: right;
    flex-grow: 1; /* لضمان تساوي ارتفاع البطاقات */
}

.trip-title {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.trip-short-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 50px; 
}

/* زر التفاصيل (See More Details) */
.details-btn {
    background-color: var(--color-secondary); /* ذهبي */
    color: var(--color-text-dark);
    font-weight: 700;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%; /* عرض كامل */
    font-size: 1rem;
    margin-top: auto; /* ليدفعه لأسفل البطاقة */
}

.details-btn:hover {
    background-color: #A6793B; /* أغمق قليلاً من الذهبي */
}

/* تفاصيل الرحلة المخفية (كود قديم لا يستخدم في الـ Modal) */
.trip-details {
    margin-top: 15px;
    padding-top: 15px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.trip-details hr {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 10px 0;
}

.hidden-details {
    max-height: 0; 
    opacity: 0;
    overflow: hidden;
}

.visible-details {
    max-height: 300px; 
    opacity: 1;
}

/* ------------------------------------------------------------------ */
/* تنسيقات الـ MODAL (محدثة) */
/* ------------------------------------------------------------------ */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto; 
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

/* 🟢 تحسين أبعاد الـ Modal */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* زيادة الهامش العلوي ليظهر بشكل أفضل في المنتصف */
    padding: 30px;
    border-radius: 12px;
    max-width: 700px; /* زيادة أقصى عرض قليلاً */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideIn 0.5s ease-out;
}
.modal-booking-cta { margin-top: 30px; }

/* WhatsApp Button Style (داخل الـ Modal) */
.book-now-btn.whatsapp-btn {
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 15px; 
    background-color: var(--whatsapp-color); 
    color: white;
    text-decoration: none;
    border-radius: 8px; 
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); 
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    width: 100%;
}
.book-now-btn.whatsapp-btn:hover {
    background-color: #1DA851; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6); 
}
.book-now-btn.whatsapp-btn i {
    font-size: 1.2em;
    margin-left: 8px; 
}

/* ------------------------------------------------------------------ */
/* 🟢 حركة تظليل أزرار التابات (محدثة) */
/* ------------------------------------------------------------------ */
.sub-tour-toggles.modal-tabs {
    display: flex;
    justify-content: space-between;
    gap: 0; 
    margin-top: 20px;
    direction: ltr;
}

/* تنسيق أزرار التابات نفسها */
.tour-toggle-btn {
    flex-grow: 1;
    padding: 12px 10px;
    border: 1px solid var(--color-primary);
    background-color: var(--color-background-dark); /* خلفية بيضاء */
    color: var(--color-primary);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* تنسيق الزر النشط (Active Button) */
.tour-toggle-btn.active {
    background-color: var(--color-primary); /* اللون الأساسي (الأزرق الليلي) */
    color: var(--color-text-light); /* نص أبيض */
    border-color: var(--color-primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px); /* رفع بسيط للزر النشط */
    z-index: 10;
}

/* تنسيق الزر عند المرور فوقه (Hover) */
.tour-toggle-btn:not(.active):hover {
    background-color: #EEE;
    color: var(--color-secondary);
}

/* تحديد حواف الأزرار */
.tour-toggle-btn:nth-child(1) {
    border-radius: 8px 0 0 0;
}
.tour-toggle-btn:nth-child(3) {
    border-radius: 0 8px 0 0;
}
.tour-toggle-btn:nth-child(2) {
    border-left: none;
    border-right: none;
}

/* تنسيق المحتوى ليعمل مع الحركة */
.tour-details-wrapper {
    border: 1px solid var(--color-primary);
    min-height: 150px;
    margin-top: -1px; 
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.sub-tour-details {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, height 0.5s ease-out;
    height: 0;
    overflow: hidden;
    padding: 0 15px; 
}

.sub-tour-details.active-sub-tour {
    opacity: 1;
    transform: translateY(0);
    height: auto; 
    overflow: visible;
    padding: 15px;
}


/* List Styling */
.list-styled { padding: 0; list-style: none; }
.list-styled li { margin-bottom: 8px; font-size: 0.95rem; color: #444; display: flex; align-items: flex-start; direction: rtl; /* تصحيح اتجاه القائمة ليتناسب مع اللغة العربية */ }
.list-styled li i { color: var(--color-secondary); font-size: 1.1em; margin-left: 10px; /* تغيير الهامش لليمين */ margin-top: 3px; flex-shrink: 0; }


/* ================================================================== */
/* 📱 تعديلات الهواتف المحمولة (Mobile Adjustments) - 600px وأقل */
/* ================================================================== */
@media (max-width: 768px) { /* تم تعديل الاستهداف لـ 768px لتحسين الأجهزة اللوحية الصغيرة */
    
    /* 🟢 1. تحسين أبعاد الـ Modal على الجوال */
    .modal-content {
        margin: 5% 5%; 
        max-width: 90%; 
        padding: 20px;
        box-sizing: border-box;
        max-height: 90vh; 
        overflow-y: auto; 
    }

    /* 🟢 2. تنسيق شريط القائمة العلوية على الهاتف */
    .nav-links {
        flex-direction: column; /* ترتيب العناصر عمودياً */
        width: 100%;
        margin-top: 10px;
        align-items: flex-end; /* محاذاة لليمين */
    }
    .nav-links li {
        margin-right: 0;
        margin-bottom: 5px;
        width: 100%;
    } 
    @media (max-width: 768px) { 
    /* ... أكواد أخرى ... */

    /* 1. التنسيق لعمودين (للصور العادية) */
    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    
    /* 💥 2. التعديل الخاص بالصورة الأخيرة 💥 */
    .gallery-item-simple:last-child {
        /* لجعل العنصر الأخير يمتد على كل الأعمدة المتاحة (أي يأخذ عرض الصف كله) */
        grid-column: 1 / span 2; 
        
        /* 👈 وضعه في المنتصف أفقيًا */
        justify-self: center; 
        
        /* 👈 تحديد عرض مناسب ليظهر أكبر في المنتصف */
        width: 80%; 
        max-width: 300px;
    }
    
    .gallery-item-simple {
        height: 150px; 
        border-width: 1px;
    }

    /* ... باقي أكواد الهاتف ... */
}
    .nav-links a {
        padding: 10px 0;
        display: block;
        text-align: right;
        border-bottom: 1px solid #eee;
    }
    .nav-links a:hover {
        transform: none; /* إلغاء الرفع على الهاتف */
    }

    /* تقليل المساحات والحشو */
    section {
        padding: 50px 0;
    }
    .container {
        padding: 0 10px;
    }
    
   
    
    /* إخفاء القائمة الرئيسية وتفعيل زر التبديل */
    .main-nav {
        display: none;
        position: absolute;
        top: 60px; /* تحت الهيدر */
        right: 0;
        width: 100%;
        background-color: var(--color-background-light);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
        padding: 10px 15px;
    }
    .main-nav.active {
        display: block;
    }
    .nav-toggle {
        /* 💥 إخفاء زر الثلاث شرط تماماً */
        display: none; 
        /* ... باقي الخصائص المتبقية ... */
    }
    
    /* قسم البطل (Hero) - تصغير الخطوط */
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 8px;
    }
    .hero-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* العناوين والأقسام العامة */
    h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* بطاقات الخدمات (Cards Grid) - جعلها عمود واحد */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* سياسات الفندق (Rules) - جعلها عمود واحد */
    .rule-item {
        flex-basis: 100%;
        max-width: 100%;
        padding: 15px;
    }
    
    /* الخدمات (Services Modern) - جعلها عمود واحد */
    .services-container-modern {
        gap: 20px;
    }
    .service-card-modern {
        flex-basis: 100%;
        max-width: 100%;
    }

    /* معرض الصور (Gallery) - جعلها عمود واحد بعرض كامل */
    .gallery-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .gallery-item-simple {
        width: 100%;
        min-width: unset;
        height: 250px;
        border-radius: 8px;
    }

    /* أزرار التقييمات */
    .reviews-button-container {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
    }
    .review-btn {
        min-width: 90%;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1.05rem;
    }

    /* الخريطة (Map) */
    .map-iframe-wrapper iframe {
        height: 300px;
    }
    .cta-buttons-container {
        flex-direction: column;
        gap: 15px;
    }
    .cta-social-btn {
        min-width: 90%;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    /* تواصل معنا (Contact) */
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    .contact-item {
        flex-basis: 100%;
        max-width: 100%;
    }

    /* العناصر العائمة - تصغير حجمها ووضعها في مكان مريح */
    .whatsapp-btn, .floating-booking-btn {
        bottom: 15px;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        left: 15px;
    }
    .floating-booking-btn {
        font-size: 0.95rem;
        padding: 10px 20px;
        right: 15px;
    }

    /* بطاقات الرحلات - جعلها عمود واحد */
    .trips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .trip-card {
        border-radius: 10px;
        transform: none !important;
    }
    
    .trip-img {
        height: 200px;
    }

    .card-body {
        padding: 20px;
    }

    .trip-short-desc {
        min-height: unset;
    }
}

/* Styling for the main WhatsApp button - SMALLER VERSION */
.large-whatsapp-btn {
    /* Basic Layout and Font - Slightly smaller */
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem; /* تم التصغير: كان 1.2rem */
    font-weight: bold;
    text-transform: uppercase;
    
    /* WhatsApp Green Color */
    background-color: #25D366; 
    color: white; 
    
    /* Padding and Sizing - Reduced */
    padding: 12px 25px; /* تم التصغير: كان 15px 30px */
    border-radius: 50px; 
    
    /* Shadow for Depth */
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); /* ظل أخف */
    
    /* Smooth Transitions for Interaction */
    transition: all 0.3s ease; 
}

/* Icon Spacing - Slightly smaller */
.large-whatsapp-btn i {
    margin-right: 8px; /* تم تقليل المسافة */
    font-size: 1.2rem; /* تم التصغير: كان 1.4rem */
}

/* Hover Effect (Interaction) */
.large-whatsapp-btn:hover {
    background-color: #128C7E; /* Darker/Teal green on hover */
    color: #fff;
    transform: translateY(-2px); /* ارتفاع خفيف */
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6); /* ظل أقوى عند التفاعل */
}

/* Optional: Centering container */
.section-action-center {
    text-align: center;
    padding: 20px 0;
}

/* --- Focus Hero Section Styling --- */

.hero-focus-section {
    /* **هام: استبدل 'your-bg-image.jpg' بمسار واسم صورتك** */
    background: url('../images/food-copy.webp') center/cover no-repeat; 
    height: 70vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    padding: 20px;
}

/* Dark Overlay for better text readability */
.hero-focus-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.hero-content {
    z-index: 2; 
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5em; 
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Call-to-Action Menu Button Styling */
.menu-cta-button {
    display: inline-block;
    background-color: #f39c12; /* Gold/Orange Color */
    color: #2c3e50; 
    padding: 15px 35px; 
    text-decoration: none;
    border-radius: 50px; 
    font-weight: bold;
    font-size: 1.2em;
    border: 2px solid #f39c12; 
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-cta-button:hover {
    background-color: transparent; 
    color: #f39c12; 
    border-color: #f39c12;
    transform: scale(1.05); 
}


/* --- Media Queries for Responsiveness (التجاوب مع الهواتف) --- */

@media (max-width: 600px) {
    
    .hero-focus-section {
        height: 60vh; 
    }

    /* تقليل حجم الخط الرئيسي (العنوان H1) */
    .hero-content h1 {
        font-size: 2em; 
        margin-bottom: 10px;
    }

    /* تقليل حجم خط الوصف */
    .hero-content p {
        font-size: 1em; 
        margin-bottom: 25px;
    }

    /* تقليل حجم زر الـ CTA */
    .menu-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}




.track,
.img-box img {
  will-change: transform;
}

/* ظبط القسم بالكامل ليكون من اليسار لليمين */
#faq {
    direction: ltr !important;
    text-align: left !important;
}

/* ظبط السؤال بحيث الكلام يبدأ شمال والسهم يروح أقصى اليمين */
.faq-question {
    display: flex;
    justify-content: space-between; /* دي بتخلي النص في طرف والسهم في طرف */
    align-items: center;
    width: 100%;
    text-align: left;
    direction: ltr;
}

/* لو حابب تظبط المسافة بين النص والأيقونة */
.faq-question span {
    margin-right: 15px; /* مسافة بسيطة قبل السهم */
}

/* ظبط محاذاة الإجابة */
.faq-answer {
    text-align: left;
    direction: ltr;
}

/* إجبار القسم بالكامل على اتجاه اليسار في كل الشاشات */
#faq, 
#faq .faq-container, 
#faq .faq-item, 
#faq .faq-question, 
#faq .faq-answer {
    direction: ltr !important;
    text-align: left !important;
}

/* ظبط توزيع النص والسهم داخل الزرار */
.faq-question {
    display: flex !important;
    flex-direction: row !important; /* لضمان ترتيب العناصر من اليسار */
    justify-content: space-between !important;
    align-items: center !important;
}

/* لو السهم لسه مش مظبوط، نأكد مكانه */
.faq-question i {
    margin-left: auto !important; /* بيزق السهم لليمين */
    margin-right: 0 !important;
}
.qty-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark-navy);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-qty {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: bold;
    font-size: 1.1rem;
}



/* --- سكشن الغرف البريميوم: التصميم النهائي المحكم --- */
.eden-premium-rooms { 
    padding: 60px 15px; 
    background: #afd7e3dc; 
    direction: ltr !important; /* لضمان الاتجاه من اليسار لليمين */
    text-align: left !important; 
}

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #0f172a; }

/* إعدادات الكاروسيل */
.rooms-carousel { 
    display: flex; 
    gap: 20px; 
    max-width: 1100px; 
    margin: 0 auto; 
    overflow-x: auto; 
    padding: 20px 5px; 
    scroll-snap-type: x mandatory;
}
.rooms-carousel::-webkit-scrollbar { display: none; }

/* تنسيق كارت الغرفة */
.premium-room-card { 
    flex: 0 0 310px; /* حجم محكم للكارت */
    background: #c8d1e19c; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 1px solid #f1f5f9; 
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}
.premium-room-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }

/* سلايدر الصور والأسهم الدائرية */
.room-image-slider { 
    position: relative; 
    height: 210px; 
    border-radius: 12px 12px 0 0; 
    overflow: hidden; 
}
.room-image-slider .slides img { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0; 
    transition: opacity 0.6s ease; 
}
.room-image-slider .slides img.active { opacity: 1; }

.price-badge { 
    position: absolute; 
    top: 12px; 
    left: 12px; 
    background: #c5a059; 
    color: #fff; 
    padding: 4px 10px; 
    border-radius: 6px; 
    font-weight: 700; 
    z-index: 10; 
    font-size: 13px; 
}

/* أزرار التقليب الدائرية الشفافة */
.slide-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(0, 0, 0, 0.25) !important; /* خلفية شفافة وراقية */
    color: #fff !important; 
    width: 30px !important; 
    height: 30px !important; 
    border-radius: 50% !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    border: none !important;
    cursor: pointer;
    z-index: 15;
    transition: 0.3s;
    opacity: 0.8;
}
.slide-btn:hover { background: #c5a059 !important; opacity: 1; }
.slide-btn.prev { left: 8px !important; }
.slide-btn.next { right: 8px !important; }

/* تفاصيل الغرفة والأيقونات الصغيرة */
.room-info { padding: 18px; display: flex; flex-direction: column; flex-grow: 1; }
.room-info h3 { font-size: 1.25rem; margin-bottom: 8px; color: #0f172a; font-family: 'Poppins', sans-serif; }

.room-icons { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 12px; 
    flex-wrap: wrap; 
}
.room-icons span { 
    display: flex; 
    align-items: center; 
    gap: 4px; 
    font-size: 10.5px; /* تصغير حجم الكلام والأيقونات */
    color: #c5a059; 
    font-weight: 500; 
    white-space: nowrap;
}
.room-icons i { font-size: 12px; }

/* تنسيق الوصف بخط واضح ومحاذاة لليسار */
.room-desc-text { 
    font-size: 13px; 
    color: #64748b; 
    line-height: 1.7; 
    text-align: left; 
    margin-bottom: 15px;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #f8fafc; /* خط خفيف لتمييز بداية الوصف */
    padding-top: 10px;
}

/* زرار الحجز النهائي */
.btn-view-gallery-centered { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    background: #0f172a; 
    color: #fff; 
    padding: 11px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-size: 13px; 
    font-weight: 600; 
    transition: 0.3s ease; 
}
.btn-view-gallery-centered:hover { background: #c5a059; transform: translateY(-2px); }

/* إعدادات الموبايل: ظهور طرف الكارت المجاور */
@media (max-width: 768px) {
    .premium-room-card { 
        flex: 0 0 82% !important; /* يسمح برؤية 18% من الكارت التالي */
        scroll-snap-align: center;
    }
    .section-header h2 { font-size: 1.8rem; }
}


/* --- تصميم سكشن تتبع الحجز Eden Track Management --- */
.track-management-zone {
    padding: 80px 20px;
    background: #f9f9f917; /* خلفية هادئة للتباين */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* الكارت الأساسي (الكبسولة) */
.track-card-luxury {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 35px; /* شكل دائري فخم */
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06); /* ظل خفيف وناعم */
    border: 1px solid #f1f5f9;
}

/* تنسيق حقل الإدخال */
.luxury-input {
    width: 100%;
    padding: 16px 25px;
    border-radius: 50px; /* حواف دائرية بالكامل */
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    outline: none;
    font-size: 14px;
    text-align: center;
    background: #fbfcfd;
    transition: 0.3s ease;
}

.luxury-input:focus {
    border-color: #c5a059; /* يتغير للذهبي عند الكتابة */
    background: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

/* تنسيق زر التحقق */
.btn-luxury-check {
    background: #0f172a; /* لون كحلي غامق فخم */
    color: #fff;
    border: none;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    font-size: 15px;
}

.btn-luxury-check:hover {
    background: #c5a059; /* يقلب ذهبي عند التمرير */
    transform: translateY(-3px); /* رفعة خفيفة للزرار */
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* تنسيق منطقة النتائج */
#track-result-main {
    font-size: 14px;
    line-height: 1.6;
    color: #0f172a;
    background: #f8fafc;
    border-radius: 15px;
}

/* إعدادات الموبايل */
@media (max-width: 768px) {
    .track-card-luxury {
        padding: 35px 20px;
        margin: 0 10px;
    }
    .track-card-luxury h2 { font-size: 1.7rem; }
}

/* الحاوية الرئيسية للزراير */
.hero-capsule-row {
    display: flex;
    justify-content: center; /* توسيط الزراير */
    gap: 10px; /* مسافة بسيطة بين الزراير */
    margin-top: 25px;
}

/* ستايل الزرار الصغير المودرن */
.mini-btn {
    padding: 8px 20px; /* حجم صغير وشيك */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px; /* خط رفيع وعصري */
    transition: 0.3s all ease;
    border: 1px solid transparent;
    display: inline-block;
}

/* ألوان الزراير */
.mini-btn.gold {
    background: #c5a059;
    color: #fff !important;
}

.mini-btn.dark {
    background: #0f172a;
    color: #c5a059 !important;
    border: 1px solid #c5a059;
}

.mini-btn.blur {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* تأثير عند الوقوف بالماوس */
.mini-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    filter: brightness(1.1);
}

/* ضمان بقائهم جنب بعض حتى في الموبايل */
@media (max-width: 480px) {
    .hero-capsule-row {
        gap: 8px;
    }
    .mini-btn {
        padding: 7px 15px;
        font-size: 12px;
    }
}

html {
    scroll-behavior: smooth; /* ده السطر السحري اللي بيعمل الأنيميشن */
}

/* زر البرجر العايم - صغير وعلى الشمال */
.floating-burger-btn {
    position: fixed;
    top: 20px;
    left: 20px; /* المكان على الشمال */
    width: 45px;
    height: 45px;
    background: #0f172a;
    color: #c5a059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4000;
    cursor: pointer;
    border: 2px solid #c5a059;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.floating-burger-btn:hover { transform: scale(1.1); }
/* ------------------------------------------------------------------ */
/* المنيو الجانبية - 75% وفتحة من الشمال */
/* ------------------------------------------------------------------ */
.side-panel-modern {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 6000;
    top: 0;
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    overflow-x: hidden;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
}

.menu-inner-content { padding: 80px 30px; display: flex; flex-direction: column; height: 100%; }
.menu-brand { color: #c5a059; font-family: 'Playfair Display'; font-size: 1.2rem; margin-bottom: 40px; border-bottom: 1px solid #c5a05933; padding-bottom: 10px; }

.main-nav-links a {
    color: #fff; text-decoration: none; font-size: 18px; padding: 15px 0;
    display: flex; align-items: center; gap: 15px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.main-nav-links a i { color: #c5a059; width: 25px; }

.contact-box { margin-top: auto; }
.direct-btns { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.wa-btn, .mail-btn { padding: 12px; border-radius: 50px; text-decoration: none; color: #fff; text-align: center; font-size: 14px; font-weight: bold; }
.wa-btn { background: #25d366; }
.mail-btn { background: #c5a059; }
.social-row { display: flex; gap: 20px; font-size: 20px; justify-content: center; }
.social-row a { color: #fff; }

.menu-overlay {
    position: fixed; display: none; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 5500;
}

.close-x { position: absolute; top: 20px; right: 20px; font-size: 35px; color: #c5a059; text-decoration: none; }

@media (max-width: 768px) {
    .floating-burger-btn { width: 40px; height: 40px; top: 15px; left: 15px; font-size: 14px; }
}

/* ------------------------------------------------------------------ */
/* مودال حالة الحجز */
/* ------------------------------------------------------------------ */
.modal-overlay-status {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}

.modal-card-luxury {
    background: #fff; width: 90%; max-width: 420px; padding: 35px;
    border-radius: 35px; text-align: center; position: relative;
    border-top: 6px solid #c5a059; box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.modal-title-lux { font-family: 'Playfair Display', serif; color: #0f172a; margin-bottom: 20px; font-size: 24px; }

.pagination-bar-lux {
    background: #f8fafc; padding: 12px; border-radius: 50px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 25px; color: #64748b; font-size: 13px; font-weight: bold;
    border: 1px solid #f1f5f9;
}

.details-container-lux { 
    text-align: left; background: #fff; border: 1px solid #f1f5f9; 
    border-radius: 20px; padding: 20px; margin-bottom: 25px; 
}

.lux-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #f8fafc; font-size: 14px; }
.lux-row strong { color: #0f172a; }
.status-paid { color: #27ae60 !important; }

.contact-text-lux { font-size: 12px; color: #94a3b8; margin-bottom: 20px; }

.modal-actions-lux { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-lux-wa { background: #2ecc71; color: #fff; padding: 14px; border-radius: 15px; text-decoration: none; font-weight: bold; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-lux-mail { background: #e74c3c; color: #fff; padding: 14px; border-radius: 15px; text-decoration: none; font-weight: bold; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }

.close-btn-round {
    position: absolute; top: 15px; right: 20px; background: #f1f5f9;
    border: none; border-radius: 50%; width: 35px; height: 35px;
    cursor: pointer; font-size: 20px; color: #64748b; transition: 0.3s;
}
.close-btn-round:hover { background: #e2e8f0; color: #0f172a; }


#eden-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #0a0f1a; /* نفس لون الهيرو العميق */
    z-index: 999999;
    display: flex;
    align-items: center; justify-content: center;
    visibility: visible;
    opacity: 1;
}

.preloader-content { text-align: center; width: 90%; max-width: 500px; }

/* أنيميشن التاج والهالة */
.luxury-logo-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.eden-crown-animated i {
    font-size: 60px;
    color: #c5a059;
    filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4));
    animation: crownFloat 3s infinite ease-in-out;
}

.golden-halo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: haloPulse 2s infinite ease-in-out;
}

/* النص والبراند */
#welcome-msg {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.brand-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0.6;
}

.brand-divider span { width: 30px; height: 1px; background: #c5a059; }
.hotel-sub-name { color: #c5a059; font-size: 10px; letter-spacing: 5px; font-weight: 600; }

/* شريط التحميل "الراقي" */
.luxury-loading-container {
    width: 140px;
    margin: 35px auto 0;
}

.loading-track {
    width: 100%; height: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.loading-fill {
    width: 0%; height: 100%;
    background: linear-gradient(to right, #c5a059, #fff);
    box-shadow: 0 0 10px #c5a059;
}

/* الحركات */
@keyframes crownFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes haloPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.6; }
}

.preloader-off { 
    opacity: 0 !important; 
    visibility: hidden !important; 
    transition: all 1s ease-in-out;
}

/* ------------------------------------------------------------------ */
/* سكشن الهايدرو المطور - نسخة الفخامة والتحكم في الأبعاد */
/* ------------------------------------------------------------------ */
.hero-hydro-luxury {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    position: relative !important;
    z-index: 1 !important;
    overflow: hidden;
    background-color: #5274c4 !important; 
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.45)), 
                      url('../images/9W2A0400.webp?v=60.0') !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.hero-visual-layer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    text-align: center;
}

/* اسم الفندق - تعديل الحجم للموبايل */
.hotel-main-name {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(2.2rem, 8vw, 4.8rem) !important; /* صغرنا الحجم الأدنى للموبايل */
    color: #fff !important;
    margin-bottom: 15px;
    text-shadow: 0 8px 35px rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

/* الوصف - تعديل الشكل ليكون أحلى */
.hotel-tagline-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important;
    max-width: 650px;
    margin-bottom: 45px; /* مسافة أكبر قبل الزراير */
    line-height: 1.8;
    font-style: italic; /* لمسة جمالية للوصف */
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* حاوية الزراير - التحكم في الارتفاع */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-top: -10px; /* رفع الزراير لفوق سيكة في الموبايل */
}

/* الزرار الذهبي الكبير - شكل "أحلى" */
.btn-primary-gold {
    background: linear-gradient(135deg, #c5a059 0%, #a68445 100%) !important;
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 50px; /* شكل دائري أكتر شياكة */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4); }

.btn-secondary-row {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 300px;
}

/* الزراير الفرعية - شكل Glassmorphism راقي */
.btn-outline-glass {
    flex: 1;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    padding: 14px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-outline-glass i { color: #c5a059; font-size: 1rem; } /* الأيقونات بلون ذهبي */

.btn-outline-glass:hover { background: rgba(255, 255, 255, 0.15) !important; border-color: #c5a059 !important; }

/* سهم السكرول - تنزيله تحت أكتر */
.scroll-vibe {
    position: absolute;
    bottom: 50px; /* نزلناه تحت خالص عشان ميزحمش الزراير */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #c5a059;
    animation: bounce 2s infinite;
}

.scroll-vibe span { 
    color: rgba(255,255,255,0.6); 
    font-size: 8px; 
    letter-spacing: 4px; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
    40% { transform: translateY(12px); opacity: 1; }
    60% { transform: translateY(6px); }
}

/* تعديلات اللاب توب والتابلت */
@media (min-width: 768px) {
    .hero-cta-group { flex-direction: row; justify-content: center; margin-top: 0; }
    .btn-primary-gold { width: auto; min-width: 240px; }
    .btn-secondary-row { width: auto; min-width: 320px; }
    .scroll-vibe { bottom: 70px; }
}