/* Banner */
.banner {
    position: relative;
    height: 600px;
    width: 100%;
    align-content: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;

}

.banner::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    /* Gradient overlay for a more premium feel */
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    top: 0;
    z-index: 1;
}

.banner .content {
    position: relative;
    z-index: 5;
    /* Higher than overlay */
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    position: relative;
    display: inline-block;
    background: var(--primary-color);
    padding: 8px 40px 8px 20px;
    border-radius: 0 50px 50px 0;
    margin-top: 15px;
    bottom: 0px !important;
    z-index: 5;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: left !important;
}

.breadcrumb ul li {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: var(--secondary-color);
}

.breadcrumb ul li i,
.breadcrumb ul li::after {
    content: '\f105';
    /* FontAwesome Angle Right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb ul li:last-child::after {
    content: '';
}

.banner_heading {
    font-family: 'Kanit', sans-serif;
    font-size: 36px;
    /* Increased for premium look */
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 #fff;
}

.banner_para {
    color: #000;
    font-size: 16px;
    /* Slightly larger */
    line-height: 1.6;
    font-weight: normal;
    margin-bottom: 40px;
    font-family: 'Kanit', sans-serif;
    max-width: 90%;
}



.slider-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.slider-buttons a {
    display: inline-block;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
}

.btn-contact-us {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-contact-us:hover {
    color: #000;
}


.contact {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.contact:hover {
    background: var(--text-dark);
    color: #fff;
}

.details-box {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 420px;
    background: rgba(170, 35, 64, 0.85);
    /* Maroon overlay */
    color: #fff;
    padding: 30px;
    border-radius: 40px 0 0 0;
    /* Softer corner */
    z-index: 5;
    /* Higher than overlay */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}


.details-box .title {
    position: relative;
    font-size: 22px;
    margin-bottom: 15px;
    background: var(--secondary-color, #FAD7A0);
    padding: 8px 35px 8px 15px;
    border-radius: 0 50px 50px 0;
    display: inline-block;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    color: var(--primary-color, #006064);
    left: -30px;
    border: none;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.highlight ul {
    list-style: none;
    padding: 0;
}

.highlight ul li {
    margin: 8px 0;
    font-size: 16px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.highlight ul li i {
    margin-right: 10px;
}

.highlight ul li span {
    color: var(--secondary-color);
    font-weight: 600;
}


.fees table {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    border-collapse: separate;
}

.fees th,
.fees td {
    padding: 8px;
    border: 1px solid var(--secondary-color);
}


.fees th {
    background: transparent;
    color: #000;
}

.fees th.white-bg {
    background: rgba(255, 255, 255, 0.4);
}

.fees td.price-text {
    color: var(--secondary-color, #FAD7A0);
    font-weight: 700;
    font-size: 18px;
}


@media (max-width: 768px) {
    .banner {
        height: auto;
        padding: 15px 0px 0px 0px;
        background-position: center center;
    }

    .banner::before {
        background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    }

    .banner_heading {
        font-size: 22px;
        margin-top: 10px;
        margin-bottom: 0;
    }

    .banner_para {
        max-width: 100%;
        font-size: 14px;
    }

    .slider-buttons {
        align-items: center;
        text-align: center;
        margin: auto;
        display: block;
    }

    .slider-buttons a {
        margin: auto 10px;
    }

    .banner .content {
        margin-bottom: 0px;
        text-align: center;
        height: auto;
    }

    .breadcrumb {
        padding: 8px 10px 8px 10px;
    }

    .details-box {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 20px;
        border-radius: 20px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    }
}

/* Banners */

/* Best Retreat */

.best_retreat {
    position: relative;
}

.best_retreat:after {
    position: absolute;
    content: '';
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-position: center center;
    background: url(../img/best_retreat_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 384px;
    height: 882px;
    z-index: -1;
}

.best_retreat .row {
    align-items: flex-end;
    margin-bottom: 15px;
}

.retreat_img {
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    object-fit: cover;
}

.ceremony_box {
    background: var(--secondary-color);
    border-top: 4px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 20px;
    margin-top: 60px;
    padding: 25px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    position: relative;
}

.ceremony_box .ceremony_content {
    text-align: justify;
}

.ceremony_box .ceremony_head {
    background: var(--primary-color);
    border-radius: 50px;
    padding: 10px 35px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: max-content;
    max-width: 90%;
    z-index: 10;
}

/* Best Retreat */

/* Daily Program */

.daily_program {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 25px 0;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(170, 35, 64, 0.2);
    z-index: -1;
}

.daily_program .excursions_heading {
    position: relative;
    color: #fff;
    font-family: 'kanit';
    font-weight: 500;
    font-size: 28px;
    text-shadow: 0 4px 0 #000;
}

.daily_program .excursions_heading:after {
    content: '';
    position: absolute;
    top: 85%;
    left: 5px;
    width: 100%;
    height: 20px;
    background-image: url(../img/line8.png);
    background-repeat: no-repeat;
}

.program-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.daily_program .day-box {
    background: rgba(255, 255, 255, 0.66);
    border-radius: 20px;
    padding: 25px;
    margin-top: 35px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.daily_program .day-box .day-title {
    background: var(--primary-color);
    border-radius: 50px;
    max-width: 350px;
    padding: 7px 20px;
    color: #fff;
    margin-top: -45px;
    margin-left: 0px;
    margin-bottom: 10px;
    text-align: left;
    border-top: 3px solid var(--secondary-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}

.daily_program .day-box ul li {
    font-family: 'Gabarito';
    color: #000;
    font-size: 16px;
}

.daily_program .program_highlights {
    border: 2px dashed var(--secondary-color);
    padding: 15px;
    margin-top: 105px;
}

.daily_program .program_highlights .buddh_god {
    margin-top: -130px;
}

.daily_program .program_highlights .highlight_box {
    background: rgba(255, 255, 255, 0.72);
    padding: 15px;
}

.highlight_box .highlight_head {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .program-container {
        grid-template-columns: 1fr;
    }

    .highlight-content {
        flex-direction: column;
    }
}

/* Daily Program */


/* Join US Start */

.join_us {
    padding: 36px 0 31px 0;
    background: url(../img/joinusbg.png);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
}

.join_us .join_purnambox {
    max-width: 550px;
    margin-left: auto;
    text-align: end;
}

.join_us .join_purnambox .join_head {
    font-family: 'Kanit';
    font-size: 36px;
    font-weight: bolder;
    color: var(--text-light);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px var(--text-dark);
}

.join_us .join_purnambox .join_subhead {
    font-family: 'Gabriela';
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 23px;
}

@media only screen and (max-width:767px) {
    .join_us .join_purnambox {
        max-width: 100%;
        margin: auto;
        text-align: center;
    }
}

/* Join US End */


/* Daily Schedule */

.daily_schedule {
    padding: 35px 0;
    position: relative;
}

.daily_schedule:after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background-position: center center;
    background: url(../img/daily_schedule.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 774px;
    height: 443px;
    z-index: -1;
}

.daily_schedule .schedule_cont {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 38px;
    margin-top: 60px;
}

.daily_schedule .schedule_cont .schedule_box {
    flex: 30%;
    max-width: 30%;
    text-align: center;
    max-width: 291px;
    margin: auto;
    border-radius: 50px;
    background: var(--secondary-color);
    border: 1px solid var(--text-dark);
    position: relative;
    margin-top: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.daily_schedule .schedule_cont .schedule_box .schedule_time {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    width: 269px;
    max-width: 100%;
    margin: auto;
    border-radius: 50px;
    padding: 7px 0;
    font-weight: 600;
    font-family: 'Kanit';
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.daily_schedule .schedule_cont .schedule_box .schedule_for {
    color: #000;
    padding: 7px 0;
    font-weight: 600;
    font-family: 'Kanit';
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .daily_schedule .schedule_cont .schedule_box {
        flex: 100%;
        max-width: 100%;
    }

    .daily_schedule:after {
        width: 100%;
    }
}

.daily_schedule .note_text {
    font-family: 'Gabriela', serif;
    font-size: 18px;
    color: var(--primary-color);
    background: var(--secondary-color);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Daily Schedule */


/* Accomodation */

.accomodation {
    padding: 22px 0 50px 0;
}

.accomodation .row {
    align-items: center;
    margin-top: 43px;
}

.accomodation .row .middle_col {
    padding: 0;
}

.accomodation .accomo_content {
    border: 1px dashed var(--primary-color);
    padding: 16px;
}

.accomodation .accomo_content p {
    font-family: 'Gabriela';
    font-size: 16px;
    text-align: justify;
}

.food-info {
    background: var(--secondary-color) !important;
    border-left: 5px solid var(--primary-color) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.food-info:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-5px);
}

.food-info .heading {
    color: var(--primary-color);
    font-weight: 700;
}



/* Accomodation */

/* Provide In Retreats */

.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_retreats .container {
    position: relative;
    z-index: 1;
}

.provide_retreats .provide_box {
    background: var(--secondary-color);
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    margin-top: 120px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}

.provide_retreats .provide_box .provide_img {
    margin-top: -75px;
    margin-left: auto;
    margin-right: auto;
    height: 115px;
    width: 115px;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 100%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
    align-items: center;
    display: flex;
    ;
}

.provide_retreats .provide_box .provide_img img,
.provide_retreats .provide_box .provide_img i {
    font-size: 35px;
    color: #fff;
    transition: all 0.3s ease;
    margin: auto;
}

.provide_retreats .provide_box .provide_img:hover img,
.provide_retreats .provide_box .provide_img:hover i {
    transform: scale(1.2);
}

.provide_retreats .provide_box .provide_head {
    text-align: center;
    font-family: 'Gabarito';
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
}

.provide_retreats .provide_box .provide_content {
    text-align: center;
    font-family: 'Gabriela';
    font-size: 16px;
    color: #000;
}

/* Provide In Retreats */

/* Sample Healing */

.sample_healing {
    padding: 35px 0 50px 0;
}

.sample_healing .healing_content {
    margin-top: 35px;
}

.sample_healing .healing_btn {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
    background: var(--secondary-color);
    border-radius: 50px;
    padding: 5.5px 15px;
    text-decoration: none;
    max-width: 135px;
    margin: auto;
    display: block;
    margin-top: 70px !important;
    text-align: center;
}

/* Sample Healing */


/* Inclusions & Exclusions */

.inclusions_exclusions .inclusion {
    background: var(--primary-color);
    padding: 20px 10px;
}

.inclusions_exclusions .exclusion {
    background: var(--secondary-color);
    padding: 20px 10px;
}

.inclusions_exclusions .inclusion_box {
    max-width: 90%;
    margin: auto;
    position: relative;
}

.inclusions_exclusions .inclusion_box::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-position: center center;
    background: url(../img/icon/like.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    height: 350px;
    z-index: 0;
    opacity: 0.3;
}

.inclusions_exclusions .inclusion_box .content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.inclusions_exclusions .inclusion_box ul li {
    font-family: 'Gabarito';
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 10px;
}

.inclusions_exclusions .inclusion_box .inclu_head {
    text-align: center;
    font-family: 'Gabarito';
    font-size: 32px;
    color: #FFECBE;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.inclu_hr {
    border: 0;
    background: #FFECBE;
    margin-bottom: 20px;
    height: 3px;
    width: 60%;
}

.inclusions_exclusions .exclusion_box {
    max-width: 90%;
    margin: auto;
    position: relative;
}

.inclusions_exclusions .exclusion_box::after {
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-position: center center;
    background: url(../img/icon/dislike.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 350px;
    height: 350px;
    z-index: 0;
    opacity: 0.5;
    filter: invert(1);

}

.inclusions_exclusions .exclusion_box .content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.inclusions_exclusions .exclusion_box .exclu_head {
    text-align: center;
    font-family: 'Gabarito';
    font-size: 32px;
    color: #493812;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.exclu_hr {
    border: 0;
    background: #493812;
    margin-bottom: 20px;
    height: 3px;
    width: 60%;
}

.inclusions_exclusions .exclusion_box ul li {
    font-family: 'Gabarito';
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
}

/* Inclusions & Exclusions */
/* 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;
}

.photo-gallery {}


.photo-gallery .photo_box {
    width: 100%;
    height: auto;
    padding: 20px;
    overflow: hidden;
    object-fit: cover;
}

.photo-gallery .photo_box img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}


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

.photo-gallery.owl-carousel .owl-stage {
    display: flex;
}

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

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


/* 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 */

/* YTTC Page Modernization Styles */
.who-is-for {
    background: #fdf6f6;
    border: 1px solid var(--primary-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.who-is-for .title {
    color: var(--primary-color);
    font-weight: 700;
}

.who-is-for .fa-check-circle {
    color: var(--primary-color) !important;
}

.approach-details {
    background: var(--text-dark);
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
    color: var(--text-light);
}

.approach-details .title {
    color: var(--secondary-color);
    font-weight: 700;
}

.reasons_to_try {
    background: var(--primary-color) !important;
    color: white !important;
}

.cta_mini_card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta_mini_card .btn-light {
    color: var(--primary-color) !important;
}

.detailed_syllabus {
    background: linear-gradient(to bottom, var(--secondary-color), #fff);
}


.detailed_syllabus .accordion-button {
    font-family: 'Kanit', sans-serif !important;
    background-color: var(--primary-color) !important;
    color: white !important;
    transition: all 0.3s ease;
}

.detailed_syllabus .accordion-button:not(.collapsed) {
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.detailed_syllabus .accordion-button.collapsed {
    background-color: var(--primary-color) !important;
    color: var(--text-light);
}

.detailed_syllabus .accordion-button::after {
    filter: brightness(0) invert(1);
}

.detailed_syllabus .accordion-body {
    background-color: var(--secondary-color) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.5);
}

.detailed_syllabus .accordion-item {
    border: none !important;
    background: transparent !important;
}

.detailed_syllabus .accordion-button i {
    color: var(--secondary-color) !important;
    /* Make icons stand out on primary bg */
}

.daily_schedule .title {
    color: var(--primary-color) !important;
}

.accommodation-carousel .item {
    width: 100%;
    height: auto;
    padding: 20px;
    overflow: hidden;
    object-fit: cover;
}

.accommodation-carousel .item img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}


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

.accommodation-carousel.item .owl-stage {
    display: flex;
}

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

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


@media (max-width: 768px) {
    .accommodation-carousel .item img {
        height: 250px;
    }
}

.photo-gallery .gallary_photo .item img {
    height: 250px !important;
    object-fit: cover !important;
    width: 100% !important;
}

/* Enhanced note_text for YTTC */
.daily_schedule .note_text {
    max-width: 500px;
    background: #fff9f0 !important;
    border: 2px solid var(--primary-color) !important;
    padding: 1rem !important;
    border-radius: 1rem !important;
    transition: transform 0.3s ease;
}

.daily_schedule .note_text:hover {
    transform: translateY(-5px);
}

.daily_schedule .note_text p {
    color: var(--primary-color) !important;
    font-family: 'Gabarito' !important;
    font-size: 18px !important;
}
/* Quick Enquiry Form Style */
.quick-enquiry {
    background-color: var(--primary-color);
}

.quick-enquiry .enquiry-card {
    background-color: var(--text-light);
    border-radius: 20px;
    padding: 30px 40px;
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.quick-enquiry .form-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Kanit', sans-serif;
}

.quick-enquiry .form-subtitle {
    font-size: 14px;
    font-family: 'Gabarito', sans-serif;
}

.quick-enquiry .form-label {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.quick-enquiry .form-control,
.quick-enquiry .form-select {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.quick-enquiry .form-control:focus,
.quick-enquiry .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(170, 35, 64, 0.1);
}

.quick-enquiry .btn-submit {
    background-color: var(--black);
    color: var(--text-light);
    border: none;
    transition: all 0.3s ease;
}

.quick-enquiry .btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.quick-enquiry .btn-action-black {
    background-color: var(--black);
    color: var(--text-light);
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-enquiry .btn-action-black:hover {
    background-color: var(--text-dark);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .quick-enquiry .enquiry-card {
        padding: 20px;
    }
    
    .quick-enquiry .form-title {
        font-size: 22px;
    }
}
/* =====================================================
   PURNAM YOGASHALA — 100 HR YTTC PAGE
   course-100hr.css
   ===================================================== */

/* ── Shared section tags & headings ── */
.c100-section-tag {
    display: inline-block;
    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: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.c100-section-tag--light {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}
.c100-section-h2 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0 0 14px;
}
.c100-section-sub {
    font-family: 'Gabriela', serif;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 0;
}
.c100-section-sub a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* ── HERO ── */
.c100-hero {
    min-height: 92vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}
.c100-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20,5,8,0.88) 0%, rgba(20,5,8,0.55) 60%, rgba(0,0,0,0.3) 100%);
}
.c100-hero .container { position: relative; z-index: 1; }

.c100-hero__content { padding-right: 20px; }
.c100-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.85);
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}
.c100-hero__h1 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(26px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.c100-hero__sub {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.4vw, 16px);
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 540px;
}
.c100-hero__sub strong { color: #FAD7A0; }

.c100-hero__facts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.c100-hero__fact {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 7px 14px;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
.c100-hero__fact i { color: #FAD7A0; font-size: 13px; }

.c100-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.breadcrumb { margin-top: 8px; }
.breadcrumb ul { display: flex; list-style: none; padding: 0; gap: 8px; margin: 0; }
.breadcrumb ul li { font-size: 11px; color: rgba(255,255,255,0.5); }
.breadcrumb ul li::after { content: ' /'; margin-left: 8px; }
.breadcrumb ul li:last-child::after { display: none; }
.breadcrumb ul li a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb ul li a:hover { color: #fff; }

/* Hero card */
.c100-hero__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}
.c100-hero__card-head {
    background: var(--primary-color);
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 20px;
}
.c100-hero__card-list {
    list-style: none;
    padding: 16px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #f0e8ea;
}
.c100-hero__card-list li {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}
.c100-hero__card-list li i { color: var(--primary-color); width: 16px; flex-shrink: 0; }
.c100-hero__card-list li span { font-weight: 700; color: #111; margin-right: 4px; font-family: 'Kanit', sans-serif; }

.c100-hero__card-fees { padding: 14px 20px; border-bottom: 1px solid #f0e8ea; }
.c100-hero__card-fees-head {
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.c100-hero__card-fees table { width: 100%; border-collapse: collapse; }
.c100-hero__card-fees th {
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    padding: 5px 0;
    text-align: left;
    border-bottom: 1px solid #f0e8ea;
}
.c100-hero__card-fees td {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #333;
    padding: 7px 0;
    border-bottom: 1px solid #f9f4f5;
}
.c100-hero__card-fees .price {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Kanit', sans-serif;
}
.c100-hero__card-btn {
    display: block;
    background: var(--primary-color);
    color: #fff !important;
    text-align: center;
    padding: 14px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: opacity 0.2s;
}
.c100-hero__card-btn:hover { opacity: 0.88; }

.c100-mobile-card { padding: 20px 0; }

/* ── OVERVIEW ── */
.c100-overview p {
    font-family: 'Gabriela', serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.c100-overview p a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.c100-overview p strong { color: var(--text-dark); }

.c100-overview__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.c100-overview__badges span {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(170,35,64,0.06);
    border: 1px solid rgba(170,35,64,0.15);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}
.c100-overview__badges i { font-size: 12px; }

/* ── WHO IS IT FOR ── */
.c100-for { background: #fdf6f7; }
.c100-for__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.c100-for__card {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid rgba(170,35,64,0.1);
    border-top: 3px solid var(--primary-color);
    transition: box-shadow 0.2s;
}
.c100-for__card:hover { box-shadow: 0 4px 20px rgba(170,35,64,0.1); }
.c100-for__icon {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
}
.c100-for__card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.c100-for__card p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.c100-for__card a { color: var(--primary-color); text-decoration: none; font-weight: 600; }

/* ── CURRICULUM ── */
.c100-curriculum { background: #fff; }
.c100-curriculum__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.c100-curr__card {
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 12px;
    padding: 22px 20px;
    position: relative;
    transition: box-shadow 0.2s;
}
.c100-curr__card:hover { box-shadow: 0 4px 20px rgba(170,35,64,0.08); }
.c100-curr__num {
    font-family: 'Kanit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(170,35,64,0.12);
    line-height: 1;
    margin-bottom: 4px;
}
.c100-curr__card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.c100-curr__card p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #444;
    line-height: 1.75;
    margin: 0;
}

/* ── SYLLABUS ── */
.c100-syllabus { background: #fdf6f7; }
.c100-syllabus .accordion-button {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}
.c100-syllabus .accordion-button:not(.collapsed) { color: var(--primary-color); background: rgba(170,35,64,0.04); box-shadow: none; }
.c100-syllabus .accordion-body ul {
    padding-left: 18px;
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #444;
    line-height: 1.8;
}
.c100-syllabus .accordion-body strong { color: var(--text-dark); }

/* ── SCHEDULE ── */
.c100-schedule { background: #fff; }
.c100-schedule__wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}
.c100-schedule__box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 8px;
    padding: 12px 16px;
}
.c100-schedule__box--main {
    background: #fff;
    border-color: rgba(170,35,64,0.25);
    border-left: 3px solid var(--primary-color);
}
.c100-schedule__time {
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
}
.c100-schedule__act {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}
.c100-schedule__note {
    margin-top: 24px;
    background: rgba(170,35,64,0.05);
    border: 1px solid rgba(170,35,64,0.15);
    border-radius: 8px;
    padding: 12px 18px;
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.c100-schedule__note i { color: var(--primary-color); flex-shrink: 0; margin-top: 3px; }

/* ── WHY CHOOSE ── */
.c100-why {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.c100-why__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,5,8,0.90) 0%, rgba(20,5,8,0.80) 100%);
}
.c100-why .container { position: relative; z-index: 1; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }
.c100-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.c100-why__card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 22px 18px;
    transition: background 0.2s;
}
.c100-why__card:hover { background: rgba(255,255,255,0.1); }
.c100-why__card i {
    font-size: 24px;
    color: #FAD7A0;
    margin-bottom: 12px;
    display: block;
}
.c100-why__card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.c100-why__card p {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
}

/* ── CERTIFICATION ── */
.c100-cert p {
    font-family: 'Gabriela', serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.c100-cert a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.c100-cert__badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}
.c100-cert__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.15);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    flex: 1;
    min-width: 120px;
}
.c100-cert__badge i { font-size: 22px; color: var(--primary-color); }
.c100-cert__badge span { font-family: 'Kanit', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-dark); }
.c100-cert__badge small { font-family: 'Gabriela', serif; font-size: 11px; color: #666; }

/* ── FEES ── */
.c100-fees { background: #fdf6f7; }
.c100-fees__card {
    background: #fff;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.c100-fees__card--featured {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.c100-fees__card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FAD7A0;
    color: #1a1105;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.c100-fees__card-head {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}
.c100-fees__card--featured .c100-fees__card-head { color: rgba(255,255,255,0.8); }
.c100-fees__price {
    font-family: 'Kanit', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}
.c100-fees__price span { font-size: 18px; }
.c100-fees__card--featured .c100-fees__price { color: #fff; }
.c100-fees__inr {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #888;
}
.c100-fees__card--featured .c100-fees__inr { color: rgba(255,255,255,0.65); }
.c100-fees__btn {
    display: block;
    background: var(--primary-color);
    color: #fff !important;
    text-decoration: none !important;
    padding: 11px 28px;
    border-radius: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    transition: opacity 0.2s;
}
.c100-fees__btn:hover { opacity: 0.88; }
.c100-fees__btn--white { background: #fff; color: var(--primary-color) !important; }
.c100-fees__includes {
    background: #fff;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 14px;
    padding: 22px 20px;
    height: 100%;
}
.c100-fees__includes h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 7px;
}
.c100-fees__includes h3 i { font-size: 14px; }
.c100-fees__includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.c100-fees__includes ul li {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #444;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.5;
}
.c100-fees__includes ul li i { color: #27ae60; font-size: 12px; flex-shrink: 0; margin-top: 3px; }
.c100-fees__excl li i { color: #e74c3c !important; }
.c100-fees__excl li { color: #777 !important; }

/* ── ACCOMMODATION ── */
.c100-acc { background: #fff; }
.c100-acc p {
    font-family: 'Gabriela', serif;
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.c100-acc__food {
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 10px;
    padding: 18px;
}
.c100-acc__food h4 {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.c100-acc__food ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ── SEO TEXT ── */
.c100-seo-text { background: #fdf6f7; }
.c100-seo-text h2 {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}
.c100-seo-text p {
    font-family: 'Gabriela', serif;
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 18px;
}
.c100-seo-text a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.c100-seo-text strong { color: var(--text-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .c100-hero { min-height: 75vh; padding: 90px 0 50px; }
    .c100-for__grid { grid-template-columns: repeat(2, 1fr); }
    .c100-curriculum__grid { grid-template-columns: repeat(2, 1fr); }
    .c100-why__grid { grid-template-columns: repeat(2, 1fr); }
    .c100-why { background-attachment: scroll; }
    .c100-schedule__wrap { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .c100-hero { min-height: auto; padding: 80px 0 40px; }
    .c100-hero__h1 { font-size: 26px; }
    .c100-hero__facts { gap: 8px; }
    .c100-hero__fact { font-size: 12px; padding: 5px 10px; }
    .c100-for__grid { grid-template-columns: 1fr; }
    .c100-curriculum__grid { grid-template-columns: 1fr; }
    .c100-why__grid { grid-template-columns: 1fr; }
    .c100-schedule__wrap { grid-template-columns: 1fr 1fr; }
    .c100-cert__badges { flex-direction: column; }
    .c100-overview__badges span { font-size: 11px; }
}

@media (max-width: 480px) {
    .c100-schedule__wrap { grid-template-columns: 1fr; }
    .c100-hero__btns { flex-direction: column; }
    .c100-hero__btns .pys-btn { text-align: center; justify-content: center; }
}


/* ── Hero button fixes ── */
.c100-btn-outline-light {
    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;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.7);
}
.c100-btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    color: #ffffff !important;
}

/* ── Hero card fees table ── */
.c100-hero__card-fees table {
    width: 100%;
    border-collapse: collapse;
}
.c100-hero__card-fees th {
    font-family: 'Kanit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 4px;
    text-align: left;
    border-bottom: 1.5px solid #f0e8ea;
}
.c100-hero__card-fees td {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #444;
    padding: 7px 4px;
    border-bottom: 0.5px solid #f9f4f5;
    vertical-align: middle;
}
.c100-hero__card-fees td.price {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    white-space: nowrap;
}
.c100-hero__card-fees td i {
    color: #888;
    font-size: 11px;
    margin-right: 3px;
}
.c100-hero__card-fees tr.row-popular td {
    background: rgba(170,35,64,0.04);
    font-weight: 600;
}
.popular-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 20px;
    margin-left: 5px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Secure Your Spot button ── */
.c100-hero__card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff !important;
    text-align: center;
    padding: 14px 20px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: opacity 0.2s, transform 0.15s;
    border-radius: 0 0 14px 14px;
    letter-spacing: 0.04em;
}
.c100-hero__card-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff !important;
}
.c100-hero__card-btn i { font-size: 13px; }


/* ── Buttons ─────────────────────────────────────────────────── */
.pys-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.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 {
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255,255,255,0.55);
}

.pys-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.85);
}

/* ── Dots ────────────────────────────────────────────────────── */
.pys-hero__dots {
    position: absolute;
    bottom: 28px;
    left: 60px;
    z-index: 6;
    display: flex;
    gap: 8px;
    align-items: center;
}

.pys-hero__dot {
    display: block;
    height: 3px;
    width: 8px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    animation: pysDot 18s infinite;
}

.pys-hero__dot--1 { animation-delay: 0s;  }
.pys-hero__dot--2 { animation-delay: 6s;  }
.pys-hero__dot--3 { animation-delay: 12s; }

@keyframes pysDot {
    0%   { width: 8px;  background: rgba(255,255,255,0.3); }
    5%   { width: 32px; background: #aa2340; }
    28%  { width: 32px; background: #aa2340; }
    33%  { width: 8px;  background: rgba(255,255,255,0.3); }
    100% { width: 8px;  background: rgba(255,255,255,0.3); }
}

/* ── Scroll cue ──────────────────────────────────────────────── */
.pys-hero__scroll-cue {
    position: absolute;
    bottom: 32px;
    right: 60px;
    z-index: 6;
}

.pys-hero__scroll-cue span {
    display: block;
    width: 18px;
    height: 18px;
    border-right: 2px solid rgba(255,255,255,0.4);
    border-bottom: 2px solid rgba(255,255,255,0.4);
    transform: rotate(45deg);
    animation: pysScrollBounce 1.6s infinite;
}

@keyframes pysScrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0);   opacity: 0.4; }
    50%       { transform: rotate(45deg) translateY(5px); opacity: 1;   }
}

/* ── Old slider classes neutralized ─────────────────────────── */
.hero-slider-wrapper, .hero-slider, .slider-container,
.slider-content, .slider-text, .hero-waves, .slider-heading,
.slider-buttons, .slider-image, .prev-slide, .next-slide,
.slick-dots, .slick-dots li, .slick-dots .dot { display: none !important; }

/* =============================================================
   TABLET (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
    .pys-hero__stage {
        padding: 110px 40px 80px;
    }
    .pys-hero__content--2,
    .pys-hero__content--3 {
        top: 110px;
        left: 40px;
        right: 40px;
    }
    .pys-hero__dots { left: 40px; }
    .pys-hero__scroll-cue { right: 40px; }
}

/* =============================================================
   MOBILE (≤ 768px)
   ============================================================= */
@media (max-width: 768px) {
    .pys-hero { justify-content: flex-end; }

    .pys-hero__stage {
        padding: 0 20px 72px;
    }

    .pys-hero__content--2,
    .pys-hero__content--3 {
        top: auto;
        bottom: 72px;
        left: 20px;
        right: 20px;
    }

    .pys-hero__h1  { font-size: clamp(22px, 7vw, 32px); }
    .pys-hero__h2  { font-size: clamp(20px, 6.5vw, 28px); }
    .pys-hero__h1-accent { font-size: 13px; }
    .pys-hero__desc { font-size: 13px; margin: 10px 0 14px; }
    .pys-hero__features { gap: 6px 14px; margin-bottom: 18px; }
    .pys-hero__features li { font-size: 12px; }
    .pys-hero__tag { font-size: 10px; padding: 3px 10px; }
    .pys-hero__dots { left: 20px; bottom: 22px; }
    .pys-hero__scroll-cue { display: none; }
}

/* =============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
    .pys-hero__overlay {
        background: linear-gradient(160deg, rgba(10,8,4,0.5) 0%, rgba(10,8,4,0.85) 100%);
    }
    .pys-hero__features { display: none; }
    .pys-hero__btns { flex-direction: column; align-items: stretch; }
    .pys-btn { justify-content: center; width: 100%; }
    .pys-hero__content--2,
    .pys-hero__content--3 { bottom: 65px; }
    .pys-hero__dots { bottom: 18px; }
}


/* Join US Start */

.pys-join {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
    background: url('../img/home/2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.pys-join::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--primary-color) 92%, transparent) 0%,
        color-mix(in srgb, var(--secondary-color) 75%, transparent) 100%);
    z-index: 0;
}

.pys-join__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 260px 1fr;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    align-items: center;
    gap: 40px;
}

.pys-join__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    flex-shrink: 0;
    border: 3px solid rgba(255,255,255,0.2);
}

.pys-join__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pys-join__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pys-join__tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-family: 'Kanit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    align-self: flex-start;
    backdrop-filter: blur(4px);
}

.pys-join__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.3);
}

.pys-join__heading span {
    color: var(--secondary-color);
}

.pys-join__text {
    font-family: 'Gabriela', serif;
    font-size: 15px;
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.pys-join__date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
}

.pys-join__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.pys-join__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: opacity 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    line-height: 1;
}

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

.pys-join__btn--primary {
    background: #ffffff;
    color: var(--primary-color) !important;
}

.pys-join__btn--outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.6);
}

.pys-join__btn--outline:hover {
    background: rgba(255,255,255,0.12);
}

@media (max-width: 992px) {
    .pys-join__inner {
        grid-template-columns: 200px 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .pys-join {
        padding: 36px 0;
        background-attachment: scroll;
    }
    .pys-join__inner {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .pys-join__img-wrap {
        max-width: 240px;
        margin: 0 auto;
    }
    .pys-join__tag {
        align-self: center;
    }
    .pys-join__date {
        justify-content: center;
    }
    .pys-join__btns {
        justify-content: center;
    }
    .pys-join__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pys-join__heading {
        font-size: 20px;
    }
    .pys-join__text {
        font-size: 13px;
    }
}

/* Join US End */


/* Student Review */
.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__stars {
    color: #f4b400;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.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; }
}

/* Student Review */


.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%;
    }
}


/* ── Hero outline button ── */
.c100-btn-outline-light {
    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;
    text-decoration: none !important; cursor: pointer;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
    color: #ffffff !important; border: 1.5px solid rgba(255,255,255,0.65);
    backdrop-filter: blur(4px); box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.15s;
}
.c100-btn-outline-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); color: #fff !important; }

/* ── Enroll Now gradient ── */
.c100-hero .pys-btn--primary {
    background: linear-gradient(135deg, #aa2340 0%, #c0392b 100%);
    box-shadow: 0 4px 14px rgba(170,35,64,0.4);
}
.c100-hero .pys-btn--primary:hover { opacity: 0.9; transform: translateY(-2px); color: #fff !important; }

/* ── Secure Your Spot ── */
.c100-hero__card-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: linear-gradient(135deg, #aa2340 0%, #c0392b 100%);
    color: #fff !important; padding: 14px 20px;
    font-family: 'Kanit', sans-serif; font-size: 14px; font-weight: 700;
    text-decoration: none !important; border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 14px rgba(170,35,64,0.3);
    transition: opacity 0.2s, transform 0.15s; letter-spacing: 0.04em;
}
.c100-hero__card-btn:hover { opacity: 0.9; transform: translateY(-1px); color: #fff !important; }

/* ── Popular tag & row ── */
.popular-tag {
    display: inline-block; background: var(--primary-color); color: #fff;
    font-family: 'Kanit', sans-serif; font-size: 9px; font-weight: 700;
    padding: 1px 7px; border-radius: 20px; margin-left: 5px; vertical-align: middle; text-transform: uppercase;
}
.c100-hero__card-fees tr.row-popular td { background: rgba(170,35,64,0.05); font-weight: 600; }

/* ── 4-card fees ── */
.c100-fees__grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 28px; }
.c100-fees__card4 { background: #fff; border: 1px solid rgba(170,35,64,0.12); border-radius: 14px; padding: 24px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; transition: box-shadow 0.2s; }
.c100-fees__card4:hover { box-shadow: 0 6px 24px rgba(170,35,64,0.1); }
.c100-fees__card4--popular { background: var(--primary-color); border-color: var(--primary-color); }
.c100-fees__card4-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #FAD7A0; color: #1a1105; font-family: 'Kanit', sans-serif; font-size: 11px; font-weight: 700; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }
.c100-fees__card4-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(170,35,64,0.08); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary-color); margin-top: 8px; }
.c100-fees__card4--popular .c100-fees__card4-icon { background: rgba(255,255,255,0.15); color: #fff; }
.c100-fees__card4-name { font-family: 'Kanit', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.c100-fees__card4--popular .c100-fees__card4-name { color: rgba(255,255,255,0.8); }
.c100-fees__card4-price { font-family: 'Kanit', sans-serif; font-size: 36px; font-weight: 700; color: var(--primary-color); line-height: 1; }
.c100-fees__card4--popular .c100-fees__card4-price { color: #fff; }
.c100-fees__card4-note { font-family: 'Gabriela', serif; font-size: 12px; color: #666; line-height: 1.5; }
.c100-fees__card4--popular .c100-fees__card4-note { color: rgba(255,255,255,0.65); }
.c100-fees__card4-btn { display: block; width: 100%; background: var(--primary-color); color: #fff !important; text-decoration: none !important; padding: 10px; border-radius: 7px; font-family: 'Kanit', sans-serif; font-size: 13px; font-weight: 700; margin-top: 4px; transition: opacity 0.2s; }
.c100-fees__card4-btn:hover { opacity: 0.88; }
.c100-fees__card4-btn--white { background: #fff; color: var(--primary-color) !important; }
.c100-fees__note { display: flex; gap: 10px; align-items: flex-start; background: rgba(170,35,64,0.04); border: 1px solid rgba(170,35,64,0.12); border-radius: 8px; padding: 12px 14px; }
.c100-fees__note i { color: var(--primary-color); flex-shrink: 0; margin-top: 3px; }
.c100-fees__note p { font-family: 'Gabriela', serif; font-size: 12px; color: #555; line-height: 1.6; margin: 0; }
@media (max-width: 992px) { .c100-fees__grid4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .c100-fees__grid4 { grid-template-columns: 1fr; } }

/* ── Syllabus image sticky ── */
.c100-syllabus__img-wrap { position: sticky; top: 100px; overflow: visible; }
.c100-syllabus__img-wrap img { width: 100%; border-radius: 14px; box-shadow: 0 12px 48px rgba(0,0,0,0.15); display: block; }
.c100-syllabus__img-badge { position: absolute; bottom: -16px; left: 20px; background: var(--primary-color); color: #fff; border-radius: 10px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 4px 16px rgba(170,35,64,0.35); }
.c100-syllabus__img-badge i { font-size: 22px; color: #FAD7A0; flex-shrink: 0; }
.c100-syllabus__img-badge strong { display: block; font-family: 'Kanit', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.2; }
.c100-syllabus__img-badge span { font-family: 'Gabriela', serif; font-size: 11px; color: rgba(255,255,255,0.75); }
@media (max-width: 991px) { .c100-syllabus__img-wrap { position: relative; top: auto; margin-top: 32px; } }


/* =====================================================
   HOW TO BOOK SECTION — c100-book
   ===================================================== */

.c100-book { background: #fdf6f7; }

.c100-book__steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    margin-bottom: 40px;
}

.c100-book__step {
    background: #ffffff;
    border: 1px solid rgba(170,35,64,0.12);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: box-shadow 0.2s;
}
.c100-book__step:hover {
    box-shadow: 0 8px 28px rgba(170,35,64,0.1);
}

.c100-book__step-num {
    font-family: 'Kanit', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: rgba(170,35,64,0.1);
    line-height: 1;
    position: absolute;
    top: 14px;
    right: 18px;
}

.c100-book__step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #aa2340 0%, #c0392b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(170,35,64,0.3);
    flex-shrink: 0;
}

.c100-book__step h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.c100-book__step p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.c100-book__step p strong { color: var(--primary-color); }

.c100-book__step-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #aa2340 0%, #c0392b 100%);
    color: #fff !important;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: opacity 0.2s, transform 0.15s;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(170,35,64,0.3);
}
.c100-book__step-btn:hover { opacity: 0.9; transform: translateY(-2px); }

.c100-book__note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(170,35,64,0.06);
    border: 1px solid rgba(170,35,64,0.15);
    border-radius: 20px;
    padding: 5px 14px;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 4px;
}
.c100-book__note i { font-size: 11px; }

/* Arrow connector */
.c100-book__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    margin-top: 80px;
    color: rgba(170,35,64,0.3);
    font-size: 22px;
}

/* Bank details */
.c100-book__bank {
    background: var(--text-dark);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.c100-book__bank-left {
    padding: 28px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.c100-book__bank-left > i {
    font-size: 28px;
    color: #FAD7A0;
    flex-shrink: 0;
    margin-top: 4px;
}
.c100-book__bank-left strong {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}
.c100-book__bank-left p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
}

.c100-book__bank-right {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c100-book__bank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.c100-book__bank-row:last-child { border-bottom: none; }
.c100-book__bank-row span {
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.c100-book__bank-row strong {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: #FAD7A0;
    font-weight: 700;
    text-align: right;
}

@media (max-width: 992px) {
    .c100-book__steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .c100-book__connector { display: none; }
    .c100-book__bank { grid-template-columns: 1fr; }
    .c100-book__bank-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 768px) {
    .c100-book__step { padding: 22px 18px; }
    .c100-book__step-num { font-size: 40px; }
    .c100-book__bank-left { padding: 20px; }
    .c100-book__bank-right { padding: 20px; }
}


/* =====================================================
   WHY CHOOSE — NEW 2-COL DESIGN — c100-why2
   ===================================================== */

.c100-why2 { background: #ffffff; }

.c100-why2__inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

/* ── Image column ── */
.c100-why2__img-col { position: sticky; top: 90px; }

.c100-why2__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.c100-why2__img-wrap img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Floating stat cards */
.c100-why2__stat {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 130px;
}

.c100-why2__stat strong {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.c100-why2__stat span {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #777;
}

.c100-why2__stat--tl {
    top: -14px;
    left: -16px;
    border-top: 3px solid var(--primary-color);
}

.c100-why2__stat--br {
    bottom: 24px;
    right: -16px;
    border-bottom: 3px solid var(--primary-color);
}

/* ── List column ── */
.c100-why2__list-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c100-why2__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(170,35,64,0.08);
    transition: background 0.2s;
}

.c100-why2__item:first-child { padding-top: 0; }
.c100-why2__item:last-of-type { border-bottom: none; }

.c100-why2__item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #aa2340 0%, #c0392b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(170,35,64,0.25);
    margin-top: 2px;
}

.c100-why2__item-body h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px;
    line-height: 1.3;
}

.c100-why2__item-body p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    line-height: 1.72;
    margin: 0;
}

.c100-why2__item-body p strong { color: var(--text-dark); font-weight: 600; }
.c100-why2__item-body a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.c100-why2__item-body a:hover { text-decoration: underline; }

/* CTA */
.c100-why2__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    flex-wrap: wrap;
}

.c100-why2__cta-note {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #888;
}
.c100-why2__cta-note i { color: var(--primary-color); }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .c100-why2__inner { grid-template-columns: 360px 1fr; gap: 40px; }
}

@media (max-width: 992px) {
    .c100-why2__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .c100-why2__img-col {
        position: relative;
        top: auto;
        max-width: 480px;
        margin: 0 auto;
    }
    .c100-why2__stat--tl { left: 0; top: -12px; }
    .c100-why2__stat--br { right: 0; bottom: 14px; }
}

@media (max-width: 768px) {
    .c100-why2__item { gap: 12px; padding: 16px 0; }
    .c100-why2__item-icon { width: 38px; height: 38px; min-width: 38px; font-size: 15px; }
    .c100-why2__item-body h3 { font-size: 14px; }
    .c100-why2__stat { padding: 10px 14px; }
    .c100-why2__stat strong { font-size: 18px; }
}


/* =====================================================
   200HR PAGE — WHY CHOOSE UNIQUE SECTION c200-why
   ===================================================== */

.c200-why { background: #fdf6f7; }

.c200-why__grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

/* Big image left */
.c200-why__big {
    position: sticky;
    top: 90px;
    border-radius: 20px;
    overflow: visible;
}

.c200-why__img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.c200-why__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}

.c200-why__img-stat {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 2px;
    top: -14px;
    left: -16px;
    border-top: 3px solid var(--primary-color);
}

.c200-why__img-stat--2 {
    top: auto;
    left: auto;
    bottom: 24px;
    right: -16px;
    border-top: none;
    border-bottom: 3px solid var(--primary-color);
}

.c200-why__img-stat strong {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.c200-why__img-stat span {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #777;
}

/* Right: cards */
.c200-why__cards {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.c200-why__card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(170,35,64,0.08);
    transition: background 0.2s;
}
.c200-why__card:first-child { padding-top: 0; }
.c200-why__card:last-child { border-bottom: none; }

.c200-why__card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #aa2340 0%, #c0392b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(170,35,64,0.25);
    margin-top: 2px;
}

.c200-why__card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 6px;
}

.c200-why__card p {
    font-family: 'Gabriela', serif;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.c200-why__card p strong { color: var(--text-dark); }

@media (max-width: 1100px) {
    .c200-why__grid { grid-template-columns: 320px 1fr; gap: 32px; }
}
@media (max-width: 992px) {
    .c200-why__grid { grid-template-columns: 1fr; }
    .c200-why__big { position: relative; top: auto; max-width: 440px; margin: 0 auto; }
    .c200-why__img-stat { left: 0; }
    .c200-why__img-stat--2 { right: 0; }
}
@media (max-width: 768px) {
    .c200-why__card { gap: 12px; padding: 16px 0; }
    .c200-why__card-icon { width: 38px; height: 38px; min-width: 38px; font-size: 15px; }
    .c200-why__card h3 { font-size: 14px; }
}

/* =====================================================
   200HR — GALLERY + SCHEDULE TABS + GUIDE IMG
   ===================================================== */

/* Gallery section */
.p200-gallery { background:#fff; }
.p200-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}
.p200-gallery__item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.p200-gallery__item--tall { grid-row: span 1; }
.p200-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.p200-gallery__item:hover img { transform: scale(1.04); }
.p200-gallery__caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,4,6,.8) 0%, transparent 100%);
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 13px; font-weight: 600;
    padding: 20px 14px 12px;
    display: flex; align-items: center; gap: 7px;
}
.p200-gallery__caption i { color: #FAD7A0; }

.p200-gallery__stats {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    background: #fdf6f7;
    border-radius: 14px;
    padding: 24px 32px;
}
.p200-gallery__stat {
    text-align: center;
}
.p200-gallery__stat strong {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 28px; font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}
.p200-gallery__stat span {
    font-family: 'Gabriela', serif;
    font-size: 12px; color: #666;
    margin-top: 4px; display: block;
}

/* Schedule tabs */
.p200-schedule { background: #fdf6f7; }
.p200-sched__img-wrap {
    position: sticky; top: 90px;
    overflow: visible;
}
.p200-sched__img-wrap img {
    width: 100%; border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0,0,0,.14);
    display: block;
}
.p200-sched__img-badge {
    position: absolute; bottom: -16px; left: 20px;
    background: var(--primary-color); color: #fff;
    border-radius: 10px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 4px 16px rgba(170,35,64,.35);
}
.p200-sched__img-badge i { font-size: 20px; color: #FAD7A0; flex-shrink: 0; }
.p200-sched__img-badge strong { display: block; font-family: 'Kanit', sans-serif; font-size: 14px; font-weight: 700; line-height: 1.2; }
.p200-sched__img-badge span { font-family: 'Gabriela', serif; font-size: 11px; color: rgba(255,255,255,.75); }

.p200-sched__tabs { }
.p200-sched__tab-btns {
    display: flex; gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.p200-sched__tab-btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 20px;
    border: 1.5px solid rgba(170,35,64,.2);
    border-radius: 8px;
    background: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 13px; font-weight: 600;
    color: #666; cursor: pointer;
    transition: all .2s;
}
.p200-sched__tab-btn i { font-size: 13px; }
.p200-sched__tab-btn.active,
.p200-sched__tab-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.p200-sched__tab-content { }
.p200-sched__row {
    display: flex; align-items: center;
    gap: 12px; padding: 12px 14px;
    border-bottom: 1px solid rgba(170,35,64,.07);
    background: #fff;
    border-radius: 6px;
    margin-bottom: 6px;
}
.p200-sched__row--main {
    background: #fff;
    border-left: 3px solid var(--primary-color);
    padding-left: 11px;
}
.p200-sched__time {
    font-family: 'Kanit', sans-serif;
    font-size: 12px; font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap; min-width: 120px;
}
.p200-sched__act {
    font-family: 'Gabriela', serif;
    font-size: 13px; color: #333; line-height: 1.4;
}
.p200-sched__note {
    margin-top: 16px;
    background: rgba(170,35,64,.05);
    border: 1px solid rgba(170,35,64,.14);
    border-radius: 8px; padding: 12px 16px;
    font-family: 'Gabriela', serif;
    font-size: 12px; color: #555;
    display: flex; gap: 8px; align-items: flex-start;
}
.p200-sched__note i { color: var(--primary-color); flex-shrink: 0; margin-top: 2px; }

/* Guide image in SEO section */
.p200-guide__img-wrap {
    position: sticky; top: 90px;
}
.p200-guide__img-wrap img {
    width: 100%; border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

/* Responsive */
@media (max-width: 992px) {
    .p200-gallery__grid { grid-template-columns: 1fr 1fr; }
    .p200-gallery__stats { grid-template-columns: repeat(2,1fr); }
    .p200-sched__img-wrap { position: relative; top: auto; margin-bottom: 32px; }
    .p200-guide__img-wrap { position: relative; top: auto; margin-bottom: 24px; }
}
@media (max-width: 576px) {
    .p200-gallery__grid { grid-template-columns: 1fr; }
    .p200-gallery__stats { grid-template-columns: repeat(2,1fr); padding: 18px 16px; }
    .p200-sched__time { min-width: 100px; font-size: 11px; }
}


/* =====================================================
   200HR — SECTION 2 (OVERVIEW) + SECTION 3 (GALLERY)
   ===================================================== */

/* ── Section 2: Overview ── */
.p200-overview { background: #ffffff; }
.p200-overview p {
    font-family: 'Gabriela', serif;
    font-size: 15px; color: #444;
    line-height: 1.82; margin-bottom: 16px;
}
.p200-overview p strong { color: var(--text-dark); }
.p200-overview p a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.p200-overview__badges {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px;
}
.p200-overview__badges span {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(170,35,64,.06);
    border: 1px solid rgba(170,35,64,.18);
    color: var(--primary-color);
    font-family: 'Kanit', sans-serif;
    font-size: 12px; font-weight: 600;
    padding: 6px 14px; border-radius: 20px;
}
.p200-overview__badges i { font-size: 12px; }

/* Infoboxes row */
.p200-infobox {
    background: #fff;
    border: 1px solid rgba(170,35,64,.12);
    border-top: 3px solid var(--primary-color);
    border-radius: 14px;
    padding: 26px 24px;
    height: 100%;
}
.p200-infobox--alt {
    background: #fdf6f7;
    border-top-color: var(--primary-color);
}
.p200-infobox h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 9px;
}
.p200-infobox h3 i { font-size: 16px; }
.p200-infobox ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.p200-infobox ul li {
    font-family: 'Gabriela', serif;
    font-size: 13.5px; color: #333;
    padding-left: 22px;
    position: relative; line-height: 1.55;
}
.p200-infobox ul li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--primary-color);
    font-weight: 700; font-size: 13px;
}
.p200-infobox p {
    font-family: 'Gabriela', serif;
    font-size: 14px; color: #444;
    line-height: 1.78; margin-bottom: 14px;
}
.p200-infobox p:last-child { margin-bottom: 0; }
.p200-infobox p strong { color: var(--text-dark); }
.p200-infobox a {
    color: var(--primary-color);
    font-weight: 600; text-decoration: none;
}
.p200-infobox a:hover { text-decoration: underline; }

/* Cert strip */
.p200-cert-strip {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2c0d14 100%);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.p200-cert-strip__icon {
    font-size: 38px; color: #FAD7A0; flex-shrink: 0;
}
.p200-cert-strip__text { flex: 1; min-width: 220px; }
.p200-cert-strip__text strong {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 16px; font-weight: 700;
    color: #ffffff; margin-bottom: 8px; line-height: 1.3;
}
.p200-cert-strip__text p {
    font-family: 'Gabriela', serif;
    font-size: 13px; color: rgba(255,255,255,.72);
    line-height: 1.72; margin: 0;
}
.p200-cert-strip__text p strong { color: #FAD7A0; }
.p200-cert-strip .pys-btn--primary {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── Section 3: Gallery ── */
.p200-gallery { background: #fdf6f7; }
.p200-gallery__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}
.p200-gallery__item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e8e0e1;
}
.p200-gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.p200-gallery__item:hover img { transform: scale(1.04); }
.p200-gallery__caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(15,4,6,.78) 0%, transparent 100%);
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 13px; font-weight: 600;
    padding: 28px 14px 12px;
    display: flex; align-items: center; gap: 7px;
}
.p200-gallery__caption i { color: #FAD7A0; font-size: 13px; }

.p200-gallery__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(170,35,64,.1);
    border-radius: 14px;
    padding: 24px 32px;
}
.p200-gallery__stat { text-align: center; }
.p200-gallery__stat strong {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 30px; font-weight: 700;
    color: var(--primary-color); line-height: 1;
}
.p200-gallery__stat span {
    font-family: 'Gabriela', serif;
    font-size: 12px; color: #666;
    margin-top: 5px; display: block;
}

/* ── Why section ── */
.p200-why {
    position: relative;
    padding: 80px 0;
    background: url('assets/img/retreats/img3.jpg') center/cover no-repeat;
    background-attachment: fixed;
}
.p200-why__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(15,4,6,.92), rgba(15,4,6,.82));
}
.p200-why .container { position: relative; z-index: 1; }
.p200-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.p200-why__card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 24px 20px;
    transition: background .2s;
}
.p200-why__card:hover { background: rgba(255,255,255,.13); }
.p200-why__icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #aa2340, #c0392b);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(170,35,64,.3);
}
.p200-why__card h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 15px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
}
.p200-why__card p {
    font-family: 'Gabriela', serif;
    font-size: 13px; color: rgba(255,255,255,.65);
    line-height: 1.7; margin: 0;
}
.p200-why__card p strong { color: #FAD7A0; }

/* ── Responsive ── */
@media (max-width: 992px) {
    .p200-why { background-attachment: scroll; }
    .p200-why__grid { grid-template-columns: repeat(2, 1fr); }
    .p200-gallery__grid { grid-template-columns: 1fr 1fr; }
    .p200-gallery__stats { grid-template-columns: repeat(2, 1fr); padding: 20px; }
    .p200-cert-strip { flex-direction: column; text-align: center; padding: 22px 20px; }
    .p200-cert-strip__icon { font-size: 30px; }
    .p200-cert-strip .pys-btn--primary { width: 100%; justify-content: center; }
}
@media (max-width: 576px) {
    .p200-why__grid { grid-template-columns: 1fr; }
    .p200-gallery__grid { grid-template-columns: 1fr; }
    .p200-gallery__stats { grid-template-columns: 1fr 1fr; padding: 16px; }
    .p200-gallery__stat strong { font-size: 24px; }
    .p200-infobox { padding: 20px 18px; }
}
/* =============================================================
   PURNAM YOGASHALA — CERTIFICATION SECTION
   pys-cert__ prefix — no conflicts
   ============================================================= */

.pys-cert {
    padding: 72px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pys-cert::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.pys-cert .container {
    position: relative;
    z-index: 1;
}

/* Header */
.pys-cert__header {
    margin-bottom: 44px;
}

.pys-cert__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #aa2340;
    color: #ffffff;
    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-cert__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0 0 12px;
}

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

/* Main 3-col grid */
.pys-cert__main {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 32px;
}

/* Left col */
.pys-cert__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 16px;
}

/* Right col */
.pys-cert__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 16px;
}

/* Points */
.pys-cert__point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px;
    border: 1px solid #f0e8ea;
    border-radius: 10px;
    background: #ffffff;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pys-cert__point:hover {
    background: #fef6f7;
    box-shadow: 0 4px 16px rgba(170,35,64,0.08);
}

/* Left points — icon on right, text on left */
.pys-cert__point--left {
    flex-direction: row-reverse;
    text-align: right;
}

/* Right points — icon on left, text on right */
.pys-cert__point--right {
    flex-direction: row;
    text-align: left;
}

.pys-cert__point-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.pys-cert__point:hover .pys-cert__point-icon {
    transform: scale(1.08);
}

.pys-cert__point-body h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px;
    line-height: 1.3;
}

.pys-cert__point-body p {
    font-family: 'Gabriela', serif;
    font-size: 11px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Center certificate */
.pys-cert__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 8px;
}

.pys-cert__cert-frame {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(170,35,64,0.2);
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pys-cert__cert-frame:hover {
    transform: scale(1.02);
}

.pys-cert__cert-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.pys-cert__rys-badge {
    background: var(--primary-color);
    color: #FAD7A0;
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

/* Stats row */
.pys-cert__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.pys-cert__stat {
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.1);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

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

.pys-cert__stat-lbl {
    font-family: 'Gabriela', serif;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    display: block;
}

/* CTA buttons */
.pys-cert__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================================
   TABLET (≤ 992px)
   ============================================================= */
@media (max-width: 992px) {
    .pys-cert {
        padding: 56px 0 48px;
    }
    .pys-cert__main {
        grid-template-columns: 1fr 260px 1fr;
        gap: 0;
    }
    .pys-cert__left {
        padding-right: 16px;
    }
    .pys-cert__right {
        padding-left: 16px;
    }
    .pys-cert__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================================
   MOBILE (≤ 768px) — certificate first, then cards
   ============================================================= */
@media (max-width: 768px) {
    .pys-cert {
        padding: 48px 0 40px;
    }
    .pys-cert__header {
        margin-bottom: 28px;
    }
    /* Certificate FIRST on mobile */
    .pys-cert__main {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .pys-cert__center {
        order: 1;
        padding: 0 0 20px;
    }
    .pys-cert__left {
        order: 2;
        padding-right: 0;
    }
    .pys-cert__right {
        order: 3;
        padding-left: 0;
    }
    /* All points left-aligned on mobile */
    .pys-cert__point--left {
        flex-direction: row;
        text-align: left;
    }
    .pys-cert__point-body h3 {
        font-size: 13px;
    }
    .pys-cert__point-body p {
        font-size: 12px;
    }
    .pys-cert__stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .pys-cert__stat-num {
        font-size: 16px;
    }
    .pys-cert__btns {
        flex-direction: column;
        align-items: stretch;
    }
    .pys-cert__btns .pys-btn,
    .pys-cert__btns .pys-btn--outline-dark {
        justify-content: center;
        width: 100%;
    }
}

/* =============================================================
   SMALL MOBILE (≤ 480px)
   ============================================================= */
@media (max-width: 480px) {
    .pys-cert__point {
        padding: 11px;
    }
    .pys-cert__point-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 14px;
        border-radius: 8px;
    }
    .pys-cert__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .pys-cert__stat {
        padding: 12px 8px;
    }
    .pys-cert__stat-num {
        font-size: 14px;
    }
    .pys-cert__stat-lbl {
        font-size: 10px;
    }
}

.svg-container {
    position: absolute;
    top: 0;
    pointer-events: none;
}
