﻿/* أنيميشن النبض (تكبير/تصغير) */
@keyframes pulseScale {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.25);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* في حال كان لديك كود يعيد ضبط transforms على img،
   سنطبق الأنيميشن على الـ WRAP أيضًا لزيادة الاعتمادية */
#pulse-wrap {
    animation: wrapPulse 1.1s infinite ease-in-out !important;
    will-change: transform;
}

@keyframes wrapPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* تجاهل إعدادات تقليل الحركة إن كانت تعطل الأنيميشن */
@media (prefers-reduced-motion: reduce) {
    #pulse-logo, #pulse-wrap {
        animation-duration: 1.1s !important; /* لا نوقفها */
    }
}
/* تجاهل إعدادات تقليل الحركة إن كانت تعطل الأنيميشن */
@media (prefers-reduced-motion: reduce) {
  #pulse-logo, #pulse-wrap {
    animation-duration: 1.1s !important; /* لا نوقفها */
  }
}
/* ===== حاوية السلايدر ===== */
/* السلايد كحاوية للتموضع */
.mySwiper .swiper-slide {
    position: relative; /* مهم */
    display: flex;
    justify-content: center;
}
/* تغيير لون أسهم السلايدر للذهبي */
.swiper-button-next,
.swiper-button-prev {
    color: #f4c43d; /* ذهبي */
    fill: #f4c43d; /* لو SVG */
}

.packages-section .swiper-slide {
    width: 230px; /* عرض أصغر */
    height: auto; /* يخلي الطول يتناسب مع المحتوى */
}

.packages-section .swiper-slide {
    width: 230px; /* عرض */
    height: 300px; /* طول أقل */
}

/* عند المرور بالماوس - لون أغمق */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #d4a72d;
    fill: #d4a72d;
}

/* الكرت نفسه */
.package-card {
    position: relative;
    overflow: hidden;
}

    .package-card img {
        width: 100%;
        height: auto;
        display: block;
    }

/* النص فوق الصورة */
.package-info {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6); /* خلفية سوداء شفافة */
    color: #fff;
    text-align: center;
    padding: 10px;
}

    .package-info h3 {
        margin: 0;
        font-size: 16px;
    }

    .package-info p {
        margin: 5px 0 0;
        font-size: 14px;
    }


/* إبراز الوسط */
.mySwiper .swiper-slide-active .package-card {
    transform: scale(1.08);
    border: 3px solid #f4c43d;
    box-shadow: 0 14px 28px rgba(0,0,0,.18);
    z-index: 2;
}

/* رقم البطاقة خارج الكرت – ثابت على يسار السلايد */
.card-number {
    position: absolute;
    left: -22px; /* مقدار الخروج برّه */
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: #f4c43d;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    outline: 3px solid #fff; /* هالة بيضاء مثل PSD */
    box-shadow: 0 4px 6px rgba(0,0,0,.15);
    z-index: 3;
}

/* السماح بالظلال وعدم قصّها */
.mySwiper, .mySwiper .swiper-wrapper {
    overflow: visible;
}

/* منع سكروول أفقي للسكشن ككل */
.packages-section {
    position: relative;
    overflow: hidden;
}

/* استجابة */
@media (max-width: 991px) {
    .package-card {
        max-width: 320px;
        height: 260px;
    }

    .card-number {
        left: -18px;
        width: 32px;
        height: 32px;
        line-height: 32px;
        outline-width: 2px;
    }
}

@media (max-width: 575px) {
    .package-card {
        max-width: 100%;
        height: 240px;
    }

    .card-number {
        left: -14px;
    }
}
/* قسم العنوان */
.section-title {
    text-align: center;
    color: #111; /* أسود */
    font-weight: 800; /* ثقيل */
    font-size: clamp(26px,3.2vw,36px);
    margin: 0;
    padding-bottom: 18px; /* مساحة للخط الذهبي */
    position: relative;
}

    /* الخط الذهبي تحت العنوان */
    .section-title::after {
        content: "";
        display: block;
        width: 120px; /* طول الخط */
        height: 4px; /* سُمك الخط */
        margin: 12px auto 0;
        background: #f4c43d; /* ذهبي */
        border-radius: 6px; /* أطراف ناعمة */
        box-shadow: 0 2px 6px rgba(0,0,0,.08);
    }

