:root {
    --ink: #172119;
    --green: #35472c;
    --green2: #52673e;
    --orange: #ef7f2d;
    --cream: #f6f3eb;
    --muted: #6f776f
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'Vazirmatn', sans-serif;
}

a {
    text-decoration: none;
    color: inherit
}

button, input {
    font: inherit
}

.header {
    height: 82px;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    position: relative;
    z-index: 10
}

.logo {
    font-size: 31px;
    font-weight: 900
}

    .logo i {
        font-style: normal;
        color: var(--green)
    }

    .logo b {
        color: var(--orange)
    }

nav {
    display: flex;
    gap: 30px;
    font-size: 13px;
    font-weight: 700
}

.actions {
    display: flex;
    gap: 10px;
    align-items: center
}

    .actions button {
        border: 0;
        cursor: pointer
    }

.login {
    background: none
}

.add {
    background: var(--green);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px
}

.menu {
    display: none;
    background: none;
    font-size: 24px
}

.hero {
    min-height: 700px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=85&w=2200&auto=format&fit=crop') center/cover
}

.shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#10191233,#101912c7 58%,#101912e8)
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px,90%);
    margin: auto;
    padding-top: 105px
}

.eyebrow {
    font-size: 12px;
    color: #e9ece7
}

    .eyebrow:before {
        content: "";
        display: inline-block;
        width: 32px;
        height: 2px;
        background: var(--orange);
        margin-left: 10px;
        vertical-align: middle
    }

h1 {
    font-size: clamp(46px,6vw,80px);
    line-height: 1.2;
    margin: 24px 0 18px;
    letter-spacing: -4px
}

    h1 em {
        font-style: normal;
        color: var(--orange)
    }

.lead {
    max-width: 620px;
    line-height: 2;
    font-size: 16px;
    color: #eff1ed
}

.hero-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 32px
}

.primary {
    background: var(--orange);
    padding: 16px 23px;
    border-radius: 8px;
    font-weight: 800
}

.trust {
    margin-top: 42px;
    font-size: 12px
}

.business {
    position: absolute;
    z-index: 3;
    left: 5%;
    bottom: 48px;
    width: 360px;
    background: #fff;
    color: var(--ink);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 18px 55px #0005
}

    .business small {
        color: var(--orange);
        font-weight: 800
    }

    .business h2 {
        font-size: 20px;
        margin: 8px 0
    }

    .business p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.8
    }

    .business button {
        width: 100%;
        padding: 12px;
        border: 0;
        border-radius: 7px;
        background: var(--green);
        color: #fff;
        font-weight: 800;
        cursor: pointer
    }

.section {
    width: min(1180px,90%);
    margin: auto
}

.services {
    padding: 85px 0
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 36px
}

    .heading p, .why-copy > p {
        color: var(--orange);
        font-size: 12px;
        font-weight: 900;
        margin: 0 0 11px
    }

    .heading h2, .why-copy h2 {
        font-size: 34px;
        margin: 0
    }

    .heading em, .why-copy em {
        font-style: normal;
        color: var(--green2)
    }

    .heading > a {
        font-size: 12px;
        font-weight: 800;
        border-bottom: 1px solid #aaa;
        padding-bottom: 5px
    }

.grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

.service {
    background: #fff;
    border: 1px solid #e9e7df;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: .25s
}

    .service:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px #38432f18
    }

.icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 25px;
    background: #fff0e5;
    color: var(--orange)
}

.service:nth-child(even) .icon {
    background: #edf1e9;
    color: var(--green)
}

.service h3 {
    font-size: 15px;
    margin: 0 0 7px
}

.service p {
    font-size: 10px;
    color: var(--muted);
    margin: 0
}

.service b {
    margin-right: auto;
    color: var(--orange)
}

.featured {
    background: var(--green);
    padding: 80px 0 90px
}

    .featured .heading {
        color: #fff
    }

        .featured .heading h2 em {
            color: #f8a566
        }

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.card {
    background: #fff;
    border-radius: 13px;
    overflow: hidden;
    transition: .25s
}

    .card:hover {
        transform: translateY(-6px)
    }

.photo {
    height: 245px;
    background-position: center;
    background-size: cover;
    position: relative
}

.tag {
    position: absolute;
    right: 14px;
    top: 14px;
    background: var(--orange);
    color: #fff;
    border-radius: 6px;
    padding: 7px 10px;
    font-size: 10px
}

