@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jaldi:wght@400;700&display=swap');
/* @font-face {
    font-family: 'Jaldi';
    src: url('../fonts/Jaldi-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
} */

:root {
    --font-jaldi: 'Jaldi', sans-serif;
    --font-ibarra: 'Ibarra Real Nova', serif;
}

body {
    font-family: 'Jaldi', sans-serif !important;
    /*     margin-top: 127px !important; */
    overflow-x: hidden;

}

p {
    font-family: 'Jaldi', sans-serif;
    color: #9C8458;
}

.menu a {
    font-family: 'Jaldi', sans-serif;
}

button {
    font-family: 'Jaldi', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ibarra Real Nova', serif;
}


body {
    font-family: 'Jaldi', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4ebe3;
}

.site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f4ebe3;
    z-index: 9999;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
}

/* .site-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.close-menu {
    display: block;
}


@media (min-width: 992px) {
    .close-menu {
        display: none !important;
    }
}

.logo img {
    max-height: 129px;
}

@media (max-width: 992px) {
    .logo img {
        width: 73px !important;
        height: 73px !important;
        object-fit: contain;
    }
}

.main-menu {
    display: flex;
}

.main-menu .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .menu li {
    margin-left: 25px;
}

.main-menu .menu li a {
    font-family: 'Jaldi', sans-serif;
    font-size: 20px;
    text-decoration: none;
    color: #581819;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-menu .menu li a:hover {
    color: #333333;
}

@media (min-width: 992px) {
    .main-menu .menu li {
        margin-left: 63px;
    }

    .main-menu .menu li:first-child {
        margin-left: 0;
    }
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #581819;
    border-radius: 2px;
}


@media (max-width: 991px) {
    .main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 250px;
        background-color: #f4ebe3;
        flex-direction: column;
        align-items: start;
        padding: 80px 20px;
        transition: right 0.3s ease;
    }

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

    .main-menu .menu {
        flex-direction: column;
        width: 100%;
    }

    .main-menu .menu li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .main-menu .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 45px;
        cursor: pointer;
        color: #581819;
    }
}




:root {
    --primary-brown: #581819;
    --primary-green: #557216;
    --bg-cream: #f4ebe3;
}

.hero-slider {
    width: 100%;
    height: 100vh;
    background-color: var(--bg-cream);
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: 1;

}

.slide-container {
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.slide-content {
    max-width: 700px;
    color: var(--primary-brown);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: flex-end;
}

.slide-content h1 {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
    color: #581819;
}

.slide-content p {
    font-size: 25px;
    font-weight: bold;
    color: #626262;

}

.btn {
    background-color: var(--primary-green);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px !important;
    border: none;
    cursor: pointer;

}

.btn::after {
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 10px;
    background-color: #ffffff;
    -webkit-mask-image: url('../images/button-icon.svg');
    mask-image: url('../images/button-icon.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}


.btn:hover {
    background-color: #581819;
    color: #fff;
}

.btn:hover::after {
    transform: translateX(5px);
}

.slide-content .btn:hover::after {
    transform: translateX(5px);

}


@media (max-width: 768px) {


    .slide-container {
        justify-content: center;
        text-align: center;
        padding-right: 0;

    }

    .hero-slider {

        height: 60vh;

    }
}


.vertical-subtitle {
    position: static;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 30px;
    color: #A49375;
    letter-spacing: 5px;
    height: auto;
    flex-shrink: 0;
}


.swiper-pagination-bullet {
    background: var(--primary-green) !important;
}

@media (max-width:768px) {

    .hero-slider {
        height: auto;
        /* min-height: 100vh; */
        padding: 0px 20px 50px !important;
        margin-bottom: 50px;
    }




    .slide-bg-image {
        width: 100%;
        height: 60%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background-position: center top;
        background-size: contain;
    }


    .slide-container {
        justify-content: center;
        text-align: center;
    }


    .slide-content {
        max-width: 100%;
        margin-top: 70%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }


    .slide-content h1 {
        font-size: 36px;
        line-height: 1.3;
    }


    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .btn {
        font-size: 14px;
        padding: 12px 26px;
    }

    .vertical-subtitle {
        position: static;
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 24px;
        color: var(--primary-brown);
        opacity: 100%;
        letter-spacing: 5px;
        color: #A49375;
        height: auto;
        font-size: 30px !important;
        order: -1;
    }

    .main-content {
        order: 1;
    }

}

.site-footer {
    padding: 40px 20px;
}




.iner-wrapper {
    border-radius: 40px;
    padding: 120px 80px;
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;


    background: linear-gradient(178.89deg, #E2D2B8 61.22%, rgba(233, 223, 213, 0.12) 99.05%);
}


.iner-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background-image: var(--footerbg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 100%;
    pointer-events: none;
}



.footer-bottom {
    max-width: 1024px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;

}



.footer-top {
    text-align: center;
}

.footer-heading {
    font-size: 28px;
    line-height: 1.6;
    color: #6a2c2b;
    max-width: 700px;
    margin: auto auto 35px;
    font-family: serif;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 70px;
}


.footer-logo img {
    width: 104px;
}



.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #A49375;
    font-size: 16px;
    font-weight: 400;
    transition: all .3s ease;
    font-family: var(--font-jaldi);
}

