﻿﻿/* 🔹 متغيرات الخطوط */
:root {
    --heading-1: 32px;    /* حجم العناوين الرئيسية */
    --heading-2: 24px;    /* حجم العناوين الفرعية */
    --heading-3: 20px;    /* حجم العناوين الصغيرة */
    --body-text: 16px;    /* حجم النص الأساسي */
    --small-text: 14px;   /* حجم النص الصغير */
}

/* 🔹 الأساسيات (تحديد القواعد العامة للتنسيق) */
/* تحسين التصميم ليطابق النموذج المطلوب */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px;
}


/* تحسين تنسيق بطاقات الجولات */
.tour-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* تنسيق الهيدر */
header {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* تحسينات للموبايل */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    .main-container {
        padding: 15px;
    }

    main {
        padding: 15px;
    }
}

/* 🔹 تنسيقات الخطوط الأساسية */
h1 {
    font-size: var(--heading-1);
    margin-bottom: 20px;
}

h2 {
    font-size: var(--heading-2);
    margin-bottom: 15px;
}

h3 {
    font-size: var(--heading-3);
    margin-bottom: 10px;
}

p {
    font-size: var(--body-text);
    margin-bottom: 15px;
}

/* 🔹 تنسيقات الهيدر والمنيو الرئيسي */
header {
    background: white;
    width: 100%;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: var(--heading-1);
    color: #333;
    padding: 20px;
    margin: 0;
    text-align: center;
}

/* 🔹 القائمة العلوية */
nav {
    background: #fff;
    width: 100%;
    border-top: 1px solid #eee;
    border-bottom: 2px solid #ddd;
    position: relative;
    padding: 15px 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li {
    position: relative;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: var(--body-text);
    padding: 8px 12px;
    font-weight: bold;
    transition: color 0.3s;
    display: block;
}

nav ul li a:hover {
    color: #e63f22;
}

/* 🔹 القائمة المنسدلة */
nav ul li ul.dropdown {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    top: 100%;
    left: 0;
    width: 200px;
    text-align: left;
    z-index: 1000;
}

nav ul li:hover ul.dropdown {
    display: block;
}

nav ul li ul.dropdown li {
    padding: 0;
}

nav ul li ul.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: var(--small-text);
    font-weight: normal;
}

nav ul li ul.dropdown li a:hover {
    background: #f1f1f1;
}

.cta-button {
    display: inline-flex; /* محاذاة النص والأيقونة */
    align-items: center; /* توسيط عمودي */
    background-color: #ffbe96; /* لون الخلفية */
    color: #000000; /* لون النص */
    padding: 12px 24px; /* تباعد داخلي */
    font-size: 16px; /* حجم الخط */
    font-weight: bold; /* خط عريض */
    text-decoration: none; /* إزالة الخط السفلي */
    border-radius: 8px; /* حواف مستديرة */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ظل خفيف */
    transition: all 0.3s ease; /* انتقال سلس لجميع التغييرات */
}

.cta-button i {
    margin-right: 8px; /* مسافة بين الأيقونة والنص */
    font-size: 18px; /* حجم الأيقونة */
    transition: transform 0.3s ease; /* أنيميشن للأيقونة */
}

.cta-button:hover {
    background-color: #381c09; /* لون أغمق عند التحويم */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* زيادة الظل */
    transform: translateY(-2px); /* رفع الزر */
}

.cta-button:active {
    background-color: #c24100; /* لون أغمق عند الضغط */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), inset 0 2px 4px rgba(0, 0, 0, 0.2); /* ظل خارجي وداخلي */
    transform: scale(0.95); /* تصغير الزر قليلاً عند الضغط */
    outline: none; /* إزالة أي حدود افتراضية */
}

.cta-button:active i {
    transform: scale(1.1); /* تكبير الأيقونة قليلاً عند الضغط */
}

/* تحسينات للموبايل */
@media screen and (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li ul.dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
    }
}

/* تحسين العرض على الهواتف */
@media screen and (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero h2 {
    font-size: clamp(1.8rem, 4vw, var(--heading-1)); 
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, var(--heading-3)); 
    position: relative;
    z-index: 1;
}


