/* Root Colors */
:root {
    /* --primary-color: #006064; */
    --primary-color: #aa2340;
    --secondary-color: #FAD7A0;
    --accent-color: #F5F2ED;
    --text-dark: #2F2F2F;
    --text-light: #FFFFFF;
    --text-muted: #666;
    --border-color: #ccc;
    --primary-dark: #3d2d0c;
    --black: #000;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: 'Gabriela';
}

/* Colors */
.bg-dark-brown {
    background-color: var(--primary-color);
}

.text-gold {
    color: var(--secondary-color) !important;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-gold:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.know-more-btn {
    display: inline-block;
    background-color: var(--text-light);
    color: var(--primary-color);
    border: 1px solid var(--text-light);
    padding: 8px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    align-content: center;
}

.know-more-btn::before,
.know-more-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--text-light);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.know-more-btn::after {
    animation-delay: 1s;
}

.know-more-btn:hover {
    border: 1px solid var(--text-dark);
    background-color: var(--text-dark);
    color: var(--text-light);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


.btn_sec {
    position: relative;
    text-align: center;
    padding: 22px 0 10px 0;
    z-index: 1;
    transition: all 0.5s ease;
}

/* Button Styles */
.book-now-button {
    position: relative;
    display: inline-block;
    padding: 5px 20px;
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    z-index: 1;
}

.book-now-button::before,
.book-now-button::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.book-now-button::after {
    animation-delay: 1s;
}

/* Hover Effect */
.book-now-button:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: scale3d(1.1, 1.1, 1.1);
}

@media (max-width: 768px) {
    .book-now-button {
        padding: 5px 15px;
        font-size: 16px;
        border-radius: 20px;
        text-wrap: nowrap;
    }
}

.right-book-now-btn {
    position: fixed;
    right: -35px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--text-light);
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background-color 0.3s, color 0.3s;
}

.right-book-now-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.right-book-now-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.text-justify {
    text-align: justify;
}

.common-heading .title {
    font-size: 28px;
    font-family: 'kanit';
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.common-heading .title-light {
    font-size: 28px;
    font-family: 'kanit';
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0;
    text-shadow: 1px 1px 0 var(--black);
}

.common-heading .subtitle {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0;
}

.common-heading .subtitle-white {
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0;
}

.common-heading .divider {
    align-items: center;
}

.common-heading .divider-img {
    height: 30px;
    width: auto;
}


/* Main Header Rewrite */
#main-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
}

.desktop-split-header .top-header-bar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid var(--secondary-color);
}

.main-navbar-bar {
    z-index: 1000;
}

.main-navbar-bar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-navbar-bar.is-sticky .nav-spacer {
    flex-grow: 0 !important;
}

.main-navbar-bar.is-sticky .sticky-book-now {
    max-width: 350px !important;
    opacity: 1 !important;
}

.transition-all {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info {
    font-family: 'Kanit';
    color: var(--primary-color);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 27px;
}

.contact-info:hover {
    color: var(--text-dark);
}

.social-icons a {
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    color: var(--text-dark);
    transform: scale(1.2);
}

.contact-info i {
    font-size: 18px;
    line-height: 27px;
    color: var(--primary-color) !important;
}

#sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: top 0.3s ease-in-out;
}

.nav-item {
    border: none;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    gap: 20px;
}

.nav-link {
    font-family: 'Kanit', sans-serif;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 21px;
    color: var(--text-light);
    transition: all 0.3s ease-in-out;

}

.nav-item:hover,
.nav-item.active {
    border-bottom: solid 2px var(--secondary-color);
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--secondary-color) !important;
}

.nav-btn {
    background: var(--primary-color);
    border-radius: 50px;
    margin-left: 10px;
    padding: 5px 20px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    align-content: center;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    /* keep button above background ripples */
}

/* Pseudo elements for founder-img-style ripple animation */
.nav-btn::before,
.nav-btn::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    z-index: -1;
    pointer-events: none;
    animation: navBtnRipple 2s infinite ease-out;
}

.nav-btn::after {
    animation-delay: 1s;
}

@keyframes navBtnRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.nav-book-btn {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: auto;
    text-decoration: none;
}

