*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#f5f7fb;

    font-family: IRANSansXFaNum, sans-serif;

    color:#222;

    overflow-x:hidden;

    padding-bottom:90px;
}

/* ===== HEADER ===== */

.top-header{

    position:sticky;

    top:0;

    z-index:9999;

    height:70px;

    background:rgba(255,255,255,.9);

    backdrop-filter:blur(12px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;

    box-shadow:0 3px 15px rgba(0,0,0,.05);
}

.logo{

    font-size:24px;

    font-weight:700;

    color:#0d6efd;
}

.top-header i{

    font-size:22px;

    cursor:pointer;
}

/* ===== HERO ===== */

.hero-section{

    padding:15px;
}

.heroSwiper{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
            0 15px 40px rgba(0,0,0,.12);
}

.heroSwiper img{

    width:100%;

    height:280px;

    object-fit:cover;
}

.swiper-pagination-bullet{

    background:#fff;
}

.swiper-pagination-bullet-active{

    background:#0d6efd;
}

/* ===== CATEGORIES ===== */

.categories{

    display:flex;

    justify-content:space-between;

    gap:10px;

    padding:0 15px;

    margin-top:20px;
}

.categories a{

    flex:1;

    background:#fff;

    border-radius:22px;

    text-decoration:none;

    color:#333;

    text-align:center;

    padding:16px 5px;

    box-shadow:
            0 5px 20px rgba(0,0,0,.05);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.categories a::before{

    content:"";

    position:absolute;

    width:60px;

    height:200%;

    background:
            rgba(255,255,255,.6);

    transform:rotate(30deg);

    left:-100px;

    top:-50px;

    transition:.8s;
}

.categories a:hover::before{

    left:150%;
}

.categories a:hover{

    transform:
            translateY(-8px)
            scale(1.03);

    box-shadow:
            0 15px 35px rgba(0,0,0,.12);
}

.categories span{

    display:block;

    font-size:24px;
}

.categories p{

    margin-top:8px;

    font-size:13px;

    margin-bottom:0;
}

/* ===== SECTIONS ===== */

.section-title{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 15px 10px;
}

.section-title h5{

    font-weight:700;

    margin:0;
}

/* ===== SWIPER ===== */

.tourSwiper{

    padding:10px 15px;
}

/* ===== CARD ===== */

.tour-card{

    background:#fff;

    border-radius:25px;

    overflow:hidden;

    position:relative;

    transition:.4s;

    box-shadow:
            0 10px 25px rgba(0,0,0,.06);
}

.tour-card:hover{

    transform:
            translateY(-10px);

    box-shadow:
            0 20px 45px rgba(0,0,0,.12);
}


.tour-card:hover img{

    transform:scale(1.08);
}

.tour-content{

    padding:10px;
}

.tour-content h6{

    font-size:15px;

    font-weight:700;

    margin-bottom:5px;

    line-height:1.5;
}

.price{

    font-size:14px;

    color:#0d6efd;

    font-weight:700;
}

/* ===== BOTTOM MENU ===== */

.bottom-nav{

    position:fixed;

    bottom:0;

    left:0;

    right:0;

    height:70px;

    background:#fff;

    display:flex;

    justify-content:space-around;

    align-items:center;

    box-shadow:0 -5px 20px rgba(0,0,0,.08);

    z-index:999;
}

.bottom-nav a{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#666;

    gap:4px;
}

.bottom-nav i{

    font-size:22px;

    line-height:1;
}

.bottom-nav span{

    font-size:11px;
}

.bottom-nav a:hover{

    transform:translateY(-5px);

    color:#0d6efd;
}

.bottom-nav .active{

    color:#0d6efd;
}

/* ===== DESKTOP ===== */

@media(min-width:992px){

    .hero-section{

        max-width:1300px;

        margin:auto;
    }

    .heroSwiper img{

        height:520px;
    }

    .categories{

        max-width:1300px;

        margin:20px auto;
    }

    .section-title{

        max-width:1300px;

        margin:auto;
    }

    .tourSwiper{

        max-width:1300px;

        margin:auto;
    }
}

.tour-content{

    padding:12px;
}

.tour-rate{

    font-size:12px;

    color:#ffb400;

    margin-bottom:6px;
}

.tour-content h6{

    font-size:14px;

    font-weight:700;

    line-height:1.7;

    margin-bottom:8px;

    min-height:48px;
}

.tour-meta{

    font-size:12px;

    color:#777;

    margin-bottom:5px;
}

.tour-meta i{

    margin-left:4px;
}

.price{

    margin-top:8px;

    font-size:14px;

    font-weight:700;

    color:#0d6efd;
}

/* FEATURED TOUR */

.featured-section{
    max-width:1300px;

    margin:auto;

    padding:20px 15px;
}

.featured-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    box-shadow:
            0 15px 40px rgba(0,0,0,.12);
}

.featured-card img{

    width:100%;

    height:220px;

    object-fit:cover;
}

.featured-overlay{

    position:absolute;

    inset:0;

    background:
            linear-gradient(
                    to top,
                    rgba(0,0,0,.75),
                    rgba(0,0,0,.15)
            );

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:25px;
}

.featured-badge{

    display:inline-block;

    width:max-content;

    background:#ff5722;

    padding:6px 14px;

    border-radius:50px;

    margin-bottom:10px;

    font-size:13px;

    font-weight:bold;
}

.featured-overlay h3{

    font-size:22px;

    font-weight:700;

    margin-bottom:8px;
}

.featured-price{

    font-size:20px;

    font-weight:700;

    margin:10px 0 15px;
}

/* PROMO */

.promo-section{

    max-width:1300px;

    margin:20px auto;

    padding:0 15px;
}

.promo-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    box-shadow:
            0 15px 35px rgba(0,0,0,.1);

    transition:.4s;
}