/* 🔹 المحتوى الرئيسي */
main {
    max-width: 1200px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

section {
    margin-bottom: 30px;
}



/* 🔹 أزرار القائمة للموبايل */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

/* 🔹 تحسينات الموبايل */
@media screen and (max-width: 768px) {
    :root {
        --heading-1: 28px;
        --heading-2: 22px;
        --heading-3: 18px;
        --body-text: 15px;
        --small-text: 13px;
    }

    body {
        padding: 20px 0;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        text-align: center;
        width: 100%;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    nav {
        width: 100%;
        position: relative;
        margin-top: 60px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    nav ul.show {
        display: flex !important;
    }

    nav ul li ul.dropdown {
        position: static;
        width: 100%;
        display: none;
        background: #f8f8f8;
        box-shadow: none;
        padding: 0;
    }

    nav ul li ul.dropdown.show {
        display: block;
    }

    .sidebar {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 300px;
        padding: 20px;
    }

    main {
        padding: 15px;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

/* إضافة السهم للقائمة المنسدلة */
nav ul li:has(ul.dropdown) > a::after {
    content: '▼';
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
    vertical-align: middle;
}

/* تنسيقات صفحة الجولات */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 جولات في كل صف */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tour-card {
    background: white;
    border-radius: 9px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-5px);
}

.tour-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.tour-content {
    padding: 15px;
}

.tour-title {
    font-size: var(--heading-3);
    margin-bottom: 10px;
    color: #333;
}

.tour-description {
    font-size: var(--body-text);
    color: #666;
    margin-bottom: 15px;
}

.tour-price {
    font-size: var(--body-text);
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 15px;
}



/* تحسينات للشاشات المتوسطة والصغيرة */
@media screen and (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 جولات في كل صف */
    }
}

@media screen and (max-width: 768px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr); /* جولتان في كل صف */
    }
}

@media screen and (max-width: 480px) {
    .tours-grid {
        grid-template-columns: 1fr; /* جولة واحدة في كل صف */
    }
}
/* تنسيق العناوين مع الأيقونات */
.icon-title {
    display: flex;
    align-items: center;
    margin: 40px 0 20px;
    padding: 15px;
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.icon-title img {
    width: 250px; /* حجم أكبر للأيقونات */
    height: auto;
    margin-right: 5px;
    transition: all 0.3s ease;
}

/* تحسينات للشاشات المتوسطة */
@media (max-width: 1024px) {
    .icon-title img {
        width: 200px; /* حجم متوسط للشاشات المتوسطة */
    }
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .icon-title {
        padding: 12px;
        margin: 30px 0 15px;
    }

    .icon-title img {
        width: 180px; /* حجم أكبر للموبايل */
        margin-right: 10px;
    }
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .icon-title img {
        width: 200px; /* حجم مناسب للموبايل الصغير */
    }
}

/* تعديل خصائص العرض للصور */
img {
    max-width: 100%;
    height: auto;
    display: block; /* لمنع المسافات غير المرغوبة */
}

/* إضافة خاصية text-align: left لجميع العناوين */
h1, h2, h3, h4, h5, h6 {
    text-align: left;
}

/* تنسيق النصوص لتكون على اليسار */
.text-left {
    text-align: left !important;
}

/* تنسيق القوائم لتبدأ من اليسار */
ul {
    padding-left: 0;
    margin-left: 0;
    list-style-position: inside;
    text-align: left;
}

li {
    text-align: left;
}

/* تنسيقات صفحة تفاصيل الجولة */
.tour-details {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgb(255, 255, 255);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.tour-details-header {
    text-align: center;
    margin-bottom: 40px;
}

.tour-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* عمودين متساويين */
    gap: 30px;
    align-items: start;
}

.tour-details-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tour-details-info {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
}

.tour-details-description {
    margin-bottom: 20px;
    line-height: 1.8;
}

.tour-details-features {
    list-style: none;
    padding: 0;
}

.tour-details-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.tour-details-features li::before {
    content: "✓";
    color: #e67e22;
    position: absolute;
    left: 0;
}

.tour-details-price {
    font-size: 24px;
    color: #e67e22;
    margin: 20px 0;
    font-weight: bold;
}

.tour-details-booking {
    text-align: center;
    margin-top: 30px;
}

/* تحسينات للشاشات المتوسطة والصغيرة */
@media screen and (max-width: 1024px) {
    .tour-details {
        margin: 15px;
    }
}

@media screen and (max-width: 768px) {
    .tour-details-content {
        grid-template-columns: 1fr; /* عمود واحد للموبايل */
    }

    .tour-details {
        padding: 15px;
        margin: 10px;
    }
}
/* تنسيق معرض الصور الجديد */
.datetime-info {
    text-align: center;
    padding: 15px;
    margin: 20px 0;
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: monospace;
    color: #666;
}

.datetime-info p {
    margin: 5px 0;
}

.user-info {
    color: #e67e22;
    font-weight: bold;
}

/* تنسيق معرض الصور مع دعم الأحجام المختلفة */
.image-gallery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin: 20px 0;
    padding: 10px;
    flex-wrap: wrap;
}

.image-gallery img {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.image-gallery img[width="374"][height="228"] {
    width: 374px;
    height: 228px;
    object-fit: cover;
}

.image-gallery img:hover {
    transform: scale(1.02);
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    .image-gallery {
        flex-direction: column;
    }
    
    .image-gallery img {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 10px;
    }
}
    .overnight-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* جعل الصور جنب بعض */
        gap: 20px;
        padding: 20px 0;
    }
    
    .overnight-card {
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    
    .overnight-card:hover {
        transform: translateY(-5px);
    }
    
    .overnight-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    
    .overnight-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .overnight-content {
        padding: 15px;
    }
    
    .overnight-content h4 {
        color: #e67e22;
        font-size: 1.2rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .check-icon {
        color: #e67e22;
        font-weight: bold;
    }
    
    .feature-item p {
        margin: 0;
        font-size: 0.95rem;
        color: #444;
    }
    
    /* تحسينات للموبايل */
    @media (max-width: 768px) {
        .overnight-container {
            grid-template-columns: 1fr; /* عمود واحد في الموبايل */
        }
    
        .overnight-image {
            height: 200px;
        }
    
        .overnight-content {
            padding: 15px;
        }
    }

    .pricing-section {
        padding: 20px 20px;
        background: #f8f9fa;
    }

    .gallery-section {
        padding: 10px;
        background: #fff;
    }
    
    .gallery-container {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin: 0 auto;
        max-width: 1200px;
    }
    
    .gallery-item {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .gallery-item img {
        width: 100%;
        object-fit: cover;
        display: block;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    
    .gallery-item img:hover {
        transform: scale(1.05);
    }
    
    /* انيميشن الظهور */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeIn 0.6s ease forwards;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Desktop View - 6 صور (3×2) */
    @media (min-width: 992px) {
        .gallery-container {
            gap: 5px;
        }
        
        .gallery-item {
            width: calc(33.333% - 4px); /* ثلاث صور في كل صف */
        }
    
        .gallery-item img {
            width: 376px;
            height: 251px;
        }
    }
    
    /* Tablet View - صورتين جنب بعض */
    @media (min-width: 768px) and (max-width: 991px) {
        .gallery-container {
            gap: 5px;
        }
        
        .gallery-item {
            width: calc(50% - 3px);
        }
    
        .gallery-item img {
            width: 376px;
            height: 251px;
        }
    }
    
    /* Mobile View - صورتين جنب بعض */
    @media (max-width: 767px) {
        .gallery-section {
            padding: 5px;
        }
    
        .gallery-container {
            gap: 5px;
        }
        
        .gallery-item {
            width: calc(50% - 3px);
        }
    
        .gallery-item img {
            width: 202px;
            height: 134px;
        }
    }
    
    /* تأخير ظهور كل صورة بشكل متتالي */
    .gallery-item:nth-child(1) { animation-delay: 0.1s; }
    .gallery-item:nth-child(2) { animation-delay: 0.2s; }
    .gallery-item:nth-child(3) { animation-delay: 0.3s; }
    .gallery-item:nth-child(4) { animation-delay: 0.4s; }
    .gallery-item:nth-child(5) { animation-delay: 0.5s; }
    .gallery-item:nth-child(6) { animation-delay: 0.6s; }

 /* نطاق محدد للتصميم */
.tour-info-section {
    padding: 10px;
}

.characteristics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    max-width: 600px;
    margin: 0 auto;
    padding: 5px;
    background: #fff;
}

.characteristic-box {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    text-align: left;
    padding: 8px 5px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.characteristic-box i {
    font-size: 20px;
    margin-bottom: 3px;
    color: #070401;
}

.characteristic-box p {
    margin: 0;
    font-size: 11px;
    color: #333;
    font-weight: normal;
}

/* تصميم متجاوب */
@media (max-width: 991px) {
    .characteristics-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

    .characteristic-box {
        padding: 6px 4px;
    }

    .characteristic-box i {
        font-size: 15px;
    }

    .characteristic-box p {
        font-size: 10px;
    }
}
/* تنسيق أساسي */
.mobile-safe-section {
    display: block;
    width: 100%;
    clear: both;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0;
}

.mobile-safe-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.mobile-safe-container {
    margin-bottom: 30px;
}

.mobile-safe-title {
    font-size: 25px !important;
    margin-bottom: 15px !important;
    color: #333 !important;
    font-weight: normal !important;
    padding-left: 10px;
    line-height: 1.4 !important;
}

.mobile-safe-title i {
    margin-right: 15px;
}

.mobile-safe-container.included .mobile-safe-title i {
    color: #db7c0e;
}

.mobile-safe-container.excluded .mobile-safe-title i {
    color: #e74c3c;
}

.mobile-safe-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-safe-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    width: 100%;
}

.mobile-safe-box i {
    font-size: 16px;
    margin-right: 12px;
    color: #e67e22;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.mobile-safe-box p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #333 !important;
    font-weight: normal !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
}

/* تنسيق خاص للجوال */
@media (max-width: 768px) {
    .mobile-safe-wrapper {
        padding: 15px;
    }
    
    .mobile-safe-title {
        font-size: 18px !important;
        /* منع وراثة أي تنسيقات أخرى */
        font-family: inherit !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }
    
    .mobile-safe-box {
        padding: 6px 10px;
    }
    
    .mobile-safe-box i {
        font-size: 14px;
    }
    
    .mobile-safe-box p {
        font-size: 13px !important;
        /* منع وراثة أي تنسيقات أخرى */
        font-family: inherit !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }
}



.cave-extra-charge {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background: #fff8ec;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid #e67e22;
}

.cave-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cave-info i {
    font-size: 24px;
    color: #e67e22;
}

.cave-text {
    flex: 1;
}

.cave-text h4 {
    margin: 0 0 5px 0 !important;
    font-size: 16px !important;
    color: #333 !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.cave-price {
    margin: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.4 !important;
}

.cave-price span {
    color: #cc6913 !important;
    font-weight: 600 !important;
}

/* تنسيق خاص للجوال */
@media (max-width: 768px) {
    .cave-extra-charge {
        margin: 10px;
        padding: 10px;
    }

    .cave-info i {
        font-size: 20px;
    }

    .cave-text h4 {
        font-size: 15px !important;
    }

    .cave-price {
        font-size: 13px !important;
    }
}

.child-discounts {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.discount-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.discount-header i {
    font-size: 24px;
    color: #cc6913;
}

.discount-header h3 {
    margin: 0 !important;
    font-size: 20px !important;
    color: #333 !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.discount-intro {
    margin-bottom: 20px !important;
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.5 !important;
}

.discount-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.discount-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #cc6913;
}

.age-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-range i {
    font-size: 18px;
    color: #cc6913;
}

.age-range span {
    font-size: 14px !important;
    color: #333 !important;
    font-weight: 500 !important;
}

.discount-value {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2ecc71 !important;
    background: #e8f8f5;
    padding: 4px 12px;
    border-radius: 20px;
}

/* تنسيق خاص للجوال */
@media (max-width: 768px) {
    .child-discounts {
        margin: 10px;
        padding: 15px;
    }

    .discount-header i {
        font-size: 25px;
    }

    .discount-header h3 {
        font-size: 18px !important;
    }

    .discount-intro {
        font-size: 13px !important;
    }

    .discount-item {
        padding: 10px 12px;
    }

    .age-range i {
        font-size: 16px;
    }

    .age-range span {
        font-size: 13px !important;
    }

    .discount-value {
        font-size: 14px !important;
        padding: 3px 10px;
    }
}

.camel-rides-section {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-header i {
    font-size: 24px;
    color: #795548;
}

.section-header h3 {
    margin: 0 !important;
    font-size: 20px !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.camel-rides-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.camel-ride-option {
    padding: 15px;
    background: #fff8ec;
    border-radius: 8px;
    border-left: 4px solid #795548;
}

.option-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.option-header i {
    font-size: 18px;
    color: #795548;
}

.option-header h4 {
    margin: 0 !important;
    font-size: 16px !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.option-description {
    margin: 0 0 15px 0 !important;
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.5 !important;
}

.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #795548;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
}

.price-tag .amount {
    font-weight: 600 !important;
    font-size: 16px !important;
}

.price-tag .per {
    font-size: 14px !important;
    opacity: 0.9;
}

.included-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.included-note i {
    color: #795548;
}

.included-note p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
}

/* تنسيق خاص للجوال */
@media (max-width: 768px) {
    .camel-rides-section {
        margin: 15px;
        padding: 15px;
    }

    .section-header i {
        font-size: 20px;
    }

    .section-header h3 {
        font-size: 18px !important;
    }

    .option-header h4 {
        font-size: 15px !important;
    }

    .option-description {
        font-size: 13px !important;
    }

    .price-tag .amount {
        font-size: 15px !important;
    }

    .price-tag .per {
        font-size: 13px !important;
    }

    .included-note p {
        font-size: 13px !important;
    }
}
.header-emoji {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.camel-emoji {
    font-size: 40px;
    animation: swayRight 3s infinite ease-in-out;
    transform: scaleX(-1); /* لجعل الجمل يتجه نحو اليمين */
}

@keyframes swayRight {
    0%, 100% { transform: scaleX(-1) translateX(0); }
    50% { transform: scaleX(-1) translateX(-5px); }


  }
/* تنسيق خاص للجوال */
@media (max-width: 768px) {
    .camel-emoji {
        font-size: 32px;
    }
    
}

.overnight-stay {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.stay-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.stay-header i {
    font-size: 24px;
    color: #e67e22;
}

.stay-header h3 {
    margin: 0 !important;
    font-size: 20px !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.stay-description {
    margin-bottom: 25px;
}

.stay-description p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.stay-prices {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.price-card {
    flex: 1;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #34495e;
}

.price-card.single {
    border-left-color: #e67e22;
}

.price-type {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.price-type i {
    color: #e67e22;
}

.price-type span {
    font-size: 14px !important;
    color: #666 !important;
}

.price-amount {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #e67e22 !important;
}

.included-services {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.included-services h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0 !important;
    font-size: 16px !important;
    color: #333 !important;
}

.included-services h4 i {
    color: #e67e22;
}

.included-services ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important;
}

.included-services li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    color: #0c0702 !important;
}

.included-services li i {
    color: #e67e22;
    width: 20px;
}

/* تنسيق خاص للجوال */
@media (max-width: 768px) {
    .overnight-stay {
        margin: 15px;
        padding: 15px;
    }

    .stay-header i {
        font-size: 20px;
    }

    .stay-header h3 {
        font-size: 18px !important;
    }

    .stay-description p {
        font-size: 13px !important;
    }

    .stay-prices {
        flex-direction: column;
        gap: 15px;
    }

    .price-amount {
        font-size: 20px !important;
    }

    .included-services h4 {
        font-size: 15px !important;
    }

    .included-services li {
        font-size: 13px !important;
    }
}


/* Original Pricing Styles - Unchanged */
.pricing-container {
    max-width: 800px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.pricing-title {
    text-align: center;
    color: #333;
}

.pricing-duration {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.pricing-table th {
    background-color: #f2f2f2;
    color: #333;
}

.pricing-note {
    color: #777;
    font-style: italic;
    margin: 20px 0;
}

/* New Styles for Icons and Additional Elements */
.accommodation-icon {
    color: #703c11; /* Matching the button color */
    margin-right: 8px;
}

.icon-heading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-note {
    display: flex;
    align-items: center;
    background-color: #fff3cd;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.info-note i {
    margin-right: 10px;
    color: #856404;
}

/* Add icons to table headers without disrupting layout */
.pricing-table th i {
    margin-right: 5px;
}

/* Ensure icons in buttons don't disrupt layout */
.pricing-book-now i {
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .pricing-container {
        width: 100%;
        margin: 20px auto;
        padding: 10px;
    }
    
    .pricing-table th, .pricing-table td {
        padding: 8px;
    }
    
    .pricing-book-now {
        width: 100%;
        padding: 15px;
    }

    /* Ensure icons remain visible but don't break layout on mobile */
    .accommodation-icon {
        font-size: 0.9em;
    }
}


/*واتس*/

.last-minute-booking {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 600px;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}
.last-minute-booking h2 {
    text-align: center;
    margin-bottom: 20px;
}
.last-minute-booking p {
    text-align: center;
    margin: 10px 0;
}
.last-minute-booking .whatsapp-link {
    display: block;
    text-align: center;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.last-minute-booking .whatsapp-link:hover {
    background-color: #1EBEA5;
}
@media (max-width: 600px) {
    .last-minute-booking {
        width: 90%;
        margin: 20px auto;
        padding: 10px;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
 /* 🔹 الاتصال */


.contact-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 600px;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}
.contact-section h2,
.message-info h2,
.contact-info h2 {
    text-align: center;
    margin-bottom: 20px;
}
.contact-section fieldset {
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 15px;
    animation: slideIn 0.5s ease-in-out;
}
.contact-section legend {
    font-weight: bold;
    padding: 0 10px;
}
.contact-section label {
    display: block;
    margin-bottom: 5px;
}
.contact-section input[type="text"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section select,
.contact-section textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
}
.contact-section .checkbox-label {
    display: inline;
    margin-left: 10px;
}
.message-info ul {
    list-style-type: disc;
    padding-left: 40px;
}
.contact-info p {
    text-align: center;
    margin: 10px 0;
}
.contact-info a {
    color: #a24815;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
@media (max-width: 600px) {
    .contact-section {
        width: 90%;
        margin: 20px auto;
        padding: 10px;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.contact-section {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 600px;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}
.contact-section h3 {
    color: #a24815;
    text-align: center;
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    animation: slideIn 0.5s ease-in-out;
}
.contact-item .icon {
    font-size: 24px;
    color: #a24815;
    margin-right: 10px;
    transition: transform 0.3s, color 0.3s;
}
.contact-item span {
    font-size: 18px;
    color: #333;
    transition: color 0.3s;
}
.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-item:hover .icon {
    color: #871d0c;
    transform: scale(1.1);
}
.contact-item:hover span,
.contact-item:hover a {
    color: #871d0c;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* إذا كنت قد استخدمت تنسيقًا مركزيًا على عناصر محددة، أزله أو ألغِه */

.center-image {
    display: block;      /* لعرض العنصر بشكل كتلة */
    margin: 0 auto;      /* ضبط الهوامش يمين ويسار تلقائيًا */
    /* يمكنك إضافة أي تنسيقات أخرى ترغب بها */
    max-width: 100%;     /* لضمان استجابة الصورة لحجم الشاشة */
    height: auto;        /* يحافظ على أبعاد الصورة الأصلية */
  }
 
  
  /* حاوية الصورة والنص */
.image-wrapper {
    max-width: 900px;     /* أقصى عرض مطلوب */
    margin: 2rem auto;     /* تمركز الكتلة وسط الصفحة */
    padding: 1rem;
    text-align: center;    /* لجعل الصورة والنص في المنتصف */
  }
  
  /* تنسيق الصورة */
  .styled-image {
    display: block;               /* جعل الصورة كتلة */
    margin: 0 auto;               /* تمركز الصورة أفقياً */
    max-width: 100%;             /* استجابة لحجم الشاشة */
    height: auto;                 /* الحفاظ على نسبة الأبعاد */
    border: 2px solid #ccc;      /* إطار خفيف */
    border-radius: 6px;          /* زوايا منحنية */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* ظل خفيف */
  }
  
  /* تنسيق الصندوق المحتوي على العنوان والنص */
  .caption-box {
    background-color: #f9f9f9;    /* خلفية فاتحة */
    padding: 1rem 2rem;
    margin-top: 1rem;
    border-radius: 6px;
    display: inline-block;        /* لتأخذ حجم المحتوى */
    text-align: left;            /* محاذاة الفقرات لليسار إذا أحببت */
  }
  
  /* تنسيق العنوان داخل الصندوق */
  .caption-box h2 {
    color: #9E561A;              /* لون بني/برتقالي غامق شبيه بالمثال */
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  
  /* تنسيق الفقرة */
  .caption-box p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
  }
  
/* ستايل خاص بصفحات السياسات */
.policy-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    color: #000000;
    text-align: left; /* إضافة هذا لجعل جميع النصوص تبدأ من اليسار */


}
.policy-header h1,
.policy-section h2 {
    text-align: left;
}

.policy-header {
    margin-bottom: 20px; /* إزالة text-align: left; لأن .policy-container يغطي ذلك الآن */
}

.policy-header h1 {
    font-size: 2.2rem;
    color: #a03605;
}

.policy-header p {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 25px;
}

.policy-section h2 {
    color: #a0470b;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.policy-section p, .policy-section ul {
    line-height: 1.6;
}

.contact-section ul {
    list-style: none;
    padding: 0;
}

.contact-section ul li a {
    color: #b96a29;
    text-decoration: none;
}

.contact-section ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .policy-container {
        padding: 15px;
    }

    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
}

/* ضبط محتوى الصفحة ليظهر تحت القائمة */
.policy-container {
    position: relative;
    z-index: 1;
}



/* Styles for the accommodations section icons and headings */
.accommodation-icon {
    transition: all 0.3s ease;
    color: #b96a29;
}

/* Warning icon specific style */
.accommodation-icon.warning-icon {
    color: #f10f0f;
}

/* Hover effects for icons */
.accommodation-icon:hover {
    transform: scale(1.1);
}

/* Icon containers */
.icon-heading-container {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

/* Icon spacing */
.icon-spacing {
    margin-right: 0.75rem;
    margin-left: 0.75rem;
}


    .Salem-section {
        background-color: #f9f9f9;
        padding: 10px 0;
        text-align: center;
    }

    .Salem-container {
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .Salem-item {
        position: relative;
        display: inline-block;
        width: 100%;
        transition: transform 0.3s ease;
    }

    .Salem-item img {
        width: 100%;
        height: 400px; /* ارتفاع ثابت للصورة */
        object-fit: cover; /* ضمان أن الصورة تملأ الحاوية دون تشويه */
        border-radius: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .Salem-item:hover {
        transform: scale(1.05);
    }

    /* تعديلات للعرض على الجوال */
    @media (max-width: 768px) {
        .Salem-container {
            max-width: 100%; /* تأكد من أن الحاوية تأخذ عرض الشاشة الكاملة */
        }

        .Salem-item img {
            height: auto; /* تغيير الارتفاع إلى "auto" للجوال */
            object-fit: cover; /* ضمان أن الصورة تملأ الحاوية بشكل صحيح */
        }
    }


/* Feature icons container */
.feature-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.5rem;
    background-color: rgba(244, 244, 244, 0.5);
    border-radius: 8px;
}

/* Individual feature item */
.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Icon sizes */
.icon-sm {
    font-size: 1rem;
}

.icon-md {
    font-size: 1.5rem;
}

.icon-lg {
    font-size: 2rem;
}

/* Main container styles */
section {
    margin-bottom: 30px;
}

/* Content wrapper */
.content-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Icon container */
.icon-container {
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

/* Text container */
.text-container {
    flex: 1;
}

/* Icon styles */
.icon-lg {
    font-size: 1.5rem;
    color: #703c11;
}

.icon-sm {
    font-size: 1rem;
    color: #703c11;
}

/* Text styles */
.text-container h4 {
    margin: 0 0 15px 0;
}

.text-container p {
    margin: 0 0 15px 0;
}

/* Info item styles */
.info-item {
    margin-bottom: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Link styles */
a {
    color: #0d4acc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

a:hover {
    text-decoration: underline;
}

a i {
    font-size: 0.9em;
}

/* New styles for left-aligned sections ONLY */
.main-section {
    margin-bottom: 30px;
}

/* Only affects the specified sections */
.main-section .content-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.main-section .icon-container {
    flex-shrink: 0;
    width: 40px;
    text-align: left;
}

.main-section .text-container {
    flex: 1;
}

.main-section h4 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

/* Feature icons in main section */
.main-section .feature-icons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 1.2rem 0;
    padding: 0.8rem;
    background-color: rgba(244, 244, 244, 0.5);
    border-radius: 8px;
}

/* Feature items in main section */
.main-section .feature-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.3rem;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 1.2rem;
}

/* Icons in main section feature items */
.main-section .feature-item i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

/* Responsive styles */
@media (max-width: 600px) {
    .content-wrapper {
        gap: 10px;
    }

    .icon-container {
        width: 30px;
    }

    .icon-lg {
        font-size: 1.2rem;
    }

    .icon-sm {
        font-size: 0.9rem;
    }

    /* Responsive for main sections */
    .main-section .content-wrapper {
        gap: 10px;
    }

    .main-section .icon-container {
        width: 30px;
    }
    
    .main-section .feature-item {
        font-size: 1.1rem;
        padding: 0.7rem 1.1rem;
    }
    
    .main-section .feature-item i {
        font-size: 1.3rem;
        margin-right: 0.6rem;
    }
}


h1 {
    font-size: 25px !important;
}

.day-hikes-title {
    text-align: center;
}




h2 {
    font-size: 20px !important;
}



/*سكشن  الغه  */
.language-switcher {
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 1000;
}
.language-switcher select {
    padding: 10px 15px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    color: #333;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23333" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 35px;
}
.language-switcher select:hover {
    border-color: #888;
    background-color: #f5f5f5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.language-switcher select:focus {
    outline: none;
    border-color: #555;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 15px;
    }
    .language-switcher select {
        padding: 8px 12px;
        font-size: 14px;
        background-size: 14px;
        padding-right: 30px;
    }
}


/* أسلوب عام للمقال + صور في المخيم والكهف*/
.article-style {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    font-size: 16px;
    color: #0c0c0c;
    background-color: #fdfdfd;
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* تنسيق العناوين الرئيسية */
.article-style h4 {
    color: #8b4513;
    font-size: 20px;
    margin-bottom: 15px;
}

/* تنسيق العناوين الفرعية */
.article-style h3 {
    color: #a0522d;
    font-size: 22px;
    margin-bottom: 12px;
    border-left: 4px solid #8b4513;
    padding-left: 10px;
}

/* تنسيق الفقرات */
.article-style p {
    margin-bottom: 15px;
    text-align: justify;
}

/* تنسيق الصور في المقال */
.camp-section {
    margin: 20px 0;
}

.camp-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.camp-item {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}


/* تأثير عند المرور على الصورة */
.camp-item:hover {
    transform: scale(1.05);
}

/* تنسيق القوائم */
.article-style ul {
    list-style-type: disc;
    margin-left: 20px;
}

.article-style ul li {
    margin-bottom: 10px;
    color: #444;
}

/* تنسيق النصوص المميزة */
.article-style strong {
    color: #a0522d;
}

/* تنسيق الميتا */
.article-style .meta {
    font-size: 14px;
}

/* Blog container */
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Blog card styles */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-description {
    color: #666;
    margin-bottom: 1rem;
}




/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Accommodation Options Section */
.accommodation-options .option-container {
    display: flex; /* Make sections appear side by side */
    justify-content: space-between; /* Add spacing between sections */
    gap: 20px; /* Add spacing between the two sections */
    flex-wrap: wrap; /* Ensure responsiveness on smaller screens */
}

.option {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 calc(50% - 20px); /* Each section takes up half of the container */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.option h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.option p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .accommodation-options .option-container {
        flex-direction: column;
    }

    .option {
        flex: 1 1 100%; /* Full width on smaller screens */
    }
}


/* Reviews Section */
.reviews-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tripadvisor-rating {
    text-align: center;
    margin-bottom: 30px;
}

.tripadvisor-rating p {
    font-size: 1.2rem;
    margin: 10px 0;
}



.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.review {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.review p:first-child {
    font-weight: bold;
    margin-bottom: 10px;
}

.review p:last-child {
    font-size: 0.9rem;
    color: #555;
}

@media (max-width: 768px) {
    .reviews-list {
        grid-template-columns: 1fr;
    }
}
/* ضبط محتوى الصفحة ليظهر تحت القائمة */
.reviews-list {
    position: relative;
    z-index: 1;
}



/* تنسيق عام */
.booking-form-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Arial', sans-serif;
    text-align: left;
}

/* تنسيق العناوين */
.booking-form-container h3 {
    color: #e67e22;
    margin-bottom: 20px; /* زيادة المسافة تحت العناوين */
    font-weight: 600;
}

/* تنسيق الأقسام */
.booking-form-container fieldset {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 30px; /* زيادة المسافة بين الأقسام */
    border-radius: 8px;
    background: #fafafa;
}

.booking-form-container legend {
    color: #e67e22;
    font-weight: 600;
    font-size: 1.2em;
    padding: 0 10px;
}

/* تنسيق الـ labels والحقول */
.booking-form-container label {
    display: block;
    margin-bottom: 10px; /* زيادة المسافة بين الـ label والحقل */
    color: #333;
    font-weight: 500;
}

.booking-form-container input,
.booking-form-container select,
.booking-form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 20px; /* زيادة المسافة بين الحقول */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form-container input:focus,
.booking-form-container select:focus,
.booking-form-container textarea:focus {
    border-color: #e67e22;
    box-shadow: 0 0 6px rgba(230, 126, 34, 0.3);
    outline: none;
}

.booking-form-container select {
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 9L1 4h10z' fill='%23333'/%3E%3C/svg%3E") no-repeat right 12px center;
    padding-right: 35px;
}

.booking-form-container textarea {
    min-height: 100px;
    resize: vertical;
}

/* تنسيق قسم الإضافات */
.tour-add-ons {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0; /* زيادة المسافة حول قسم الإضافات */
}

.tour-add-ons h3 {
    color: #e67e22;
    font-size: 1.3em;
    margin-bottom: 15px; /* زيادة المسافة تحت العنوان */
}

.tour-add-ons p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 15px; /* زيادة المسافة تحت النص */
}

/* تنسيق مربعات الموافقة */
.policy-agreement {
    margin-top: 20px; /* زيادة المسافة فوق مربعات الموافقة */
}

.policy-agreement label {
    display: flex;
    align-items: center;
    margin-bottom: 15px; /* زيادة المسافة بين مربعات الموافقة */
}

.policy-agreement input[type="checkbox"] {
    width: 20px; /* تكبير حجم المربع */
    height: 20px;
    margin-right: 10px; /* مسافة بين المربع والنص */
}

/* زر الإرسال */
.submit-btn {
    display: block;
    margin: 0 auto; /* جعل الزر في المنتصف */
    background: #e67e22;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d35400;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* تحسينات للجوال */
@media (max-width: 768px) {
    .booking-form-container {
        margin: 10px;
    }
    .booking-form-container fieldset {
        padding: 15px;
    }
}


.cta-button {
    background-color: #FF6200; /* الخلفية البرتقالية */
    color: #000000; /* النص أسود لتباين أعلى */
}
.language-switcher {
    margin-bottom: 20px; /* المسافة بين اللغة والعنوان */
}

/* أو ممكن تضيفي مسافة فوق العنوان */
h1 {
    margin-top: 20px;
}

/* للتأكد إن التغيير يظهر على الجوال فقط */
@media (max-width: 768px) {
    .language-switcher {
        margin-bottom: 20px;
    }
    h1 {
        margin-top: 20px;
    }
}

/* 🔹 تصميم الفوتر */
footer {
    text-align: center;
    padding: 20px;
    background: #333333;
    color: #333;
    margin-top: 40px;
    border-top: 2px solid #ddd;
    width: 100%;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1rem;
}

.footer-links a i {
    margin-right: 5px;
    color: #FFFFFF;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-contact i {
    margin-right: 5px;
    color: #FFFFFF;
}

.footer-contact a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #FFFFFF;
}

/* 🔹 تصميم للفوتر على الموبايل */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* الحاوية الرئيسية */
.container.py-5 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* ترويسة الصفحة */
.page-title {
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
  color: #000000;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 2rem;
}

.page-title h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.page-title p {
  font-size: 1.1rem;
}

/* تخطيط العمودين */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.col-md-6.mb-4 {
  flex: 1 1 48%;
}

/* الكروت */
.card.h-100 {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.07);
}

/* كرت الواتساب */
.card.bg-success {
  background-color: #198754 !important;
  color: white;
}

.card.bg-success input,
.card.bg-success select,
.card.bg-success textarea {
  background-color: #f9f9f9;
  color: #000;
}

.card.bg-success .btn-light {
  background: #fff;
  color: #198754;
  border: 2px solid #fff;
}

.card.bg-success .btn-light:hover {
  background-color: #e6f4ec;
}

/* عناوين النماذج */
.card-title.mb-3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* الحقول */
.form-control,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: #b85c0c;
}

/* textarea */
textarea.form-control {
  resize: vertical;
}

/* checkboxes */
.form-check {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-check-input {
  transform: scale(1.2);
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

/* الأزرار */
.btn-primary,
.btn-light {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.btn-primary {
  background-color: #b85c0c;
  color: white;
}

.btn-primary:hover {
  background-color: #944a0a;
}

/* الهواتف */
@media (max-width: 768px) {
  .col-md-6.mb-4 {
    flex: 1 1 100%;
  }

  .container.py-5 {
    padding: 2rem 1rem;
  }

  .page-title h1 {
    font-size: 1.5rem;
  }

  .page-title p {
    font-size: 1rem;
  }
}



.Salem-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.Salem-image {
  flex: 1 1 45%;
  max-width: 45%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
}

.Salem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* للجوال */
@media (max-width: 768px) {
  .Salem-image {
    flex: 1 1 100%;
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}
