﻿header {
    width: 100%;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #f6f6f633;
    backdrop-filter: blur(8px);
}

    header .container {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    header nav {
        display: flex;
        align-items: center;
        gap: 50px;
    }

        header nav .item {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text700);
            display: inline-flex;
        }

        header nav img {
            width: 88px;
        }

    header .buttons {
        display: flex;
        align-items: center;
        margin-right: auto;
        gap: 24px;
    }

    header .mobile {
        display: none;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

        header .mobile .logo {
            width: 65px;
        }

        header .mobile .menu {
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            width: 40px;
            height: 40px;
            outline: 1px solid var(--boarder);
            border-radius: 8px;
        }

            header .mobile .menu img {
                width: 22px;
            }


aside {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99;
    width: 250px;
    height: 100%;
    background-color: #fff;
    padding: 5px;
    border-radius: 14px 0 0 14px;
    flex-direction: column;
    display: none;
}

   

    aside .head {
        display: flex;
        background: linear-gradient(-90deg, var(--primary), rgba(34, 146, 161, 0.5));
        border-radius: 14px;
        height: 65px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 16px;
        margin-bottom: 30px;
    }

        aside .head .logo {
            width: 50px;
        }

        aside .head .close {
            width: 24px;
            cursor: pointer;
        }

    aside .menu {
        display: flex;
        flex-direction: column;
        padding: 0 16px;
    }

        aside .menu .item {
            display: flex;
            align-content: center;
            gap: 12px;
            padding: 9px 8px;
            border-radius: 14px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text700);
        }

            aside .menu .item:hover {
                background-color: #2292a114;
            }

            aside .menu .item.active {
                color: var(--primary);
            }

    aside .buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 25px;
        margin-top: auto;
    }

.menuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    width: 100%;
    height: 100%;
    background-color: rgba(58, 65, 65, 0.21);
    display: none;
}


.hero {
    background-image: url(/assets/image-6.jpg);
    width: 100%;
    aspect-ratio: 2 / 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -85px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text900);
        margin-bottom: 8px;
    }

    .hero h3 {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--text700);
        width: 500px;
        text-align: justify;
        margin-bottom: 8px;
    }

    .hero h4 {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text700);
        width: 500px;
        text-align: justify;
        margin: 0;
    }

    .hero::after {
        content: '';
        width: 100%;
        height: 140px;
        position: absolute;
        left: 0;
        bottom: 0;
        background-image: url('/assets/icons/moj 1.svg');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
    }

.secMobileSignUp {
    display: none;
    gap: 20px;
}

    .secMobileSignUp .btn {
        width: 100%;
        padding: 8px 20px;
    }

        .secMobileSignUp .btn.primary {
            background-color: transparent;
            background-image: url(/assets/icons/button_bg.svg), linear-gradient(0deg, rgba(34, 141, 156, 0.6343), rgba(33, 128, 140, 0.7619));
        }

        .secMobileSignUp .btn.outline {
            background-color: #E7F3F7;
            outline: 1.5px solid var(--boarder);
            color: var(--text700);
        }

.secIntro {
    margin-top: 100px;
    display: flex;
    gap: 80px;
}

    .secIntro .image {
        width: 800px;
        max-width: 50%;
        position: relative;
        box-shadow: 0px 1px 5px 0 rgba(34, 49, 51, 0.25);
        border-radius: 30px;
        display: flex;
    }

        .secIntro .image:before {
            content: '';
            display: block;
            position: absolute;
            background-color: var(--bg2);
            left: 0px;
            width: 100%;
            height: 100%;
            z-index: -1;
            transform: rotate(10deg);
            border-radius: 30px;
        }

        .secIntro .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
        }

    .secIntro .info {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

        .secIntro .info .icon {
            background-color: rgba(34, 146, 161, 0.21);
            border: 1.5px solid var(--primary);
            width: 60px;
            aspect-ratio: 1 / 1;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .secIntro .info .title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text900);
            position: relative;
        }

            .secIntro .info .title:before {
                content: '';
                display: inline-block;
                width: 65px;
                height: 17px;
                position: absolute;
                background-color: rgba(34, 146, 161, 0.21);
                border-radius: 5px;
                position: absolute;
                right: -5px;
                bottom: 0;
            }

        .secIntro .info .description {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text700);
        }

        .secIntro .info .options {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text900);
        }

            .secIntro .info .options .item {
                display: flex;
                align-items: center;
                gap: 10px;
            }

                .secIntro .info .options .item:before {
                    content: '';
                    display: inline-block;
                    background-image: url(/assets/icons/tick-02.svg);
                    width: 24px;
                    min-width: 24px;
                    height: 24px;
                }


