:root {
    --primary-dark: #e76c00;
    --primary-light: #ff8c1a66;
    --secondary-color: #ffc809;
    --accent-color: #ffffff;
    --green-light: #c1fdb4;
    --green: #1e6d0d;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --text-muted-light: #949494;
    --bg-light: #f8f9fa;
    --bg-lighter: #fdfdfd;
    --bg-real: #f1f1f1;
    --bg-muted: #ededed;
    --border-color: #e1e5eb;
    --border-light: #f1f3f4;
    --primary-10: #ffecd9; /* 90% Ø±ÙˆØ´Ù†â€ŒØªØ± */
    --primary-20: #ffd8b3; /* 80% Ø±ÙˆØ´Ù†â€ŒØªØ± */
    --primary-30: #ffc28a; /* 70% Ø±ÙˆØ´Ù†â€ŒØªØ± */
    --primary-40: #ffac61; /* 60% Ø±ÙˆØ´Ù†â€ŒØªØ± */
    --primary-50: #f97a00; /* Ø±Ù†Ú¯ Ø§ØµÙ„ÛŒ */
    --primary-60: #d66800; /* 10% ØªÛŒØ±Ù‡â€ŒØªØ± */
    --primary-70: #b35700; /* 20% ØªÛŒØ±Ù‡â€ŒØªØ± */
    --primary-80: #8f4600; /* 30% ØªÛŒØ±Ù‡â€ŒØªØ± */
    --primary-90: #6b3500; /* 40% ØªÛŒØ±Ù‡â€ŒØªØ± */
}

:root {
    --cl-primary: #f97a00;
    --cl-primary-faded: #f978006e;
    --cl-primary-faded-2: #f9780052;
    --cl-secondary: #954400;
    --cl-bg: #eeeeee;
    --primary-50: #f97a00; /* Ø±Ù†Ú¯ Ø§ØµÙ„ÛŒ */

    --ff-primary: IRANSans;
    /* fs */
    --fs-xxs: 0.75rem;
    --fs-xs: 0.9rem;
    --fs-sm: 1rem;
    --fs-md: 1.15rem;
    --fs-lg: 1.4rem;

    --body-max-width: 1320px;
    --header-height: 60px;

    ---box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}/* PAIR CONTAINER */
.pair-container {
    display: flex;
    position: relative;
}
.pair-container .input-container {
    display: flex;
    border: var(--input-container-border);
    border: var(--input-container-border);
    justify-content: center;
    align-items: center;
    height: 44px;
    background-color: white;
    width: 100%;
    border-radius: var(--input-container-border-radius);
    position: relative;
}

.pair-container .input-container input {
    text-align: center;
    padding-inline-start: 0.2rem;
}