.heart {
    position: absolute;
    left: 14px;
    top: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    font-size: 22px;
    cursor: pointer
}

    .heart.saved {
        color: var(--orange)
    }

.body {
    padding: 18px
}

    .body > small {
        font-size: 10px;
        color: var(--orange)
    }

    .body h3 {
        font-size: 18px;
        margin: 10px 0
    }

    .body p {
        font-size: 11px;
        color: var(--muted);
        border-bottom: 1px solid #eee;
        padding-bottom: 14px
    }

.price {
    display: flex;
    justify-content: space-between;
    align-items: end
}

    .price span {
        font-size: 9px;
        color: #888
    }

    .price b {
        font-size: 15px;
        color: var(--green)
    }

.why {
    padding: 95px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.why-photo {
    height: 510px;
    background: url('https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?q=80&w=1200&auto=format&fit=crop') center/cover;
    border-radius: 170px 170px 14px 14px
}

.why-copy h2 {
    font-size: 38px;
    line-height: 1.7
}

.item {
    display: flex;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid #ddd
}

    .item > b {
        color: var(--orange)
    }

    .item span {
        display: flex;
        flex-direction: column;
        gap: 7px
    }

    .item small {
        font-size: 11px;
        color: var(--muted)
    }

footer {
    background: #172119;
    color: #fff;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 45px
}

    footer > div {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    footer p, footer a {
        font-size: 11px;
        color: #b9c0b8;
        line-height: 1.8
    }

    footer form {
        display: flex
    }

    footer input {
        width: 100%;
        background: #fff1;
        border: 1px solid #ffffff22;
        color: #fff;
        border-radius: 7px;
        padding: 12px
    }

    footer form button {
        width: 46px;
        border: 0;
        background: var(--orange);
        color: #fff;
        border-radius: 7px;
        margin-right: 5px
    }

@media(max-width:850px) {
    .header {
        height: 70px
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        background: #fff;
        padding: 24px;
        flex-direction: column
    }

        nav.open {
            display: flex
        }

    .menu {
        display: block
    }

    .login, .add {
        display: none
    }

    .hero {
        min-height: 780px
    }

    .hero-content {
        padding-top: 65px
    }

    .business {
        right: 5%;
        left: 5%;
        width: auto
    }

    .grid {
        grid-template-columns: repeat(2,1fr)
    }

    .cards {
        grid-template-columns: 1fr 1fr
    }

    .card:last-child {
        display: none
    }

    .why {
        gap: 35px
    }

    footer {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .shade {
        background: linear-gradient(#10191288,#101912ef)
    }

    .hero-content {
        padding-top: 45px
    }

    h1 {
        font-size: 47px;
        letter-spacing: -2px
    }

    .lead {
        font-size: 14px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start
    }

    .business {
        bottom: 30px
    }

    .heading h2, .why-copy h2 {
        font-size: 28px
    }

    .heading > a {
        display: none
    }

    .grid {
        grid-template-columns: 1fr
    }

    .cards {
        display: flex;
        overflow: auto
    }

    .card {
        min-width: 84%
    }

        .card:last-child {
            display: block
        }

    .why {
        grid-template-columns: 1fr;
        padding: 65px 0
    }

    .why-photo {
        height: 420px
    }

    footer {
        grid-template-columns: 1fr
    }
}
/* Hero slider */
.hero {
    background: none
}

.hero-slides, .hero-slide {
    position: absolute;
    inset: 0
}

.hero-slide {
    opacity: 0;
    transform: scale(1.04);
    background-position: center;
    background-size: cover;
    transition: opacity .9s ease,transform 6s ease
}

    .hero-slide.active {
        opacity: 1;
        transform: scale(1)
    }

.shade {
    z-index: 1
}

.slider-controls {
    position: absolute;
    z-index: 4;
    right: 5%;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 9px
}

.slider-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ffffff66;
    background: #17211966;
    color: #fff;
    cursor: pointer
}

    .slider-arrow:hover {
        background: var(--orange);
        border-color: var(--orange)
    }

.slider-dots {
    display: flex;
    gap: 7px;
    margin: 0 4px
}

.slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 9px;
    background: #ffffff88;
    cursor: pointer;
    transition: .25s
}

    .slider-dot.active {
        width: 25px;
        background: var(--orange)
    }

@media(max-width:850px) {
    .slider-controls {
        right: auto;
        left: 5%;
        bottom: 350px
    }
}
/* Mobile app-style layout */
.mobile-only {
    display: none
}

@media(max-width:560px) {
    body {
        background: #fff;
        padding-bottom: 82px
    }

    .header {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 88px;
        background: transparent;
        padding: 0 24px;
        z-index: 20
    }

        .header .logo {
            position: absolute;
            right: 50%;
            transform: translateX(50%);
            font-size: 30px;
            color: #fff
        }

            .header .logo i {
                color: var(--green)
            }

            .header .logo b {
                color: var(--orange)
            }

        .header nav, .header .login, .header .add {
            display: none
        }

        .header .actions {
            width: 100%;
            justify-content: space-between;
            direction: ltr
        }

        .header .menu {
            display: grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border-radius: 50%;
            background: #fff;
            color: #263025;
            box-shadow: 0 5px 20px #0002;
            font-size: 0
        }

            .header .menu:after {
                content: '☰';
                font-size: 24px
            }

    .mobile-bell {
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        border-radius: 50%;
        background: #fff;
        color: #263025;
        box-shadow: 0 5px 20px #0002;
        font-size: 21px
    }

    .hero {
        min-height: 465px;
        border-radius: 0 0 34px 34px
    }

    .hero-content {
        padding-top: 123px;
        width: 86%;
        text-align: right
    }

    .eyebrow, .hero-buttons, .trust {
        display: none
    }

    .hero h1 {
        font-size: 39px;
        line-height: 1.42;
        margin: 0 0 12px;
        text-shadow: 0 3px 9px #0008
    }

        .hero h1 br {
            display: none
        }

        .hero h1:before {
            content: 'سفر کن،\A تجربه کن،\A';
            white-space: pre
        }

    .hero h1 {
        font-size: 0
    }

        .hero h1:before, .hero h1 em {
            font-size: 39px
        }

        .hero h1 em {
            display: block
        }

            .hero h1 em:after {
                content: ' نه فقط دیدن!';
                color: #fff
            }

    .hero .lead {
        font-size: 12px;
        line-height: 1.9;
        max-width: 310px;
        margin: 0
    }

    .business, .slider-controls {
        display: none
    }

    .mobile-search {
        display: flex;
        position: absolute;
        z-index: 6;
        right: 6%;
        left: 6%;
        bottom: -37px;
        height: 74px;
        background: #fff;
        border-radius: 18px;
        align-items: center;
        padding: 10px 12px;
        gap: 10px;
        box-shadow: 0 12px 30px #28322222
    }

        .mobile-search .filter {
            width: 48px;
            height: 48px;
            border: 1px solid #ddd;
            border-radius: 12px;
            background: #fff;
            color: var(--orange);
            font-size: 22px
        }

        .mobile-search input {
            min-width: 0;
            flex: 1;
            border: 0;
            outline: 0;
            font-size: 11px;
            color: #777
        }

        .mobile-search .search-btn {
            width: 50px;
            height: 50px;
            border: 0;
            border-radius: 12px;
            background: var(--green);
            color: #fff;
            font-size: 22px
        }

    .services {
        position: relative;
        margin-top: 0;
        padding: 70px 5% 30px;
        width: 100%;
        border-radius: 34px 34px 0 0
    }

        .services .heading {
            display: none
        }

        .services .grid {
            display: grid;
            grid-template-columns: repeat(5,1fr);
            gap: 7px
        }

    .service {
        display: flex;
        min-width: 0;
        min-height: 95px;
        padding: 0;
        border: 0;
        box-shadow: none;
        flex-direction: column;
        justify-content: flex-start;
        gap: 7px;
        text-align: center;
        background: transparent
    }

        .service:hover {
            transform: none;
            box-shadow: none
        }

        .service:nth-child(6) {
            display: none
        }

        .service .icon {
            width: 52px;
            height: 52px;
            border-radius: 15px;
            font-size: 23px
        }

        .service div {
            width: 100%
        }

        .service h3 {
            font-size: 10px;
            line-height: 1.35;
            margin: 0;
            white-space: nowrap
        }

        .service p, .service > b {
            display: none
        }

    .mobile-tour-banner {
        display: block;
        margin: 0 4% 36px;
        height: 205px;
        border-radius: 26px;
        overflow: hidden;
        position: relative;
        background: url('https://images.unsplash.com/photo-1551632811-561732d1e306?q=80&w=1200&auto=format&fit=crop') center/cover;
        color: #fff
    }

        .mobile-tour-banner:after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg,transparent,#26321fd9)
        }

        .mobile-tour-banner > div {
            position: relative;
            z-index: 2;
            padding: 38px 28px
        }

        .mobile-tour-banner h2 {
            font-size: 20px;
            margin: 0 0 11px
        }

        .mobile-tour-banner p {
            font-size: 12px;
            margin-bottom: 25px
        }

        .mobile-tour-banner a {
            background: var(--orange);
            padding: 11px 18px;
            border-radius: 9px;
            font-size: 11px;
            font-weight: 800
        }

    .featured {
        padding: 0 0 38px;
        background: #fff
    }

        .featured > .section {
            width: 100%
        }

        .featured .heading {
            color: var(--ink);
            padding: 0 5%;
            margin-bottom: 20px
        }

            .featured .heading p {
                display: none
            }

            .featured .heading h2 {
                font-size: 21px
            }

                .featured .heading h2 em {
                    color: var(--ink)
                }

                .featured .heading h2:before {
                    content: '';
                    display: inline-block;
                    width: 4px;
                    height: 31px;
                    background: var(--orange);
                    border-radius: 5px;
                    margin-left: 9px;
                    vertical-align: middle
                }

    .cards {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 0 5% 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none
    }

        .cards::-webkit-scrollbar {
            display: none
        }

    .card {
        display: block !important;
        min-width: 57%;
        scroll-snap-align: start;
        border: 1px solid #eee;
        box-shadow: 0 7px 18px #0000000d
    }

    .photo {
        height: 155px
    }

    .body {
        padding: 12px
    }

        .body h3 {
            font-size: 13px;
            margin: 8px 0
        }

        .body p {
            font-size: 9px;
            padding-bottom: 10px
        }

    .price b {
        font-size: 11px
    }

    .tag {
        font-size: 8px;
        padding: 5px 7px
    }

    .heart {
        width: 30px;
        height: 30px;
        font-size: 18px
    }

    .why, footer {
        display: none
    }

    .mobile-bottom {
        display: grid;
        position: fixed;
        z-index: 50;
        bottom: 0;
        right: 3%;
        left: 3%;
        height: 72px;
        background: #fff;
        border-radius: 24px 24px 0 0;
        box-shadow: 0 -5px 25px #2222;
        grid-template-columns: repeat(5,1fr);
        align-items: center
    }

        .mobile-bottom a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            font-size: 9px;
            color: #70756f
        }

        .mobile-bottom i {
            font-style: normal;
            font-size: 21px
        }

        .mobile-bottom .home {
            color: var(--orange)
        }

        .mobile-bottom .plus {
            width: 58px;
            height: 58px;
            margin-top: -30px;
            border-radius: 50%;
            background: var(--orange);
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 34px;
            border: 5px solid #fff;
            box-shadow: 0 5px 14px #ef7f2d55
        }
}

