/* ==========================================================================
   Azoueiga voyages — الواجهة العامة
   ========================================================================== */

:root {
    --indigo:      #22355B;
    --indigo-deep: #14203A;
    --orange:      #F99D30;
    --burnt:       #C35407;
    --sand:        #FBE2CB;
    --sand-soft:   #F6EADC;
    --card:        #FFFCF8;
    --ink:         #512500;
    --text:        #1D2B45;
    --muted:       rgba(29, 43, 69, .62);
    --line:        rgba(34, 53, 91, .13);
    --display:     "Reem Kufi", "IBM Plex Sans Arabic", serif;
    --body:        "IBM Plex Sans Arabic", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    background: var(--card);
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.skip {
    position: absolute; inset-inline-start: -9999px; top: 0;
    background: var(--indigo); color: #fff; padding: 10px 16px; z-index: 100;
}
.skip:focus { inset-inline-start: 0; }

/* ==================== الترويسة ==================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 252, 248, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 20px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--indigo); }
.brand img { width: 42px; height: 42px; border-radius: 9px; }
.brand b { display: block; font-size: 17px; font-weight: 600; line-height: 1.2; }
.brand small {
    display: block; font-size: 9.5px; font-weight: 300;
    letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
    direction: ltr;
}
.brand span { direction: ltr; text-align: left; }

.site-nav { display: flex; align-items: center; gap: 26px; margin-inline-start: auto; }
.site-nav > a { font-size: 15px; font-weight: 500; color: var(--text); }
.site-nav > a:hover { color: var(--burnt); }

.burger { display: none; cursor: pointer; margin-inline-start: auto; padding: 6px; }
.burger svg { width: 24px; height: 24px; fill: none; stroke: var(--indigo); stroke-width: 1.9; stroke-linecap: round; }
.menu-toggle { position: absolute; opacity: 0; pointer-events: none; }

.lang { position: relative; }
.lang summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--indigo);
    padding: 7px 12px; border: 1px solid var(--line); border-radius: 9px;
}
.lang summary::-webkit-details-marker { display: none; }
.lang .globe { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; opacity: .6; }
.lang-menu {
    position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 6px; min-width: 190px; box-shadow: 0 16px 40px rgba(20, 32, 58, .16); z-index: 60;
}
.lang-menu a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 8px 11px; font-size: 14px; color: var(--text); border-radius: 7px;
}
.lang-menu a:hover { background: rgba(34, 53, 91, .06); }
.lang-menu a.on { background: rgba(249, 157, 48, .2); font-weight: 600; }
.lang-menu code { font-family: inherit; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .45; }

/* ==================== الواجهة الرئيسية ==================== */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg svg, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20, 32, 58, .72) 0%, rgba(20, 32, 58, .35) 45%, rgba(20, 32, 58, .8) 100%);
}
.hero-inner { position: relative; padding: 110px 24px 120px; }
.eyebrow {
    font-size: 12px; letter-spacing: .26em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--display); font-size: clamp(34px, 5.6vw, 62px);
    font-weight: 500; line-height: 1.24; max-width: 16ch; margin-bottom: 20px;
}
.lead { font-size: clamp(16px, 2vw, 19px); font-weight: 300; max-width: 52ch; opacity: .9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.btn {
    display: inline-block; padding: 14px 32px; font: inherit; font-size: 15.5px;
    font-weight: 600; border-radius: 4px; border: 1px solid transparent;
    transition: filter .16s, transform .16s;
}
.btn-primary { background: var(--orange); color: var(--ink); }
.btn-primary:hover { filter: brightness(1.07); transform: translateY(-2px); color: var(--ink); }
.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* ==================== الأقسام ==================== */
.band { padding: 76px 0; }
.band-sand { background: var(--sand-soft); }
.band-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
    margin-bottom: 38px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.band h2, .band-head h2 {
    font-family: var(--display); font-size: clamp(24px, 3.2vw, 34px); font-weight: 500;
}
.band-head a { font-size: 14px; font-weight: 500; color: var(--burnt); white-space: nowrap; }

.page-head { padding: 56px 0 10px; }
.page-head h1 { font-family: var(--display); font-size: clamp(28px, 4vw, 42px); font-weight: 500; margin-bottom: 10px; }
.page-head .lead { color: var(--muted); }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chip {
    padding: 8px 16px; font-size: 14px; border: 1px solid var(--line);
    border-radius: 24px; color: var(--text); background: var(--card);
}
.chip:hover { border-color: var(--indigo); }
.chip.on { background: var(--indigo); color: #fff; border-color: var(--indigo); }

/* ==================== البطاقات ==================== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }

.card {
    display: flex; flex-direction: column; background: var(--card);
    border: 1px solid rgba(34, 53, 91, .09); border-radius: 3px; overflow: hidden;
    color: var(--text); transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(20, 32, 58, .13); color: var(--text); }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--sand); }
.card-media img, .card-media svg { width: 100%; height: 100%; object-fit: cover; }
.card-flag, .card-days {
    position: absolute; top: 14px; inset-inline-start: 14px;
    font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 2px;
    background: rgba(20, 32, 58, .82); color: #fff; backdrop-filter: blur(6px);
}
.card-days { background: rgba(249, 157, 48, .95); color: var(--ink); }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-family: var(--display); font-size: 21px; font-weight: 500; margin-bottom: 8px; }
.card-body p { font-size: 14.5px; font-weight: 300; color: var(--muted); flex: 1; }
.card-flags { font-size: 14px; margin-bottom: 6px; }
.card-price {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-top: 18px; padding-top: 15px; border-top: 1px solid var(--line);
}
.card-price span { font-size: 12px; color: var(--muted); }
.card-price b { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--burnt); }

.empty { color: var(--muted); padding: 40px 0; }

/* ==================== صفحات التفاصيل ==================== */
.detail-hero { position: relative; color: #fff; }
.detail-bg { position: absolute; inset: 0; }
.detail-bg img, .detail-bg svg { width: 100%; height: 100%; object-fit: cover; }
.detail-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20, 32, 58, .68) 0%, rgba(20, 32, 58, .45) 40%, rgba(20, 32, 58, .85) 100%);
}
.detail-inner { position: relative; padding: 64px 24px 72px; }
.detail-inner h1 { font-family: var(--display); font-size: clamp(30px, 5vw, 52px); font-weight: 500; line-height: 1.25; }
.crumbs { font-size: 13px; margin-bottom: 22px; opacity: .8; }
.crumbs a { color: #fff; }
.crumbs span { margin: 0 8px; }

.trip-facts { display: flex; gap: 28px; margin-top: 22px; font-size: 14px; }
.trip-facts b { font-family: var(--display); font-size: 26px; font-weight: 500; color: var(--orange); }

.layout { display: grid; grid-template-columns: 1fr 320px; gap: 52px; align-items: start; }
.prose p { margin-bottom: 18px; }
.prose .summary { font-size: 18px; font-weight: 300; color: var(--muted); margin-bottom: 30px; }
.prose h2 { font-family: var(--display); font-size: 26px; font-weight: 500; margin: 40px 0 20px; }

.days { list-style: none; }
.days li { display: flex; gap: 20px; padding-bottom: 30px; position: relative; }
.days li:not(:last-child)::before {
    content: ""; position: absolute; inset-inline-start: 19px; top: 44px; bottom: 6px;
    width: 1px; background: var(--line);
}
.day-no {
    flex: none; width: 40px; height: 40px; display: grid; place-items: center;
    border-radius: 50%; background: var(--indigo); color: #fff;
    font-family: var(--display); font-size: 17px;
}
.day-body h3 { font-family: var(--display); font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.day-region { font-size: 13px; color: var(--burnt); margin-bottom: 10px; }

.side h2 { font-family: var(--display); font-size: 19px; font-weight: 500; margin: 26px 0 12px; }
.side-item {
    display: block; padding: 14px 16px; margin-bottom: 10px;
    background: var(--sand-soft); border-radius: 3px; color: var(--text);
}
.side-item:hover { background: var(--sand); color: var(--text); }
.side-item b { display: block; font-size: 15px; margin-bottom: 3px; }
.side-item span { font-size: 13px; color: var(--muted); }

.ticks { list-style: none; }
.ticks li { position: relative; padding-inline-start: 24px; font-size: 14.5px; margin-bottom: 9px; }
.ticks li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--burnt); font-weight: 700; }
.ticks-no li::before { content: "×"; color: var(--muted); }
.small { font-size: 13.5px; color: var(--muted); }

/* ==================== المعرض والفيديو ==================== */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-top: 26px; }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 3px; }

.videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-top: 26px; }
.video {
    position: relative; aspect-ratio: 16 / 9; background: var(--indigo-deep);
    border-radius: 3px; overflow: hidden; cursor: pointer;
}
.video img, .video iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.video-play {
    position: absolute; inset: 0; display: grid; place-items: center;
    background: rgba(20, 32, 58, .3); border: 0; cursor: pointer;
    font-size: 40px; color: #fff; text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}
.video[data-loaded] .video-play { display: none; }
.video-title {
    position: absolute; inset-inline: 0; bottom: 0; padding: 12px 14px;
    font-size: 13.5px; color: #fff;
    background: linear-gradient(transparent, rgba(20, 32, 58, .85));
}

/* ==================== الثقة ==================== */
.trust { background: var(--indigo); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 24px; text-align: center; }
.trust b { display: block; font-family: var(--display); font-size: 40px; font-weight: 500; color: var(--orange); line-height: 1.2; }
.trust span { font-size: 13.5px; font-weight: 300; opacity: .78; }

/* ==================== التذييل ==================== */
.site-footer { background: var(--indigo); color: #fff; position: relative; padding-bottom: 30px; }
.site-footer .dunes { display: block; width: 100%; height: 90px; margin-top: -90px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding-block: 20px 34px; }
.footer-brand { font-family: var(--display); font-size: 21px; font-weight: 500; }
.footer-grid p { font-size: 14px; font-weight: 300; opacity: .72; margin-top: 8px; max-width: 40ch; }
.footer-grid h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .5; margin-bottom: 12px; }
.footer-grid a { display: block; color: rgba(255, 255, 255, .82); font-size: 14.5px; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-langs a { display: inline-block; margin-inline-end: 14px; font-size: 13.5px; }
.footer-bottom {
    padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12.5px; font-weight: 300; opacity: .55;
}

/* ==================== الجوال ==================== */
@media (max-width: 900px) {
    .layout { grid-template-columns: 1fr; gap: 34px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }

    .burger { display: block; }
    .site-nav {
        position: fixed; inset-block: 0; inset-inline-end: 0; width: 260px;
        flex-direction: column; align-items: flex-start; gap: 4px;
        background: var(--card); border-inline-start: 1px solid var(--line);
        padding: 92px 22px 22px; transform: translateX(100%);
        transition: transform .24s ease; z-index: 55;
    }
    html[dir="rtl"] .site-nav { inset-inline-end: auto; inset-inline-start: 0; transform: translateX(-100%); }
    .menu-toggle:checked ~ .site-header .site-nav { transform: translateX(0); }
    .site-nav > a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
    .lang { width: 100%; margin-top: 14px; }
    .lang-menu { position: static; box-shadow: none; margin-top: 8px; }

    .hero-inner { padding: 72px 24px 80px; }
    .band { padding: 54px 0; }
    .band-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; scroll-behavior: auto; }
}
/* ==========================================================================
   الواجهة الرئيسية — لوحات متدرّجة بصور متبدّلة
   ========================================================================== */

.hero {
    position: relative;
    background: var(--sand-soft);
    padding: 66px 0 84px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset-inline-end: -220px;
    top: -160px;
    width: 780px; height: 780px;
    border-radius: 50%;
    background: radial-gradient(circle at 42% 42%, rgba(249, 157, 48, .2), transparent 62%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.86fr 1.24fr;
    gap: 48px;
    align-items: center;
}

/* ---------- النص ---------- */
.hero-text .eyebrow { color: var(--burnt); }
.hero-text h1 {
    font-family: var(--display);
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 500;
    line-height: 1.16;
    color: var(--indigo-deep);
    max-width: 13ch;
    margin-bottom: 18px;
}
.hero-text .lead { color: var(--muted); font-weight: 300; max-width: 44ch; opacity: 1; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.btn-outline { color: var(--indigo); border-color: rgba(34, 53, 91, .28); background: transparent; }
.btn-outline:hover { background: rgba(34, 53, 91, .06); color: var(--indigo); }

.hero-meta {
    display: flex; gap: 32px; margin-top: 36px; padding-top: 22px;
    border-top: 1px solid var(--line); font-size: 13px; color: var(--muted);
}
.hero-meta b {
    display: block; font-family: var(--display); font-size: 25px;
    font-weight: 500; color: var(--indigo); line-height: 1.2;
}

/* ---------- اللوحات ---------- */
.hero-shots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
    align-items: start;
}

.shot {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    background: var(--indigo-deep);
    box-shadow: 0 16px 40px rgba(20, 32, 58, .17);
    transition: transform .3s ease, box-shadow .3s ease;
}
.shot:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(20, 32, 58, .24); }

/* كل صورة طبقة مستقلة تتلاشى */
.shot img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.4s ease, transform 6.6s ease-out;
    will-change: opacity, transform;
}
.shot img.is-on {
    opacity: 1;
    transform: scale(1.11);   /* زحف بطيء يمنح الصورة حياة */
}

/* ارتفاعات وإزاحات متناوبة */
.shot-1 { aspect-ratio: 3 / 4.5; margin-top: 54px; }
.shot-2 { aspect-ratio: 3 / 5.3; margin-top: 0; }
.shot-3 { aspect-ratio: 3 / 4.2; margin-top: 86px; }
.shot-4 { aspect-ratio: 3 / 4.9; margin-top: 26px; }

/* دخول أول عند تحميل الصفحة */
.shot { animation: shotIn .7s ease both; }
.shot-1 { animation-delay: .05s; }
.shot-2 { animation-delay: .15s; }
.shot-3 { animation-delay: .25s; }
.shot-4 { animation-delay: .35s; }
@keyframes shotIn {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}

/* ---------- الشاشات المتوسطة ---------- */
@media (max-width: 1180px) {
    .hero-grid { grid-template-columns: 1fr 1.15fr; gap: 36px; }
    .hero-shots { grid-template-columns: repeat(3, 1fr); }
    .shot-4 { display: none; }
}