/* right pair */
.pair-container .input-container:nth-child(1) {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.pair-container .input-container:nth-child(1) .icon {
    right: 0;
    top: 48%;
    transform: scale(0.7) translateY(-50%) !important;
    transform-origin: top !important;
    position: absolute;
    display: flex;
    align-items: center;
}
/* left pair */
.pair-container .input-container:nth-child(2) {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.pair-container .input-container:nth-child(2) .icon {
    left: 0;
    top: 48%;
    transform: scale(0.7) translateY(-50%) !important;
    transform-origin: top !important;
    position: absolute;
    display: flex;
    align-items: center;
}
/* SWITCH PAIR BTN */
.pair-container .switch-pairs-button {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    transform-origin: center;
    outline: none;
    background-color: transparent;
    border-radius: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow:
        inset 5px 5px 10px rgba(128, 128, 128, 0.188),
        inset -5px -5px 10px rgba(128, 128, 128, 0.188);
    height: 60px;
    width: 60px;
}

/* PAIR DROPDOWN */
.pair-dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    max-height: 220px;
    overflow-y: scroll;
    transform: translateY(100%);
    background-color: white;
    box-shadow: var(--box-shadow);
    display: flex;
    border-radius: 0.4rem;
    z-index: 99999;
}
.pair-dropdown-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.pair-dropdown-menu li {
    display: flex;
    align-items: center;
    grid-area: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}
.pair-dropdown-menu li:hover {
    color: var(--cl-primary);
}
.pair-dropdown-menu li .pair-icon {
    transform: scale(0.6);
}
.pair-dropdown-menu li .pair-icon path {
    transition: 0.3s;
}
.pair-dropdown-menu li:hover .pair-icon path {
    fill: var(--cl-primary);
}
.pair-dropdown-menu {
    transform: translateY(100%) scaleY(0.5);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}
.pair-dropdown-menu.active {
    transform: translateY(100%) scaleY(1);
    opacity: 1;
    pointer-events: auto;
}
/* END PAIR DROPDOWN */

@media (max-width: 768px) {
    .form-item-pair > .label {
        display: none !important;
    }
    .form-item-pair .pair-container {
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
    }
    .form-item-pair .pair-container .input-container {
        border: none !important;
    }
}

/* SEC MOST VISITED HOTELS */
.section-most-visited-hotels h2 {
    bottom: 0;
}
.section-title {
    font-size: var(--fs-lg);
    position: relative;
    font-weight: 600;
    width: fit-content;
}
.section-title::after {
    content: " ";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    height: 10px;
    width: calc(100% + 6px);
    background-color: var(--primary-light);
    -webkit-clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(6px 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

/* hotels pag */
.hotels .swiper-pagination-bullet {
    transition: all 200ms ease-in;
}

.hotels .swiper-pagination {
    bottom: 0px !important;
}

.hotels .swiper-pagination-bullet-active {
    width: 20px !important;
    height: 10px !important;
    border-radius: 5px !important;
}
.hotels .swiper-pagination-bullet-active {
    background: var(--cl-primary) !important;
}
/* services pag */
.services-container .swiper-pagination-bullet {
    transition: all 200ms ease-in;
}
.services-container .swiper-pagination {
    position: relative;
    margin-top: 0.5rem;
}

.services-container .swiper-pagination-bullet-active {
    width: 20px !important;
    height: 10px !important;
    border-radius: 5px !important;
}
.services-container .swiper-pagination-bullet-active {
    background: var(--cl-primary) !important;
}
.swiper-main-progress-bar-fill {
    transition: width 5s linear;
    width: 100%;
}

.swiper-main-progress-bar {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
}

.swiper-main-progress-bar-fill {
    height: 100%;
    background-color: #f97a00;
    width: 0%;
    transition: none;
}
/* SEC BANNERS */

.banners-container {
    display: flex;
    gap: 1rem;
    height: max(25vw, 150px);
    max-height: 375px;
}
.banners-container .banner-link {
    height: 100%;
    flex: 1;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}
.banners-container .banner.swiper {
    width: 90%;
}
.banners-container .banner.swiper img {
    width: 100%;
    height: 100%;
    display: flex;
}
.banners-container .banners {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 1rem;
}
.banners-container img {
    border-radius: 10px;
}
.banners-container .banners img,
.banners-container .banners video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .banners-container .banners {
        display: none;
    }
    .banners-container {
        width: 100%;
    }
    .banners-container .banner.swiper {
        width: 100%;
    }
}

.hotels-container .swiper-slide {
    margin-left: 10px !important;
}
/* HOTELS CONTAINER */
.hotels {
    height: 259px !important;
}
/* @media (max-width: 768px) {
	.hotels {
		height: 25vw !important;
	}
} */

.hotels-container {
    display: flex;
    flex-direction: column;
    gap: min(1rem, 4vw);
}

.hotels-container .swiper-slide {
    height: 100%;
}
.hotels-container .swiper-slide .title {
    margin: 0;
}

.swiper-slide:has(.hotel-link) {
    border-radius: 1rem;
    /* overflow: hidden; */
}
.hotel-link {
    border-radius: 0.8rem;
    overflow: hidden;
    display: flex;
    height: 87%;
    width: 100%;
    position: relative;
    border: 1px solid rgb(216, 216, 216);
}
.hotel-link img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hotel-link .view-badge {
    position: absolute;
    left: 0.6rem;
    font-size: calc(var(--fs-xs) - 0.1rem);
    padding: 0.2rem 0.8rem;
    top: 0.6rem;
    border-radius: 4rem;
}
.hotel-link .title {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0.6rem;
    font-size: var(--fs-sm);
    font-weight: 700;
    border-radius: 8px 0 0 0;
}

.hotel-link .title,
.hotel-link .view-badge {
    background-color: rgba(34, 34, 34, 0.492);
    color: white;
    backdrop-filter: blur(2px);
}



.mobile__hotel__group .swiper-slide{
    width: 180px !important;
}

.descktop__hotel__group{
    width: 80%;
}
.descktop__hotel__group img{
    width: 120px;
}
.home__page__blog .container-cards-blog .box-img-card-blog {
    width: 220px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
}
.home__page__blog .container-cards-blog .box-img-card-blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}
.hotel__group img{
    border-radius: 12px;
}
.container-cards-blog > div > div{
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}
.container-cards-blog .box-btn-more-blog{
    margin-top: 4rem;
    color: var(--primary-50) !important;
}
.container-cards-blog .box-btn-more-blog a {
    color: var(--primary-50) !important;
}
.container-cards-blog .box-btn-more-blog svg , .btn-more-info svg{
    width: 15px;
    height: 15px;
}
.container-cards-blog .title-cards-blog{
    max-width: 300px;
}
.btn-more-info {
    background-color: #dadada;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .hotel-link {
        overflow: visible;
        height: 70% !important;
    }
    .hotel-link img {
        border-radius: 0.5rem;
    }
    .hotel-link .view-badge {
        display: none;
    }

    .hotel-link .title {
        left: 50%;
        padding: 0;
        color: rgb(46, 46, 46);
        transform: translate(-50%);
        bottom: -1.8rem;
        font-weight: 600;
        white-space: nowrap;
        background-color: transparent;
    }

    .container-cards-blog .title-cards-blog{
        max-width: 250px;
    }
    .home__page__blog .container-cards-blog .box-img-card-blog {
        width: 100%;
        height: 160px;
    }
    .container-cards-blog .box-btn-more-blog{
        margin-top: 0.5rem;
    }
    .hotels {
        height: 200px !important;
    }
}