.mobile-hero-title {
    display: none
}

@media(min-width:561px) {
    .hero {
        min-height: 600px
    }

    .hero-content {
        padding-top: 72px
    }

    .business {
        bottom: 34px
    }

    .trust {
        margin-top: 28px
    }
}

@media(max-width:560px) {
    .hero h1 {
        display: none
    }

    .mobile-hero-title {
        display: block;
        font-size: 39px;
        line-height: 1.45;
        margin: 0 0 12px;
        font-weight: 900;
        letter-spacing: -2px;
        text-shadow: 0 3px 9px #0008
    }

        .mobile-hero-title em {
            display: block;
            color: var(--orange);
            font-style: normal
        }

        .mobile-hero-title strong {
            display: block;
            color: #fff
        }

    .mobile-bottom {
        display: grid !important;
        position: fixed !important;
        top: auto !important;
        right: 3% !important;
        left: 3% !important;
        bottom: 0 !important;
        height: 72px !important;
        padding: 0 !important;
        flex-direction: initial !important;
        gap: 0 !important;
        background: #fff !important
    }

        .mobile-bottom a {
            display: flex !important
        }

        .mobile-bottom .plus {
            display: grid !important
        }

    .hero {
        overflow: visible !important;
        margin-bottom: 42px
    }

    .hero-slides {
        overflow: hidden;
        border-radius: 0 0 34px 34px
    }

    .hero .shade {
        border-radius: 0 0 34px 34px;
        pointer-events: none
    }

    .mobile-search {
        bottom: -42px !important;
        height: 84px !important;
        padding: 10px 12px 10px 15px !important;
        gap: 10px !important;
        overflow: visible !important
    }

        .mobile-search .filter {
            display: grid;
            place-items: center;
            flex: 0 0 50px !important;
            width: 50px !important;
            height: 50px !important;
            background: #fff3e9 !important;
            border: 1px solid #f4d7c1 !important;
            color: var(--orange) !important;
            font-size: 25px !important;
            border-radius: 13px
        }

        .mobile-search .business-mobile-text {
            min-width: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 4px
        }

            .mobile-search .business-mobile-text strong {
                font-size: 11px;
                color: var(--ink);
                white-space: nowrap
            }

            .mobile-search .business-mobile-text small {
                font-size: 8px;
                color: var(--muted);
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis
            }

        .mobile-search .search-btn {
            flex: 0 0 auto !important;
            width: auto !important;
            height: 48px !important;
            padding: 0 11px !important;
            background: var(--green) !important;
            font-size: 9px !important;
            font-weight: 800 !important;
            white-space: nowrap
        }

    .services {
        padding-top: 42px !important
    }
}