@media (max-width: 980px) {
    .hero { padding: 46px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { max-width: 17ch; }
    .hero-shots { grid-template-columns: repeat(4, 1fr); }
    .shot-4 { display: block; }
    .shot-1 { aspect-ratio: 3 / 4.2; margin-top: 30px; }
    .shot-2 { aspect-ratio: 3 / 4.8; }
    .shot-3 { aspect-ratio: 3 / 4;   margin-top: 48px; }
    .shot-4 { aspect-ratio: 3 / 4.5; margin-top: 16px; }
}

@media (max-width: 640px) {
    .hero-shots { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .shot-1 { aspect-ratio: 3 / 4;   margin-top: 20px; }
    .shot-2 { aspect-ratio: 3 / 4.6; margin-top: 0; }
    .shot-3 { aspect-ratio: 3 / 4.6; margin-top: 0; }
    .shot-4 { aspect-ratio: 3 / 4;   margin-top: 20px; }
    .hero-meta { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    .shot, .shot img { animation: none !important; transition: none !important; }
    .shot img.is-on { transform: none; }
    .shot:hover { transform: none; }
}
/* ==========================================================================
   تكبير لوحات الواجهة — تُلحق بنهاية site.css فتتجاوز القيم السابقة
   ========================================================================== */

.hero { padding: 56px 0 78px; }

/* مساحة أكبر للصور، وأقل للنص */
.hero-grid {
    grid-template-columns: minmax(300px, 0.72fr) 1.42fr;
    gap: 40px;
}

/* اللوحات تمتد إلى حافة الشاشة من جهة القراءة الأخيرة */
.hero-shots {
    gap: 14px;
    margin-inline-end: calc((100% - 100vw) / 2);
}

/* ارتفاعات أكبر وإزاحات أوضح */
.shot-1 { aspect-ratio: 3 / 5.1; margin-top: 66px; }
.shot-2 { aspect-ratio: 3 / 6.1; margin-top: 0; }
.shot-3 { aspect-ratio: 3 / 4.7; margin-top: 108px; }
.shot-4 { aspect-ratio: 3 / 5.6; margin-top: 32px; }

/* زحف أوضح قليلًا مع الحجم الأكبر */
.shot img.is-on { transform: scale(1.13); }

.shot { border-radius: 4px; box-shadow: 0 20px 50px rgba(20, 32, 58, .2); }

/* النص يبقى مقروءًا رغم ضيق عموده */
.hero-text h1 { font-size: clamp(30px, 3.5vw, 46px); max-width: 12ch; }
.hero-text .lead { max-width: 38ch; font-size: 15.5px; }
.hero-meta { gap: 26px; }
.hero-meta b { font-size: 23px; }

/* ---------- الشاشات المتوسطة ---------- */
@media (max-width: 1180px) {
    .hero-grid { grid-template-columns: minmax(280px, 0.8fr) 1.3fr; gap: 32px; }
    .hero-shots { grid-template-columns: repeat(3, 1fr); }
    .shot-4 { display: none; }
    .shot-1 { aspect-ratio: 3 / 4.8; margin-top: 54px; }
    .shot-2 { aspect-ratio: 3 / 5.6; }
    .shot-3 { aspect-ratio: 3 / 4.4; margin-top: 88px; }
}

@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-shots {
        grid-template-columns: repeat(4, 1fr);
        margin-inline: calc((100% - 100vw) / 2);
        padding-inline: 24px;
    }
    .shot-4 { display: block; }
    .hero-text h1 { font-size: clamp(32px, 5.6vw, 48px); max-width: 16ch; }
    .hero-text .lead { max-width: 46ch; }

    .shot-1 { aspect-ratio: 3 / 4.6; margin-top: 34px; }
    .shot-2 { aspect-ratio: 3 / 5.3; margin-top: 0; }
    .shot-3 { aspect-ratio: 3 / 4.3; margin-top: 56px; }
    .shot-4 { aspect-ratio: 3 / 5;   margin-top: 18px; }
}

@media (max-width: 640px) {
    .hero-shots { grid-template-columns: repeat(2, 1fr); gap: 11px; }
    .shot-1 { aspect-ratio: 3 / 4.3; margin-top: 24px; }
    .shot-2 { aspect-ratio: 3 / 5;   margin-top: 0; }
    .shot-3 { aspect-ratio: 3 / 5;   margin-top: 0; }
    .shot-4 { aspect-ratio: 3 / 4.3; margin-top: 24px; }
}


/* اللوحة الأخيرة تُقصّ من جهتها الخارجية لا تختفي */
.shot-4 { border-start-end-radius: 4px; border-end-end-radius: 4px; }

@media (max-width: 1180px) {
    .hero-grid { grid-template-columns: minmax(260px, 0.7fr) 1.45fr; gap: 28px; }
    .hero-shots { margin-inline-end: calc((100% - 100vw) / 2 + 16px); }
}


/* صفحة أوسع قليلًا لتستوعب أربع لوحات مريحة */
.hero .wrap { max-width: 1320px; }

@media (max-width: 1180px) {
    .hero-shots { margin-inline: 0; }
    .hero-grid { grid-template-columns: minmax(260px, 0.75fr) 1.4fr; gap: 28px; }
}

@media (max-width: 980px) {
    .hero-shots { margin-inline: 0; padding-inline: 0; }
}

/* ==========================================================================
   حركة الطفو: صعود وهبوط بطيء، كل لوحة بإيقاعها
   ========================================================================== */

.shot {
    animation:
        shotIn .7s ease both,
        float 11s ease-in-out infinite;
}

/* مدد وتأخيرات مختلفة حتى لا تتحرك اللوحات كتلة واحدة */
.shot-1 { animation-duration: .7s, 10.5s; animation-delay: .05s, .8s; }
.shot-2 { animation-duration: .7s, 13s;   animation-delay: .15s, 0s; }
.shot-3 { animation-duration: .7s, 11.5s; animation-delay: .25s, 1.6s; }
.shot-4 { animation-duration: .7s, 12.5s; animation-delay: .35s, .4s; }

@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-16px); }
    100% { transform: translateY(0); }
}

/* التمرير يوقف الطفو ويرفع اللوحة */
.shot:hover {
    animation-play-state: paused;
    transform: translateY(-10px);
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 26px 60px rgba(20, 32, 58, .26);
}

@media (prefers-reduced-motion: reduce) {
    .shot { animation: none !important; transform: none !important; }
    .shot:hover { transform: none; }
}

/* ---------- لوحات أعرض ---------- */
.hero .wrap { max-width: 1420px; }

.hero-grid {
    grid-template-columns: minmax(280px, 0.58fr) 1.62fr;
    gap: 40px;
}

.hero-shots { gap: 16px; }

/* نسب أقل طولًا = لوحات أعرض بصريًا */
.shot-1 { aspect-ratio: 3 / 4.3; }
.shot-2 { aspect-ratio: 3 / 5.1; }
.shot-3 { aspect-ratio: 3 / 4;   }
.shot-4 { aspect-ratio: 3 / 4.7; }

@media (max-width: 1180px) {
    .hero .wrap { max-width: 100%; }
    .hero-grid { grid-template-columns: minmax(260px, 0.7fr) 1.45fr; gap: 30px; }
}
/* ==========================================================================
   لمسات الاحتراف — تُلحق بنهاية site.css
   ========================================================================== */

/* ---------- إيقاع الطباعة ---------- */
::selection { background: rgba(249, 157, 48, .28); color: var(--indigo-deep); }

body { font-feature-settings: "kern", "liga", "calt"; text-rendering: optimizeLegibility; }

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ---------- الترويسة: شفافة ثم صلبة عند التمرير ---------- */
.site-header {
    background: transparent;
    border-bottom-color: transparent;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck {
    background: rgba(255, 252, 248, .93);
    backdrop-filter: blur(12px) saturate(1.4);
    border-bottom-color: var(--line);
    box-shadow: 0 1px 24px rgba(20, 32, 58, .07);
}

/* ---------- ظهور تدريجي عند التمرير ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.22, .68, .32, 1), transform .7s cubic-bezier(.22, .68, .32, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .09s; }
[data-reveal-delay="2"] { transition-delay: .18s; }
[data-reveal-delay="3"] { transition-delay: .27s; }

/* ---------- عناوين الأقسام ---------- */
.band-head { align-items: baseline; }
.band-head h2 { position: relative; padding-bottom: 2px; }
.band-head h2::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -14px;
    width: 46px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}
.band-head a {
    position: relative;
    padding-bottom: 2px;
}
.band-head a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: transform .32s ease;
}
.band-head a:hover::after { transform: scaleX(1); }

/* ---------- البطاقات ---------- */
.card {
    border-radius: 4px;
    border-color: transparent;
    box-shadow: 0 1px 2px rgba(20, 32, 58, .06);
    transition: transform .34s cubic-bezier(.22, .68, .32, 1), box-shadow .34s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 52px rgba(20, 32, 58, .16); }

.card-media { overflow: hidden; }
.card-media img { transition: transform .8s cubic-bezier(.22, .68, .32, 1); }
.card:hover .card-media img { transform: scale(1.06); }

.card-body h3 { transition: color .2s ease; }
.card:hover .card-body h3 { color: var(--burnt); }

/* سهم يظهر عند التمرير */
.card-body::after {
    content: "→";
    display: inline-block;
    margin-top: 14px;
    font-size: 17px;
    color: var(--burnt);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .3s ease, transform .3s ease;
}
html[dir="rtl"] .card-body::after { content: "←"; transform: translateX(6px); }
.card:hover .card-body::after { opacity: 1; transform: none; }

/* ---------- شريط الثقة ---------- */
.trust { position: relative; overflow: hidden; }
.trust::before {
    content: "";
    position: absolute;
    inset-inline-start: -140px;
    top: -140px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 157, 48, .16), transparent 66%);
}
.trust-grid > div { position: relative; }
.trust-grid > div:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-end: -12px;
    top: 12%;
    height: 76%;
    width: 1px;
    background: rgba(255, 255, 255, .13);
}