.promo-card:hover{

    transform:translateY(-5px);
}

.promo-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:1s;
}

.promo-card:hover img{

    transform:scale(1.05);
}

.promo-overlay{

    position:absolute;

    inset:0;

    background:
            linear-gradient(
                    to left,
                    rgba(0,0,0,.7),
                    rgba(0,0,0,.2)
            );

    color:#fff;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding:25px;
}

.promo-overlay h4{

    font-weight:700;

    margin-bottom:8px;
}

.promo-overlay p{

    margin-bottom:12px;
}

.promo-overlay .btn{

    width:auto;

    display:inline-block;

    align-self:flex-start;

    padding:8px 18px;

    border-radius:12px;

    font-size:14px;

    font-weight:600;
}

.promo-btn{

    width:auto !important;

    display:inline-block;

    padding:8px 18px;

    border-radius:12px;
}
.tour-info-row{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:12px;

    color:#777;

    margin-bottom:6px;
}

.tour-info-row span{

    display:flex;

    align-items:center;

    gap:4px;
}

.tour-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:10px;
}

.tour-arrow{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#f2f5fb;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;
}

.tour-card:hover .tour-arrow{

    background:#0d6efd;

    color:#fff;
}

/* BOOKING PAGE */

.booking-card{

    max-width:700px;

    margin:30px auto;

    background:#fff;

    border-radius:30px;

    padding:30px;

    box-shadow:
            0 15px 40px rgba(0,0,0,.08);
}

.booking-header{

    text-align:center;

    margin-bottom:25px;
}

.booking-header i{

    font-size:50px;

    color:#0d6efd;

    display:block;

    margin-bottom:10px;
}

.booking-header h3{

    font-weight:700;

    margin:0;
}

.booking-card .form-control{

    height:55px;

    border-radius:15px;

    border:1px solid #e5e7eb;
}

.booking-card textarea.form-control{

    height:auto;
}

.booking-card .form-control:focus{

    box-shadow:none;

    border-color:#0d6efd;
}

.booking-btn{

    width:100%;

    height:55px;

    border-radius:15px;

    font-size:18px;

    font-weight:600;
}
.bottom-nav a{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;
}

.tour-arrow{

    background: #329f48;

    color:#fff;
}


.tour-card{
    position:relative;
    overflow:hidden;
}

.tour-favorite{

    position:absolute;

    top:12px;

    left:12px;

    z-index:10;
}

.tour-favorite i{

    font-size:22px;

    color:#ff4d6d;

    text-shadow:0 2px 8px rgba(0,0,0,.25);
}

.tour-favorite i:hover{

    transform:scale(1.15);
}

/* SEARCH BOX */

.search-section{

    padding:15px;

    max-width:1300px;

    margin:auto;
}

.search-box{

    position:relative;

    background:#fff;

    border-radius:18px;

    box-shadow:
            0 10px 25px rgba(0,0,0,.08);

    overflow:hidden;
}

.search-box input{

    width:100%;

    height:58px;

    border:none;

    outline:none;

    padding-right:55px;

    padding-left:15px;

    font-size:15px;
}