.footer-links a:hover {
    color: #000;
}




.footer-address {
    max-width: 220px;
    font-size: 16px;
    line-height: 140%;
    color: #A49375;
}

@media (max-width:768px) {
    .footer-logo img {
        width: 170px;
    }

    .footer-links li {
        margin-bottom: 18px;
    }

    .footer-links li:last-child {
        margin-bottom: 0;
    }

    .footer-links a {
        font-size: 18px;
        color: #581819;
    }

    .footer-address {

        font-size: 18px;
        color: #581819;
    }

    .form-grid p:last-child {
        margin: 0;
    }
    .contact-form input[type="submit"]{
        width: 100%  !important;
    }
    .contact-form span{
        margin-bottom: 32px !important;
    }

    .iner-wrapper {

        padding: 90px 15px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }

}

/* section.mountain-image {
    background-image: url('../images//mountain-image.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 991px;
    background-color: #f4ebe3;
}
@media (max-width:768px){

section.mountain-image{
    height:260px;
    background-position:center;
}

} */



section.mountain-image {
    background-image: url('../images/mountain-image.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 991px;
    background-color: #f4ebe3;
}



@media (max-width:1024px) {
    section.mountain-image {
        min-height: 700px;
    }
}



@media (max-width:768px) {
    section.mountain-image {
        min-height: 250px;
    }
}

section.Ling-Zhi-section {
    background: #f4ebe3;
    margin-top: -43px;
    position: relative;
}

section.Ling-Zhi-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80px;
    width: 100%;
    height: 100%;
    background: url(../images/background-leaves.png) no-repeat;

}

.Ling-Zhi-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.image-section {
    /* margin-left: -189px; */
    text-align: center;
}

.content-section {
    text-align: right;
    z-index: 2;
    position: relative
}

.heading_1 {
    font-size: 45px;
    font-weight: 400;
    color: #581819;
    font-family: 'Ibarra Real Nova', serif;
    margin-bottom: 33px;
}


.text-la p {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-jaldi);
    color: #9C8458;
}

.text-en p {
    font-size: 18px;
    margin-bottom: 26px;
    line-height: 162%;
}

.my-button a {
    text-transform: capitalize !important;
}

@media (max-width: 991px) {

    section.Ling-Zhi-section {

        margin-top: -50px;
    }

    .Ling-Zhi-section .row {
        flex-direction: column;
        align-items: center;
    }

    .image-section {
        margin-left: 0;
        margin-bottom: 79px;
        text-align: center;
        max-width: 600px;
        max-height: 458px;
    }

    .content-section {
        text-align: center;
    }

    .heading_1 {
        font-size: 35px;
        margin-bottom: 32px;
    }

    .text-la p,
    .text-en p {
        font-size: 18px;
    }
}

.features-section {
    padding: 10px 20px;
    background: #f4ebe3;
    z-index: 2;
    position: relative;
    z-index: 2;
}

.features-section::before {
    content: "";
    position: absolute;
    left: 68%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 100%;
    background: url("../images/featured-bg.png") center/contain no-repeat;

    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: auto;
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}



.feature-card {
    display: flex;
    gap: 30px;
    align-items: stretch;
}



.feature-content {
    display: flex;
    gap: 18px;
    flex: 1;
    width: 169px;
    flex: 0 0 169px;
}

.divider {
    width: 2px;
    background: #9C8458;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.text h3 {
    font-size: 22px;
    color: #581819;
    line-height: 1.2;
    margin: 0;

}

.text p {
    font-size: 18px;
    line-height: 130%;
    margin: 0;
}


.feature-image {
    width: 283px;
    flex: 0 0 283px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}


@media (max-width:768px) {

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-section::before {
        content: "";
        position: absolute;
        left: 26%;
        top: 9%;
        transform: translate(-50%, -50%);
        width: 1000px;
        height: 100%;
        background: url("../images/featured-bg.png") center/contain no-repeat;

        pointer-events: none;
        z-index: -1;
    }

    .features-section {
        padding: 52px 20px;
        overflow-x: hidden;
    }

    .text h3 {

        margin-bottom: 8px;

    }

    .feature-card {
        flex-direction: column;
        gap: 26px;
        flex-direction: column-reverse;
    }

    .feature-image {
        width: 100%;
    }

    .feature-image img {
        width: 100%;
        height: auto;
    }

    .feature-content {
        /* margin-top: 20px; */
        width: 100%;
        align-items: flex-start;
        flex: auto !important;
        height: max-content;
    }


    .divider {
        height: auto;
        min-height: 80px;
    }

    .text {
        justify-content: normal;
    }

}

.main-container {
    margin-top: 160px;
}


.content-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px;
    background: linear-gradient(178.89deg, #E2D2B8 61.22%, rgba(233, 223, 213, 0.12) 99.05%);
    margin: 20px;
    border-radius: 30px;
}

.content-card::before {
    content: "";
    position: absolute;
    top: -95px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/mountain-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
}


.text-section {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}

.border-image img {
    margin-top: -113%;
}