/* ---------- نداء الختام ---------- */
.cta {
    position: relative;
    padding: 92px 0;
    background: var(--indigo-deep);
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 100% at 50% 120%, rgba(249, 157, 48, .3), transparent 70%),
        radial-gradient(40% 80% at 12% -10%, rgba(195, 84, 7, .35), transparent 68%);
}
.cta > * { position: relative; }
.cta h2 {
    font-family: var(--display);
    font-size: clamp(26px, 3.6vw, 42px);
    font-weight: 500;
    line-height: 1.25;
    max-width: 18ch;
    margin: 0 auto 16px;
}
.cta p { font-weight: 300; opacity: .82; max-width: 46ch; margin: 0 auto 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-white { background: #fff; color: var(--indigo-deep); }
.btn-white:hover { filter: brightness(.95); color: var(--indigo-deep); }
.btn-line { color: #fff; border-color: rgba(255, 255, 255, .34); }
.btn-line:hover { background: rgba(255, 255, 255, .1); color: #fff; }

/* ---------- تفاصيل صغيرة ---------- */
.btn {
    position: relative;
    letter-spacing: .01em;
    transition: transform .2s ease, filter .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary { box-shadow: 0 8px 24px rgba(249, 157, 48, .32); }
.btn-primary:hover { box-shadow: 0 14px 34px rgba(249, 157, 48, .42); }
.btn:active { transform: translateY(1px); }

.chip { transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.chip:hover { transform: translateY(-2px); }

/* صور المعرض */
.gallery img {
    border-radius: 4px;
    transition: transform .5s cubic-bezier(.22, .68, .32, 1), box-shadow .35s ease;
}
.gallery img:hover { transform: scale(1.02); box-shadow: 0 18px 40px rgba(20, 32, 58, .2); }

/* التذييل */
.footer-grid a { position: relative; display: inline-block; }
.footer-grid a::after {
    content: "";
    position: absolute;
    inset-inline: 0; bottom: -2px;
    height: 1px; background: currentColor;
    transform: scaleX(0);
    transform-origin: inline-start;
    transition: transform .3s ease;
}
.footer-grid a:hover::after { transform: scaleX(1); }

/* حالة التركيز موحّدة وواضحة */
a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1 !important; transform: none !important; }
    .card:hover, .chip:hover, .gallery img:hover { transform: none; }
    .card:hover .card-media img { transform: none; }
}

/* ==========================================================================
   شريط بطاقات الرحلات — تصفّح أفقي
   ========================================================================== */

.slider-band { padding: 86px 0; background: var(--sand-soft); }

.slider-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}
.slider-head h2 {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.1;
}
.slider-head .eyebrow { margin-bottom: 10px; color: var(--burnt); }

.slider-tools { display: flex; align-items: center; gap: 22px; }
.slider-nav { display: flex; gap: 8px; }
.nav-btn {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    font-size: 24px; line-height: 1;
    color: var(--indigo);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease;
}
.nav-btn:hover:not(:disabled) { background: var(--indigo); color: #fff; border-color: var(--indigo); }
.nav-btn:active:not(:disabled) { transform: scale(.94); }
.nav-btn:disabled { opacity: .34; cursor: default; }
html[dir="rtl"] .nav-btn { transform: scaleX(-1); }
html[dir="rtl"] .nav-btn:active:not(:disabled) { transform: scaleX(-1) scale(.94); }

/* ---------- الشريط ---------- */
.slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 6px 0 28px;
    scrollbar-width: none;
}
.slider::-webkit-scrollbar { display: none; }

.tcard {
    flex: 0 0 366px;
    scroll-snap-align: start;
}
.tcard:first-child { margin-inline-start: max(24px, calc((100vw - 1420px) / 2)); }
.tcard:last-child { margin-inline-end: max(24px, calc((100vw - 1420px) / 2)); }

.tcard-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card);
    border-radius: 4px;
    overflow: hidden;
    color: var(--text);
    box-shadow: 0 2px 4px rgba(20, 32, 58, .06);
    transition: transform .34s cubic-bezier(.22, .68, .32, 1), box-shadow .34s ease;
}
.tcard-link:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 56px rgba(20, 32, 58, .18);
    color: var(--text);
}

.tcard-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--sand); }
.tcard-media img, .tcard-media svg {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .9s cubic-bezier(.22, .68, .32, 1);
}
.tcard-link:hover .tcard-media img { transform: scale(1.06); }

.tcard-days {
    position: absolute; top: 14px; inset-inline-start: 14px;
    font-size: 12px; font-weight: 600;
    padding: 6px 13px; border-radius: 2px;
    background: rgba(249, 157, 48, .96); color: var(--ink);
}
.tcard-star {
    position: absolute; top: 12px; inset-inline-end: 14px;
    font-size: 19px; color: var(--orange);
    text-shadow: 0 2px 8px rgba(0, 0, 0, .45);
}

.tcard-body { padding: 22px 24px 8px; flex: 1; }
.tcard-flags {
    display: flex; flex-wrap: wrap; gap: 10px;
    font-size: 12px; color: var(--muted); margin-bottom: 10px;
}
.tcard-body h3 {
    font-family: var(--display);
    font-size: 23px; font-weight: 500; line-height: 1.3;
    margin-bottom: 9px;
}
.tcard-body > p { font-size: 14.5px; font-weight: 300; color: var(--muted); }

.tcard-ticks { list-style: none; margin-top: 15px; }
.tcard-ticks li {
    position: relative;
    padding-inline-start: 21px;
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 6px;
}
.tcard-ticks li::before {
    content: "✓";
    position: absolute; inset-inline-start: 0;
    color: var(--burnt); font-weight: 700;
}

.tcard-foot {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
    padding: 16px 24px 22px;
    margin-top: 14px;
    border-top: 1px solid var(--line);
}
.tcard-foot span { font-size: 12px; color: var(--muted); display: block; }
.tcard-foot b {
    font-family: var(--display);
    font-size: 26px; font-weight: 500; color: var(--burnt); line-height: 1.15;
}
.tcard-go {
    font-size: 13.5px !important; font-weight: 600;
    color: var(--indigo) !important;
    transition: transform .28s ease;
}
.tcard-link:hover .tcard-go { transform: translateX(4px); }
html[dir="rtl"] .tcard-link:hover .tcard-go { transform: translateX(-4px); }

/* ---------- مؤشّر التقدّم ---------- */
.slider-progress {
    height: 2px;
    background: rgba(34, 53, 91, .14);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}
.slider-progress span {
    display: block; height: 100%; width: 30%;
    background: var(--burnt);
    border-radius: 2px;
    transition: width .2s ease, transform .2s ease;
}

/* ---------- الجوال ---------- */
@media (max-width: 900px) {
    .slider-band { padding: 56px 0; }
    .slider-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
    .slider-tools { width: 100%; justify-content: space-between; }
    .tcard { flex-basis: 82vw; }
    .tcard:first-child { margin-inline-start: 24px; }
    .tcard:last-child { margin-inline-end: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    .slider { scroll-behavior: auto; }
    .tcard-link:hover { transform: none; }
    .tcard-link:hover .tcard-media img { transform: none; }
}

/* ---------- سكة الوجهات ---------- */
.rail-band { padding: 86px 0; }
.rail-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 24px; margin-bottom: 40px;
}
.rail-head h2 {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 46px); font-weight: 500; line-height: 1.1;
}
.rail-head .eyebrow { margin-bottom: 10px; color: var(--burnt); }
.rail-all {
    font-size: 14px; font-weight: 500; color: var(--indigo); white-space: nowrap;
    padding-bottom: 4px; border-bottom: 1px solid var(--line);
    transition: border-color .3s ease, color .3s ease;
}
.rail-all span { display: inline-block; transition: transform .3s ease; }
.rail-all:hover { color: var(--burnt); border-color: var(--burnt); }
.rail-all:hover span { transform: translateX(5px); }

.rail {
    display: flex; gap: 22px; overflow-x: auto;
    scroll-snap-type: x mandatory; padding: 8px 0 30px;
    scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }












@media (max-width: 900px) {
    .rail-band { padding: 56px 0; }
    .rail-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
    
    
    
}

/* ---------- السكة كشريط منظّم ---------- */
.rail-band .rail-head { align-items: flex-end; }

/* السكربت يبحث عن .slider-band — نمنح السكة نفس الصفة */
.rail-band .slider-tools { display: flex; align-items: center; gap: 22px; }

/* حواف منتظمة: البطاقة الأولى تحاذي العنوان */
.rail {
    padding-inline: max(24px, calc((100vw - 1420px) / 2));
    scroll-padding-inline-start: max(24px, calc((100vw - 1420px) / 2));
}



/* الرقم داخل الحدود لا خارجها */



@media (max-width: 900px) {
    .rail { padding-inline: 24px; scroll-padding-inline-start: 24px; }
    .rail-band .slider-tools { width: 100%; justify-content: space-between; }
}
/* ==========================================================================
   بطاقات الوجهات — نص داخل الصورة وإيقاع متعرّج
   ========================================================================== */

.rail {
    align-items: flex-start;
    gap: 20px;
    padding-block: 26px 34px;
}

.pcard {
    flex: 0 0 330px;
    scroll-snap-align: start;
    color: #fff;
}
.pcard-up   { margin-top: 0; }
.pcard-down { margin-top: 46px; }   /* الإيقاع المتعرّج */