/* السطر الفرعي الذهبي */
.section-subtitle {
    text-align: center;
    color: #c59d2f; /* ذهبي أدكن للنص */
    font-weight: 600;
    font-size: clamp(14px,1.6vw,16px);
    margin: 8px 0 28px; /* مسافة تحت النص */
    line-height: 1.8;
}

/* ألوان أساسية */
/* لون خلفية القسم */
:root {
    --beige: #f7f5f0; /* لون القسم اللي فوق */
    --page: #fff; /* لون خلفية الصفحة/القسم */
}

/* قسم الباقات */
.packages-section {
    position: relative;
    background: var(--page);
    padding-top: 80px; /* مسافة أعلى للعنوان */
    z-index: 0;
}

    /* القوس القادم من الأعلى بلون البيج */


    /* ضمان بقاء المحتوى فوق القوس */
    .packages-section .container {
        position: relative;
        z-index: 1;
    }

/* استجابة للقوس على الشاشات الصغيرة */
@media (max-width: 768px) {
    .packages-section {
        padding-top: 60px;
    }

        .packages-section::before {
            top: -90px;
            height: 170px;
            clip-path: ellipse(130% 100% at 50% 0%);
        }
}


:root {
    --beige: #f7f5f0; /* نفس اللون المستخدم في القوس */
}

.about-section {
    position: relative;
    background: var(--beige); /* خلي خلفية القسم بيج */
    padding: 56px 0 20px;
}


/*.about-section {
            position: relative;
            background: var(--beige);
            padding: 56px 0 100px;*/ /* مساحة أسفل أكبر للقوس */
/*clip-path: ellipse(100% 90% at 50% 100%);
        }*/
/* محتوى القسم (ختم يسار + صندوق نص يمين) */
.about-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-stamp {
    width: 220px; /* حجم الختم */
    max-width: 28vw;
}

/* الصندوق */
.about-box {
    background: transparent;
    padding: 0;
    max-width: 640px;
    margin-inline-start: auto; /* يحاذي يمين في RTL */
}

/* عنوان مع أيقونة */
.about-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .about-head .icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

.about-title {
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
    margin: 0;
}

/* إطار الفقرة بنفس الستايل (خط رأسي زخرفي) */
.about-paragraph {
    position: relative;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 0; /* بلا تقويس مثل التصميم */
    padding: 16px 18px;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

    .about-paragraph::before {
        content: "";
        position: absolute;
        inset: 0 auto 0 0; /* خط رأسي يسار في RTL */
        width: 3px;
        background: rgba(0,0,0,.25);
    }

/* زر اقرأ المزيد */
.about-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: .2s;
}

    .about-btn:hover {
        background: var(--gold);
    }

/* القوس السفلي (ضع الصورة التي قصصناها: curve.png) */
.about-section .curve-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 84px;
    background: url('images/curve.png') center bottom / cover no-repeat;
    pointer-events: none;
}

/* استجابة */
@media (max-width:992px) {
    .about-wrap {
        flex-direction: column;
        text-align: center;
    }

    .about-paragraph::before {
        inset: auto;
        width: 0;
    }
    /* ألغِ الخط الرأسي على الشاشات الصغيرة */
    .about-stamp {
        width: 180px;
    }
}

:root {
    --page: #fff; /* لون الصفحة */
    --beige: #f7f5f0; /* لون القوسين (الخلفية البيج) */
    --beige-2: #e9e1cf; /* الشريط الأدكن تحت */
}

.packages-section {
    position: relative;
    background: var(--page);
    padding: 90px 0 120px; /* مسافة للعنوان وللقوس السفلي */
    z-index: 0;
}

   

    /* القوس السفلي (صاعد على القسم) */
    .packages-section::after {
        content: "";
        position: absolute;
        bottom: -110px; /* ارفع/نزل القوس */
        left: 0;
        right: 0;
        height: 200px; /* عمق القوس */
        background: var(--beige);
        clip-path: ellipse(130% 100% at 50% 100%);
        z-index: -1;
    }

/* الشريط المنحني الأدكن تحت – مثل الطبقة الثانية في الـPSD */
.packages-lower-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px; /* ادفعه قليلًا خارج القسم */
    height: 150px;
    background: var(--beige-2);
    clip-path: ellipse(150% 65% at 50% 100%);
    z-index: -1;
}