.vertical-image-slider {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.vertical-image-slider__container {
    width: 224px;
    height: 720px;
    overflow: hidden;
}

.vertical-image-slider__container .swiper-wrapper {
    transition-timing-function: linear !important;
}

.vertical-image-slider__slide {
    width: 224px;
    height: 224px;
    display: flex;
}

.vertical-image-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}


.vertical-image-slider__pagination {
    position: absolute !important;
    right: -30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 10 !important;
    width: auto !important;
    left: auto !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #581819 !important;
    opacity: 0.4;
    margin: 0 !important;
    border-radius: 50%;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    opacity: 1;
    transform: scale(1.2);
}


.bottom-label {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 45px;
    color: #581819;

}

@media(max-width:768px) {
    .main-container {
        margin-top: 90px;
    }

    .content-card {
        flex-direction: column;
        padding: 40px 20px;
    }

    .product-image {
        order: -1;
    }

    .product-image img {
        max-width: 300px;
    }

    .bottom-label {
        position: static;
        margin-top: 84px;
        text-align: center;
    }

    .bottom-label h2 {
        font-size: 35px;

    }

    .border-image img {
        margin-top: 0;
        width: 150px;
        height: auto;
    }

    .vertical-image-slider {
        margin-top: 30px;
    }
}



.benefits-section {
    /* padding: 60px 0; */
    padding-top: 0px;
    background: #f4ebe3;
}



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px 20px;
    text-align: center;
}

.benefits-item img {
    width: 50px;
    margin-bottom: 15px;
}

.benefits-item p {
    color: #581819 !important;
    font-family: var(--font-jaldi);
    font-size: 20px;
    max-width: 184px;
    margin: 0 auto;
}

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

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


.testimonial-section {
    position: relative;
    z-index: 1;

}



.testimonial-section::before {
    content: "";
    position: absolute;
    top: -38%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 137%;
    background-image: url("../images/testimonial-bg.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}


.testimonial-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}



.testimonial-title h2 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 70px;
    color: #581819;
    font-weight: 400;
    letter-spacing: 4px;
}


.testimonial-slider {
    padding-top: 140px;
}


.testimonial-card {
    padding: 120px 20px 40px;
}

.card-inner {
    border: 3px solid #A49375;
    border-radius: 30px;
    padding: 180px 36px 28px;
    text-align: center;
    position: relative;
    background: transparent;
}



.person-img {
    width: 340px;
    max-width: 100%;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}



.card-inner::after {
    content: "";
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-image: url("../images/quote.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 4;
}



.testimonial-text {
    margin-top: 180px;
    position: relative;
    z-index: 5;
}

.testimonial-text h3 {
    font-size: 22px;
    color: #581819;
    font-weight: 400;
    margin-bottom: 20px;
}

.author {
    font-size: 15px;
    color: #581819;
    font-family: var(--font-jaldi);
}



.swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #acacac !important;
    opacity: 1;
    margin: 0 14.5px !important;
}

.swiper-pagination-bullet-active {
    background: #557216 !important;
}

@media (max-width:768px) {



    .testimonial-container {
        padding-top: 60px;
        display: block;
        text-align: center;
    }



    .testimonial-title h2 {
        writing-mode: initial;
        transform: none;
        text-align: center;
        font-size: 35px;
        letter-spacing: normal;
        margin-bottom: 30px;
    }



    .testimonial-title {
        writing-mode: initial;
        transform: none;
    }

}

/* About us page */

.heritage-section {
    position: relative;
    width: 100%;
    padding-top: 56px;
    padding-bottom: 87px;
    overflow: hidden;
}

.heritage-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/brush-bg.png');
    background-repeat: no-repeat;
    background-position: top right;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.heritage-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 38px;
}

.image-wrapper img {
    width: 457px;
    height: 557px;
    display: block;
    border-radius: 40px;
    object-fit: cover;
    border-radius: 38px;
}

.content-wrapper .title {
    font-size: 55px;
    color: #581819;
    font-weight: 400;
    margin-bottom: 43px;
    max-width: 340px;
    line-height: 97%;

}

.content-wrapper .description p {
    font-size: 18px;
    font-weight: bold;
    line-height: 130%;
    color: #581819;
}

