
/**/
.pyh-benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.pyh-benefits__header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.pyh-benefits__subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.pyh-benefits__description {
    max-width: 540px;
    font-size: 1rem;
    color: var(--green-dark);
}

.pyh-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pyh-benefits__card {
    background-color: var(--white);
    border: 1px solid var(--green);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--green-dark);
}

.pyh-benefits__card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pyh-benefits__card .pyh-icon {
    font-size: 32px;
    color: var(--green);
    margin-bottom: 16px;
    display: inline-block;
}

.pyh-benefits__card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-title);
    font-weight: 600;
    color: var(--green-dark);
}

.pyh-benefits__card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--green-dark);
}
/**/
.pyh-about {
    padding: 80px 0;
    background-color: var(--gray);
}

.pyh-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.pyh-about__subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pyh-about__text p {
    color: var(--green-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pyh-about__image-wrapper {
    width: 100%;
    text-align: center;
}

.pyh-about__image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}
.about-button {
    color: var(--orange);
}
/**/
.pyh-hotels__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 32px;
}

.pyh-hotel__card {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    border: 1px solid var(--gray);
}

.pyh-hotel__card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.pyh-hotel__rating {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--orange);
    font-weight: 600;
    z-index: 2;
}

.pyh-hotel__image-wrapper {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--gray);
}

.pyh-hotel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pyh-hotel__card:hover .pyh-hotel__image {
    transform: scale(1.05);
}

.pyh-hotel__name {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background: rgba(36, 64, 49, 0.85);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--white);
    font-family: var(--font-title);
    z-index: 2;
}

.pyh-hotel__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pyh-hotel__features {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--green);
}

.pyh-hotel__features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pyh-hotel__btn {
    text-align: center;
}
.pyh-button__card {
    padding: 15px 30px;
}
.pyh-hotel__desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--green-dark);
    margin: .5rem 0;
    min-height: 92px;
    text-align: left;
}
.pyh-hotel__rating {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 2px;
    z-index: 2;
}

.pyh-hotel__rating .material-symbols-outlined {
    font-size: 20px;
    color: var(--orange);
    line-height: 1;
}
/**/
.pyh-stats__card {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: var(--green-dark);
    border-radius: 12px;
    overflow: hidden;
    flex-wrap: wrap;
}

.pyh-stats__left {
    background-color: #2e5541;
    padding: 32px;
    color: var(--white);
    flex: 1;
    max-width: 280px;
}

.pyh-stats__subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.pyh-stats__title {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.pyh-stats__right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex: 2;
    padding: 32px 24px;
    flex-wrap: wrap;
    gap: 32px;
}

.pyh-stats__item {
    text-align: center;
    color: var(--white);
}

.pyh-stats__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
}

.pyh-stats__label {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 6px;
    display: block;
}

/**/
.pyh-testimonials {
    padding: 60px 0;
    background-color: var(--gray);
}

.pyh-testimonials__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pyh-testimonials__intro {
    max-width: 60%;
}

.pyh-testimonials__subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--green-dark);
    margin-bottom: 0.4rem;
}

.pyh-testimonials__title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--green-dark);
    margin: 0;
}

.pyh-testimonials__controls {
    display: flex;
    gap: 10px;
}

.pyh-testimonials__btn {
    background-color: var(--green);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pyh-testimonials__btn:hover {
    background-color: var(--green-dark);
}

.pyh-testimonials__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transition: all 0.4s ease;
}

.pyh-testimonials__item {
    background: var(--white);
    border: 1px solid var(--green);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.pyh-testimonials__icon {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 26px;
    color: var(--orange);
}

.pyh-testimonials__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.pyh-testimonials__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pyh-testimonials__author {
    font-weight: 600;
    color: var(--green);
}

.pyh-testimonials__rating .material-symbols-outlined {
    font-size: 18px;
    color: var(--orange);
}
.pyh-testimonials__list {
    position: relative;
}

.pyh-testimonials__list.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.pyh-testimonials__list.fade-in {
    opacity: 1;
    transition: opacity 0.6s ease;
}

/**/
.pyh-faq__bubbles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pyh-faq__bubble {
    background-color: var(--gray);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    transition: transform 0.6s ease;
}

.pyh-faq__bubble::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--gray);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.pyh-faq__question {
    font-weight: 600;
    color: var(--green-dark);
    position: relative;
    padding-left: 32px;
}

.pyh-faq__icon {
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 22px;
    color: var(--green);
}

.pyh-faq__answer {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #444;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.6s ease, max-height 0.6s ease;
}

.pyh-faq__bubble:hover {
    transform: scale(1.015);
}

.pyh-faq__bubble:hover .pyh-faq__answer {
    opacity: 1;
    max-height: 200px;
}

/**/
@media (max-width: 1023px) {
    .pyh-stats__card {
        flex-direction: column;
    }

    .pyh-stats__left {
        max-width: 100%;
        width: 100%;
        padding: 24px;
    }

    .pyh-stats__right {
        justify-content: center;
        padding: 24px;
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .pyh-about__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pyh-about__text {
        order: 2;
    }

    .pyh-about__image-wrapper {
        order: 1;
    }
    .pyh-testimonials__list {
        grid-template-columns: 1fr;
    }

    .pyh-testimonials__intro {
        max-width: 100%;
        margin-bottom: 20px;
    }
}


@media (max-width: 640px) {
    .pyh-stats__title {
        font-size: 1.3rem;
        text-align: center;
    }

    .pyh-stats__subtitle {
        font-size: 0.75rem;
        text-align: center;
    }

    .pyh-stats__left {
        text-align: center;
    }

    .pyh-stats__right {
        flex-direction: column;
        align-items: center;
    }

    .pyh-stats__number {
        font-size: 1.6rem;
    }

    .pyh-stats__label {
        font-size: 0.8rem;
    }
}