.pcard-frame {
    position: relative;
    aspect-ratio: 3 / 4.3;
    overflow: hidden;
    border-radius: 3px;
    background: var(--indigo-deep);
    box-shadow: 0 14px 38px rgba(20, 32, 58, .16);
    transition: box-shadow .45s ease, transform .45s cubic-bezier(.22, .68, .32, 1);
}
.pcard:hover .pcard-frame {
    transform: translateY(-8px);
    box-shadow: 0 30px 64px rgba(20, 32, 58, .3);
}

.pcard-frame img, .pcard-frame svg {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.1s cubic-bezier(.22, .68, .32, 1);
}
.pcard:hover .pcard-frame img { transform: scale(1.08); }

/* حجاب متدرّج يضمن قراءة النص فوق أي صورة */
.pcard-veil {
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 32, 58, .92) 0%,
        rgba(20, 32, 58, .62) 26%,
        rgba(20, 32, 58, .1) 54%,
        rgba(20, 32, 58, .28) 100%
    );
    transition: opacity .45s ease;
}
.pcard:hover .pcard-veil { opacity: .94; }

/* الرقم مع خط رفيع يمتد عند المرور */
.pcard-index {
    position: absolute;
    top: 20px;
    inset-inline-start: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pcard-index i {
    font-family: var(--display);
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .82);
}
.pcard-index em {
    display: block;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width .5s cubic-bezier(.22, .68, .32, 1);
}
.pcard:hover .pcard-index em { width: 42px; }

/* النص داخل الصورة */
.pcard-text {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 24px 22px 26px;
}
.pcard-country {
    display: block;
    font-size: 11.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 8px;
}
.pcard-text h3 {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
}

/* الوصف والرابط يظهران عند المرور */
.pcard-desc, .pcard-go {
    display: block;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: opacity .42s ease, transform .42s ease, max-height .42s ease, margin .42s ease;
}
.pcard-desc {
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, .84);
}
.pcard-go {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
}
.pcard-go svg {
    width: 17px; height: 17px;
    vertical-align: -4px;
    margin-inline-start: 6px;
    fill: none; stroke: currentColor; stroke-width: 1.9;
    stroke-linecap: round; stroke-linejoin: round;
}
html[dir="rtl"] .pcard-go svg { transform: scaleX(-1); }

.pcard:hover .pcard-desc {
    opacity: 1; max-height: 90px; transform: none; margin-top: 10px;
}
.pcard:hover .pcard-go {
    opacity: 1; max-height: 30px; transform: none; margin-top: 14px;
}

/* ---------- الجوال: النص ظاهر دائمًا ---------- */
@media (max-width: 900px) {
    .pcard { flex-basis: 76vw; }
    .pcard-down { margin-top: 0; }
    .pcard-desc { opacity: 1; max-height: 90px; transform: none; margin-top: 10px; }
    .pcard-go { opacity: 1; max-height: 30px; transform: none; margin-top: 12px; }
    .pcard-frame { aspect-ratio: 3 / 4; }
}

@media (prefers-reduced-motion: reduce) {
    .pcard:hover .pcard-frame { transform: none; }
    .pcard:hover .pcard-frame img { transform: none; }
}
/* ==========================================================================
   السعر قبل التخفيض وبعده
   ========================================================================== */

.price-row { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.price-row s {
    font-size: 15px;
    color: var(--muted);
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(179, 64, 44, .6);
}

/* شارة النسبة على صورة البطاقة */
.tcard-sale {
    position: absolute;
    top: 12px;
    inset-inline-end: 14px;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 7px 13px;
    border-radius: 2px;
    background: #B3402C;
    color: #fff;
    box-shadow: 0 6px 18px rgba(179, 64, 44, .42);
}

/* ترويسة الرحلة */
.trip-facts s {
    font-size: 17px;
    color: rgba(255, 255, 255, .55);
    margin-inline-end: 4px;
}

/* بطاقات القوائم */
.card-price .price-row { justify-content: flex-end; }
.card-price s { font-size: 14px; }
/* ==========================================================================
   من نحن · اتصل بنا
   ========================================================================== */

.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.about-side img { border-radius: 3px; box-shadow: 0 20px 48px rgba(20, 32, 58, .18); }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.values h3 { font-family: var(--display); font-size: 21px; font-weight: 500; margin: 12px 0 8px; }
.values p { font-size: 14.5px; font-weight: 300; color: var(--muted); }
.value-no {
    font-family: var(--display);
    font-size: 14px; font-weight: 500; letter-spacing: .14em;
    color: var(--burnt);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
}

/* ---------- اتصل بنا ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: start; }

.contact-form label { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 13px 15px;
    font: inherit;
    font-size: 15px;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 3px;
    margin-bottom: 18px;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 157, 48, .16);
}
.contact-form textarea { resize: vertical; line-height: 1.7; }
.contact-form .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.contact-form .btn { margin-top: 6px; }

.contact-form ul { list-style: none; margin: -12px 0 16px; }
.contact-form ul li { font-size: 13px; color: #B3402C; }

.trap { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.notice {
    padding: 15px 18px;
    margin-bottom: 24px;
    border-radius: 3px;
    background: #E8F5EC;
    border: 1px solid #A8D5B8;
    color: #1E5B33;
    font-size: 14.5px;
}

.contact-info h2 { font-family: var(--display); font-size: 21px; font-weight: 500; margin-bottom: 20px; }

.cinfo {
    display: block;
    padding: 18px 20px;
    margin-bottom: 12px;
    background: var(--sand-soft);
    border-radius: 3px;
    color: var(--text);
    border-inline-start: 3px solid transparent;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
a.cinfo:hover {
    border-inline-start-color: var(--orange);
    background: var(--sand);
    color: var(--text);
    transform: translateX(3px);
}
html[dir="rtl"] a.cinfo:hover { transform: translateX(-3px); }
.cinfo-static { border-inline-start-color: var(--line); }

.cinfo-label {
    display: block;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}
.cinfo-value { display: block; font-size: 16.5px; font-weight: 500; color: var(--indigo-deep); direction: ltr; }
html[dir="rtl"] .cinfo-value { text-align: right; }
.cinfo-note { display: block; font-size: 12.5px; color: var(--muted); margin-top: 4px; }

/* ---------- التذييل: معلومات التواصل ---------- */
.footer-contact { margin-top: 14px; }
.footer-contact a, .footer-contact span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-bottom: 7px;
    direction: ltr;
}
html[dir="rtl"] .footer-contact a, html[dir="rtl"] .footer-contact span { text-align: right; }

@media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-form .grid-2 { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- شعار أكبر في الترويسة ---------- */
.site-header .header-row { height: 92px; }

.site-header .brand { gap: 14px; }
.site-header .brand img {
    width: 62px;
    height: 62px;
    border-radius: 12px;
}
.site-header .brand b { font-size: 21px; letter-spacing: -.01em; }
.site-header .brand small { font-size: 10.5px; letter-spacing: .18em; }

/* التذييل يتبع نفس المقياس */
.footer-brand { font-size: 24px; }

@media (max-width: 900px) {
    .site-header .header-row { height: 78px; }
    .site-header .brand img { width: 50px; height: 50px; border-radius: 10px; }
    .site-header .brand b { font-size: 18px; }
    .site-header .brand small { font-size: 9px; }
}

@media (max-width: 480px) {
    .site-header .brand small { display: none; }
    .site-header .brand img { width: 44px; height: 44px; }
}
.map-note { font-size: 14px; color: var(--muted); margin-top: 8px; }

.leaflet-container { font-family: var(--body); }
.leaflet-popup-content-wrapper { border-radius: 3px; }

/* ---------- الأسئلة ---------- */
.faq { max-width: 820px; margin-top: 26px; border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    font-family: var(--display);
    font-size: 18.5px;
    font-weight: 500;
    color: var(--indigo-deep);
    transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--burnt); }

.faq-item summary i {
    position: relative;
    flex: none;
    width: 20px; height: 20px;
}
.faq-item summary i::before,
.faq-item summary i::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    top: 9px;
    height: 1.5px;
    background: var(--burnt);
    transition: transform .3s ease;
}
.faq-item summary i::after { transform: rotate(90deg); }
.faq-item[open] summary i::after { transform: rotate(0); }

.faq-answer { padding: 0 4px 24px; max-width: 68ch; }
.faq-answer p { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-item[open] .faq-answer { animation: faqIn .35s ease both; }
@keyframes faqIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
    .trip-map { height: 340px; }
    .faq-item summary { font-size: 16.5px; padding: 18px 2px; }
}

@media (prefers-reduced-motion: reduce) {
    .faq-item[open] .faq-answer { animation: none; }
}

.side-sticky { position: sticky; top: 104px; }