@media (max-width: 1024px) {
    .image-wrapper img {
        width: 100%;
        max-width: 457px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .heritage-inner {
        grid-template-columns: 1fr;
        gap: 44px;
        justify-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .heritage-section {
        padding-top: 0px;
        padding-bottom: 43px;
    }

    .heritage-section::before {
        background-size: 500px;
        top: 48%;
    }

    .image-wrapper {
        width: 100%;
        height: auto;
    }

    .image-wrapper img {
        width: 100%;
        max-width: 100%;
        height: 290px;
        margin: 0 auto;
        border-radius: 0;
    }

    .content-wrapper {
        text-align: center;
    }

    .content-wrapper .title {
        font-size: 45px;
        max-width: 100%;
        margin-bottom: 30px;
        line-height: 111%;
    }
}

.mission-section {
    /* padding: 80px 20px; */
    padding-bottom: 40px;
    position: relative;
    overflow-x: hidden;
}

.mission-section::before {
    content: "";
    position: absolute;
    top: -39%;
    right: -19%;
    width: 100%;
    height: 100%;
    background: url(../images/bg-leaf.png) no-repeat center;
    background-size: contain;
    z-index: -1;

}

.mission-container {
    max-width: 1200px;
    margin: auto;
    padding: 55px 30px 42px 30px;

    background: linear-gradient(180deg,
            rgba(226, 210, 184, 0.41) 0%,
            rgba(233, 223, 213, 0.0492) 100%);

    border-radius: 61px;
}



.mission-heading {
    text-align: center;
    margin-bottom: 27px;
}

.mission-heading h2 {
    font-size: 45px;
    color: #581819;
    font-weight: 400;
    margin-bottom: 8px;
}

.mission-heading span {
    font-size: 14px;
    letter-spacing: 39%;
    text-transform: uppercase;
    color: #581819;
    font-family: var(--font-jaldi);
}



.mission-desc {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 25px;
    font-family: var(--font-jaldi);
    line-height: 139%;
    color: #581819;

}

.mission-highlight {
    text-align: center;
    font-weight: bold;
    color: #581819;
    margin-bottom: 50px;
    font-size: 25px;
}



.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.mission-card h3 {
    font-size: 22px;
    color: #581819;
    margin-bottom: 26px;
    font-weight: bold;
}

.mission-card p {
    font-size: 18px;
    line-height: 139%;
    font-weight: 400;
    color: #9C8458;
    font-family: var(--font-jaldi);
}


@media(max-width:900px) {

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

}

@media (max-width:768px) {
    .mission-section {
        padding: 0px 20px;
    }

    .mission-section::before {
        right: 0;
        top: -17%;
        background-size: auto;
    }

    .mission-container {
        background: none;
        border-radius: none;
        padding: 0;
    }

    .mission-highlight {
        margin-bottom: 140px;
    }

    .mission-card h3 {
        margin-bottom: 19px;
    }
}


.legacy-section {
    position: relative;
    overflow-x: clip;
}


.legacy-section::before {
    content: "";
    position: absolute;
    bottom: -26%;
    width: 100%;
    height: 100%;
    background: url("../images/mountains.bg.png") no-repeat;
    background-size: contain;

    z-index: 0;
}


.legacy-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    padding: 0 20px 72px;
}


.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}


.legacy-image {
    position: relative;
}

.legacy-image img {
    height: 527px;
    width: auto;
    max-width: none;
    margin-left: calc(-50vw + 587px);
    display: block;
}


.legacy-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 52%;
    color: #581819;
    display: block;
    margin-bottom: 86px;
}

.legacy-content h2 {
    font-size: 45px;
    margin-bottom: 56px;
    color: #581819;
    font-weight: 400;
}

.legacy-content .mid-text p {
    font-size: 25px;
    margin-bottom: 52px;
    color: #581819;
    font-weight: 400;
    font-family: var(--font-jaldi);
    line-height: 136%;
}



.legacy-content h4 {
    font-size: 18px;
    color: #9C8458;
    font-family: var(--font-jaldi);
    font-weight: bold;
}

.legacy-content .bottom-txt {
    font-size: 18px;
    color: #9C8458;
    line-height: 180%;
}


@media(max-width:1024px) {

    .legacy-image img {
        width: 600px;
    }

}

@media(max-width:900px) {
    .legacy-section {
        margin-top: 421px;
    }

    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 57px;
        text-align: center;
    }


    .legacy-image img {
        width: 100%;
        height: 295px;
        margin-left: 0;
    }


    .legacy-section::before {
        width: 150%;
        top: -30%;
    }

    .legacy-subtitle {
        margin-bottom: 0;
    }

    .legacy-content h2 {
        font-size: 35px;
        margin-bottom: 48px;


    }

    .legacy-content .mid-text p {

        margin-bottom: 86px !important;
    }

    /* .legacy-content p:first-child {

        margin-bottom: 0  !important;
    } */

    .legacy-content .bottom-txt {
        margin-bottom: 0;
        line-height: 147%;
    }

}

.pillars-section {}

.pillars-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


.pillars-title {
    text-align: center;
    font-size: 45px;
    font-weight: 400;
    color: #581819;
    margin-bottom: 42px;
}


.pillars-box {

    background: linear-gradient(180deg,
            rgba(226, 210, 184, 0.41) 0%,
            rgba(233, 223, 213, 0.0492) 100%);
    border-radius: 27px;

    padding: 50px 40px;
}


.pillars-heading {
    text-align: center;
    font-size: 25px;
    color: #581819;
    font-weight: bold;
    font-family: var(--font-jaldi);
    margin-bottom: 50px;
}


.pillars-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 20px;
    color: #581819;
    line-height: 150%;
}


.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.pillar-item h4 {
    font-size: 20px;
    color: #581819;
    font-family: var(--font-jaldi);
    font-weight: bold;
    margin-bottom: 25px;
}

.pillar-item p {
    font-size: 20px;
    line-height: 143%;
    color: #9C8458;
}


@media(max-width:900px) {
    .pillars-box {
        padding: 25px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 69px;
    }

    .pillars-title {
        font-size: 35px;
    }


}

