/* أنماط قسم سفاري سيوة */
.siwa-safari-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center; /* توسيط المحتوى */
}

.siwa-safari-section h2 {
    color: #DAA520; /* لون ذهبي */
    margin-bottom: 20px;
    font-size: 2.2em;
}

.siwa-safari-section .intro-text {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px auto; /* توسيط النص */
    line-height: 1.6;
}

.siwa-safari-section .intro-text strong {
    color: #B8860B; /* لون ذهبي أغمق للسعر */
}

.siwa-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center; /* توسيط الصور */
    margin-bottom: 30px;
}

.siwa-gallery img {
    width: calc(33.333% - 10px); /* ثلاث صور في الصف مع مسافة */
    max-width: 250px; /* حد أقصى لعرض الصورة */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.siwa-gallery img:hover {
    transform: scale(1.05);
}

.siwa-safari-section h3 {
    color: #8B4513; /* لون بني */
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.siwa-safari-section ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 30px auto; /* توسيط القائمة */
    text-align: right; /* محاذاة النص لليمين للعربية */
}

html[lang="en"] .siwa-safari-section ul,
html[lang="ja"] .siwa-safari-section ul,
html[lang="zh"] .siwa-safari-section ul {
    text-align: left; /* محاذاة النص لليسار للغات الأخرى */
}

.siwa-safari-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
    position: relative;
    padding-right: 25px; /* مسافة لرمز النجمة */
}

html[lang="en"] .siwa-safari-section ul li,
html[lang="ja"] .siwa-safari-section ul li,
html[lang="zh"] .siwa-safari-section ul li {
    padding-right: 0;
    padding-left: 25px; /* مسافة لرمز النجمة للغات الأخرى */
}

.siwa-safari-section ul li::before {
    content: '\2605'; /* رمز النجمة */
    color: #DAA520; /* لون ذهبي */
    position: absolute;
    right: 0;
    top: 0;
}

html[lang="en"] .siwa-safari-section ul li::before,
html[lang="ja"] .siwa-safari-section ul li::before,
html[lang="zh"] .siwa-safari-section ul li::before {
    right: auto;
    left: 0;
}

.day-plan {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto; /* توسيط الخطط اليومية */
    max-width: 800px;
    text-align: right; /* محاذاة النص لليمين للعربية */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

html[lang="en"] .day-plan,
html[lang="ja"] .day-plan,
html[lang="zh"] .day-plan {
    text-align: left; /* محاذاة النص لليسار للغات الأخرى */
}

.day-plan h4 {
    color: #0056b3; /* لون أزرق داكن */
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.day-plan p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #444;
}

.booking-note {
    margin-top: 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .siwa-gallery img {
        width: calc(50% - 10px); /* صورتان في الصف */
        max-width: none;
    }
    .siwa-safari-section h2 {
        font-size: 2em;
    }
    .siwa-safari-section h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .siwa-gallery img {
        width: calc(100% - 10px); /* صورة واحدة في الصف */
    }
    .siwa-safari-section h2 {
        font-size: 1.8em;
    }
    .siwa-safari-section h3 {
        font-size: 1.4em;
    }
    .siwa-safari-section ul li,
    .day-plan p,
    .siwa-safari-section .intro-text {
        font-size: 1em;
    }
}