.search-box button{

    position:absolute;

    right:0;

    top:0;

    width:58px;

    height:58px;

    border:none;

    background:transparent;

    color:#0d6efd;

    font-size:20px;
}

.search-tags{

    display:flex;

    gap:8px;

    overflow-x:auto;

    padding-top:10px;
}

.page-header{

    margin-bottom:20px;
}

.page-header h4{

    font-weight:700;
}

.tour-search{

    position:relative;

    margin-bottom:25px;
}

.tour-search input{

    width:100%;

    height:55px;

    border:none;

    outline:none;

    border-radius:16px;

    background:#fff;

    box-shadow:
            0 5px 20px rgba(0,0,0,.06);

    padding:0 60px 0 15px;
}

.tour-search button{

    position:absolute;

    right:0;

    top:0;

    width:55px;

    height:55px;

    border:none;

    background:none;

    color:#0d6efd;
}

.category-filter{

    display:flex;

    gap:10px;

    overflow-x:auto;

    padding-bottom:15px;

    margin-bottom:20px;
}

.category-filter a{

    text-decoration:none;

    background:#fff;

    color:#444;

    padding:10px 16px;

    border-radius:30px;

    white-space:nowrap;

    box-shadow:0 4px 15px rgba(0,0,0,.05);

    transition:.3s;
}

.category-filter a.active{

    background:#0d6efd;

    color:#fff;
}

.tours-top{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;
}

.back-btn{

    width:42px;

    height:42px;

    border-radius:12px;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#333;

    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.tour-search{

    position:relative;

    margin-bottom:15px;
}

.tour-search input{

    width:100%;

    height:55px;

    border:none;

    border-radius:16px;

    background:#fff;

    padding:0 60px 0 15px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

    outline:none;
}

.tour-search button{

    position:absolute;

    right:0;

    top:0;

    width:55px;

    height:55px;

    border:none;

    background:none;

    color:#0d6efd;
}

.clear-filter{

    display:inline-block;

    margin-bottom:15px;

    text-decoration:none;

    background:#fff0f0;

    color:#dc3545;

    padding:8px 15px;

    border-radius:12px;
}

.pagination-box{

    display:flex;

    justify-content:center;

    gap:8px;

    margin:30px 0;
}

.pagination-box a{

    width:40px;

    height:40px;

    border-radius:12px;

    background:#fff;

    text-decoration:none;

    color:#333;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 5px 15px rgba(0,0,0,.06);
}

.pagination-box a.active{

    background:#0d6efd;

    color:#fff;
}

.tour-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    display:block;
}
@media (min-width:992px){

    .tour-card img{
        height:180px;
    }

}

.tour-content{
    padding:12px;
}

.tour-content h6{
    font-size:14px;
    font-weight:700;
    margin-bottom:8px;
}

.tour-info-row{
    font-size:12px;
    color:#666;
    margin-bottom:6px;
}

.page-top{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;
}

.page-top h4{

    margin:0;

    font-weight:700;

    font-size:24px;
}