/* ---------- برنامج الأيام ---------- */
.days li {
    position: relative;
    display: flex;
    gap: 22px;
    padding: 0 0 34px;
    transition: opacity .4s ease;
}
.days li:not(:last-child)::before {
    content: "";
    position: absolute;
    inset-inline-start: 21px;
    top: 46px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(var(--line), rgba(34, 53, 91, .05));
}

.day-no {
    flex: none;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--line);
    color: var(--indigo);
    font-family: var(--display);
    font-size: 17px;
    transition: background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease;
}
.days li.is-current .day-no {
    background: var(--burnt);
    border-color: var(--burnt);
    color: #fff;
    transform: scale(1.07);
}

.day-body h3 {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 6px;
    transition: color .3s ease;
}
.days li.is-current .day-body h3 { color: var(--burnt); }

.day-region {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--muted);
    background: var(--sand-soft);
    padding: 4px 11px;
    border-radius: 20px;
    margin-bottom: 12px !important;
}
.day-region svg {
    width: 13px; height: 13px;
    fill: none; stroke: var(--burnt); stroke-width: 1.7;
    stroke-linecap: round; stroke-linejoin: round;
}

.trip-facts { flex-wrap: wrap; gap: 22px 34px; }

/* ---------- الجوال: الخريطة أولًا ثم البرنامج ---------- */
@media (max-width: 1080px) {
    .trip-body .layout { grid-template-columns: 1fr; gap: 40px; }
    .side-sticky { position: static; order: -1; }
    .side .trip-map { height: 320px; }
    .price-box { max-width: 420px; }
}

@media (prefers-reduced-motion: reduce) {
    .map-pin.is-active span { transform: none; }
    .days li.is-current .day-no { transform: none; }
}

/* زر إعادة الإطار */
.map-reset {
    position: absolute;
    inset-inline-end: 12px;
    bottom: 34px;
    z-index: 500;
    width: 36px; height: 36px;
    display: grid; place-items: center;
    font-size: 17px;
    color: var(--indigo);
    background: #fff;
    border: 1px solid rgba(34, 53, 91, .2);
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(20, 32, 58, .2);
    transition: background .2s ease, color .2s ease;
}
.map-reset:hover { background: var(--indigo); color: #fff; }

/* ---------- النافذة المنبثقة ---------- */
.leaflet-popup-content-wrapper { border-radius: 4px; padding: 0; overflow: hidden; }
.leaflet-popup-content { margin: 0; width: auto !important; }

.pop { padding: 16px 18px 14px; }
.pop-day {
    display: inline-grid;
    place-items: center;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--burnt);
    color: #fff;
    font-family: var(--display);
    font-size: 13px;
    margin-bottom: 8px;
}
.pop h4 {
    font-family: var(--display);
    font-size: 17px;
    font-weight: 500;
    color: var(--indigo-deep);
    margin: 0 0 6px;
}
.pop p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 10px;
}
.pop a {
    display: inline-block;
    font-size: 18px;
    color: var(--burnt);
    text-decoration: none;
}
html[dir="rtl"] .pop a { transform: scaleX(-1); }

/* ---------- شارة المنطقة القابلة للنقر ---------- */
a.day-region {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--indigo);
    background: var(--sand-soft);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}
a.day-region:hover {
    background: var(--sand);
    border-color: rgba(195, 84, 7, .35);
    color: var(--burnt);
}
a.day-region em {
    font-style: normal;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .25s ease, transform .25s ease;
}
a.day-region:hover em { opacity: 1; transform: none; }
html[dir="rtl"] a.day-region em { transform: scaleX(-1) translateX(-4px); }
html[dir="rtl"] a.day-region:hover em { transform: scaleX(-1); }

/* رقم اليوم قابل للنقر */
.day-no { cursor: pointer; }
.day-no:hover { border-color: var(--burnt); color: var(--burnt); }

@media (max-width: 1080px) {
    .trip-body .layout { grid-template-columns: 1fr; }
    .side .trip-map { height: 400px; }
}

.leaflet-popup-content-wrapper {
    border-radius: 4px;
    box-shadow: 0 18px 46px rgba(20, 32, 58, .28);
}
.leaflet-popup-content {
    margin: 0 !important;
    width: 268px !important;   /* عرض ثابت يمنع الانكسار حرفًا حرفًا */
}
.leaflet-popup-tip { box-shadow: none; }

.pop { padding: 18px 20px 16px; }
.pop h4 { font-size: 18px; line-height: 1.3; margin-bottom: 8px; }
.pop p {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 12px;
    /* ثلاثة أسطر ثم اقتطاع نظيف */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pop a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--burnt);
    padding-top: 4px;
    border-top: 1px solid var(--line);
    width: 100%;
}

@media (max-width: 1240px) {
    .trip-body .layout { grid-template-columns: 1fr 420px; gap: 40px; }
    .side .trip-map { height: 480px; }
}
@media (max-width: 1080px) {
    .trip-body .layout { grid-template-columns: 1fr; }
    .side .trip-map { height: 420px; }
}
/* ==========================================================================
   الخدمات الإضافية · أنواع الرحلات
   ========================================================================== */

.services-intro { color: var(--muted); max-width: 60ch; margin-bottom: 28px; }

.services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.service { cursor: pointer; }
.service input { position: absolute; opacity: 0; width: 0; height: 0; }

.service-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px 22px;
    background: var(--card);
    border: 1.5px solid transparent;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgba(20, 32, 58, .06);
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.service:hover .service-box { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(20, 32, 58, .12); }
.service input:checked + .service-box {
    border-color: var(--orange);
    box-shadow: 0 10px 28px rgba(249, 157, 48, .22);
}
.service input:focus-visible + .service-box { outline: 2px solid var(--orange); outline-offset: 3px; }

.service-head { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.service-icon { font-size: 20px; line-height: 1; }
.service-name {
    flex: 1;
    font-family: var(--display);
    font-size: 17.5px;
    font-weight: 500;
    color: var(--indigo-deep);
}
.service-check {
    flex: none;
    width: 22px; height: 22px;
    display: grid; place-items: center;
    border-radius: 50%;
    border: 1.5px solid var(--line);
    font-size: 12px;
    color: transparent;
    transition: background .22s ease, border-color .22s ease, color .22s ease;
}
.service input:checked + .service-box .service-check {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--ink);
}

.service-desc { font-size: 13.5px; font-weight: 300; color: var(--muted); flex: 1; }
.service-price {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-family: var(--display);
    font-size: 19px;
    font-weight: 500;
    color: var(--burnt);
}
.service-price em { font-family: var(--body); font-style: normal; font-size: 11.5px; color: var(--muted); margin-inline-start: 6px; }
.service-quote { font-size: 14px; color: var(--muted); }

.services-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}
.services-bar span { font-size: 13.5px; color: var(--muted); }
.services-bar span.is-on { color: var(--indigo-deep); font-weight: 500; }

/* ---------- شارة نوع الرحلة ---------- */
.cat-badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 2px;
    background: var(--orange);
    color: var(--ink);
}
.tcard-cat {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 14px;
}

