/* ===== پنجره هواپیما ===== */
.plane-win {
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 50% 50% 46% 46% / 42% 42% 58% 58%;
    border: 7px solid #7f8ea3;
    box-shadow: 0 0 0 3px #b8c4d0, 0 16px 36px rgba(0,0,0,0.28);
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.plane-win:hover { transform: translateY(-8px); }
.plane-win.fading { opacity: 0; transform: scale(1.06); }

.hero-search-box {
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(203,213,225,0.6);
    max-width: 860px;
}

/* صفحه تورها: فول ویدث */
.hero-search-box--full {
    max-width: 100%;
}

@media (max-width: 575px) {
    .hero-search-box { padding: 14px; border-radius: 12px; }
}
/* ===== باکس جستجو ===== */
.hero-search-box {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(203,213,225,0.6);
    max-width: 900px;
}

@media (max-width: 767px) {
    .hero-search-box { padding: 14px; border-radius: 12px; }
}
/*-------------------------*/

.popular-swiper {
    width: 100%;
    padding: 4px 2px 8px !important;
}

.popular-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1px solid #f1f5f9;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.popular-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.popular-card__img-wrap {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.popular-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.popular-card:hover .popular-card__img { transform: scale(1.06); }

.popular-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.18) 0%, transparent 60%);
}

.popular-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.popular-card__price {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0ea5e9;
}
/*-------------------------*/
/* اسلایدر */
.blog-carousel { min-height: 340px; }
.blog-carousel .carousel-inner { min-height: 340px; }

/* هم‌ارتفاع کردن ستون بلاگ با اسلایدر */
@media (min-width: 992px) {
    .blog-cols-wrap { align-items: stretch; }
    .blog-carousel,
    .blog-carousel .carousel-inner { min-height: unset; height: 100%; }
    .blog-grid-col { height: 100%; }
    .blog-grid-col .row { height: 100%; }
}

/* کارت بلاگ */
.blog-card {
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    color: #1e293b;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    color: #0ea5e9;
}

.blog-card__img-wrap {
    width: 100px;
    flex-shrink: 0;
    overflow: hidden;
}
.blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.07); }

.blog-card__title {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: inherit;
}

@media (max-width: 575px) {
    .blog-card__img-wrap { width: 90px; }
    .blog-carousel { min-height: 260px; }
    .blog-carousel .carousel-inner { min-height: 260px; }
}

/*--------------------------*/

.tour-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: stretch;
    color: #1e293b;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.tour-item:hover {
    transform: translateX(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    color: #0ea5e9;
}

/* نوار رنگی سمت راست */
.tour-item__bar {
    width: 5px;
    flex-shrink: 0;
    background: linear-gradient(to bottom, #0ea5e9, #38bdf8);
}

/* تورهای داخلی */
.tours-domestic .tour-item__bar {
    background: linear-gradient(to bottom, #22c55e, #4ade80);
}
.tours-domestic .tour-item:hover { color: #22c55e; }
.tours-domestic .tour-item__price { color: #22c55e; }

.tour-item__body {
    flex: 1;
    padding: 14px 16px;
}

.tour-item__title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.5;
    color: inherit;
}

.tour-item__meta {
    font-size: 0.74rem;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.tour-item__price {
    font-size: 1rem;
    font-weight: 800;
    color: #0ea5e9;
}

/*--------------------------*/
/* =====================
   موبایل: اسکرول افقی
   ===================== */
.dates-mobile { padding: 4px 12px; }

.dates-mobile__scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.dates-mobile__scroll::-webkit-scrollbar { display: none; }

.dates-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 14px;
    white-space: nowrap;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.dates-pill:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
}
.dates-pill--active {
    background: #0d9488;
    border-color: #0d9488;
    color: #fff !important;
}

.dates-pill__side {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.3;
}
.dates-pill__day   { font-size: 0.95rem; font-weight: 700; }
.dates-pill__month { font-size: 0.72rem; }

.dates-pill__icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    gap: 2px;
    color: inherit;
    opacity: 0.8;
}
.dates-pill__arrow { font-size: 1.1rem; }

/* =====================
   دسکتاپ: sidebar
   ===================== */
.dates-desktop { order: -1; }

.dates-desktop__header {
    background: #0284c7;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
}
.dates-desktop__header-title { font-size: 0.9rem; font-weight: 600; }
.dates-desktop__header-badge {
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.78rem;
}

.dates-desktop__list {
    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.dates-desktop__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    text-decoration: none;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.18s ease;
}
/*.dates-desktop__item:hover { background: #f0f9ff; }*/
.dates-desktop__item--active {
    background: #0d9488;
    color: #fff;
}
.dates-desktop__item--active .text-muted { color: rgba(255,255,255,0.7) !important; }

.dates-desktop__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 54px;
}
.dates-desktop__day   { font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.dates-desktop__month { font-size: 0.78rem; }
.dates-desktop__time  { font-size: 0.68rem; margin-top: 2px; }

.dates-desktop__vehicle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* تقویم */
.dates-desktop__calendar {
    background: #fbbf24;
    padding: 12px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.dates-desktop__calendar-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    pointer-events: none;
}
.dates-desktop__calendar-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: none;
    background: transparent;
}
/*--------------------------*/
.why-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 16px 20px;
    text-align: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    cursor: default;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(14,165,233,0.12);
    border-color: #7dd3fc;
}