.nav-btn:hover {
    background: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.nav-btn:hover .nav-book-btn {
    color: var(--text-dark);
}

/* Secondary Button Option (Gold/Secondary Color base with same ripples) */
.nav-btn.nav-btn-secondary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.nav-btn.nav-btn-secondary .nav-book-btn {
    color: var(--primary-color);
}

.nav-btn.nav-btn-secondary::before,
.nav-btn.nav-btn-secondary::after {
    border-color: var(--secondary-color);
}

.nav-btn.nav-btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--secondary-color);
}

.nav-btn.nav-btn-secondary:hover .nav-book-btn {
    color: var(--secondary-color);
}

.dropdown-menu {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

@media (min-width: 992px) {
    .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease-in-out;
        pointer-events: none;
    }

    .nav-item.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.dropdown-item {
    color: var(--text-dark);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}


.navbar-toggler {
    background: var(--primary-color);
    border: none;
    padding: 2px;
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    border: solid 2px var(--secondary-color);
    padding: 2px;
    border-radius: 5px;
    box-shadow: none !important;
}

/* Extracted Header Inline Styles */
.top-logo-img {
    height: 80px;
    width: auto;
}

.contact-section {
    flex: 1;
    text-align: center;
}

.contact-text {
    color: var(--text-dark) !important;
    font-size: 14px;
}

.top-social-icons a {
    color: var(--primary-color) !important;
}

.top-book-btn {
    font-size: 14px;
}

.nav-spacer {
    flex-grow: 1;
}

.mobile-book-btn {
    background: var(--secondary-color) !important;
    color: var(--text-dark) !important;
}

.nav-right {
    flex-grow: 1;
}

.sticky-book-now {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .mobile-logo-img {
        height: 60px;
        width: auto;
        background: white;
        border-radius: 0 0 10px 10px;
        padding: 5px;
    }

    .mobile-menu-95 {
        width: 95% !important;
        margin: 0 auto !important;
    }

    .top {
        display: none !important;
    }

    #main-header {
        height: auto;
    }

    #main-header .logo {
        height: 80px;
        width: 80px;
        z-index: 9999;
        position: relative;
        padding: 0;
    }

    #main-header .logo .logo-img {
        height: 78px;
        width: 78px;
    }

    .contact-info {
        font-family: 'Kanit';
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 12px;
    }

    .contact-info i {
        font-size: 12px;
        line-height: 12px;
    }

    .social-icons {
        gap: 5px;
    }

    .top {
        display: none !important;
    }

    #sticky-header {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        background-color: transparent;
        box-shadow: none;
        padding: 10px 0;
    }

    #navbarNav {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100vw;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        background-color: var(--primary-color);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
        z-index: 9990;
        padding: 20px 15px 30px 15px;
    }

    .nav-item {
        border: none;
        box-shadow: none;
        margin-top: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 0;
    }

    .nav-link {
        font-size: 16px;
        transition: all 0.3s ease-in-out;
        padding: 5px 15px;
    }

    .nav-item:hover,
    .nav-item.active {
        border: none;
        background: var(--secondary-color);
    }

    .nav-item:hover .nav-link,
    .nav-item.active .nav-link {
        color: var(--text-dark) !important;
    }

    .nav-btn {
        background: var(--secondary-color);
        border-radius: 5px;
        margin: 15px 0 0 0;
        width: 100%;
        text-align: center;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
        transition: transform 0.3s ease-in-out;
        padding: 5px 10px;
    }

    .nav-book-btn {
        font-family: 'Kanit', sans-serif;
        font-weight: 600;
        font-size: 16px;
        text-align: center;
        color: var(--text-dark);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: auto;
    }

    .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.1);
        /* Slightly darker inner bg for dropdowns */
        border-radius: 0;
        padding-left: 15px;
    }

    .dropdown-item {
        color: var(--text-dark);
        padding: 10px 15px;
    }

}


/*footer*/
.footer {
    position: relative;
    padding: 2rem 0 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    z-index: 1;
    bottom: 0;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/logo-bg.png) no-repeat center;
    background-size: contain;
    opacity: 0.2;
    /* 20% opacity */
    z-index: -1;
    /* Places the background behind the content */
}

.footer-title {
    color: var(--secondary-color);
    font-family: 'Kanit';
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 172px;
    height: 0px;
    left: 53px;
    top: 50.5px;
    border: 2px solid var(--text-light);

}