@media (max-width: 500px) {
    .hotel-link {
        overflow: visible;
        height: 70% !important;
    }
    .hotel-link img {
        border-radius: 0.5rem;
    }
    .hotel-link .view-badge {
        display: none;
    }

    .hotel-link .title {
        left: 50%;
        padding: 0;
        color: rgb(46, 46, 46);
        transform: translate(-50%);
        bottom: -1.8rem;
        font-weight: 600;
        white-space: nowrap;
        background-color: transparent;
    }
}

.service {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    flex-direction: row;
    align-items: center;
    background-color: white;
    width: 100%;
    white-space: nowrap;
    border-radius: 1rem;
}
.border_right::after{
    content: "";
    position: absolute;
    left: 30px;
    width: 2px;
    height: 55px;
    background-color: var(--border-color);
}
.service img {
    width: 60px;
    height: auto;
}
.service__info-container {
    display: flex;
    align-items: start;
    flex-direction: column;
    width: 100%;
}
@media (max-width: 768px) {
    .border_right::after{
        content: "";
        display: none;
    }
}
.service__info-container .title {
    font-size: calc(var(--fs-md) - 0.2rem);
    font-weight: bold;
    font-weight: 700;
    color: rgb(65, 65, 65);
}

.service__info-container .desc {
    font-weight: 500;
    font-size: calc(var(--fs-xs) - 0.1rem);
}
.service__icon-container img {
    width: 70px;
    height: 70px;
}