.organic-section {
    padding: 30px 0;
    position: relative;
}

.organic-section::before {
    content: "";
    position: absolute;
    bottom: -30%;
    background: url("../images/squiggle-bg.png") no-repeat;
    width: 100%;
    height: 100%;
}

.organic-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}


.organic-box {

    position: relative;

    background: linear-gradient(180deg,
            rgba(226, 210, 184, 0.41) 0%,
            rgba(233, 223, 213, 0.0492) 100%);

    border-radius: 27px;

    padding: 60px 50px;
    overflow: hidden;
}





.organic-title {
    text-align: center;
    font-size: 25px;
    color: #581819;
    margin-bottom: 20px;
    font-family: var(--font-jaldi);
    font-weight: bold;
}


.organic-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 34px;
    font-size: 18px;
    color: #581819;
    line-height: 180%;
}


.organic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: center;
}

.organic-item h4 {
    font-size: 20px;
    color: #581819;
    margin-bottom: 20px;
    font-family: var(--font-jaldi);
    font-weight: bold;

}

.organic-item p {
    font-size: 20px;
    line-height: 1.7;
    color: #9C8458;
}


@media(max-width:900px) {
    .organic-section::before {

        bottom: -114%;

    }

    .organic-box {

        padding: 57px 30px;
    }

    .organic-section {
        padding: 20px 0;
    }

    .organic-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .organic-title {
        font-size: 22px;
    }

    .organic-intro {
        margin-bottom: 48px;
    }

    .organic-item h4 {
        font-size: 18px;
    }

    .organic-item p {
        line-height: 143%;
    }
}

.journey-section {
    max-width: 1200px;
    margin: auto;
}

.journey-title {
    text-align: center;
    font-size: 45px;
    margin-bottom: 43px;
    color: #581819;
}

.journey-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
}

.journey-card img {
    width: 100%;
    height: 436px;
    object-fit: cover;
    display: block;
}


.journey-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 20.88%,
            rgba(0, 0, 0, 0.43) 60.13%);
}

.journey-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    max-width: 1000px;
    z-index: 2;
}

.journey-overlay h3 {
    font-size: 30px;
    margin-bottom: 10px;
}

.journey-overlay p {
    font-size: 20px;
    line-height: 1.6;
    font-weight: bold;
    color: #D9D9D9;
}

@media(max-width:900px) {
    .journey-title {
        font-size: 35px;
        margin-bottom: 25px;
    }

    .journey-overlay {
        text-align: center;
        left: 0;
        padding: 10px;
        bottom: 0;

    }

    .journey-card {
        margin-bottom: 47px;
    }

    .journey-card:last-child {
        margin-bottom: 0;
    }


    .journey-overlay h3 {
        margin-bottom: 23px;

    }

    .journey-overlay p {
        line-height: 120%;
        margin-bottom: 0;

    }
}

.testing-protocol {
    padding: 40px 20px;
}

.testing-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.testing-image img {
    width: 534px;
    height: 661px;
    object-fit: cover;
    border-radius: 30px;
}

.testing-content h2 {
    font-size: 30px;
    line-height: 132%;
    margin-bottom: 18px;
    color: #581819;
}

.test-block {
    margin-bottom: 20px;
}

.test-block h4 {
    font-size: 23px;
    margin-bottom: 8px;
    color: #581819;
    font-family: var(--font-jaldi);
    font-weight: bold;
    line-height: 114%;
}

.test-block p {
    font-size: 20px;
    line-height: 114%;
    color: #9C8458;
}

.test-block ul {
    padding-left: 18px;
}

.test-block li {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 114%;
    color: #9C8458;
}

.coa {
    margin-top: 20px;
    font-weight: 600;
    color: #9C8458;
}