.footer-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Gabriela';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: justify;
    color: var(--text-light);
}

.footer-list li,
.footer-links li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-list li i,
.footer-links li i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.footer-list li:hover,
.footer-links li:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Contact Info Section */
.footer .contact-info {
    padding: 10px 0;
}

.footer .contact-info .info-box {
    background-color: var(--secondary-color);
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.footer .contact-info .info-box:hover {
    transform: translateY(-5px);
}

.footer .contact-info .icon {
    background-color: var(--secondary-color);
    border: solid 1px var(--primary-color);
    color: var(--text-dark);
    padding: 20px;
    height: 25px;
    width: 25px;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: -22px;
    /* Positions the icon outside the box */
    top: 0;
    transform: translateY(-50%);
}

.footer .contact-info .info-text {
    color: var(--text-dark);
    font-family: 'Gabriela';
}

.footer .contact-info .info-text h4 {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: bold;
    word-break: break-word;
}

.footer .contact-info .info-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social {
    display: block;
    padding: 20px 0;
    border-top: 2px dashed rgba(255, 160, 122, 0.5);
    border-bottom: 2px dashed rgba(255, 160, 122, 0.5);
    text-align: center;
    align-items: center;
    width: 60%;
    margin: 0 auto;
}

.footer-social-icons a i {
    font-size: 26px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.footer-bottom {
    padding-bottom: 10px;
}

.footer-bottom p {
    font-size: 14px;
    font-family: 'Gabriela';
    margin: 0;
    color: var(--text-light);
}

.footer-bottom hr {
    border-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-social {
        width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        column-gap: 20px;
    }

    .footer-bottom p {
        text-align: center;
    }
}

@media (min-width:768px) {
    .order-md-6 {
        order: 6 !important
    }

    .order-md-7 {
        order: 7 !important
    }

    .order-md-8 {
        order: 8 !important
    }
}

@media (max-width:767.9px) {
    .order-6 {
        order: 6 !important
    }

    .order-7 {
        order: 7 !important
    }

    .order-8 {
        order: 8 !important
    }
}

/* Breadcrumb Design */
.breadcrumb {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: transparent;
    width: 100%;
    display: flex;
    justify-content: center;
}

.breadcrumb ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb ul li {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb ul li a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(250, 215, 160, 0.5);
}

.breadcrumb ul li:not(:last-child)::after {
    content: '\00bb';
    /* » */
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 1;
}

.breadcrumb ul li:last-child {
    color: var(--secondary-color);
    font-weight: 700;
    pointer-events: none;
}

/* Mobile Responsiveness for Breadcrumbs */
@media (max-width: 768px) {
    .breadcrumb {
        bottom: 15px;
        position: relative;
        transform: none;
        left: 0;
        margin-top: 10px;
    }

    .breadcrumb ul {
        gap: 8px !important;
    }

    .breadcrumb ul li {
        font-size: 14px !important;
    }

    .breadcrumb ul li:not(:last-child)::after {
        margin-left: 8px;
        font-size: 14px;
        line-height: 0.1;
    }
}

/* ============================================
   Social Icons - Header & Footer (bigger, button-style, attractive)
   ============================================ */

/* Header top bar social icons */
.top-social-icons a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color) !important;
    font-size: 15px;
    transition: all 0.3s ease-in-out;
}

.top-social-icons a:hover {
    background: var(--primary-color);
    color: var(--text-light) !important;
    transform: translateY(-2px) scale(1.05);
}

/* Footer social icons */
.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease-in-out;
}