.why-card__icon-wrap {
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: background 0.22s ease;
}
.why-card:hover .why-card__icon-wrap { background: #e0f2fe; }

.why-card__icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.why-card__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
}
/*-------------------------*/

.similar-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.22s ease;
}
.similar-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
}

/* ردیف تاریخ */
.similar-date-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 14px;
    flex-wrap: wrap;
}

.similar-date-row__vehicle {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.similar-date-row__date {
    display: flex;
    flex-direction: column;
    min-width: 90px;
}

.similar-date-row__arrow {
    flex-shrink: 0;
    color: #94a3b8;
}

.similar-date-row__action {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 575px) {
    .similar-date-row { gap: 8px; }
    .similar-date-row__action { margin-right: 0; width: 100%; justify-content: space-between; }
}
/*------------------------*/
/* فرم */
.comment-form {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

/* آیتم نظر */
.comment-item {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

/* آواتار */
.comment-item__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.comment-item__avatar--sm {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

/* پاسخ‌ها */
.comment-replies {
    border-right: 3px solid #22c55e;
    padding-right: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-reply {
    background: #f0fdf4;
    border-radius: 10px;
    padding: 12px 14px;
}

@media (max-width: 575px) {
    .comment-form { padding: 14px; }
    .comment-item { padding: 14px; }
}
/*------------------------*/
/* بنر موبایل */
.tour-hero-mobile {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.tour-hero-mobile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 60%);
}

/* نوار عنوان */
.tour-title-bar {
    background: #0f172a;
    padding: 16px 0;
    position: relative;
}

/* دکوراسیون خط رنگی بالا */
.tour-title-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to left, #0ea5e9, #38bdf8, #7dd3fc);
}

.tour-title-bar__title {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

.tour-title-bar__score {
    width: 52px;
    height: 52px;
    background: #0ea5e9;
    border-radius: 12px 12px 4px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(14,165,233,0.4);
}
/*------------------------*/
.filter-content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
    padding: 14px 16px;
    border-bottom: 3px solid #0ea5e9;
}
.filter-content__title {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}
.filter-content__clear {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.2s;
}
.filter-content__clear:hover { color: #f87171; }

.filter-section {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
}
.filter-section--highlight {
    background: #f0f9ff;
}
.filter-section__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.filter-sort-btn {
    font-size: 0.75rem;
    flex: 1 1 calc(50% - 4px);
}

.filter-checkboxes {
    max-height: 150px;
    overflow-y: auto;
    scrollbar-width: thin;
}
/*------------------------*/
/* ردیف مسافر */
.passenger-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    background: #fff;
    gap: 12px;
}

.passenger-row__label {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.passenger-row__counter {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* موبایل: لیبل بالا، کانتر پایین */
@media (max-width: 480px) {
    .passenger-row {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }
    .passenger-row__label { width: 100%; }
    .passenger-row__counter { width: 100%; justify-content: flex-start; }
}

/* دکمه‌های + و - */
.counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.18s ease;
    color: #475569;
    flex-shrink: 0;
}
.counter-btn:hover { background: #e0f2fe; border-color: #0ea5e9; color: #0ea5e9; }
.counter-btn--plus:hover { background: #dcfce7; border-color: #22c55e; color: #22c55e; }
.counter-btn--minus:hover { background: #fee2e2; border-color: #ef4444; color: #ef4444; }

/* input کانتر */
.counter-input {
    width: 52px;
    height: 36px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    outline: none;
    background: #fff;
}
.counter-input:focus { border-color: #0ea5e9; box-shadow: 0 0 0 2px rgba(14,165,233,0.15); }
/*------------------------*/
/* ردیف اطلاعات تور */
.tour-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 4px;
    gap: 8px;
}
.tour-info-row__label {
    font-size: 0.78rem;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}
.tour-info-row__value {
    font-size: 0.82rem;
    color: #1e293b;
    text-align: left;
}
.tour-info-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 6px 0;
}

/* ردیف قیمت */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 4px;
}
.price-row__label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
}
.price-row__value {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    direction: ltr;
}
.price-row__value small { font-size:0.68rem; opacity:0.7; }
.price-row--total .price-row__label { color: #fff; font-weight: 700; }
.price-row--final { padding: 10px 4px; }
.price-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 6px 0;
}
/*------------------------*/
.info-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.info-card__header {
    background: linear-gradient(to left, #0284c7, #0ea5e9);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 20px;
    display: flex;
    align-items: center;
}

.info-card__body {
    padding: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item__label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
}

.info-item__value {
    font-size: 0.88rem;
    color: #1e293b;
}

@media (max-width: 575px) {
    .info-card__body { padding: 14px; }
}
/*------------------------*/
.hotel-list-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.hotel-list-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* عکس */
.hotel-list-card__img-wrap {
    position: relative;
    height: 100%;
    min-height: 180px;
    overflow: hidden;
}
.hotel-list-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    min-height: 180px;
}
.hotel-list-card:hover .hotel-list-card__img { transform: scale(1.04); }

/* badge نوع هتل */
.hotel-list-card__type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(15,23,42,0.7);
    color: #fff;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

@media (max-width: 767px) {
    .hotel-list-card__img-wrap { min-height: 200px; }
    .hotel-list-card__img { min-height: 200px; }
}

/*-------------------------*/
.city-pills-wrap {
    position: relative;
}
.city-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.city-pills::-webkit-scrollbar { display: none; }

.city-pill {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    color: #475569;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.18s ease;
}
.city-pill:hover {
    background: #e0f2fe;
    border-color: #0ea5e9;
    color: #0284c7;
    transform: translateY(-1px);
}
.city-pill--active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(14,165,233,0.3);
}
/*------------------------*/

.room-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: box-shadow 0.22s ease;
}
.room-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }

.counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.18s ease;
    color: #475569;
}
.counter-btn--plus:hover  { background:#dcfce7; border-color:#22c55e; color:#22c55e; }
.counter-btn--minus:hover { background:#fee2e2; border-color:#ef4444; color:#ef4444; }

@media (max-width: 991px) {
    .room-item > .row > div:last-child {
        border-right: none !important;
        border-top: 1px solid #f1f5f9;
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 12px;
    }
}
/*-------------------------*/

.blog-list-card {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    color: #1e293b;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
    color: #1e293b;
}

/* عکس */
.blog-list-card__img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 260px;
    overflow: hidden;
}
.blog-list-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 200px;
    transition: transform 0.4s ease;
}
.blog-list-card:hover .blog-list-card__img { transform: scale(1.05); }