@media (max-width: 992px) {

    .testing-container {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .testing-protocol {
        padding: 46px 20px;
        padding-bottom: 0;
    }

    .testing-image {
        display: flex;
        justify-content: center;
    }

    .testing-image img {
        width: 100%;
        height: 450px;
    }



    .testing-content h2 {
        margin-bottom: 46px;
        line-height: 122%
    }

    .testing-content {
        text-align: center;
    }

    .test-block {
        text-align: left;
    }

}

/* 101 */

.lingzhi-essence {
    text-align: center;
    padding-top: 60px;
}

.lingzhi-container {
    /* max-width: 900px; */

}



.lingzhi-title {
    font-size: 55px;
    font-weight: 400;
    color: #581819;
    margin-bottom: 72px;
}


.lingzhi-content p {
    font-size: 18px;
    font-family: var(--font-jaldi);
    font-weight: bold;
    color: #581819;
    position: relative;
    z-index: 2;
    line-height: 130%;
}






@media(max-width:768px) {
    .lingzhi-essence {
        padding-top: 32px;
    }

    .lingzhi-title {
        font-size: 45px;
        margin-bottom: 32px;
    }

    .lingzhi-content {
        font-size: 18px;
    }

}

.lingzhi-benefits {
    position: relative;
    padding-top: 152px;
    padding-bottom: 83px;
}

.lingzhi-benefits::before {
    content: "";
    position: absolute;
    top: 28%;
    right: -15%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: url(../images/promise-bg.png) no-repeat center;
}

.benefits-subtitle {
    font-size: 14px;
    letter-spacing: 39%;
    color: #581819;
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;

}

.benefits-title {
    font-size: 45px;
    line-height: 107%;
    color: #581819;
    margin-bottom: 51px;
    max-width: 500px;
}

.benefits-content .benefits-desc {
    font-size: 25px;
    line-height: 139%;
    color: #581819;
    max-width: 520px;
    font-family: var(--font-jaldi);
}

.benefits-image img {
    max-width: 223px;
    width: 100%;
    z-index: 1;
    position: relative;
}

@media (max-width:991px) {

    .lingzhi-benefits {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .benefits-content {
        text-align: center;
        z-index: 2;
        position: relative;
    }

    .benefits-image {
        margin-bottom: 40px;
        order: 1;
        text-align: right;
    }

    .benefits-image img {
        max-width: 223px;
        width: 100%;
        z-index: 1;
        position: relative;

    }

    .benefits-title {
        font-size: 45px;
        margin-bottom: 16px;
        line-height: 107%;
    }

    .benefits-content p {
        margin: auto;
    }

    .lingzhi-benefits::before {
        content: "";
        position: absolute;
        top: 28%;
        right: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 100%;
        background: url(../images/promise-bg.png) no-repeat center;
    }

}



.lingzhi-properties {
    padding-top: 0;
    position: relative;
}

.properties-box {

    padding: 60px 40px;
    border-radius: 40px;

    background: linear-gradient(180deg,
            rgba(226, 210, 184, 0.41) 0%,
            rgba(233, 223, 213, 0.0492) 100%);
}


.properties-box::before {
    content: "";
    position: absolute;
    top: 28%;
    left: 14%;
    width: 100%;
    height: 100%;
    background: url(../images/squiggle-bg.png) no-repeat center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.property-item {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}


.property-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #581819;
    margin-bottom: 16px;
    line-height: 139%;
}

.property-item p {
    font-size: 20px;
    line-height: 139%;
    color: #9C8458;
}

@media (max-width:991px) {
    .lingzhi-properties .container {
        padding: 0;
    }

    .properties-box {
        padding: 50px 15px;
    }

    .property-item {
        margin-bottom: 40px;
    }

    .properties-box::before {

        top: 0%;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/squiggle-bg.png) no-repeat center;
        z-index: 9;
        pointer-events: none;
    }

    .property-item h3 {
        font-size: 22px;
    }

    .property-item p {
        font-size: 20px;
    }

}

.lingzhi-section {
    padding-bottom: 147px;
    text-align: center;
}

.lingzhi-section .title {
    font-size: 45px;
    color: #581819;
    margin-bottom: 16px;
}

.lingzhi-section .intro-highlight {
    font-size: 25px;
    color: #581819;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 139%;

}

.lingzhi-section .intro-text {
    font-size: 20px;
    color: #9C8458;
    line-height: 139%;

}

@media (max-width:991px) {
    .lingzhi-section {
        padding-bottom: 50px;
    }

    .lingzhi-section .title {
        margin-bottom: 55px;
    }

}

.lingzhi-therapy {
    padding-bottom: 78px;
    text-align: center;

}

.lingzhi-therapy .title {
    font-size: 45px;
    font-weight: 400;
    color: #581819;
    margin-bottom: 30px;
}



.lingzhi-therapy .esc {
    font-size: 25px;
    font-weight: 400;
    color: #581819;
    line-height: 139%;

}

.lingzhi-section-cancer {
    position: relative;
    padding-top: 0;
    padding-bottom: 120px;
}

.lingzhi-section-cancer::before {
    content: "";
    position: absolute;
    top: -11%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/background-leaves.png) no-repeat;


}

.lingzhi-section-cancer::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/mountain.png) bottom center no-repeat;
    opacity: 0.4;

}