.footer-social-icons a i {
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-social-icons a:hover i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .top-social-icons a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .footer-social-icons a {
        width: 40px;
        height: 40px;
    }

    .footer-social-icons a i {
        font-size: 17px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* ============================================
   Video Testimonials - click-to-load (no iframe until clicked)
   ============================================ */
.pys-video-reviews {
    margin-top: 44px;
}

.pys-video-reviews__heading {
    font-family: 'Kanit', sans-serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
}

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

.pys-video-card {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    border: 1px solid rgba(170, 35, 64, 0.12);
}

.pys-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pys-video-card iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.pys-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(170, 35, 64, 0.9);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pys-video-card:hover .pys-video-card__play {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .pys-video-reviews__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pys-video-card__play {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

/* ============================================
   Trust Stats Strip (about-us page)
   ============================================ */
.pys-trust-stats {
    background: var(--primary-color);
    padding: 28px 0;
}

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

.pys-trust-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
}

.pys-trust-stats__item i {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.pys-trust-stats__num {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.pys-trust-stats__label {
    font-family: 'Gabarito', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .pys-trust-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
.pys-acc {
    padding: 72px 0 60px;
    background: #ffffff;
}

.pys-acc__header {
    margin-bottom: 40px;
}

.pys-acc__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-acc__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-acc__subtext {
    font-family: 'Gabriela', serif;
    font-size: clamp(13px, 1.5vw, 15px);
    color: #555;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto;
}

.pys-acc__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.pys-acc__feat {
    background: #fdf6f7;
    border: 1px solid rgba(170,35,64,0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pys-acc__feat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.pys-acc__feat-title {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

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

/* Slider */
.pys-acc__slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.pys-acc__track-outer {
    overflow: hidden;
    width: 100%;
    border-radius: 14px;
}

.pys-acc__track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.pys-acc__slide {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 4px;
    box-sizing: border-box;
}

.pys-acc__slide img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 10px;
}

.pys-acc__slide-label {
    display: block;
    text-align: center;
    font-family: 'Kanit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-top: 8px;
    padding: 0 4px;
}

.pys-acc__arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(170,35,64,0.2);
    color: #aa2340;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.pys-acc__arrow:hover {
    background: #aa2340;
    color: #ffffff;
}

.pys-acc__arrow--prev { left: -14px; }
.pys-acc__arrow--next { right: -14px; }

.pys-acc__dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 16px;
}

.pys-acc__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(170,35,64,0.25);
    border: none;
    cursor: pointer;
    transition: background 0.2s, width 0.2s;
    padding: 0;
}

.pys-acc__dot--active {
    background: #aa2340;
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .pys-acc__slide {
        flex: 0 0 50%;
        width: 50%;
    }
    .pys-acc__slide img {
        height: 200px;
    }
    .pys-acc__arrow--prev { left: -10px; }
    .pys-acc__arrow--next { right: -10px; }
}

@media (max-width: 480px) {
    .pys-acc__slide {
        flex: 0 0 80%;
        width: 80%;
    }
    .pys-acc__slide img {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .pys-acc { padding: 56px 0 48px; }
    .pys-acc__features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pys-acc__slider { height: 360px; }
}

@media (max-width: 768px) {
    .pys-acc { padding: 48px 0 40px; }
    .pys-acc__features { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pys-acc__feat { padding: 14px 12px; }
    .pys-acc__slider { height: 260px; }
    .pys-acc__arrow { width: 36px; height: 36px; font-size: 13px; }
}

/* ============================================
   About Us page - image block & content cards
   ============================================ */
.pys-about__images {
    display: flex;
    align-items: stretch;
    gap: 16px;
    height: 100%;
}

.pys-about__img-main {
    flex: 0 0 60%;
    max-width: 60%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pys-about__img-main img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top;
    display: block;
}

.pys-about__img-side {
    flex: 1 1 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pys-about__img-side-item {
    flex: 1 1 50%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pys-about__img-side-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 130px;
}

@media (max-width: 767px) {
    .pys-about__images {
        flex-direction: column;
        height: auto;
    }

    .pys-about__img-main,
    .pys-about__img-side {
        flex: 1 1 auto;
        max-width: 100%;
    }

    .pys-about__img-main img {
        aspect-ratio: 16 / 9;
        object-position: top;
    }

    .pys-about__img-side {
        flex-direction: row;
    }

    .pys-about__img-side-item img {
        min-height: 110px;
    }
}

/* Philosophy & Offerings cards */
.pys-about__block {
    background: #fdf6f7;
    border: 1px solid rgba(170, 35, 64, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 28px 26px;
    height: 100%;
}

.pys-about__block-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.pys-about__block-title {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.pys-about__block-text {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 0;
}

.pys-about__block .pys-about__offer-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.pys-about__offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.pys-about__offer-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.pys-about__offer-list li:last-child {
    margin-bottom: 0;
}
