:root {
    --font-primary: "Poppins", serif;
    --color-accent-1: #ed3a43;
    --color-accent-2: #b83003;
    --color-accent-3: #f36e42;


    /* font-size */
    /* min 1400, max 4000 */
    --fs-title-5xl: clamp(3.5rem, -2.3333rem + 6.6667vw, 6rem);
    --fs-title-4xl: clamp(2.5rem, 2.2rem + 1.5vw, 4rem);
    --fs-title-3xl: clamp(2rem, 1.8rem + 1vw, 3rem);
    --fs-title-2xl: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    --fs-title-xl: clamp(1.25rem, 0.6667rem + 0.6667vw, 1.5rem);
    --fs-title-medium: clamp(1rem, 0.9327rem + 0.0769vw, 1.25rem);
    --fs-sm: clamp(0.875rem, 0.8571rem + 0.0952vw, 1rem);

    --color-muted: #3f3f46;
}


.btn-call a {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background-color: var(--color-accent-1);
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: 600;
    margin-right: 2rem;
}

.btn-call a:hover {
    background-color: var(--color-accent-1);
    color: #fff;
}

.btn-call a.wa_btn {
    background-color: green;
    color: #fff;
}

header {
    padding: 0.75rem 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: auto;
    z-index: 3;
}

header .wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 1rem;
    padding: 0.5rem 1rem;
}


header .logo img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

header .wrapper .desktop-nav {
    display: none;
}

@media screen and (min-width:992px) {
    header .wrapper .desktop-nav {
        display: block;
        margin-left: auto;
        margin-right: 2rem;
    }

    header .wrapper .desktop-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 1rem;
    }

    header .wrapper .desktop-nav a {
        display: inline-block;
        text-decoration: none;
        color: #000;
        padding: 0.25rem 0.75rem;
    }
}

header .wrapper .btn-call {
    display: none;
}

@media screen and (min-width:992px) {
    header .wrapper .btn-call {
        display: block;
    }
}

header .wrapper .btn-call a {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background-color: var(--color-accent-1);
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: 600;
}

header .mobileNavToggler {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

@media screen and (min-width:992px) {
    header .mobileNavToggler {
        display: none;
    }
}




.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    overflow-y: auto;
    /* important */
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 999;
    padding: 1rem;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 5rem;
}

.mobile-menu ul li {
    margin: 1rem 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    background: none;
    border: none;
}

body.menu-open {
    overflow: hidden;
}



.home-hero .swiper-slide {
    width: 100%;
}

.home-hero .swiper-slide img {
    width: 100%;
    height: auto;
    object-position: center center;
}

.home-hero .swiper-button-prev,
.home-hero .swiper-button-next {
    opacity: 0;
}