@media (max-width: 640px) {
    .services { grid-template-columns: 1fr; }
    .services-bar .btn { width: 100%; text-align: center; }
}
/* ---------- شريط الطلب: واتساب أو نموذج ---------- */
.request-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #06301A;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .3);
}
.btn-wa:hover { filter: brightness(1.05); color: #06301A; box-shadow: 0 14px 30px rgba(37, 211, 102, .4); }
.btn-wa svg {
    width: 19px; height: 19px;
    fill: none; stroke: currentColor; stroke-width: 1.7;
    stroke-linecap: round; stroke-linejoin: round;
}

.services-bar { align-items: center; }
.services-bar > span { flex: 1; min-width: 200px; }

@media (max-width: 640px) {
    .request-actions { width: 100%; }
    .request-actions .btn { flex: 1; justify-content: center; text-align: center; }
}


/* الموجة لا تُزاح فوق المحتوى بعد الآن */
.site-footer .dunes {
    height: 70px;
    margin-top: -1px;
    margin-bottom: 0;
}

.footer-grid { padding-block: 34px 34px; }

/* كل رابط في سطر مستقل */
.footer-grid > div > a {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
}
.footer-grid h3 { margin-bottom: 14px; }

/* معلومات التواصل: اتجاه لاتيني مع محاذاة صحيحة */
.footer-contact a,
.footer-contact span {
    display: block;
    width: fit-content;
    direction: ltr;
    unicode-bidi: isolate;
    margin-bottom: 9px;
}
html[dir="rtl"] .footer-contact a,
html[dir="rtl"] .footer-contact span { margin-inline-start: auto; }

/* روابط اللغات تبقى متجاورة */
.footer-langs a { display: inline-block !important; margin-bottom: 8px; }

/* الفيديو لا يُقطع عند حافة القسم */
.videos { padding-bottom: 8px; }

/* ==========================================================================
   إصلاح نهائي: التذييل والجوال
   ========================================================================== */

/* ---------- التذييل ---------- */
.footer-grid a {
    display: block !important;
    width: fit-content;
    margin-bottom: 10px;
}
.footer-langs a { display: inline-block !important; margin-inline-end: 14px; }
.footer-grid p { display: block; }

/* ---------- الجوال: درج القائمة ---------- */
@media (max-width: 900px) {
    .site-nav {
        position: fixed;
        inset-block: 0;
        inset-inline-end: 0;
        width: 268px;
        max-width: 82vw;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: var(--card);
        box-shadow: -10px 0 40px rgba(20, 32, 58, .18);
        padding: 96px 24px 24px;
        transform: translateX(105%);
        transition: transform .28s cubic-bezier(.22, .68, .32, 1);
        z-index: 60;
        overflow-y: auto;
    }
    html[dir="rtl"] .site-nav {
        inset-inline-end: auto;
        inset-inline-start: 0;
        transform: translateX(-105%);
        box-shadow: 10px 0 40px rgba(20, 32, 58, .18);
    }

    /* المُبدِّل خارج الترويسة، فنستهدف الدرج عبر body */
    #menu-toggle:checked ~ .site-header .site-nav { transform: translateX(0) !important; }

    .site-nav > a {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }
    .site-nav .lang { width: 100%; margin-top: 18px; }
    .lang-menu { position: static; box-shadow: none; margin-top: 10px; width: 100%; }

    /* طبقة تعتيم خلف الدرج */
    #menu-toggle:checked ~ .site-header::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(20, 32, 58, .45);
        z-index: 55;
    }

    .burger { display: block; position: relative; z-index: 61; }
}
/* ==========================================================================
   المعالم السياحية
   ========================================================================== */

.attractions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 26px;
}

.attr {
    background: var(--card);
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(20, 32, 58, .07);
    transition: transform .3s ease, box-shadow .3s ease;
}
.attr:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(20, 32, 58, .14); }

.attr-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.attr-media img, .attr-media svg { width: 100%; height: 100%; object-fit: cover; }

.attr-kind {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 2px;
    background: rgba(20, 32, 58, .84);
    color: #fff;
}

.attr-body { padding: 18px 20px 20px; }
.attr-body h3 { font-family: var(--display); font-size: 19px; font-weight: 500; margin-bottom: 7px; }
.attr-body p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.65; }

.attr-time {
    display: inline-block;
    margin-top: 12px;
    font-size: 12.5px;
    color: var(--burnt);
    background: var(--sand-soft);
    padding: 4px 11px;
    border-radius: 20px;
}

/* ---------- معالم اليوم في برنامج الرحلة ---------- */
.day-spots { display: flex; flex-wrap: wrap; gap: 7px; margin: 10px 0 12px; }
.day-spot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--indigo);
    background: #fff;
    border: 1px solid var(--line);
    padding: 5px 12px;
    border-radius: 20px;
}
.day-spot i {
    font-style: normal;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--orange);
}

@media (max-width: 700px) {
    .attractions { grid-template-columns: 1fr; }
}
/* ---------- شريط صور المعلم ---------- */
.attr-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 0 4px 4px;
}
.attr-strip img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 2px;
    transition: opacity .25s ease;
}
.attr-strip img:hover { opacity: .82; }

.attr-count {
    position: absolute;
    bottom: 12px;
    inset-inline-end: 12px;
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 2px;
    background: rgba(20, 32, 58, .8);
    color: #fff;
}

/* معرض المعلم في اللوحة */
.attr-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }

/* ---------- اللوحات داخل الصفحة بلا امتداد ---------- */
@media (min-width: 981px) {
    .hero .wrap { max-width: 1360px; }

    .hero-grid {
        grid-template-columns: minmax(280px, 0.68fr) 1.5fr;
        gap: 40px;
    }

    .hero-shots {
        margin-inline: 0 !important;
        padding-inline: 0 !important;
        gap: 14px;
    }

    .shot-1, .shot-2, .shot-3, .shot-4 { margin-inline: 0 !important; }
}

/* أول قسم ظاهر فورًا بلا انتظار تمرير */
.page-head [data-reveal],
.hero [data-reveal] { opacity: 1 !important; transform: none !important; }
@media (max-width:900px){.trip-map{height:340px}}