/* تأكد أن محتوى القسم فوق الأقواس */
.packages-section .container {
    position: relative;
    z-index: 1;
}

/* استجابة بسيطة */
@media (max-width: 768px) {
    .packages-section {
        padding: 70px 0 100px;
    }

        .packages-section::before {
            top: -90px;
            height: 170px;
        }

        .packages-section::after {
            bottom: -90px;
            height: 170px;
        }

    .packages-lower-band {
        bottom: -30px;
        height: 130px;
    }
}

:root {
    --beige: #f7f5f0; /* خلفية القسم */
    --beige-2: #e9e1cf; /* الشريط الأدكن */
    --gold: #f4c43d; /* ذهبي */
    --gold-dark: #d4a72d; /* ذهبي داكن للهوفر */
    --ink: #111;
}

/* ===== القسم مع الأقواس ===== */
.hotels-curve-top,
.hotels-curve-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 160vw; /* أوسع من الشاشة */
    z-index: -1;
}

/* القوس العلوي */
.hotels-curve-top {
    top: -150px;
    height: 250px;
    background: var(--beige);
    clip-path: ellipse(140% 100% at 50% 0%);
}

/* القوس السفلي */
.hotels-curve-bottom {
    bottom: -150px;
    height: 250px;
    background: var(--beige);
    clip-path: ellipse(140% 100% at 50% 100%);
}


/* الشريط الأدكن تحت القوس السفلي (الطبقة الثانية) */
.hotels-section::after {
    content: "";
    bottom: -70px;
    height: 190px;
    background: var(--beige-2);
    clip-path: ellipse(180% 70% at 50% 100%);
}

/* أمان من أي سكرول أفقي */
html, body {
    overflow-x: hidden;
}

.hotels-section {
    overflow: hidden;
}

    /* عناوين القسم (تستخدم ستايل العناوين عندك) */
    .hotels-section .section-title {
        text-align: center;
        color: var(--ink);
        font-weight: 800;
    }

    .hotels-section .section-subtitle {
        text-align: center;
        color: #c59d2f;
        margin: 8px 0 28px;
    }

/* ===== سلايدر الفنادق ===== */
/* مساحة يمين/يسار داخل السلايدر عشان ما تلامس الكروت */
/* مساحة يمين/يسار للسلايدر حتى ما تلمس الأسهم الكروت */
.hotelsSwiper {
    position: relative;
    padding-inline: 80px; /* زِدها/قلّلها حسب الحاجة */
}

    /* شكـل الأسهم */
    .hotelsSwiper .swiper-button-prev,
    .hotelsSwiper .swiper-button-next {
        /* صفّر أي تموضع قديم */
        left: auto !important;
        right: auto !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #f4c43d;
        box-shadow: 0 6px 14px rgba(0,0,0,.12);
        color: #fff;
        z-index: 20; /* أعلى من الفقاعات والكروت */
    }

        .hotelsSwiper .swiper-button-prev::after,
        .hotelsSwiper .swiper-button-next::after {
            color: #fff;
            font-size: 16px;
            font-weight: 900;
        }

    /* موضع الأسهم باستخدام خصائص منطقية (يشغل RTL/LTR صح) */
    .hotelsSwiper > .swiper-button-prev {
        inset-inline-start: 12px !important;
    }

    .hotelsSwiper > .swiper-button-next {
        inset-inline-end: 12px !important;
    }

/* على الشاشات الصغيرة قرّبهم */
@media (max-width: 768px) {
    .hotelsSwiper {
        padding-inline: 56px;
    }

        .hotelsSwiper > .swiper-button-prev {
            inset-inline-start: 8px !important;
        }

        .hotelsSwiper > .swiper-button-next {
            inset-inline-end: 8px !important;
        }
}

/* لا تخلّي أي قاعدة لاحقة تلخبط (احذفها لو موجودة) */
/* .swiper-button-next.hotel-nav { right:-6px; left:auto; } */
/* .swiper-button-prev.hotel-nav { left:-6px; right:auto; } */

/* الفقاعة الذهبية: خلّيها أقل من الأسهم */
.book-bubble {
    z-index: 5; /* أقل من 20 تبع الأسهم */
    right: 18px;
    bottom: -22px;
}