/* badge دسته‌بندی */
.blog-list-card__cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f59e0b;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* محتوا */
.blog-list-card__body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.blog-list-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.6;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-card__summary {
    font-size: 0.82rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-list-card__readmore {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0ea5e9;
    margin-top: 12px;
    transition: gap 0.2s ease;
}
.blog-list-card:hover .blog-list-card__readmore { gap: 4px; }

/* موبایل */
@media (max-width: 767px) {
    .blog-list-card { flex-direction: column; }
    .blog-list-card__img-wrap { width: 100%; }
    .blog-list-card__img { min-height: 200px; max-height: 220px; }
    .blog-list-card__body { padding: 16px; }
}

/* ===== آیتم پربازدید ===== */
.popular-blog-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 10px;
    color: #1e293b;
    transition: background 0.18s ease;
}
.popular-blog-item:hover {
    background: #f0f9ff;
    color: #0ea5e9;
}

.popular-blog-item__num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-blog-item__img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-blog-item__title {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: inherit;
}
/*-------------------------*/
.blog-hero {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.blog-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.5) 55%, rgba(10,15,30,0.15) 100%);
}
.blog-hero__content {
    position: relative; z-index:1;
    padding-bottom: 40px; padding-top: 60px; width: 100%;
}
.blog-hero__cat {
    display: inline-block; background:#0ea5e9; color:#fff;
    font-size:0.75rem; font-weight:600;
    padding: 4px 14px; border-radius:20px; margin-bottom:14px;
}
.blog-hero__title {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 800; color: #fff;
    line-height: 1.5; max-width: 800px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3); margin-bottom: 0;
}