.back-btn:hover{

    transform:translateY(-2px);
}
.auth-card{

    background:#fff;

    border-radius:24px;

    padding:30px;

    max-width:500px;

    margin:auto;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.profile-card{

    background:#fff;

    border-radius:24px;

    padding:25px;
}
.status{

    padding:6px 12px;

    border-radius:30px;

    font-size:12px;
}

.pending{

    background:#fff8dd;
    color:#d69e00;
}

.confirmed{

    background:#e8fff0;
    color:#16a34a;
}

.cancelled{

    background:#ffeaea;
    color:#dc2626;
}
/* PAGE HEADER */

.page-top{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;
}

.page-top h4{

    margin:0;

    font-size:24px;

    font-weight:700;
}

.back-btn{

    width:42px;

    height:42px;

    border-radius:14px;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#333;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.2s;
}

.back-btn:hover{

    transform:translateY(-2px);
}

.page-card{

    background:#fff;

    border-radius:24px;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.auth-card{

    max-width:500px;

    margin:auto;

    text-align:center;
}

.auth-icon{

    width:90px;

    height:90px;

    margin: auto auto 15px;

    border-radius:50%;

    background:#f0f6ff;

    color:#0d6efd;

    display:flex;

    justify-content:center;

    align-items:center;
}

.auth-icon i{

    font-size:42px;
}
/* OTP PAGE */

.otp-box{

    display:flex;

    justify-content:center;
}

.otp-input{

    max-width:220px;

    height:65px;

    text-align:center;

    font-size:28px;

    font-weight:700;

    border-radius:18px;
}

.resend-code{

    margin-top:20px;

    text-align:center;
}

.resend-code a{

    color:#0d6efd;

    text-decoration:none;

    font-size:14px;
}
/* OTP */

.otp-wrapper{

    display:flex;

    justify-content:center;

    gap:10px;

    direction:ltr;

    margin-top:15px;
}

.otp-digit{

    width:55px;

    height:65px;

    border:1px solid #dee2e6;

    border-radius:18px;

    text-align:center;

    font-size:24px;

    font-weight:700;

    outline:none;

    transition:.2s;
}

.otp-digit:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 4px rgba(13,110,253,.15);
}
.profile-header{

    background:#fff;

    border-radius:24px;

    padding:25px;

    text-align:center;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.profile-avatar{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#f3f6fb;

    display:flex;

    align-items:center;

    justify-content:center;

    margin: auto auto 15px;
}

.profile-avatar i{

    font-size:42px;

    color:#0d6efd;
}

.profile-menu{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.profile-menu a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px;

    text-decoration:none;

    color:#333;

    border-bottom:1px solid #f1f1f1;
}

.profile-menu a:last-child{

    border:none;
}
.reservation-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.reservation-card img{

    width:100%;

    height:180px;

    object-fit:cover;
}

.reservation-content{

    padding:15px;
}

.reservation-actions{

    display:flex;

    gap:10px;

    margin-top:15px;
}
.profile-header{
    background:#fff;
    border-radius:24px;
    padding:25px;
    text-align:center;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.profile-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#f3f6fb;
    margin:0 auto 15px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.profile-avatar i{
    font-size:42px;
    color:#0d6efd;
}

.profile-menu{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.profile-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    color:#333;
    padding:18px;
    border-bottom:1px solid #f2f2f2;
}

.profile-menu a:last-child{
    border-bottom:none;
}

.empty-box{

    background:#fff;

    border-radius:24px;

    padding:40px 20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.empty-box i{

    font-size:60px;

    color:#0d6efd;

    margin-bottom:15px;
}

.reservation-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.reservation-card img{

    width:100%;

    height:200px;

    object-fit:cover;
}

.reservation-content{

    padding:18px;
}

.reservation-actions{

    display:flex;

    gap:10px;

    margin-top:15px;
}

.info-card{

    background:#fff;

    border-radius:24px;

    padding:20px;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.about-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:15px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;
}

.about-icon i{

    font-size:36px;

    color:#0d6efd;
}

.stats-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin-bottom:20px;
}

.stat-item{

    background:#fff;

    border-radius:20px;

    padding:20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.stat-item strong{

    display:block;

    font-size:28px;

    color:#0d6efd;
}

.stat-item span{

    color:#666;

    font-size:14px;
}

.about-list{

    margin:15px 0 0;

    padding-right:20px;
}

.about-list li{

    margin-bottom:10px;
}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:18px;

    margin-bottom:15px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.contact-card i{

    font-size:24px;

    color:#0d6efd;

    width:50px;

    height:50px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;
}

.contact-card p{

    margin:0;

    color:#666;
}

.accordion-item{

    border:none;

    border-radius:18px !important;

    overflow:hidden;

    margin-bottom:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.accordion-button{

    font-weight:600;
}

.accordion-button:not(.collapsed){

    background:#eef5ff;

    color:#0d6efd;
}
.page-card{

    background:#fff;

    border-radius:24px;

    padding:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}
.gallery-wrapper{

    margin:0 15px;

    overflow:hidden;

    border-radius:24px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.reserve-btn{

    min-width:160px;

    height:48px;

    border-radius:14px;

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:0 20px;

    font-weight:600;

    transition:.25s;
}

.reserve-btn:hover{

    color:#fff;

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(13,110,253,.25);
}
@media(min-width:992px){

    .booking-bar{

        width:650px;

        left:20px;

        right:auto;

        transform:none;
    }

}
.tour-page{
    padding-bottom:120px;
}

.gallery-slider{
    overflow:hidden;
}

.gallery-slider img{
    width:100%;
    height:320px;
    object-fit:cover;
}

.tour-box{

    background:#fff;

    border-radius:24px;

    margin:15px;

    padding:20px;

    box-shadow:
            0 10px 25px rgba(0,0,0,.05);
}

.tour-title{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.info-grid{

    display:flex;

    flex-wrap:wrap;

    gap:12px;
}

.info-item{

    background:#f7f8fb;

    border-radius:14px;

    padding:10px 14px;

    font-size:14px;
}

.section-card{

    background:#fff;

    border-radius:24px;

    padding:20px;

    margin:15px;

    box-shadow:
            0 10px 25px rgba(0,0,0,.05);
}

.section-card h5{

    margin-bottom:15px;

    font-weight:700;
}

.booking-bar{

    position:fixed;

    bottom:10px;

    left:10px;

    right:10px;

    background:#fff;

    border-radius:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    padding:12px;

    z-index:999;
}

.booking-inner{

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:15px;

}

.price-big{

    font-size:22px;

    font-weight:700;

    color:#0d6efd;
}

@media(min-width:992px){

    .gallery-slider img{
        height:550px;
    }

    .tour-page{
        max-width:1300px;
        margin:auto;
    }
}

.booking-inner{

    display:flex;

    align-items:center;
}

.booking-inner .action-buttons{

    margin-right:auto;
}
.share-btn{

    width:48px;

    height:48px;

    border-radius:14px;

    background:#f5f7fb;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#333;

}

.heroSwiper img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}
.tour-card img{
    aspect-ratio:4/3;
    object-fit:cover;
}
.gallery-slider img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}
/* فرم ورود */

.auth-card .form-control{
    font-size:14px;
    height:52px;
    border-radius:14px;
    margin-bottom:12px;
}

.auth-card .form-label{
    font-size:13px;
    margin-bottom:6px;
    color:#666;
}

.auth-card .btn{
    height:52px;
    border-radius:14px;
}

.auth-card .form-control{
    font-size:13px;
    height:50px;
    border-radius:16px;
    padding:0 15px;
}

.auth-card .form-control::placeholder{
    font-size:13px;
    color:#999;
}
.bottom-nav a{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
}

.bottom-nav span{
    font-size:11px;
}

.success-card{

    max-width:650px;

    margin:20px auto;

    background:#fff;

    border-radius:28px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.success-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#e9f9ef;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.success-icon i{

    font-size:48px;

    color:#28a745;

}

.success-title{

    font-weight:700;

    margin-bottom:15px;

}

.success-text{

    color:#666;

    line-height:2;

    margin-bottom:25px;

}

.countdown-box{

    background:#f7f9fc;

    border-radius:16px;

    padding:14px;

    font-weight:600;

    color:#555;

}

#countdown{

    color:#0d6efd;

    font-size:22px;

    font-weight:700;

}

.success-card{

    max-width:650px;

    margin:auto;

    background:#fff;

    border-radius:30px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.success-icon{

    width:110px;

    height:110px;

    margin:auto;

    border-radius:50%;

    background:#e9f9ef;

    display:flex;

    align-items:center;

    justify-content:center;

    animation:pulseSuccess 2s infinite;
}

.success-icon i{

    font-size:60px;

    color:#28a745;
}

.success-title{

    margin-top:20px;

    font-weight:700;
}

.success-text{

    color:#666;

    line-height:2;

    margin-top:15px;
}

.tracking-box{

    margin-top:25px;

    background:#f8f9fc;

    border-radius:18px;

    padding:15px;
}

.tracking-code{

    font-size:22px;

    font-weight:700;

    color:#0d6efd;

    letter-spacing:2px;
}

.countdown-wrapper{

    margin-top:30px;
}

.count-circle{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    border:5px solid #0d6efd;

    display:flex;

    align-items:center;

    justify-content:center;
}

.count-circle span{

    font-size:32px;

    font-weight:700;

    color:#0d6efd;
}

.count-text{

    margin-top:12px;

    color:#777;

    font-size:14px;
}

.action-buttons{

    display:flex;

    gap:10px;

    justify-content:center;

    margin-top:30px;

    flex-wrap:wrap;
}

.action-buttons .btn{

    min-width:180px;

    border-radius:14px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;
}

@keyframes pulseSuccess{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }
}

@media(max-width:768px){

    .success-card{

        border-radius:24px;

        padding:25px 20px;
    }

    .action-buttons{

        flex-direction:column;
    }

    .action-buttons .btn{

        width:100%;
    }
}
 .success-card{
     background:#fff;
     border-radius:30px;
     padding:30px;
     max-width:650px;
     margin:auto;
     text-align:center;
     box-shadow:0 10px 30px rgba(0,0,0,.08);
 }

.success-icon{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#e9f9ef;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
}

.success-icon i{
    font-size:60px;
    color:#28a745;
}

@media(min-width:992px){

    .booking-bar{

        width:420px;

        left:20px;

        right:auto;

        bottom:20px;

        border-radius:20px;
    }

}

.pagination-wrapper{

    display:flex;

    justify-content:center;

    gap:8px;

    margin-top:25px;

    flex-wrap:wrap;
}

.page-btn{

    min-width:42px;

    height:42px;

    padding:0 12px;

    border-radius:12px;

    background:#fff;

    color:#333;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 3px 10px rgba(0,0,0,.08);

    text-decoration:none;
}

.page-btn.active{

    background:#0d6efd;

    color:#fff;
}
.requirements-list{

    line-height:2.2;

    color:#555;
}

.requirements-list ul{

    padding-right:20px;
}
html, body{

    overscroll-behavior:none;
    -webkit-tap-highlight-color:transparent;
}

body{
    padding-bottom:80px;
}

.tour-image{
    position:relative;
    overflow:hidden;
    border-radius:18px 18px 0 0;
}

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

.tour-status{
    position:absolute;
    top:160px;
    left:15px;
    padding:7px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
    backdrop-filter:blur(5px);
}

.tour-status.active{
    background:#198754;
    color:white;
}

.tour-status.limited{
    background:#ffc107;
    color:#222;
}

.tour-status.full{
    background:#dc3545;
    color:white;
}

.tour-status.closed{
    background:#343a40;
    color:white;
}

.tour-card {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.tour-card:hover {
    text-decoration: none !important;
    color: inherit;
}
a.tour-card {
    text-decoration: none !important;
}
.tour-card {
    display:block;
    color:#222;
    text-decoration:none;
}

.tour-card h5,
.tour-card p {
    text-decoration:none;
}

.tour-card:hover {
    color:#222;
}
a.tour-card,
a.tour-card:visited,
a.tour-card:hover,
a.tour-card:active {
    text-decoration: none !important;
    color: inherit !important;
    outline: none;
}

a.tour-card * {
    text-decoration: none !important;
    color: inherit;
}
a {
    text-decoration: none !important;
    color: inherit !important;
}

.tour-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    width:100%;
}

.tour-title{
    margin:0;
    font-size:1rem;
    font-weight:700;
    color:#222;
    flex:1;
}

.tour-date{
    white-space:nowrap;
    font-size:.85rem;
    color:#777;
    margin-right:auto;
}
.tour-card-link{
    text-decoration:none !important;
    color:inherit !important;
}

.tour-card-link:hover{
    text-decoration:none !important;
}
.tour-title-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    width:100%;
    margin-top:12px;
}
.tour-status{
    display:inline-block;
    padding:5px 12px;
    border-radius:20px;
    font-size:.85rem;
}

.tour-status.open{
    background:#e8fff0;
    color:#159447;
}

.tour-status.closed{
    background:#ffeaea;
    color:#d33;
}

.reserve-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:100%;
    height:45px;
    border-radius:25px;
    font-size:.95rem;
    font-weight:700;
    text-decoration:none !important;
    transition:.3s;
    border:none;
}


/* تور قابل رزرو */
.reserve-btn.active{
    background:#16a34a;
    color:#fff;
}

.reserve-btn.active:hover{
    background:#15803d;
    color:#fff;
}


/* رزرو بسته */
.reserve-btn.disabled{
    background:#e5e7eb;
    color:#777;
    cursor:not-allowed;
}
.reservation-btn{
    border-radius: 25px;
    padding: 8px 18px;
    font-size:14px;
    transition:.3s;
}


/* مشاهده تور */
.btn-tour-view{
    background:#55b278; /* آبی تیفانی */
    color:#fff;
    border:none;
}

.btn-tour-view:hover{
    background: #55b278;
    color:#fff;
}


/* لغو رزرو */
.btn-tour-cancel{
    border:1px solid #dc3545;
    color:#dc3545;
    background:#fff;
}

.btn-tour-cancel:hover{
    background:#dc3545;
    color:#fff;
}
.contact-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    direction:rtl;
    width:100%;
}

.contact-title{
    text-align:right;
}

.contact-value{
    direction:ltr;
    text-align:left;
    unicode-bidi:embed;
}
.banner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ff6b35;
    color:#fff !important;
    border-radius:30px;
    padding:10px 28px;
    font-weight:700;
    text-decoration:none !important;
    transition:.3s;
}

.banner-btn:hover{
    background:#e85a28;
    color:#fff !important;
}