.blog-container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 1.5rem;
}
.blog {
    display: flex;
    gap: 1rem;
    max-height: 390px;
}
@media (max-width: 1000px) {
    .blog {
        flex-direction: column;
        max-height: none;
    }
    .blog .badges {
        flex-wrap: wrap;
        row-gap: 0.1rem !important;
    }
}
.blog > * {
    flex-basis: 50%;
    border-radius: 1rem;
}
.blog .blog__banner {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.blog .blog__banner img {
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    .blog .blog__banner img {
        width: 100vw;
    }
    .service__info-container::before , .service__info-container::after{
        display: none;
    }
}
.blog .blog__banner .subtitle {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem;
}

.blog .blog__banner .subtitle .title {
    color: white;
    font-size: var(--fs-md);
}

/* BLOG LIST */
.blog__list {
    background-color: white;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-items {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: stretch;
}
.list-items > .item {
    height: 100%;
    gap: 1rem;
    display: flex;
    flex-basis: 33.3%;
    padding-block: 0.8rem;
    align-items: center;
    border-bottom: 1px solid rgb(209, 209, 209);
}
.list-items > .item:nth-last-child(1) {
    border-bottom: none;
}
.list-items > .item img {
    width: 20vw;
    max-width: 150px;
    border-radius: 1rem;
    min-height: 100px !important;
    min-width: 150px;
    height: 100%;
}
.list-items > .item .info-container {
    display: flex;
    height: 100%;
    gap: 0.5rem;
}
.list-items > .item .info-container .title {
    font-size: var(--fs-sm);
}
.list-items > .item .info-container .badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #999;
    font-size: var(--fs-xs);
}
.list-items > .item .info-container .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.list-items > .item .info-container .badge svg path {
    fill: #999;
}
.list-items > .item .info-container .badge svg {
    width: 20px;
    height: 20px;
}
.blog-container > .partial-more {
    position: absolute;
    left: 0;
    top: 0;
    /* transform: translateY(50%); */
}

/* INSTAGRAM SEC */
.instagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    width: 100%;
}
.instagram-container img {
    width: 100%;
    height: auto;
}

.question-list {
    display: flex;
    margin-top: 1rem;
    flex-direction: column;
    gap: 1rem;
}

.question-item {
    width: 100%;
    border-radius: 12px;
    background-color: white;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    padding: 0.4rem 1rem;
    padding-bottom: 10px;
}
.question-item > .title-container {
    display: flex;
    align-items: center;
    height: 40px;

    justify-content: space-between;
    font-size: var(--fs-sm);
    font-weight: 500;
    background-color: transparent;
    border: none;
    outline: none;
}
.question-item > .description {
    font-weight: 500;
    font-size: var(--fs-xs);
}

.question-item .icon {
    transition: 0.2s;
}
.question-item:has(.title-container:not(.collapsed)) {
    border-top: 3px solid var(--cl-primary);
}
.question-item:has(.title-container:not(.collapsed)) .icon {
    transform: rotate(180deg);
}
.question-item:has(.title-container:not(.collapsed))
.title-container {
    color: var(--cl-primary);
}

.hotel__categories-container {
    display: flex;
    width: 100%;
    flex-direction: column;
}
.hotel__categories-container ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.category-item {
    display: flex;
    align-items: center;
    width: fit-content;
    border-radius: 5px;
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.category-item:hover {
    color: var(--cl-primary);
}
.category-item:hover svg {
    color: var(--primary-50);
}



@media (max-width: 768px) {
    #show-more-categories {
        width: 100%;
        color: var(--cl-primary);
        font-size: 12px;
        background: white;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        padding: 15px;
        box-shadow: 0px -10px 30px 15px white;
        position: absolute;
        bottom: -38px;
    }
    .hotel__categories-container #container-item-categories {
        max-height: 250px;
        overflow: hidden;
        transition: max-height 0.7s;
    }
    .hotel__categories-container #container-item-categories.open{
        max-height: none;
        transition: max-height 0.7s;
        box-shadow: none;
    }
    #container-item-categories.open + #show-more-categories {
        box-shadow: none;
        background: inherit;
    }
    .hotel__categories-container ul li{
        width: 100%;
    }
    .hotel__categories-container ul li a{
        width: 100%;
        justify-content: center;
    }
}
