/* Retreats Page Modern Styles */

:root {
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Background Helpers --- */
.section-bg-hero {
    background-image: url('../img/retreats/banner.jpg');
}

.section-bg-provide {
    background-image: url('../img/retreats/img6.jpg');
}

.section-bg-join {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../img/retreats/img7.jpg');
    background-size: cover;
    background-position: center;
}

/* --- Hero Section --- */
.retreat-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.retreat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    margin: 0 auto;
}

.hero-tagline {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.hero-title {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 45px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* --- Hero Breadcrumbs (Pill) --- */
.breadcrumb-list {
    z-index: 5;
    bottom: 0;
    position: absolute;
    width: 100%;
    text-align: start;
    background: var(--primary-color);
    border-radius: 50px;
}

.hero-breadcrumb-list {
    list-style: none;
    padding: 20px 50px;
    bottom: 0;
    display: inline-flex;
    gap: 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.hero-breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.hero-breadcrumb-list a:hover {
    color: var(--secondary-color);
}

.hero-breadcrumb-list span {
    color: var(--text-light);
    opacity: 0.3;
}

/* --- Contact Button (Premium) --- */
.btn-contact-us {
    font-size: 16px;
    color: var(--primary-color);
    background: transparent;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-contact-us:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(170, 35, 64, 0.2);
}

/* --- Pricing Section --- */
.pricing-details-section {
    background: var(--text-light);
    position: relative;
    z-index: 10;
}

/* --- Retreat Description Section --- */
.retreat-description {
    position: relative;
    overflow: hidden;
}

.retreat-description::after {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 384px;
    height: 882px;
    z-index: -1;
    background: url(../img/best_retreat_bg.png) 0% 0% / cover no-repeat;
    opacity: 0.8; /* Subtle touch */
    pointer-events: none;
}

.pricing-card-modern {
    background: var(--primary-color);
    padding: 20px 35px;
    border-radius: 20px;
    color: var(--text-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

/* --- Corner Ripple Animation --- */
.card-ripple-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.ripple {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.ripple-tr {
    top: 0;
    right: 0;
}

.ripple-bl {
    bottom: 0;
    left: 0;
}

.ripple::before,
.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: ripple-wave 4s infinite;
}

.ripple::after {
    animation-delay: 2s;
}

@keyframes ripple-wave {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }

    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

.card-label {
    background: var(--text-light);
    color: var(--primary-color);
    display: inline-block;
    padding: 6px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.pricing-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.pricing-box .room-type {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.price-line:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.7;
    text-transform: uppercase;
}

.price-value-box {
    text-align: right;
}

.old-price {
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 10px;
}

.new-price {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.price-unit {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.6;
    margin-left: 5px;
}

.card-inclusion-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

.inclusion-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-inclusion-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.card-inclusion-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 20px;
}

/* --- Section Stylings --- */
.retreat-section-title {
    color: var(--primary-color);
    font-weight: 700;
}

.best-retreat-img {
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.retreat-card-wrapper {
    background: var(--secondary-color);
    border-left: 6px solid var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.retreat-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.retreat-feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.retreat-feature-list li i {
    color: var(--primary-color);
    margin-right: 12px;
}

.daily_schedule {
    position: relative;
    background-image: url('../img/retreats/img4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--text-light);
}

.daily-schedule-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 1;
}

.daily_schedule .container {
    position: relative;
    z-index: 2;
}

.schedule-container-modern {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--primary-color);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}


.schedule-item-modern {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 10px 15px;
    border-radius: 10px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.schedule-item-modern:hover {
    background: var(--secondary-color);
    transform: translateX(12px);
    border-color: var(--text-dark);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.schedule-time-badge {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 12px;
    min-width: 130px;
    text-align: center;
    font-weight: 700;
    margin-right: 25px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.schedule-item-modern:hover .schedule-time-badge {
    background: var(--primary-color);
    color: var(--text-light);
}

.schedule-time-badge.bg-dark {
    color: var(--text-light);
}

.schedule-details p {
    margin-bottom: 0px;
}

.schedule-details .fw-bold {
    font-size: 19px;
    color: var(--text-light);
    display: block;
    margin-bottom: 3px;
}

.schedule-item-modern:hover .schedule-details p {
    color: var(--primary-color);
}


.schedule-details .text-muted {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px;
    font-weight: 400;
}

.schedule-item-modern:hover .schedule-details .text-muted {
    color: var(--text-dark) !important;
}


.accomo-info-card {
    background: var(--text-light);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
}

.accomo-info-card .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}


.buffet-menu-card {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 35px;
    border-radius: 25px;
    height: 100%;
}

@media (max-width: 991px) {
    .accomo-info-card {
        padding: 20px 10px;
    }

    .buffet-menu-card {
        padding: 20px 10px;
    }
}

.provide_retreats {
    position: relative;
    padding: 80px 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    overflow: hidden;
}

.provide_retreats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 100%);
    z-index: -1;
}

.provide-box-grid {
    background: rgba(212, 183, 115, 0.7);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    padding: 60px 20px 20px;
    margin-top: 60px;
    text-align: center;
    height: calc(100% - 60px);
}

.provide-icon-wrapper {
    background: var(--primary-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -110px auto 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.provide-icon-wrapper img {
    filter: invert(1);
    height: 50px;
}


.inclusion-box-modern {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.inclusion-box-modern::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -70px;
    right: -20px;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.1);
    z-index: -1;
    pointer-events: none;
}

.inclusion-box-modern .title {
    color: var(--secondary-color);
    font-weight: 700;
}

.exclusion-box-modern {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    border: 1px solid rgba(170, 35, 64, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.exclusion-box-modern::before {
    content: '\f057';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -70px;
    right: -20px;
    font-size: 180px;
    color: rgba(170, 35, 64, 0.08);
    z-index: -1;
    pointer-events: none;
}

.exclusion-box-modern .title {
    color: var(--primary-color);
    font-weight: 700;
}

.exclusion-box-modern i {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .pricing-card-modern {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .retreat-hero {
        padding: 40px 0 40px;
        /* Restoring a bit more breathing room */
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card-modern {
        padding: 40px 25px;
        margin-top: 20px;
    }

    .card-label {
        margin-bottom: 0px;
    }

    .card-inclusion-list {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for tablets specifically */
        gap: 15px;
    }

    .schedule-container-modern {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .card-inclusion-list {
        grid-template-columns: 1fr;
        /* Stacks only on mobile */
    }

    .new-price {
        font-size: 22px;
        /* Slightly larger for mobile stack */
    }

    .old-price {
        font-size: 14px;
    }

    .pricing-box .room-type {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .price-line {
        flex-direction: column;
        align-items: center;
        /* Center prices on mobile for better balance */
        gap: 8px;
        text-align: center;
    }

    .price-value-box {
        text-align: center;
    }

    .pricing-box .room-type {
        font-size: 15px;
        letter-spacing: 1.5px;
    }

    .pricing-card-modern {
        padding: 30px 15px;
    }
}

/* --- Booking Form Section --- */
.booking-form-section {
    position: relative;
    z-index: 5;
}

.booking-card-modern {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.booking-info-content .title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.booking-info-content .title span {
    color: var(--primary-color);
}

.booking-info-content .note {
    border-color: var(--primary-color) !important;
}

.booking-benefits {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.booking-benefits li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.booking-benefits li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 18px;
}

.form-wrapper-modern {
    background: #f8f9fa;
    border: 1px solid var(--primary-color);
    padding: 20px;
    border-radius: 20px;
}

.form_input_wrap {
    margin-bottom: 5px;
}

.form_input_wrap .form-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form_input_wrap .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.form_input_wrap .form-control:focus {
    box-shadow: 0 0 0 4px rgba(170, 35, 64, 0.1);
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .booking-card-modern {
        padding: 20px 10px;
    }

    .booking-info-content h2.title {
        font-size: 32px;
        text-align: center;
    }

    .booking-benefits {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .booking-benefits li {
        margin-bottom: 0;
    }
}

/* --- Accommodation & Food Slider Styles --- */
.yoga-lifestyle-carousel .item img {
    height: 240px !important;
    width: 100%;
    object-fit: cover !important;
    object-position: center !important;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.yoga-lifestyle-carousel .item:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.yoga-lifestyle-carousel .owl-dots {
    margin-top: 30px !important;
    text-align: center;
}

.yoga-lifestyle-carousel .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: rgba(170, 35, 64, 0.2) !important;
    border-radius: 50%;
    margin: 5px 7px !important;
    transition: all 0.3s ease;
}

.yoga-lifestyle-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 30px !important;
    border-radius: 10px;
}

.join_us .title {
    color: var(--primary-color);
}

/* Yoga Teacher Start */

.yoga_teacher {
    padding: 22px 0 31px 0;
}

.teacher .item {
    padding: 20px;
}

.yoga_teacher .teacher_img {
    position: relative;
    overflow: hidden;
    border: 5px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 0;
    height: 350px;
    /* Uniform height for the container */
}

.yoga_teacher .teacher_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the container without distortion */
}

.yoga_teacher .teacher_name {
    position: relative;
    top: -15px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    background: var(--secondary-color);
    border-radius: 50px;
    font-family: 'Gabarito';
    font-size: 18px;
    padding: 8px 15px;
    margin-bottom: 0;
    width: auto;
    display: block;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: 1;

}

.yoga_teacher .teacher .teacher_desig {
    background: var(--primary-color);
    border-radius: 20px;
    color: var(--text-light);
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    padding: 10px 5px 15px;
    margin-left: auto;
    margin-right: auto;
    top: -20px;
    position: relative;
    z-index: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.yoga_teacher .teacher .see_more_btn {
    display: block;
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
    height: 35px;
    width: 35px;
    border-radius: 100%;
    color: var(--primary-color);
    font-family: 'Gabarito';
    font-size: 16px;
    text-align: center;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    top: -30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.yoga_teacher .teacher .see_more_btn::before,
.yoga_teacher .teacher .see_more_btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.yoga_teacher .teacher .see_more_btn::after {
    animation-delay: 1s;
}

.yoga_teacher .teacher .see_more_btn:hover {
    transform: scale(1.2);
}

/* Yoga Teacher End */

/* Student Review */

/* Student Review */
.student_review {
    background: var(--secondary-color);
    padding: 22px 0 39px 0;
    position: relative;
    overflow: hidden;
}

.student_review:after {
    position: absolute;
    content: '';
    background: url(../img/review_bg.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 566px;
    height: 752px;
}

.student_review .review {
    margin-top: 24px;
}

.student_review .owl-carousel .item {
    max-width: 355px;
    margin: auto;
}

.student_review .owl-carousel .owl-stage {
    display: flex;
}

.student_review .owl-carousel .owl-item {
    transform: scale(0.98);
    transition: transform 0.3s ease-in-out;
}

.student_review .owl-carousel .owl-item.active {
    transform: scale(1);
}

.student_review .review_box {
    position: relative;
    background: var(--primary-color);
    border-radius: 20px;
    padding: 47px 25px 35px;
}

.student_review .review_box .gstar {
    display: flex;
    align-items: center;
    gap: 0px;
    position: absolute;
    background: var(--text-light);
    border-radius: 50px;
    top: -15px;
    padding: 0 10px 0 0;
    left: -15px;
}

.student_review .review .owl-item img {
    display: block;
    width: unset;
}

.student_review .review_box .review_content p {
    font-family: 'Gabriela';
    font-size: 16px;
    color: var(--text-light);
    text-align: justify;
}

.student_review .review_box .review_content p .read-more {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.student_review .review_box .review_content p .read-more:hover {
    color: var(--text-light);
    transform: scale(1.2);
}

.student_review .review_box .reviewer_name {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    background: var(--text-light);
    border-radius: 50px;
    bottom: -15px;
    padding: 10px 15px;
    right: -15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.student_review .review_box .reviewer_name p {
    margin-bottom: 0;
    font-family: 'Gabarito';
    font-size: 18px;
    color: var(--primary-color);
}

.student_review .review .owl-stage-outer {
    padding: 20px 0;
}

.student_review .video_review_head {
    background: var(--text-dark);
    border-radius: 20px 0 0 20px;
    max-width: 421px;
    margin-left: auto;
    margin-top: 45px !important;
}

.student_review .video_review_head p {
    color: var(--secondary-color);
    font-family: 'Gabarito';
    font-size: 36px;
    text-align: center;
}

.student_review .video_box iframe {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

@media only screen and (max-width:767px) {
    .student_review .owl-carousel .item {
        max-width: 300px;
        margin: auto;
    }
}


/* Student Review */

/* Gallery */
.gallery {
    padding: 40px 0;
}

/* Retreat Gallery - Static CSS Grid (no JS, no carousel) */
.retreat-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.retreat-gallery__row {
    display: grid;
    gap: 12px;
}

.retreat-gallery__row--3 {
    grid-template-columns: repeat(3, 1fr);
}

.retreat-gallery__row--1-2 {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.retreat-gallery__item--wide {
    grid-row: span 2;
}

.retreat-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(170, 35, 64, 0.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #f0ebe8;
}

.retreat-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    aspect-ratio: 16 / 9;
}

.retreat-gallery__item--wide img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 220px;
}

.retreat-gallery__item:hover img {
    transform: scale(1.05);
}

.retreat-gallery__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 24px 14px 10px;
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

@media (max-width: 991px) {
    .retreat-gallery__row--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .retreat-gallery__row--3 .retreat-gallery__item:last-child {
        grid-column: span 2;
    }
    .retreat-gallery__row--1-2 {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .retreat-gallery__item--wide {
        grid-row: span 1;
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .retreat-gallery__row--3 {
        grid-template-columns: 1fr 1fr;
    }
    .retreat-gallery__row--3 .retreat-gallery__item:last-child {
        grid-column: span 2;
    }
    .retreat-gallery__row--1-2 {
        grid-template-columns: 1fr 1fr;
    }
    .retreat-gallery__item--wide {
        grid-column: span 2;
    }
}


/* Gallery */

/* Faq */

.faq {
    padding: 20px 0 110px;
    background: var(--secondary-color) url(../img/faq_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
}

.faq #accordionExample {
    max-width: 800px;
    margin: auto;
    margin-top: 32px !important;
}

.faq .accordion-item {
    background-color: transparent !important;
    border: none !important;
    margin-bottom: 10px;
}

.faq .accordion-body {
    margin-left: 50px;
    background: var(--text-light);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.faq .accordion-header {
    margin-bottom: 0;
    margin-right: 98px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

.faq .accordion-button::after {
    width: 20.63px;
    height: 25.47px;
    background-image: url(../img/close.png);
}

.faq .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px;
}

.faq .accordion-button {
    font-size: 16px;
    color: var(--text-light);
    background-color: var(--primary-color);
    border: 0;
    border-radius: 50px;
    padding: 10px;
    border: 2px solid var(--text-light);
}

.faq .accordion-button span {
    background: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--primary-color);
}

.faq .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

.faq .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

@media only screen and (max-width: 767px) {
    .faq .accordion-header {
        margin-bottom: 0;
        margin-right: 0;
    }

    .faq .accordion-body {
        margin-left: 0;
    }
}

/* Faq */
/* ============================================
   Retreat Packages & Pricing - Season Tabs
   ============================================ */
.pricing-card-head {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.pricing-card-title {
    color: var(--text-light);
    font-size: 26px;
    font-weight: 800;
    margin: 12px 0 8px;
}

.pricing-card-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 0;
}

.season-tabs {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.season-tab-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.season-tab-label {
    flex: 1 1 220px;
    max-width: 320px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.season-tab-label:hover {
    background: rgba(255, 255, 255, 0.12);
}

.season-tab-input:checked + .season-tab-label {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.season-panel {
    display: none;
    flex: 1 1 100%;
    margin-top: 25px;
}

#season1:checked ~ #panel-season1,
#season2:checked ~ #panel-season2 {
    display: block;
}

.season-rate-note {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.season-rate-note strong {
    color: var(--secondary-color);
}

.duration-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.duration-price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px 15px;
    text-align: center;
    transition: var(--transition);
}

.duration-price-card:hover,
.duration-price-card--highlight {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.duration-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.duration-price-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.duration-price-row:first-of-type {
    border-top: none;
}

.acc-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
    color: var(--text-light);
    margin-bottom: 4px;
}

.acc-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-light);
}

@media (max-width: 1199px) {
    .duration-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .season-tab-label {
        flex: 1 1 45%;
        font-size: 14px;
        padding: 10px 14px;
    }

    .pricing-card-title {
        font-size: 21px;
    }
}

@media (max-width: 480px) {
    .duration-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Daily schedule footnote */
.schedule-footnote {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Retreat Duration Guide (SEO content section)
   ============================================ */
.duration-guide-content p {
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 14px;
}

.duration-guide-content {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .duration-guide-content p {
        text-align: left;
    }
}

/* Card grid for duration packages */
.duration-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 30px auto 0;
}

.duration-guide-card {
    background: #ffffff;
    border: 1px solid rgba(170, 35, 64, 0.1);
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.duration-guide-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(170, 35, 64, 0.12);
}

.duration-guide-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(170, 35, 64, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.duration-guide-card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.duration-guide-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    flex: 1;
    margin-bottom: 0;
}

.duration-guide-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(170, 35, 64, 0.08);
}

.duration-guide-card__price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 16px;
}

.duration-guide-card__price small {
    font-weight: 500;
    font-size: 11px;
    color: #888;
    margin-left: 2px;
}

.duration-guide-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.duration-guide-card__link:hover {
    text-decoration: underline;
}

.duration-guide-card__link i {
    font-size: 11px;
    margin-left: 4px;
}

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

    .duration-guide-card--wide {
        grid-column: span 2;
    }
}

@media (max-width: 767px) {
    .duration-guide-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .duration-guide-card--wide {
        grid-column: span 1;
    }
}

/* ============================================
   Ported from courses.css: pys-btn, pys-reviews, pys-faq
   ============================================ */
.pys-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    line-height: 1;
}

.pys-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

.pys-btn--primary {
    background: #aa2340;
    color: #ffffff !important;
}

.pys-btn--outline-dark {
    background: transparent;
    color: var(--primary-color) !important;
    border: 1.5px solid rgba(170,35,64,0.4);
}

.pys-btn--outline-dark:hover {
    background: rgba(170,35,64,0.06);
    border-color: var(--primary-color);
}

/* --- Reviews Section --- */
.pys-reviews {
    padding: 72px 0 60px;
    background: #ffffff;
}

.pys-reviews__header {
    margin-bottom: 36px;
}

.pys-reviews__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(170,35,64,0.07);
    border: 1px solid rgba(170,35,64,0.2);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-reviews__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-reviews__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto;
}

.pys-reviews__rating-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 12px;
    padding: 20px 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.pys-reviews__score {
    text-align: center;
}

.pys-reviews__score-num {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pys-reviews__stars {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin: 5px 0 4px;
    color: #f4b400;
    font-size: 16px;
}

.pys-reviews__score-lbl {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #666;
}

.pys-reviews__rating-divider {
    width: 1px;
    height: 56px;
    background: rgba(170,35,64,0.15);
    flex-shrink: 0;
}

.pys-reviews__google-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.pys-reviews__google-brand strong {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
}

.pys-reviews__g-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.pys-reviews__google-info p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    margin: 0 0 5px;
}

.pys-reviews__google-info a {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
}

.pys-reviews__google-info a:hover {
    text-decoration: underline;
}

.pys-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pys-reviews__card {
    background: #ffffff;
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s;
}

.pys-reviews__card:hover {
    box-shadow: 0 4px 20px rgba(170,35,64,0.08);
}

.pys-reviews__card-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pys-reviews__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(170,35,64,0.15);
}

.pys-reviews__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.pys-reviews__card-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pys-reviews__reviewer-name {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.pys-reviews__reviewer-loc {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #888;
}

.pys-reviews__g-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.pys-reviews__text {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #444;
    line-height: 1.7;
    flex: 1;
}

.pys-reviews__toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
}

.pys-reviews__card--cta {
    background: rgba(66,133,244,0.04);
    border-color: rgba(66,133,244,0.2);
    align-items: center;
    text-align: center;
    justify-content: center;
}

.pys-reviews__cta-g {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #4285F4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto;
}

.pys-reviews__cta-title {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.pys-reviews__cta-text {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.pys-reviews__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #4285F4;
    color: #ffffff !important;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: opacity 0.2s;
}

.pys-reviews__cta-btn:hover {
    opacity: 0.88;
}

@media (max-width: 992px) {
    .pys-reviews { padding: 56px 0 48px; }
    .pys-reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .pys-reviews__rating-divider { display: none; }
}

@media (max-width: 768px) {
    .pys-reviews { padding: 48px 0 40px; }
    .pys-reviews__grid { grid-template-columns: 1fr; }
    .pys-reviews__rating-bar { flex-direction: column; gap: 14px; text-align: center; }
    .pys-reviews__google-brand { justify-content: center; }
}

/* --- FAQ Section (pys-faq) --- */
.pys-faq {
    padding: 72px 0 60px;
    background: #ffffff;
}

.pys-faq__header {
    margin-bottom: 44px;
}

.pys-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(170,35,64,0.07);
    border: 1px solid rgba(170,35,64,0.2);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pys-faq__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

.pys-faq__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

.pys-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 36px;
}

.pys-faq__item {
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.2s;
}

.pys-faq__item--open {
    border-color: rgba(170,35,64,0.3);
}

.pys-faq__q {
    width: 100%;
    background: transparent;
    border: none;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.pys-faq__q span {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    flex: 1;
    transition: color 0.2s;
}

.pys-faq__q .fas {
    font-size: 13px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.pys-faq__item--open .pys-faq__q {
    background: rgba(170,35,64,0.04);
}

.pys-faq__item--open .pys-faq__q span {
    color: var(--primary-color);
}

.pys-faq__a {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #444;
    line-height: 1.75;
    padding: 0 18px 16px;
    border-top: 1px solid rgba(170,35,64,0.1);
    padding-top: 12px;
}

.pys-faq__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 12px;
    padding: 20px 28px;
    flex-wrap: wrap;
}

.pys-faq__bottom-text {
    font-family: 'Gabriela', serif;
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

.pys-faq__bottom-text strong {
    color: var(--primary-color);
}

.pys-faq__bottom-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pys-faq { padding: 56px 0 48px; }
    .pys-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pys-faq { padding: 48px 0 40px; }
    .pys-faq__q span { font-size: 13px; }
    .pys-faq__a { font-size: 12px; }
    .pys-faq__bottom {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    .pys-faq__bottom-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .pys-faq__bottom-btns .pys-btn,
    .pys-faq__bottom-btns .pys-btn--outline-dark {
        justify-content: center;
        width: 100%;
    }
}