@media(max-width:560px) {
    .header {
        height: 76px
    }

        .header .menu, .mobile-bell {
            width: 44px;
            height: 44px
        }

    .hero {
        min-height: 390px !important;
        margin-bottom: 126px !important
    }

    .hero-content {
        padding-top: 96px !important
    }

    .mobile-hero-title {
        font-size: 34px !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important
    }

    .hero .lead {
        font-size: 10px !important;
        line-height: 1.75 !important;
        max-width: 290px !important
    }

    .mobile-search {
        display: flex;
        position: absolute;
        z-index: 7;
        right: 6%;
        left: 6%;
        bottom: -34px !important;
        height: 64px !important;
        background: #fff;
        border-radius: 17px;
        align-items: center;
        padding: 8px 10px !important;
        gap: 8px !important;
        box-shadow: 0 10px 24px #28322228
    }

        .mobile-search .search-filter {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
            border: 1px solid #eadfd5;
            border-radius: 11px;
            background: #fff;
            color: var(--orange);
            font-size: 19px
        }

        .mobile-search input {
            min-width: 0;
            flex: 1;
            border: 0;
            outline: 0;
            font-size: 9px;
            color: #666
        }

        .mobile-search .search-submit {
            display: grid;
            place-items: center;
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
            border: 0;
            border-radius: 11px;
            background: var(--green);
            color: #fff;
            font-size: 19px
        }

    .mobile-business {
        display: flex;
        position: absolute;
        z-index: 6;
        right: 6%;
        left: 6%;
        bottom: -112px;
        height: 68px;
        background: #fff;
        border-radius: 17px;
        align-items: center;
        padding: 9px 11px;
        gap: 9px;
        box-shadow: 0 10px 24px #28322220
    }

        .mobile-business .filter {
            display: grid;
            place-items: center;
            flex: 0 0 44px;
            width: 44px;
            height: 44px;
            background: #fff3e9;
            border: 1px solid #f4d7c1;
            color: var(--orange);
            font-size: 23px;
            border-radius: 11px
        }

        .mobile-business .business-mobile-text {
            min-width: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px
        }

            .mobile-business .business-mobile-text strong {
                font-size: 10px;
                color: var(--ink);
                white-space: nowrap
            }

            .mobile-business .business-mobile-text small {
                font-size: 7px;
                color: var(--muted);
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis
            }

        .mobile-business .business-add {
            flex: 0 0 auto;
            height: 42px;
            padding: 0 10px;
            border: 0;
            border-radius: 10px;
            background: var(--orange);
            color: #fff;
            font-size: 8px;
            font-weight: 800;
            white-space: nowrap
        }

    .services {
        padding-top: 24px !important
    }
}

/* Compact services grid (when some sections are disabled via Features in appsettings) */
.grid.grid-compact {
    grid-template-columns: repeat(4,1fr);
}

@media(max-width:850px) {
    .grid.grid-compact {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:560px) {
    .services .grid.grid-compact {
        grid-template-columns: repeat(4,1fr);
    }
}