.home-faq {
    padding: 3rem 0;

    .wrapper {
        display: grid;
        gap: 3rem;

        @media screen and (min-width:992px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .accordion-button[aria-expanded="true"] {
            background-color: var(--color-accent-1);
            color: #fff;
        }

        .accordion-button[aria-expanded="true"]::after {
            color: #fff;
            filter: invert(1);
        }
    }
}

.home-contact {
    padding: 3rem 0;

    .wrapper {
        display: grid;
        gap: 3rem;

        @media screen and (min-width:992px) {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .details-wrapper {
            .title {
                font-size: var(--fs-title-3xl);
                font-weight: 700;
                margin-bottom: 0.5em;
                line-height: 1.2;
            }

            .desc {
                font-size: 0.9rem;
                font-weight: 500;
                color: var(--color-muted);
                margin-bottom: 2rem;
            }

            .subtitle {
                font-weight: 500;
                line-height: 1.2;
                margin-bottom: 0.5em;
                font-size: var(--fs-title-xl);
            }

            p.address {
                margin-bottom: 2rem;
                line-height: 1.5;
                color: var(--color-muted);
            }

            .info {
                display: grid;
                grid-template-columns: max-content 1fr;
                gap: 1rem;

                i {
                    font-size: 16px;
                    color: var(--color-accent-1);
                }

                a {
                    color: #000;
                    text-decoration: none;
                    transition: color 300ms ease;
                }

                a:hover {
                    color: var(--color-accent-1);
                }
            }
        }

        .map-wrapper {
            .map {
                width: 100%;
                aspect-ratio: 16/9;
                border-radius: 0.5rem;
                overflow: hidden;
            }

            iframe {
                width: 100%;
                height: 100%;
            }
        }
    }
}


.home-gallery {
    padding: 3rem 0;
}

.home-gallery .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.home-gallery .swiper-wrapper {
    padding-bottom: 5rem;
}

.home-gallery .swiper-slide {
    width: 100%;
    aspect-ratio: 5/5;
}

.home-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.swiper .swiper-pagination-bullet-active {
    background-color: var(--color-accent-1);
}

.swiper-button-prev,
.swiper-button-next {
    background-color: rgba(255, 255, 255, 0.2);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    color: #000;
    font-size: 14px;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
    color: var(--color-accent-1);
}

.home-testimonials {
    .title {
        font-size: var(--fs-title-3xl);
        font-weight: 500;
    }

    .swiper-wrapper {
        padding-bottom: 4rem;
    }

    .swiper-slide {
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
        border-radius: 0.5rem;
        overflow: hidden;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        position: relative;
        overflow: hidden;

        .icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: 0;
            transform: translate(50%, -50%);
            width: 8rem;

            aspect-ratio: 1/1;
            top: 0;
            background-color: var(--color-accent-1);
            border-radius: 50%;

            img {
                height: 2rem;
                transform: translate(-1.5rem, 1.5rem);
                width: auto;
                filter: saturate(0) brightness(1000);
            }
        }

        .photo-wrapper {
            display: none;
            margin-top: 2rem;
            width: 4rem;
            aspect-ratio: 1/1;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 2rem;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        p.name {
            margin-bottom: 0.5em;
            font-weight: 600;
            font-size: var(--fs-title-medium);
        }

        .stars {
            letter-spacing: 2px;
        }

        .desc {
            columns: var(--color-muted);
            font-size: var(--fs-sm);
            margin-bottom: 0;
        }
    }
}

.home_services {
    .section_title {
        text-align: center;
        font-weight: 700;
        color: var(--color-accent-1);
        font-size: var(--fs-title-2xl);

        @media screen and (min-width:992px) {
            font-size: var(--fs-title-3xl);
        }

    }

    .wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        @media screen and (min-width:576px) {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        @media screen and (min-width:992px) {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        @media screen and (min-width:1200px) {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        .item {
            display: flex;
            flex-direction: column;
            align-items: center;

            .img_wrapper {
                overflow: hidden;
                border-radius: 50%;
                width: 50%;
                max-width: 9rem;
                height: auto;
                aspect-ratio: 1/1;
                margin-bottom: 0.5rem;
                box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
                border: 0.5rem solid #fff;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            }

            .service {
                font-size: 1.1rem;
                font-weight: 700;
                margin-bottom: 0.5em;
            }

            ul {
                list-style: none;
                margin: 0;
                padding: 0;

                li {
                    padding-left: 1rem;
                    position: relative;
                }

                li::before {
                    content: "";
                    position: absolute;
                    left: 0rem;
                    top: 0.8em;
                    transform: translateY(-50%);
                    width: 0.5rem;
                    height: 0.5rem;
                    background-color: var(--color-accent-1);
                    border-radius: 50%;
                }
            }
        }
    }

}

section.about_3 {
    padding: 3rem 0;

    .wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;

        @media screen and (min-width:992px) {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    .text_wrapper {
        background-color: rgb(255, 218, 224);
        padding: 1.5rem;
        border-radius: 1rem;

        .subtitle {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 0.5em;
            line-height: 1.2;
            color: var(--color-accent-1);
        }

        .title {
            font-size: var(--fs-title-2xl);
            line-height: 1.2;
            margin-bottom: 0.5em;

            @media screen and (min-width:992px) {
                font-size: var(--fs-title-3xl);
            }
        }

        .desc {
            line-height: 1.5;
            color: #333;
        }

        ul {
            list-style: none;
            margin: 0;
            padding: 0;

            @media screen and (min-width:576px) {
                columns: 2;
                column-gap: 2rem;
            }

            li {
                position: relative;
                padding-left: 1rem
            }

            li::before {
                content: "";
                position: absolute;
                left: 0rem;
                top: 0.8em;
                transform: translateY(-50%);
                width: 0.5rem;
                height: 0.5rem;
                background-color: var(--color-accent-1);
                border-radius: 50%;
            }
        }
    }

    .media_wrapper {
        display: grid;
        gap: 1rem;

        @media screen and (min-width:576px) {
            display: flex;
            /* display: grid;
            grid-template-columns: 1fr 1fr; */
            gap: 2rem;
        }

        .right {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .img_wrapper {
            border-radius: 1rem;
            overflow: hidden;
            height: 100%;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .stat {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
            background-color: #000;
            padding: 1rem 2rem;
            color: #fff;
            border-radius: 1rem;

            .digit {
                font-size: var(--fs-title-3xl);
                font-weight: 700;
                line-height: 1;
            }

            .text {
                font-size: 1.1rem;
                font-weight: 400;
                line-height: 1;
            }
        }

    }
}