.lingzhi-containers {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.lingzhi-left {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.benefit-heading {
    font-size: 32px;
    color: #6b2c2c;
    margin-bottom: 40px;
}

.chinese-text {
    text-align: center;
}

.chinese-text img {
    max-width: 220px;
}

.lingzhi-right {
    width: 60%;
    max-width: 569px;
}

.content-intro .top-txt {
    font-size: 14px;
    color: #6b2c2c;
    font-weight: 400;
    letter-spacing: 52%;
}

.content-intro h2 {
    font-size: 45px;
    color: #6b2c2c;
    font-weight: 400;
    margin-bottom: 31px;
    line-height: 107%;
}

.content-intro p {
    font-size: 25px;
    font-weight: 400;
    color: #581819;
    line-height: 139%;
    margin-bottom: 83px;
}

/* .benefit-item {
    margin-bottom: 35px;
} */

.benefit-item h4 {
    font-size: 20px;
    color: #9C8458;
    margin-bottom: 6px;
    font-family: var(--font-jaldi);
    font-weight: bold;
}

.benefit-item p {
    font-size: 20px;
    line-height: 143%;
    font-weight: 400;
    color: #9C8458;
}

@media (max-width: 768px) {
    .lingzhi-therapy .title {
        font-size: 35px;

    }

    .lingzhi-section-cancer {

        padding-bottom: 0;
    }

    .lingzhi-containers {
        flex-direction: column;
        gap: 100px;
    }


    .lingzhi-left,
    .lingzhi-right {
        width: 100%;
        max-width: 100%;
    }

    .lingzhi-right {
        text-align: center;
    }


    .benefit-heading {
        font-size: 35px;
        text-align: center;
        margin-bottom: 20px;

    }


    .chinese-text {
        margin-bottom: 20px;
    }

    .chinese-text img {
        max-width: 180px;
    }

    .top-txt {
        text-align: center;
    }

    .content-intro h2 {
        font-size: 35px;
        margin-bottom: 38px;
        text-align: center;

    }

    .content-intro p {
        font-size: 25px;
        margin-bottom: 27px;
        background: linear-gradient(180deg, rgba(226, 210, 184, 0.41) 0%, rgba(233, 223, 213, 0.0492) 100%);
        border-radius: 30px;
        padding: 21px 6px;
        text-align: center;
    }

    .benefits-list {
        text-align: left;
    }


    .lingzhi-section-cancer::before {
        display: none;
    }

    .lingzhi-section-cancer::after {
        width: 100%;
        height: 266px;
        left: 50%;
        transform: translateX(-50%);
        background-position: center bottom;
        background-size: cover;
        top: 16%;
    }

}

.lingzhi-faq {
    position: relative;
    padding-top: 76px;
    padding-bottom: 0;
    background: radial-gradient(ellipse at top right, #E2D2B8, #f3ede4 47%);
}


.lingzhi-faq::before {
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    width: 450px;
    height: 350px;
    background: url(../images/bg-leaf.png) no-repeat;
    background-size: contain;
    opacity: .8;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.faq-group {
    margin-bottom: 71px;
}
.faq-group:last-child {
    margin-bottom: 30px;
}

.faq-title {
    font-size: 45px;
    color: #581819;
    margin-bottom: 52px;
    font-weight: 400;
}


.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.faq-item {
    width: 100%;
}


.faq-question {
    width: 100%;
    background: #F8F7E6;
    border: none;
    padding: 18px 22px;
    border-radius: 30px;
    font-size: 16px;
    color: #581819;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    font-size: 20px;
    font-family: var(--font-jaldi);
    text-align: left;
}


.faq-question i {
    transition: .3s;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #F8F7E6;
    border-radius: 0 0 30px 30px;
}


.faq-answer p {
    padding: 0 22px 22px 22px;
    font-size: 20px;
    line-height: 139%;
    color: #9C8458;
}


.faq-item.active .faq-answer {
    max-height: 300px;
}


.faq-item.active .faq-question {
    border-radius: 30px 30px 0 0;
}


.faq-item.active .faq-question i {
    transform: rotate(90deg);
}


@media (max-width:768px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .faq-title {
        font-size: 30px;
        line-height: 97%;
        margin-bottom: 45px;
    }

    .faq-question {
        text-align: left;
    }

    .faq-group {
        margin-bottom: 107px;
    }

    .lingzhi-faq::before {

        top: 28%;

    }

    .faq-group:last-child {
        margin: 0;
    }

}

.page-template-template-faq .iner-wrapper {
    display: none;
}

.page-template-template-contact .iner-wrapper {
    display: none;
}

/* contact */
.contact-map {
    padding-top: 0;
}

.contact-map iframe {
    width: 100%;
    height: 569px;
    border: 0;
}



.contact-section {
    position: relative;
    padding-top: 72px;
    padding-bottom: 0;

}


.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/squiggle-bg.png') no-repeat center;
    background-size: contain;
    opacity: .4;
    z-index: 1;
}



.contact-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 116px;
    position: relative;
    z-index: 2;
}



.contact-info {
    position: relative;
    padding-left: 55px;
}

.contact-info::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 1px;
    height: 44%;
    background: #000000;
}

.info-item {
    gap: 15px;
    margin-bottom: 35px;
}

.info-item i {
    font-size: 20px;
    color: #9C8458;
}

.info-item a {
    font-size: 22px;
    font-weight: bold;
    color: #9C8458;
    text-decoration: none;
}

.info-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 13px;
    color: #581819;
    font-family: var(--font-jaldi);
}

.info-item p {
    font-size: 22px;
    color: #9C8458;
    line-height: 1.6;
}



.contact-form h2 {
    font-size: 35px;
    color: #581819;
    margin-bottom: 11px;

}

.contact-form span {
    display: block;
    margin-bottom: 51px;
    color: #9C8458;
    font-size: 22px;
    font-weight: bold;
}



.form-grid {
    width: 100%;
}

.form-grid p {
    margin: 0 0 15px;
}
.form-grid p:last-child {
    margin: 0 px;
}



.two-col p {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}



.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    background: #fff;
    border-radius: 0px;
    font-size: 14px;
    outline: none;
}



.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff;
}



.contact-form textarea {
    height: 130px;
    resize: none;
}

.contact-form br {
    display: none;
}