/* البطاقة */
.hotel-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    overflow: hidden;
}

/* الصورة */
.hotel-image {
    position: relative
}

    .hotel-image img {
        width: 100%;
        display: block
    }

/* الاسم + السعر تحت */
.hotel-meta {
    padding: 14px 16px;
    text-align: center
}

.hotel-name {
    margin: 6px 0 8px;
    font-size: 18px;
    font-weight: 800;
    color: #111
}

.hotel-price {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: #2b2b2b
}

    .hotel-price span,
    .hotel-price small {
        font-size: 12px;
        font-weight: 700;
        color: #777
    }

/* أخفي أي زر أسود قديم داخل .hotel-meta */
.hotel-meta .book-btn {
    display: none !important
}

/* الزر الذهبي الدائري على الجنب */
.book-bubble {
    position: absolute;
    right: 18px;
    bottom: -22px;
    width: 64px;
    height: 64px;
    border-radius: 12px; /* كان 50% للدائرة - الآن شبه مربع */
    background: #cfa44b; /* ذهبي */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
    font-weight: 900;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
    border: 6px solid #fff; /* هالة بيضاء */
    z-index: 3;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}


    .book-bubble:hover {
        background: #a27f33; /* أغمق عند الهوفر */
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0,0,0,.22);
        color: #000;
    }

/* مقاسات أصغر للجوال */
@media (max-width:768px) {
    .book-bubble {
        right: 14px;
        bottom: -18px;
        width: 56px;
        height: 56px;
        font-size: 13px;
        border-width: 5px;
    }
}


.swiper-button-next.hotel-nav {
    right: -6px;
    left: auto;
}

/* استجابة */
@media (max-width:992px) {
    .hotel-card {
        max-width: 280px;
    }

    .hotel-img {
        height: 180px;
    }
}

@media (max-width:768px) {
    .hotels-section {
        padding: 70px 0;
    }

    .hotels-curve-top {
        top: -90px;
        height: 170px;
    }

    .hotels-curve-bottom {
        bottom: -90px;
        height: 170px;
    }

    .hotels-section::after {
        bottom: -30px;
        height: 130px;
    }
}

/* 1) اقفل أي تمرير أفقي عام */
html, body {
    overflow-x: hidden;
}

/* 2) أي قسم فيه أقواس خلي overflow مخفي */
.about-section,
.packages-section,
.hotels-section {
    overflow: hidden;
}

    /* 3) خلي عناصر الأقواس أعرض من الشاشة لكن متمركزة داخلها */
    .packages-section::before,
    .packages-section::after,
    .hotels-curve-top,
    .hotels-curve-bottom,
    .hotels-section::after {
        width: 120vw; /* أعرض من الشاشة بقليل */
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

/* 4) لا تخلي أسهم السلايدر تطلع برة الحاوية */
.hotel-nav.swiper-button-prev {
    left: 8px;
}
/* بدل القيم السالبة أو الكبيرة */
.hotel-nav.swiper-button-next {
    right: 8px;
}

/* إن كان عندك سلايدر ثاني */
.swiper-button-prev {
    left: 8px;
}

.swiper-button-next {
    right: 8px;
}




/*        ........................*/

/* ألوان عامة (اضبطها لو عندك متغيّرات مسبقاً) */
:root {
    --beige: #f7f5f0;
    --beige-2: #e9e1cf;
    --gold: #f4c43d;
    --gold-dark: #d4a72d;
    --ink: #111;
}

/* الحاوية المساعدة إن لم تكن موجودة */
.container {
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 16px
}

/* ===== الإحصاءات ===== */
.metrics-why-section {
    position: relative;
    background: var(--beige);
    padding: 40px 0 80px;
    overflow: hidden;
}

.stats-bar {
    background: linear-gradient(180deg,#d9bd6e 0%, #caa749 100%);
    border-radius: 22px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.stat {
    background: rgba(255,255,255,.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    color: #3b2e05;
}

    .stat svg {
        width: 28px;
        height: 28px;
        fill: #3b2e05;
        opacity: .9;
        flex: 0 0 auto;
    }

    .stat .num {
        font-weight: 900;
        font-size: 22px;
        color: #1b1302;
        line-height: 1
    }

    .stat .label {
        font-size: 12px;
        color: #4a3c0b;
        opacity: .9
    }

/* القوس السفلي أسفل شريط الإحصاءات */
.metrics-curve {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -110px;
    height: 220px;
    width: 160vw;
    background: #fff;
    clip-path: ellipse(140% 100% at 50% 100%);
    z-index: 0;
}

/* ===== لماذا اخترتنا ===== */
.why-wrap {
    position: relative;
    z-index: 1; /* فوق القوس */
    margin-top: 70px;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: center;
}

.why-media {
    display: flex;
    justify-content: center
}

    .why-media img {
        width: 320px;
        height: 320px;
        object-fit: cover;
        border-radius: 50%;
        box-shadow: 0 16px 36px rgba(0,0,0,.12);
        border: 8px solid #e6dbb9;
        background: #e6dbb9;
    }

.why-box {
    background: #fff;
    border-radius: 14px;
    padding: 22px 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.06);
}

.why-title {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
    color: var(--ink)
}

    .why-title span {
        color: #b8860b
    }

.why-intro {
    margin: 0 0 14px;
    color: #555;
    line-height: 1.9
}

.why-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px
}

    .why-list li {
        position: relative;
        padding-inline-start: 26px;
        color: #2b2b2b;
        line-height: 1.9
    }

        .why-list li::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 18px;
            height: 18px;
            border-radius: 4px;
            background: var(--gold);
            box-shadow: 0 4px 10px rgba(0,0,0,.12);
            margin-top: .35em;
            /* علامة صح */
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="white" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/70% no-repeat;
        }

/* استجابة */
@media (max-width:992px) {
    .stats-bar {
        grid-template-columns: repeat(2,1fr)
    }

    .why-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center
    }

    .why-media img {
        width: 260px;
        height: 260px
    }

    .why-list li {
        padding-inline-start: 0
    }

        .why-list li::before {
            left: 50%;
            transform: translateX(-50%);
            margin-top: -2px
        }
}