/* متن */
.blog-summary {
    font-size: 0.95rem; line-height: 2;
    color: #334155; font-weight: 500; text-align: justify;
}
.blog-body {
    font-size: 0.9rem; line-height: 2;
    color: #475569; text-align: justify;
}
.blog-body h2, .blog-body h3, .blog-body h4 {
    color:#0f172a; font-weight:700;
    margin-top:28px; margin-bottom:12px;
    padding-right:12px; border-right:3px solid #0ea5e9;
}
.blog-body img { max-width:100%; border-radius:12px; margin:16px 0; }
.blog-body p { margin-bottom:14px; }
.blog-body a { color:#0ea5e9; }
.blog-body blockquote {
    border-right:4px solid #0ea5e9; background:#f0f9ff;
    padding:16px 20px; border-radius:0 8px 8px 0;
    margin:20px 0; color:#0284c7;
}

/* کارت مرتبط */
.related-card {
    background:#fff; border-radius:12px; overflow:hidden;
    border:1px solid #f1f5f9; color:#1e293b;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.related-card:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,0.1); color:#0ea5e9; }
.related-card__img-wrap { height:150px; overflow:hidden; }
.related-card__img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.35s ease; }
.related-card:hover .related-card__img { transform:scale(1.05); }
.related-card__title {
    font-size:0.85rem; font-weight:700; line-height:1.5; color:inherit; margin-bottom:6px;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.related-card__summary {
    font-size:0.75rem; line-height:1.6;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

/* سایدبار */
.sidebar-item {
    display:flex; align-items:center; gap:10px;
    padding:8px; border-radius:10px;
    color:#1e293b; transition:background 0.18s ease;
}
.sidebar-item:hover { background:#f0f9ff; color:#0ea5e9; }
.sidebar-item__img { width:60px; height:60px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.sidebar-item__title {
    font-size:0.8rem; font-weight:600; line-height:1.5; color:inherit;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}

@media (max-width: 767px) {
    .blog-hero { min-height:280px; }
    .blog-hero__title { font-size:1.15rem; }
}

/*-------------------------*/
a{
    text-decoration:none !important;
}
h1,h2,h3{
    font-family: 'Kaushan Script', cursive;
}
.myform{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 1.1rem;
    outline: 0;
    max-width: 500px;
}
.tx-tfm{
    text-transform:uppercase;
}
.mybtn{
    border-radius:50px;
}

.login-or {
    position: relative;
    color: #aaa;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.span-or {
    display: block;
    position: absolute;
    left: 50%;
    top: -2px;
    margin-left: -25px;
    background-color: #fff;
    width: 50px;
    text-align: center;
}
.hr-or {
    height: 1px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.google {
    color:#666;
    width:100%;
    height:40px;
    text-align:center;
    outline:none;
    border: 1px solid lightgrey;
}
form .error {
    color: #ff0000;
}
#second{display:none;}
#secondForm{display:none;}

h1 {
    letter-spacing: -0.5px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    font-family: inherit;
    color: #6c757d;
}

.top-actions {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.btn-toggle {
    border-radius: 50px;
    min-width: 100px;
}

.btn-toggle.active {
    background-color: #148B9E;
    color: #fff;
    border-color: #148B9E;
}

.pillow-scroll {
    overflow-x: auto;
    white-space: nowrap;
    padding-top: 1rem;
    display: flex;
}

.pillow-scroll .btn {
    display: inline-block;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    white-space: nowrap;
    border-radius: 30px;
}

.pillow-hover:hover {
    background-color: #148B9E !important;
    color: white !important;
}

.pillow-selected{
    background-color: #148b9e !important;
    color: white !important;
}
@media screen and (min-width: 992px) {
    .five-star-title {
        position: relative;
        right: 30vw;
    }
    .program-flight{
        font-size: 14px !important;
    }
}
@media screen and (max-width: 992px) {
    .title-tour{
        background-color: #43434357  !important;
        position: absolute;
        width: 100%;
        top: 17.5rem;
    }
    .banner-title{
        padding-top: 300px !important;
    }
    .program-flight{
        font-size: 12px !important;
    }
}
/* نوار پایین موبایل */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #f0f0f3;
    padding: 35px 40px;
    z-index: 9999;
    border-top: 1px solid #ddd;
}

/* فقط در موبایل نمایش داده شود */
@media (min-width: 768px) {
    .mobile-sticky-bar {
        display: none !important;
    }
}

/* دکمه تماس */
.call-btn {
    background: #007bff;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

/* ستاره‌ها */
.stars i {
    font-size: 14px;
}

swiper-container {
    width: 100%;
    height: 100%;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
swiper-container {
    width: 100%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
}

swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper {
    /*height: 80%;*/
    width: 100%;
}

.mySwiper2 {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper2 swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper2 .swiper-slide-thumb-active {
    opacity: 1;
}

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-box {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.map-box {
    background: #e6f8e6;
    border-radius: 10px;
    height: 140px;
    background-image: url('https://i.imgur.com/fg2sYjw.png'); /* یک تصویر نقشه تستی */
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 14px;
}

.item {
    text-align: center;
}

.item i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #444;
}

.title {
    font-weight: bold;
    font-size: 16px;
}

.sub-text {
    font-size: 16px;
    margin-top: 5px;
    color: #23912b;
    font-weight: bold;
}

.hotel-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.empty-box {
    width: 75px;
    height: 75px;
    background: #eef4ff;
    border-radius: 12px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #5574d9;
}

.warning-section {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
    position: relative;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit {
    border: 1px solid #ee6a6a;
    color: #ee6a6a;
    padding: 6px 22px;
    border-radius: 8px;
    font-weight: bold;
}

.myform{
    position: relative;
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 1.1rem;
    outline: 0;
    max-width: 500px;
}
.tx-tfm{
    text-transform:uppercase;
}
.mybtn{
    border-radius:50px;
}

.login-or {
    position: relative;
    color: #aaa;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.span-or {
    display: block;
    position: absolute;
    left: 50%;
    top: -2px;
    margin-left: -25px;
    background-color: #fff;
    width: 50px;
    text-align: center;
}
.hr-or {
    height: 1px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}
.google {
    color:#666;
    width:100%;
    height:40px;
    text-align:center;
    outline:none;
    border: 1px solid lightgrey;
}
form .error {
    color: #ff0000;
}
#second{display:none;}
#secondForm{display:none;}

.hotel-card {
    border-radius: 10px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hotel-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-name {
    font-size: 1.2rem;
}

.hotel-rating .stars i {
    font-size: 1rem;
}
.rating-badge {
    background: #e0e0e0;
    font-size: 0.85rem;
}

.hotel-tags .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.6em;
}

.hotel-price {
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hotel-card-img {
        height: 180px;
    }
}


.item {
    text-align: center;
}

.item i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #444;
}

.title {
    font-weight: bold;
    font-size: 16px;
}

.sub-text {
    font-size: 16px;
    margin-top: 5px;
    color: #23912b;
    font-weight: bold;
}

.hotel-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 12px rgba(0,0,0,0.08);
}

.divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.empty-box {
    width: 75px;
    height: 75px;
    background: #eef4ff;
    border-radius: 12px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #5574d9;
}

.warning-section {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 0 12px rgba(0,0,0,0.06);
    position: relative;
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: absolute;
    left: 50%;
    top: -30px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit {
    border: 1px solid #ee6a6a;
    color: #ee6a6a;
    padding: 6px 22px;
    border-radius: 8px;
    font-weight: bold;
}

.search-header {
    background: #ffffff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
}