.contact-form input[type="submit"] {
    width: auto;
    background: #557216 url('../images/button-icon.svg') no-repeat right 18px center;
    background-size: 18px;
    color: #fff;
    border: 0;
    padding: 14px 50px 14px 35px;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
    display: block;
    margin-left: auto;
}

.contact-form input[type="submit"]:hover {
    background-color: #581819;
}


@media(max-width:992px) {
    .contact-map {
        padding-top: 0px;
    }

    .contact-map iframe {
        height: 169px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 31 px;
    }

    .contact-info {
        border: none;
        padding: 0;
    }

    .contact-info::before {
        background: none;

    }
}


@media(max-width:768px) {

    .contact-section {
        padding: 38px 0;
        padding-bottom: 0;
    }

    .two-col p {
        grid-template-columns: 1fr;
    }

    .contact-section::before {
        top: -9%;
        background-size: cover;
    }

    .info-item i {
        margin-bottom: 19px;
    }

    .info-item {
        margin-bottom: 27px;
    }

}

.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0c0c;
    color: #fff;
    text-align: center;
    padding-top: 100px;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    color: #ffffff;
}

.error-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.error-text {
    font-size: 16px;
    color: #bbbbbb;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #ffffff;
    color: #000000;
}

.secondary-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.primary-btn:hover {
    opacity: 0.85;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #000000;
}


.page-template-template-faq {
    background: radial-gradient(ellipse at top right, #E2D2B8, #f3ede4 47%);
}

.lingzhi-faq {
    background: transparent;
}

.page-template-template-faq .site-header {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.page-template-template-faq .lingzhi-faq {
    padding-top: 200px;
}

@media(max-width:768px) {

    .page-template-template-faq .lingzhi-faq {
        padding-top: 180px;
        padding-bottom: 60px;
    }

}


.mushroom-interactive-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;

    padding: 60px 80px;
    /* overflow: hidden; */

}


.mushroom-interactive-section::before {
    content: '';
    position: absolute;
    top: -28%;
    left: 39%;
    right: 0;
    bottom: 0;
    width: 934px;
    height: 838px;
    background: url('https://chocolate-tarsier-826327.hostingersite.com/wp-content/uploads/2026/03/moountain_background1.png') no-repeat right center;

    background-size: contain;
    opacity: 0.8;
    z-index: 1;
}


.interactive-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;

    margin: 0 auto 0 0;
}


.main-rock-img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;

    max-width: 671px;
}


.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;

    z-index: 3;
}


.point-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    z-index: 4;
}


.point-bubble {
    position: absolute;
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 5;
}

.bubble-label {
    font-family: var(--font-jaldi);
    font-weight: bold;
    font-size: 13px;
    color: #581819;

    padding: 10px;
}

.point-bubble:hover {
    z-index: 999;
}

.bubble-tooltip {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 320px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    cursor: default;
    text-align: left;
    z-index: 1000;
}

.point-bubble:hover .bubble-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    z-index: 999;
}

.tooltip-title {
    color: #581819;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 12px 0;
    font-family: var(--font-jaldi);
}

.tooltip-desc {
    color: #581819;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-jaldi);
}

.data-point:nth-of-type(1) .bubble-tooltip,
.data-point:nth-of-type(2) .bubble-tooltip,
.data-point:nth-of-type(3) .bubble-tooltip {
    left: 100%;
    right: auto;
    top: -20px;
    margin-left: 20px;
}


.data-point:nth-of-type(4) .bubble-tooltip,
.data-point:nth-of-type(5) .bubble-tooltip {
    left: auto;
    right: 100%;
    top: -20px;
    margin-right: 20px;
}

/* Mobile Adjustments */
/* @media (max-width: 768px) {
    .mushroom-interactive-section {
        padding: 40px 10px;
    }

    .mushroom-interactive-section::before {
        top: -16%;
        left: -132%;
        right: 11%;
        height: 614px;
    }

    .point-bubble {
        width: 85px;
        height: 85px;
    }

    .bubble-label {
        font-size: 10px;
        padding: 4px;
    }

    .bubble-tooltip {
        width: 260px !important;
        left: 50% !important;
        top: 110% !important;
        margin-left: 0 !important;
        transform: translateX(0%) translateY(10px) !important;
    }

    .point-bubble:hover .bubble-tooltip {
        transform: translateX(-50%) translateY(0);
    }
} */
@media (max-width: 768px) {
    .mushroom-interactive-section {
        padding: 0px 25px;
        overflow-x: hidden;
    }

    .mushroom-interactive-section::before {
        top: -16%;
        left: -132%;
        right: 11%;
        height: 614px;
    }

    .point-bubble {
        width: 85px;
        height: 85px;
        transform: none !important;
        margin-top: -42.5px !important;
        margin-left: -42.5px !important;
    }

    .bubble-label {
        font-size: 10px;
        padding: 4px;
    }

    .bubble-tooltip {
        width: 85vw !important;
        max-width: 320px !important;
        position: fixed !important;
        top: 50vh !important;
        left: 50vw !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;

        transform: translate(-50%, -50%) scale(0.9) !important;
        z-index: 99999 !important;
    }


    .point-bubble:hover .bubble-tooltip {
        transform: translate(-50%, -50%) scale(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}