@media (max-width:576px) {
    .stats-bar {
        grid-template-columns: 1fr
    }

    .stat {
        justify-content: center
    }

    .metrics-why-section {
        padding-bottom: 90px
    }
}

/* ===== سكشن الناقل ===== */
.transport-section {
    position: relative;
    background: #fff;
    padding: 40px 0 60px;
    overflow: hidden;
    z-index: 0;
}

/* أقواس مثل الفنادق */
.transport-curve-top,
.transport-curve-bottom {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 160vw;
    z-index: -1;
    background: var(--beige);
}

.transport-curve-top {
    top: -130px;
    height: 220px;
    clip-path: ellipse(140% 100% at 50% 0%);
}

.transport-curve-bottom {
    bottom: -120px;
    height: 210px;
    clip-path: ellipse(140% 100% at 50% 100%);
}

/* صورة الناقل */
.transport-image-wrap {
    max-width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

    .transport-image-wrap img {
        width: 100%;
        display: block;
        border-radius: 18px;
    }

.footer {
    background-color: #2a1d09; /* بني غامق */
    color: white;
    padding: 40px 0 20px;
    font-family: Arial, sans-serif;
}

    .footer .container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.footer-right, .footer-left {
    width: 45%;
}

    .footer-right h4, .footer-left h4 {
        margin-bottom: 15px;
        color: #f0c76c; /* لون العنوان ذهبي */
    }

.contact-info {
    list-style: none;
    padding: 0;
}

    .contact-info li {
        margin: 10px 0;
    }

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: white;
    font-size: 18px;
    text-decoration: none;
}

.footer-left form {
    display: flex;
    flex-direction: column;
}

.footer-left input,
.footer-left textarea {
    margin-bottom: 10px;
    padding: 8px;
    border: none;
    outline: none;
    border-radius: 3px;
}

.footer-right h4, .footer-left h4 {
    margin-bottom: 15px;
    color: #d4af37; /* ذهبي فخم */
}

.footer-left button {
    background-color: #d4af37; /* ذهبي فخم */
    color: black;
    padding: 8px;
    border: none;
    cursor: pointer;
}


/* 1) امنع أي عنصر عريض يسبب اختلاف وميلان في الموبايل */
html, body {
    overflow-x: hidden;
}