.pop-img{display:block;width:100%;height:120px;object-fit:cover;
  border-radius:8px;margin:0 0 .6rem;background:#eee}

.map-strip{display:flex;gap:10px;overflow-x:auto;padding:12px 2px 4px;
  scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch}
.map-strip::-webkit-scrollbar{height:6px}
.map-strip::-webkit-scrollbar-thumb{background:#d6cec2;border-radius:6px}

.map-card{flex:0 0 132px;scroll-snap-align:start;padding:0;cursor:pointer;
  background:none;border:0;text-align:start;font:inherit}
.map-card img{display:block;width:100%;height:88px;object-fit:cover;
  border-radius:8px;background:#eee;transition:transform .25s ease}
.map-card:hover img{transform:scale(1.04)}
.map-card span{display:block;margin-top:6px;font-size:.82rem;line-height:1.3;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap}

/* ═══ بطاقة السعر ودبابيس الخريطة — كتلة واحدة، لا يُبنى فوقها ═══ */

/* بطاقة السعر: صفّ أفقي مضغوط بدل عمود طويل */
.price-box{position:relative;display:flex;align-items:center;gap:18px;flex-wrap:wrap;
  padding:16px 20px;border-radius:4px;background:var(--indigo);color:#fff;overflow:hidden}
.price-box::before{content:'';position:absolute;inset:0;
  background:radial-gradient(120% 90% at 100% 0,rgba(243,180,65,.22),transparent 60%)}
.price-box>*{position:relative}
.price-figures{display:flex;flex-direction:column;gap:2px;min-width:0}
.price-box span{font-size:11px;letter-spacing:.06em;text-transform:uppercase;opacity:.62}
.price-box b{font-family:var(--display);font-size:27px;font-weight:500;
  line-height:1.1;color:var(--orange)}
.price-box p{margin:0;font-size:12px;opacity:.72}
.price-box .price-old{font-size:13px;opacity:.5}
.price-box .price-save{display:inline-block;padding:2px 8px;border-radius:99px;
  background:rgba(243,180,65,.16);color:var(--orange);font-size:11px;letter-spacing:0;
  text-transform:none;opacity:1}
.price-cta{flex:1 1 190px;margin:0;text-align:center;white-space:nowrap}

/* الدبّوس: دائرة رقمية تتحوّل صورةً عند التمرير أو عند اليوم النشط */
.map-pin span{display:grid;place-items:center;width:32px;height:32px;
  border-radius:50%;background:var(--indigo);color:#fff;
  font-family:var(--display);font-size:14px;font-weight:500;
  border:2px solid #fff;box-shadow:0 3px 12px rgba(20,32,58,.4);
  transition:transform .35s cubic-bezier(.22,.68,.32,1),background .3s ease}
.map-pin.is-active span{background:var(--burnt);transform:scale(1.28);
  box-shadow:0 6px 20px rgba(195,84,7,.55)}

.map-pin.has-img span{background-size:cover;background-position:center;
  background-repeat:no-repeat;color:transparent;text-shadow:none;
  transition:width .3s cubic-bezier(.22,.68,.32,1),
             height .3s cubic-bezier(.22,.68,.32,1),
             border-radius .3s ease,transform .3s ease}
.map-pin.has-img:hover span,
.map-pin.has-img.is-active span{width:74px;height:56px;border-radius:8px;
  transform:none;box-shadow:0 8px 24px rgba(20,32,58,.45)}
.map-pin.has-img .pin-no{position:absolute;inset:auto 0 -18px;text-align:center;
  font-size:11px;font-weight:600;color:var(--indigo);opacity:0;transition:opacity .3s}
.map-pin.has-img:hover .pin-no,
.map-pin.has-img.is-active .pin-no{opacity:1}
@media (max-width:1100px){.trip-layout{grid-template-columns:minmax(0,1fr) minmax(0,380px)}}
@media (max-width:900px){.trip-layout{grid-template-columns:1fr}}

/* ═══ تخطيط صفحة الرحلة والخريطة — كتلة واحدة، لا يُبنى فوقها ═══ */
.trip-body .layout{grid-template-columns:minmax(0,1fr) minmax(0,520px);gap:48px}

.side-map{position:relative;margin-top:26px}
.side-map-head{display:flex;align-items:baseline;justify-content:space-between;
  gap:12px;margin-bottom:12px}
.side-map-head h2{margin:0!important;font-size:19px!important}
.side-map-head span{font-size:12.5px;color:var(--muted)}
.side .trip-map{height:560px;border-radius:3px;
  box-shadow:0 16px 44px rgba(20,32,58,.18)}

/* تفاصيل الرحلة أسفل البرنامج — ثلاثة أعمدة */
.trip-details{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:30px 40px;margin-top:44px;padding-top:32px;border-top:1px solid var(--line)}
.trip-details h2{font-family:var(--display);font-size:19px;font-weight:500;margin:0 0 12px}
.trip-details .small p{font-size:13.5px;color:var(--muted);margin-bottom:8px}

@media (max-width:1100px){
  .trip-body .layout{grid-template-columns:minmax(0,1fr) minmax(0,400px);gap:40px}
  .side .trip-map{height:420px}
}
@media (max-width:900px){
  .trip-body .layout{grid-template-columns:1fr}
  .side .trip-map{height:360px}
}

/* ═══ الحجز: التوضيح وإضاءة القسم ═══ */
.services-hint{display:block;margin-top:4px;font-size:12.5px;font-style:normal;color:var(--muted)}
.services-band{scroll-margin-top:96px;transition:background .5s ease}
.services-band.is-lit{background:rgba(243,180,65,.14)}

/* ═══ التقييمات — كتلة واحدة، لا يُبنى فوقها ═══ */
.reviews-band{scroll-margin-top:96px}
.rv-average{display:flex;align-items:baseline;gap:10px}
.rv-average b{font-family:var(--display);font-size:30px;color:var(--burnt)}
.rv-average em{font-size:12.5px;color:var(--muted);font-style:normal}

.rv-stars{color:var(--orange);letter-spacing:1px;white-space:nowrap}
.rv-stars i{color:var(--line);font-style:normal}

.rv-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:22px;margin-top:26px}
.rv-item{padding:22px 24px;background:#fff;border:1px solid var(--line);border-radius:4px}
.rv-item header{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:10px}
.rv-item header b{font-weight:600}
.rv-from{font-size:12.5px;color:var(--muted)}
.rv-body p{font-size:14.5px;line-height:1.65;margin-bottom:8px}
.rv-item footer{display:flex;gap:10px;align-items:center;margin-top:12px;
  font-size:12px;color:var(--muted)}
.rv-tag{padding:2px 8px;border-radius:99px;background:var(--sand-soft)}
.rv-empty{margin-top:20px;color:var(--muted)}

.rv-flash{margin-top:18px;padding:12px 16px;border-radius:4px;font-size:14px}
.rv-flash-ok{background:rgba(18,76,80,.1);color:#124C50}
.rv-flash-bad{background:rgba(195,84,7,.1);color:var(--burnt)}

.rv-add{margin-top:32px;padding-top:24px;border-top:1px solid var(--line)}
.rv-add summary{cursor:pointer;font-weight:600}
.rv-form{max-width:640px;margin-top:20px}
.rv-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:14px}
.rv-form input[type=text],.rv-form input[type=date],.rv-form textarea{width:100%;
  padding:.6rem .8rem;font:inherit;border:1px solid var(--line);border-radius:4px}
.rv-form label{display:block;margin-bottom:5px;font-size:13px;color:var(--muted)}
.rv-note{margin:14px 0;font-size:12.5px;color:var(--muted)}
.hp-field{position:absolute!important;left:-9999px!important;opacity:0!important;
  height:0!important;width:0!important;pointer-events:none}

/* التقييم: الأزرار مخفاة والنجوم هي ما يُنقر */
.rv-rating{display:flex;flex-direction:row-reverse;justify-content:flex-end;
  gap:6px;margin:6px 0 18px}
.rv-rating input{position:absolute;opacity:0;width:0;height:0}
.rv-rating label{margin:0;padding:6px 10px;cursor:pointer;font-size:19px;line-height:1;
  color:var(--line);border:1px solid transparent;border-radius:4px;
  transition:color .18s ease,background .18s ease}
.rv-rating label:hover,
.rv-rating input:checked + label{color:var(--orange)}
.rv-rating input:checked + label{background:rgba(243,180,65,.14)}
.rv-rating input:focus-visible + label{border-color:var(--burnt)}

/* ═══ توقيع المطوّر ═══ */
.footer-by{font-size:12.5px;opacity:.62}
.footer-by a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.footer-by a:hover{opacity:.85}

.service-desc {
    display: block;
}
 
.service-line {
    display: block;
    line-height: 1.6;
}
 
/* النقطة الأولى في السطر تظهر كما كُتبت (•) — لا نضيف قائمة HTML
   لأن النصّ يأتي من قاعدة البيانات وقد لا يبدأ بنقطة دائمًا */
.service-line + .service-line {
    margin-top: .15rem;
}

/* ═══ content protection ═══ */
/* أضف هذه الكتلة إلى public/css/site.css كاملة بمعرّفها — لا مبعثرة */

/* ─── الصور ─── */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;   /* يمنع قائمة «حفظ الصورة» على iOS */
}

/* الطبقة الشفافة التي يضعها protect.js فوق الصور الكبيرة */
.img-shield {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    background: transparent;
}

/* الروابط تبقى قابلة للنقر فوق الطبقة */
.card .img-shield,
a .img-shield {
    pointer-events: none;
}

/* ─── النصوص ─── */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*  ⚠️ استثناءات إلزامية: بدونها لا يستطيع الزبون نسخ رقم واتساب
    ولا البريد ولا سعر الخدمة — وهذا يضرّ التحويل مباشرة.
    لا تحذف هذه الكتلة.  */
input,
textarea,
select,
a[href^="tel:"],
a[href^="mailto:"],
a[href*="wa.me"],
a[href*="whatsapp"],
.contact-value,
.service-price,
.site-footer address,
[data-selectable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* لوحة التحكم لا تُمسّ — المحرّر يحتاج النسخ واللصق */
.shell,
.shell * {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

/* ─── ما يظهر عند الطباعة ─── */
/* من يطبع الصفحة أو يحفظها PDF يأخذ معه نسبة المصدر */
@media print {
    .prose p::after,
    .service-desc::after {
        content: '';
    }

    body::after {
        content: '© Azoueiga Tours — azoueigatours.com';
        display: block;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid #ccc;
        font-size: .8rem;
        color: #666;
    }
}/* ═══ about page ═══ */
/* أضف هذه الكتلة إلى public/css/site.css كاملة بمعرّفها */

/* الصورة لا تمتدّ لارتفاع النصّ، وتتبع التمرير بدل ترك فراغ */
.about-grid {
    align-items: start;
}

.about-side {
    position: sticky;
    top: 6rem;
}

.about-side img {
    width: 100%;
    max-height: 62vh;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 14px;
    display: block;
}

/* الجملة المفتاحية بعد فقرة التخيّل */
.about-punch {
    font-size: 1.15em;
    font-weight: 600;
    color: var(--ink, #14203A);
}

/* عنوان يتوسّط القسم قبل بطاقات الفريق */
.section-lead {
    margin-bottom: 2rem;
}

/* ما نقدّمه — شارات لا قائمة نقطية */
.offer-list {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.offer-list li {
    padding: .55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(20, 32, 58, .12);
    font-size: .95rem;
    line-height: 1.4;
}

/* الخاتمة */
.about-closing p {
    max-width: 62ch;
    margin-inline: auto;
    text-align: center;
}

.about-motto {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(20, 32, 58, .12);
    font-style: italic;
    opacity: .85;
}

@media (max-width: 900px) {
    .about-side {
        position: static;
    }

    .about-side img {
        max-height: 45vh;
    }

    .about-closing p {
        text-align: start;
    }
}
/* ═══ submit spinner ═══ */
/* أضف هذه الكتلة إلى public/css/site.css كاملة بمعرّفها */

.btn.is-busy {
    opacity: .75;
    cursor: wait;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.spinner {
    width: 1em;
    height: 1em;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    flex: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* من يفضّل تقليل الحركة يرى نبضة بدل الدوران */
@media (prefers-reduced-motion: reduce) {
    .spinner {
        animation: pulse 1.2s ease-in-out infinite;
        border-top-color: currentColor;
    }

    @keyframes pulse {
        50% { opacity: .35; }
    }
}