.secAmar {
    margin-top: 100px;
    display: flex;
    background-color: #fff;
    box-shadow: 0 2px 7px 0 rgba(227, 227, 227, 0.8);
    border: 1.5px solid #EAEAEA;
    padding: 32px;
    border-radius: 14px;
    display: flex;
    align-items: center;
}

    .secAmar .item {
        width: 25%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

        .secAmar .item .number {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--text700);
        }

        .secAmar .item .plus {
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--primary);
        }

        .secAmar .item .text {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text700);
        }

.secOptions {
    margin-top: 100px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

    .secOptions .info {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 180px;
    }

        .secOptions .info .titr {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

            .secOptions .info .titr .icon {
                background-color: rgba(34, 146, 161, 0.21);
                border: 1.5px solid var(--primary);
                width: 48px;
                aspect-ratio: 1 / 1;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .secOptions .info .titr .title {
                font-size: 1.5rem;
                font-weight: 700;
                color: var(--text900);
                position: relative;
            }

        .secOptions .info .item {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text700);
            display: flex;
            align-items: center;
            gap: 8px;
        }

            .secOptions .info .item:before {
                content: '';
                display: inline-block;
                width: 28px;
                min-width: 28px;
                height: 28px;
                background-image: url(/assets/icons/tick-02.svg);
                background-position: center;
                background-size: 100%;
            }

    .secOptions .cards {
        display: flex;
        gap: 40px;
        width: calc(100% - 180px);
    }

        .secOptions .cards .card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            width: 50%;
            padding: 16px;
            background-color: #fff;
            border-radius: 24px;
            border: 1.5px solid #EAEAEA;
            box-shadow: 0 2px 7px 0 rgba(227, 227, 227, 0.8);
        }

            .secOptions .cards .card .image {
                width: 100%;
                aspect-ratio: 16/9;
                object-fit: cover;
                border-radius: 16px;
            }

            .secOptions .cards .card .text {
                font-size: 1rem;
                font-weight: 500;
                color: var(--text700);
                display: flex;
                align-items: center;
                gap: 8px;
            }

                .secOptions .cards .card .text img {
                    width: 24px;
                    height: 24px;
                    object-fit: cover;
                }

.secSuite {
    margin-top: 100px;
    position: relative;
}

    .secSuite .titr {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 70px;
    }

        .secSuite .titr .icon {
            background-color: rgba(34, 146, 161, 0.21);
            border: 1.5px solid var(--primary);
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .secSuite .titr .title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text900);
            position: relative;
        }

    .secSuite .bgcolor1 {
        position: absolute;
        width: 70%;
        height: 100%;
        background-color: rgba(34, 146, 161, 0.06);
        filter: blur(85px);
        z-index: -1;
        top: 50%;
        left: 10px;
        transform: translate(0, -50%);
        border-radius: 60% 60% 70% 80%;
    }

    .secSuite .bgcolor2 {
        position: absolute;
        width: 70%;
        height: 100%;
        background-color: rgba(250, 235, 162, 0.2);
        filter: blur(85px);
        z-index: -1;
        top: 50%;
        right: 10px;
        transform: translate(0, -50%);
        border-radius: 100% 100% 90% 150%;
    }


    .secSuite .slider-wrapper {
        position: relative;
    }

    .secSuite .swiper {
        width: 100%;
    }

    .secSuite .swiper-slide {
        width: 800px;
        max-width: 80%;
        aspect-ratio: 800 / 430;
        border-radius: 40px;
        overflow: hidden;
    }

        .secSuite .swiper-slide:not(.swiper-slide-active) {
            position: relative;
        }

            .secSuite .swiper-slide:not(.swiper-slide-active):after {
                content: '';
                display: block;
                top: 0;
                right: 0;
                width: 100%;
                height: 100%;
                position: absolute;
                background-image: linear-gradient(270deg, #ffffff69, transparent, #ffffff69);
            }


        .secSuite .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .secSuite .swiper-slide .text {
            display: none;
        }

    /* استایل‌های کارت متن */
    .secSuite .text-card-container {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    .secSuite .text-card {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 800px;
        max-width: 80%;
        min-height: 100px;
        background: rgba(255, 255, 255, 0.5);
        box-shadow: 0 2px 7px 0 rgba(208, 197, 197, 0.25);
        padding: 20px;
        border-radius: 24px;
        color: var(--text700);
        font-size: 1rem;
        font-weight: 500;
        text-align: center;
        backdrop-filter: blur(3px);
        transition: opacity 0.4s ease-in-out;
        opacity: 1;
    }

        .secSuite .text-card.fade-out {
            opacity: 0;
        }

    /* استایل نقطه‌های پایین اسلایدر (Pagination) */
    .secSuite .swiper-pagination {
        position: relative !important;
        margin-top: 30px;
    }

    .secSuite .swiper-pagination-bullet {
        background: #ccc;
        opacity: 1;
        width: 10px;
        height: 10px;
        margin: 0 6px !important;
    }

    .secSuite .swiper-pagination-bullet-active {
        background: var(--primary); /* رنگ آبی فیروزه‌ای مشابه تصویر */
        transform: scale(1.3);
        transition: transform 0.3s;
    }



.secReserve {
    margin-top: 70px;
    padding: 100px 20px;
    background-color: var(--primary);
    background-image: url('/assets/icons/pattern 1.svg');
    background-size: 80px;
}

    .secReserve .card {
        display: flex;
        border-radius: 30px;
        overflow: hidden;
    }

        .secReserve .card .head {
            display: flex;
            flex-direction: column;
            background-color: rgba(0, 55, 61, 0.4);
            backdrop-filter: blur(2px);
            color: #fff;
            padding: 40px;
            gap: 16px;
            width: 40%;
            min-width: 350px;
        }

            .secReserve .card .head .title {
                font-size: 1.5rem;
                font-weight: 700;
            }

            .secReserve .card .head .description {
                font-size: 1rem;
                font-weight: 500;
            }

            .secReserve .card .head .about {
                display: flex;
                flex-direction: column;
                gap: 16px;
                margin-top: 44px;
            }

                .secReserve .card .head .about .item {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                }

                    .secReserve .card .head .about .item .icon {
                        display: flex;
                        background-color: #629DA5;
                        padding: 7px;
                        border-radius: 50%;
                    }

                    .secReserve .card .head .about .item .content {
                        display: flex;
                        flex-direction: column;
                    }

                        .secReserve .card .head .about .item .content .label {
                            font-size: 0.75rem;
                            font-weight: 500;
                            color: #EFEFEF;
                        }

                        .secReserve .card .head .about .item .content .text {
                            font-size: 1rem;
                            font-weight: 500;
                        }

            .secReserve .card .head .reserveLink {
                display: none;
            }

        .secReserve .card .body {
            display: flex;
            flex-direction: column;
            background-color: #fff;
            width: 60%;
            padding: 40px;
            justify-content: center;
        }

            .secReserve .card .body .inpt {
                text-align: center;
                background-image: url('/assets/icons/vuesax_outline_calendar.svg');
                background-repeat: no-repeat;
                background-position: calc(100% - 12px) center;
            }

                .secReserve .card .body .inpt[name="Count"] {
                    background-image: url('/assets/icons/Hicon _ Linear _ Profile 2.svg');
                }






footer {
    background-color: #1C1F24;
    padding: 40px 0;
}

    footer .container {
        display: flex;
        gap: 100px;
    }

    footer .about {
        margin-left: auto;
    }

        footer .about .logo {
            width: 85px;
            margin-bottom: 40px;
        }

        footer .about .item {
            display: flex;
            gap: 10px;
            margin-bottom: 16px;
        }

            footer .about .item .icon {
                width: 24px;
                height: 24px;
            }

                footer .about .item .icon img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            footer .about .item .value .text {
                color: #fff;
                font-size: 1rem;
                font-weight: 500;
                direction: ltr;
            }

            footer .about .item .value .description {
                color: #fff9;
                font-size: 0.8rem;
            }

    footer .links {
        display: flex;
        flex-direction: column;
    }

        footer .links .title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        footer .links .secItems {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

            footer .links .secItems .item {
                display: flex;
                align-items: center;
                gap: 8px;
                color: #fffb;
                font-size: 1rem;
            }

                footer .links .secItems .item img {
                    width: 24px;
                    height: 24px;
                    object-fit: cover;
                }






@media (max-width: 1200px) {
    header nav {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    header {
        background-color: #fff;
    }

        header nav {
            display: none;
        }

        header .buttons {
            display: none;
        }

        header .mobile {
            display: flex;
        }

    .hero {
        aspect-ratio: 1 / 1.4;
        background-position: 18%;
        margin-bottom: 360px;
        position: relative;
    }

        .hero::after {
            background-image: url('/assets/icons/moj 2.svg');
        }

        .hero .container {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translate(-50%, 0);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .hero h1,
        .hero h3,
        .hero h4 {
            overflow: hidden;
            max-width: 100%;
            text-align: center;
        }

        .hero h1 {
            display: flex;
            flex-direction: column;
            font-size: 2rem;
            align-items: flex-start;
            margin: auto;
        }

            .hero h1 span {
                font-size: 4rem;
            }

        .hero span {
            color: var(--primary);
        }

    .secMobileSignUp {
        display: flex;
    }

    .secIntro {
        flex-direction: column-reverse;
        gap: 40px;
    }

        .secIntro .info {
            display: flex;
            flex-direction: row;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
        }

            .secIntro .info .icon {
                width: 44px;
                padding: 6px;
            }

                .secIntro .info .icon img {
                    width: 100%;
                }

            .secIntro .info .title {
                font-size: 1.25rem;
            }

                .secIntro .info .title:before {
                    content: none;
                }

            .secIntro .info .options {
                margin-top: 2px;
            }

        .secIntro .image {
            max-width: 80%;
            margin: auto;
        }

    .secAmar {
        background-color: transparent;
        box-shadow: none;
        border: none;
        flex-wrap: wrap;
        align-items: normal;
        gap: 18px;
        padding: 0;
    }

        .secAmar .item {
            width: calc(50% - 9px);
            flex-direction: column;
            background-color: rgba(134, 195, 204, 0.15);
            outline: 1.5px solid rgba(87, 99, 101, 0.18);
            border-radius: 12px;
            padding: 14px;
        }

            .secAmar .item img {
                width: 24px;
            }

    .secOptions {
        flex-direction: column;
    }

        .secOptions .info .titr .icon {
            width: 44px;
        }

        .secOptions .info .titr .title {
            font-size: 1.25rem;
        }

        .secOptions .cards {
            width: 100%;
        }

            .secOptions .cards .card {
                width: 100%;
            }

    .secReserve .card .head {
        min-width: 100%;
        padding: 25px
    }

        .secReserve .card .head .title {
            text-align: center;
            font-size: 1.25rem;
        }

        .secReserve .card .head .about {
            margin-top: 8px;
        }

        .secReserve .card .head .reserveLink {
            display: flex;
            margin-top: 8px;
            font-size: 1rem;
        }

    .secReserve .card .body {
        display: none;
    }


    footer .container {
        flex-direction: column;
        gap: 38px;
        padding: 0 20px;
    }

    footer .about {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        margin-bottom: 38px;
    }

        footer .about:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            left: 0;
            bottom: -38px;
            background: linear-gradient(90deg, #1C1F24, #eee, #1C1F24);
        }

        footer .about .logo {
            width: 120px;
        }

        footer .about .item {
            width: 100%;
        }
}