/* 2) صوّت عرض الأقواس/الأشرطة على الموبايل كي لا تتجاوز الشاشة */
@media (max-width: 768px) {
    .packages-section::before,
    .packages-section::after,
    .hotels-curve-top,
    .hotels-curve-bottom,
    .hotels-section::after,
    .metrics-curve,
    .transport-curve-top,
    .transport-curve-bottom {
        width: 115vw; /* بدل 140–160vw */
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
}

/* 3) ألغِ المقاسات الثابتة للكروت داخل السلايدر */
.packages-section .swiper-slide {
    width: auto;
    height: auto;
}

.package-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* 4) خفّف padding السلايدر عشان ما يختلف في الشاشات الصغيرة */
.hotelsSwiper {
    padding-inline: 40px;
}

@media (max-width: 768px) {
    .hotelsSwiper {
        padding-inline: 24px;
    }
}

/* 5) فقّاعة احجز الآن: لا تجعلها تحت الكرت على الجوال */
@media (max-width: 575px) {
    .book-bubble {
        bottom: 10px;
        right: 10px;
        border-width: 4px;
    }
}

/* 6) تقليل الإبراز في السلايد الوسط على الجوال لتفادي قصّ الحدود */
@media (max-width: 575px) {
    .mySwiper .swiper-slide-active .package-card {
        transform: scale(1.03);
        border-width: 2px;
    }
}
/* أساسيات مرنة */
*, *::before, *::after {
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

html, body {
    overflow-x: hidden;
}

/* حاويات مرنة */
.container {
    max-width: min(1140px, 100%);
    padding-inline: 16px;
    margin-inline: auto;
}

/* بطاقات الباقات داخل السلايدر: لا تثبيت مقاسات على الموبايل */
.packages-section .swiper-slide {
    width: auto !important;
    height: auto !important;
}

.package-card {
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
    /* لو تحب ارتفاع ثابت لطيف بدون قصّ الصورة، استخدم نسبة */
    .package-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

@supports (aspect-ratio: 4 / 3) {
    .package-card {
        aspect-ratio: 4 / 3;
    }

        .package-card img {
            height: 100%;
        }
}

/* إبراز السلايد الفعال – خفّفه على الشاشات الصغيرة لتفادي القصّ */
@media (max-width: 575px) {
    .mySwiper .swiper-slide-active .package-card {
        transform: scale(1.03);
        border-width: 2px;
    }
}

/* أسهم السلايدر وأطرافه */
.swiper-button-prev, .swiper-button-next {
    color: #f4c43d;
}

.hotelsSwiper {
    padding-inline: 40px;
}

@media (max-width: 768px) {
    .hotelsSwiper {
        padding-inline: 20px;
    }
}

/* فقّاعة احجز الآن لا تنزل خارج البطاقة على الموبايل */
@media (max-width: 575px) {
    .book-bubble {
        right: 10px;
        bottom: 10px;
        border-width: 4px;
    }
}

/* الأقواس/الشرائط العريضة: قلّل العرض وثبّت التمركز */
.packages-section,
.about-section,
.hotels-section,
.transport-section,
.metrics-why-section {
    overflow: hidden;
    position: relative;
}

 

/* على الشاشات الصغيرة: لا تتجاوز الشاشة */
@media (max-width: 768px) {
    .packages-section::before,
    .packages-section::after,
    .hotels-curve-top,
    .hotels-curve-bottom,
    .hotels-section::after,
    .metrics-curve,
    .transport-curve-top,
    .transport-curve-bottom {
        width: 110vw !important; /* كان 140–160vw */
    }
}

/* شبكة الإحصاءات واللماذا اخترتنا */
.stats-bar {
    grid-template-columns: repeat(4,1fr);
}

@media (max-width: 992px) {
    .stats-bar {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 576px) {
    .stats-bar {
        grid-template-columns: 1fr;
    }
}

/* عناوين متجاوبة */
.section-title {
    font-size: clamp(22px, 6vw, 36px);
}

.section-subtitle {
    font-size: clamp(13px, 3.6vw, 16px);
}

footer .btn-warning {
    border-radius: .5rem;
}

footer a.text-white-50:hover {
    color: #f4c43d !important;
}

/* تفضيل: إزالة أي عرض/طول ثابت مكرر سابقًا */
/* ملاحظة: لديك تعريفين لـ .packages-section .swiper-slide بعرض 230px وارتفاع 300px.
        هذه القواعد فوقيّة وتلغيها، فلا حاجة لحذف القديمة الآن. */

/* ——— تقليل ارتفاع السكشن ——— */
.packages-section {
    padding: 48px 0 64px !important; /* بدل 90/120 */
}

    /* ——— تصغير الأقواس العلوية/السفلية ——— */
 

    .packages-section::after {
        clip-path: ellipse(120% 100% at 50% 100%) !important;
    }

/* إن كنت مستخدم .packages-lower-band خلّها مخفية لتقليل الارتفاع */
.packages-lower-band {
    display: none !important;
}

/* ——— جعل الكروت أقصر ——— */
@supports (aspect-ratio: 16 / 10) {
    .package-card {
        aspect-ratio: 16 / 10;
    }
    /* أقصر من 4/3 */
}

/* ——— تقليل بروز السلايد الوسطي والحد ——— */
.mySwiper .swiper-slide-active .package-card {
    transform: scale(1.04) !important; /* بدل 1.08 */
    border-width: 2px !important;
}

/* ——— عنوان ووصف أقصر ——— */
.section-title {
    padding-bottom: 10px !important;
}

    .section-title::after {
        height: 3px !important;
        width: 90px !important;
    }

.section-subtitle {
    margin: 6px 0 18px !important;
}

/* ——— تقليل المسافات بين السلايدات على الشاشات الكبيرة ——— */
@media (min-width: 992px) {
    .mySwiper .swiper-wrapper {
        gap: 0 !important;
    }
}
/* تضييق حاوية سكشن الباقات فقط */
.packages-section .container {
    max-width: 1040px; /* جرّب 1000px لو تبغيه أضيق */
    margin-inline: auto;
}

/* اضيق شوية على الشاشات الكبيرة جداً */
@media (min-width: 1400px) {
    .packages-section .container {
        max-width: 980px;
    }
}

/* تضييق سلايدر الباقات وجعله بوسط الصفحة */
.packages-section .mySwiper {
    max-width: 980px; /* جرّب 960px أو 940px حسب ذوقك */
    margin-inline: auto;
}
/* تصغير عرض الكروت على الديسكتوب */
.packages-section .swiper-slide {
    max-width: 400px; /* كان تقريبا 320–350px، جرّب 260px لو تبغيه أضيق */
}

.package-info h3 {
    color: #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(0, 0, 0, 0.4); /* خلفية سوداء شفافة */
    border-radius: 50%; /* دائرية */
    width: 44px;
    height: 44px;
}

    .swiper-button-next::after,
    .swiper-button-prev::after {
        color: #fff; /* لون السهم أبيض */
        font-size: 18px; /* حجم السهم */
    }

/* ===== صرنا أقرب إليك ===== */
:root {
    --beige: #e9e3d3; /* خلفية واسعة فاتحة */
    --beige-2: #f5d4a5; /* بانِل سفلية */
    --ink: #1f1a12;
    --gold: #b89438;
}

.closer-section {
    position: relative;
    padding: 70px 0 0;
    overflow: hidden;
    background: #fff;
}

    /* القوس العلوي العريض */
    .closer-section::before {
        content: "";
        position: absolute;
        inset: -120px 0 auto 0;
        height: 300px;
        background: var(--beige);
        clip-path: ellipse(140% 100% at 50% 0%);
        z-index: -1;
    }
.closer-section {
    position: relative;
    padding: 70px 0;
    background: url('assets/img/4a7ef671-219d-4f59-a643-589f70818b1e.png') center center / cover no-repeat;
    color: #1f1a12;
}

    .closer-section::before {
        content: none; /* حذف القوس العلوي القديم */
    }

/* الصف العلوي */
.closer-top .title {
    font-weight: 800;
    color: var(--ink);
    font-size: clamp(24px,3.4vw,36px);
    margin-bottom: 14px;
}

/* شارة عدد الدول داخل دبوس */
.badge-pin {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.08) inset, 0 4px 14px rgba(0,0,0,.06);
    border: 6px solid rgba(184,148,56,.25);
    color: var(--gold);
    font-weight: 800;
    text-align: center;
}

    .badge-pin::after { /* ذيل الدبوس */
        content: "";
        position: absolute;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 26px;
        height: 26px;
        background: #fff;
        border-right: 6px solid rgba(184,148,56,.25);
        border-bottom: 6px solid rgba(184,148,56,.25);
    }

    .badge-pin .num {
        font-size: 30px;
        line-height: 1;
        display: block;
        color: #6a5a2a;
    }

    .badge-pin small {
        display: block;
        font-weight: 700;
        color: #9c884a;
    }

/* للخريطة */
.world-wrap img {
    max-width: 520px;
    filter: grayscale(40%);
}

@media (max-width:991px) {
    .world-wrap img {
        max-width: 100%;
    }
}

/* البانِل السفلية */
.closer-panel {
    position: relative;
    margin-top: 36px;
    background: var(--beige-2);
    border-radius: 18px;
    padding: 26px 22px;
    overflow: hidden;
}

    .closer-panel::before {
        content: "";
        position: absolute;
        inset: auto -20% -60% -20%;
        height: 220px;
        background: radial-gradient(closest-side, rgba(184,148,56,.18), rgba(184,148,56,0) 70%);
    }

/* نص البانِل */
.panel-title {
    font-size: clamp(18px,2.4vw,22px);
    font-weight: 700;
    color: #2a220f;
    margin: 0;
}

    .panel-title span {
        display: block;
        font-weight: 800;
        color: #17130b;
        margin-top: 6px;
    }

/* صورة الأجهزة */
.phones {
    max-width: 380px;
    display: block;
    margin-inline: auto;
}

@media (max-width:768px) {
    .closer-section {
        padding-top: 54px;
    }

        .closer-section::before {
            height: 220px;
            inset: -90px 0 auto 0;
        }

    .badge-pin {
        width: 96px;
        height: 96px;
        border-width: 5px;
    }

    .phones {
        max-width: 260px;
    }
}

/* خلفية تمتد على كامل السكشن */
.closer-section {
    position: relative;
    width: 100%;
    padding: 72px 0; /* عدّلها كما تحب */
    min-height: 420px; /* لضمان امتداد الخلفية عموديًا */
    background: url('../bkg.png') center 10% / cover no-repeat;
    /* center 10% يرفع الخريطة قليلًا للأعلى، غيّرها حسب معاينتك */
}

    /* أي خلفية بيضاء داخلية قد تغطي الخلفية */
    .closer-section > .container,
    .closer-section .map-box,
    .closer-section .map-card {
        background: transparent !important;
        box-shadow: none !important;
        border: 0 !important;
    }

    /* لو كان عندك صورة/بنر خريطة داخل الصندوق، خليه فقط صورة بدون خلفية */
    .closer-section .map-img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    /* لو فيه أقواس/شرائط قديمة فوق السكشن تعمل طبقة بيضاء */
    .closer-section::before,
    .closer-section::after {
        content: none !important;
    }
/* خلفية الفوتر (اختياري لو تحب اللون البني الغامق) */
footer.bg-dark {
    background-color: #2a1d09 !important;
}

    /* العناوين الذهبية داخل الفوتر بدلاً من أصفر Bootstrap */
    footer.bg-dark .text-warning {
        color: #d4af37 !important; /* ذهبي فخم */
    }

    /* زر الإرسال الذهبي */
    footer.bg-dark .btn.btn-warning {
        background-color: #d4af37 !important;
        border-color: #d4af37 !important;
        color: #111 !important;
    }

        footer.bg-dark .btn.btn-warning:hover,
        footer.bg-dark .btn.btn-warning:focus {
            background-color: #b8902d !important; /* أغمق عند الهوفر */
            border-color: #b8902d !important;
            color: #000 !important;
        }

    /* روابط السوشال: لما تمرّ عليها تصير ذهبية */
    footer.bg-dark a.text-white-50:hover,
    footer.bg-dark a.text-white-50:focus {
        color: #d4af37 !important;
    }



@media (max-width: 576px) {
    /* وسّط السلايد في الموبايل */
    .mySwiper .swiper-slide,
    .hotelsSwiper .swiper-slide {
        display: flex;
        justify-content: center;
    }

    .hotel-card {
        display: flex;
        flex-direction: column;
        align-items: center; /* يوسّط أفقياً */
    }

    .hotel-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .hotel-image img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
        }
}

