.about-service-list {
    list-style-image: url('../images/check-circle-green.svg');
}

.home-about-services img {
    aspect-ratio: 16/9;
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-about-services .hightlight {
    font-size: 14px;
    color: var(--color-primary);
    background-color: #FFF5F1;
    padding: 4px 4px;
    border-radius: 8px;
    display: inline;
}

.home-about-services .title {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: bold;
    margin-top: 28px 0;

}

.home-about-services .about-service-list {
    color: var(--color-secondary);
    font-size: 16px;
}

@media (max-width: 1024px) {
    .about-service-middle-picture {
        order: 2
    }

    .about-service-middle-text {
        order: 1
    }
}

.soulift-footer {
    background-color: var(--color-secondary);
    color: var(--color-background);
    padding: 40px 20px;
    font-family: 'Helvetica Neue', sans-serif;
}

.footer-content {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-left {
    flex: 1 1 60%;
}

.footer-left p {
    color: var(--color-background);
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary);
}

.footer-tagline {
    font-size: 12px;
    margin-bottom: 20px;
}

.footer-slogan {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-address,
.footer-hours {
    margin: 8px 0;
}

.footer-right {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
}

.footer-contact-label {
    font-weight: bold;
    color: var(--color-primary);
}

.footer-contact-link {
    color: var(--color-background);
    text-decoration: none;
}

.footer-contact-link:hover {
    text-decoration: underline;
}

.register-button {
    margin-top: 10px;
    background-color: var(--color-background);
    color: var(--color-primary);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    width: fit-content;
}

.register-button:hover {
    background-color: var(--color-primary);
    color: var(--color-background);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--color-primary);
    font-size: 18px;
    text-decoration: none;
}

.footer-divider {
    margin: 5px 0;
    border: none;
    border-top: 1px solid var(--color-background);
    opacity: 0.2;
}

.footer-bottom {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-primary);
}

@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        flex: 1 1 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: normal;
    }

    .footer-slogan {
        max-width: 225px;
    }

    .soulift-footer {
        padding: 25px 15px;
    }

    .soulift-footer .has-global-padding {
        padding: 0;
    }

    .footer-divider {
        margin: 15px 0;
    }
}



.statistic-box {
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-right: 20px;
    margin-left: 20px;
    border-width: 1px;
    border-color: var(--color-primary);
    border-style: solid;
    overflow-wrap: normal;
    word-break: normal;
    min-width: 210px;
    min-height: 132px;
    background-color: var(--color-background);
    font-weight: 600;
    align-content: center;
}

.statistic-box .statistic-text {
    color: var(--color-secondary);
    font-size: 14px;
}

.statistic-box .statistic-number {
    color: var(--color-primary);
    font-size: 36px;
}

.statistic-box .statistic-subtext {
    color: var(--color-primary);
    font-size: 14px;
}

@media (max-width: 1240px) {
    .statistic-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .statistic-wrapper {
        flex-direction: row;
    }
}


.soulift-header {
    padding: 20px 0;
    font-family: 'Helvetica Neue', sans-serif;
    position: relative;
}

.language-selector {
    margin-left: 0 !important;
}

.language-selector ul {
    list-style-type: none;
    display: flex;
    flex-flow: column;
    padding-inline-start: 0;
    position: absolute;
}

.language-selector:hover li {
    display: inline !important;
}

.language-selector li.current-lang {
    order: 1;
}

.language-selector li.current-lang::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('../images/dropdown-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 5px;
    vertical-align: middle;
    color: var(--color-secondary);
    position: absolute;
    top: 8px;
}

.language-selector li:not(.current-lang) {
    display: none;
    order: 2;
}

.header-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-image {
    height: 40px;
    width: auto;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
}

.nav-item {
    font-size: 14px;
    font-weight: bold;
}

.nav-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background-color: var(--color-secondary);
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Mobile Menu Header */

.mobile-menu-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.mobile-menu-close-header {
    background: none;
    border: none;
    color: var(--color-background);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    z-index: 1002;
}

.mobile-menu-close-header {
    width: 30px;
    height: 30px;
    display: flex;
    color: var(--color-background);
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-header {
    display: none;
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 15px;
    }

    .mobile-menu-close-header {
        display: block;
        right: -85vw;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .header-nav.open {
        right: 0;
        padding-top: 20px;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 85%;
        border-top: 1px solid var(--color-background);
        margin: 0 auto;
    }

    .nav-item {
        padding: 0;
        margin: 15px 0;
    }

    .nav-link {
        color: var(--color-background);
        font-size: 18px;
        font-weight: 500;
        display: block;
        transition: background-color 0.3s ease;
    }

    .nav-link:hover {
        color: var(--color-background);
    }

    .language-selector {
        margin-left: 0;
    }

    .language-selector ul {
        gap: 10px;
    }

    .mobile-menu-overlay.open {
        display: block;
    }

    .mobile-menu-close.open {
        display: block;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.open .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-toggle.open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (min-width: 1025px) {

    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-menu-close {
        display: none !important;
    }
}

.coach-name {
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 28px;
}

.coach-quote {
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.coach-skills-title {
    font-weight: bold;
    color: var(--color-secondary);
    font-size: 20px;
    margin-top: 5px;
}

.coach-skills {
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.homepage-banner {
    background-image: url('../images/homepage-banner-background.png');
    background-size: cover;
    background-position: center;
}

.testimonial-banner {
    display: flex;
}

.testimonial-banner-left {
    background-image: url('../images/testimonial-banner-left.png');
    background-position: center center;
    background-size: cover;
}


.testimonial-banner-right {
    background-image: url('../images/testimonial-banner-right.png');
    background-position: center center;
    background-size: cover;
}

.banner-quote-wrapper {
    background-color: rgba(112, 83, 73, 0.5);
    backdrop-filter: blur(4px);
    align-content: center;
    justify-items: center;
    padding: 30px;
}

.banner-quote {
    color: var(--color-background);
    font-size: 44px;
    font-weight: bold;
    line-height: 1.2;
    margin: 19px auto;
    text-align: center;
}

.banner-quote-job-title {
    color: var(--color-background);
    font-size: 16px;
}

.banner-quote-client-name {
    color: var(--color-background);
    font-weight: bold;
    font-size: 20px;
}

.homepage-banner {
    padding-bottom: 40px;
}

.homepage-banner-right {
    display: flex;
    flex-direction: column;
}

.homepage-banner-right .image-wrapper {
    display: flex;
    flex-grow: 1;
    align-items: end;
}

@media (max-width: 1024px) {
    .testimonial-banner .wp-block-columns {
        gap: 0;
    }

    .banner-quote {
        font-size: 22px;
    }

    .banner-quote-job-title {
        font-size: 8px;
    }

    .banner-quote-client-name {
        font-size: 10px;
    }

    .testimonial-banner-left {
        min-height: 300px;
    }

    .testimonial-banner .banner-quote-icon {
        height: 30px
    }

    .coach-name {
        font-size: 20px;
    }

    .homepage-banner-right .image-wrapper {
        display: block;
    }

}

.banner-text-title {
    font-size: 36px;
    color: #FFF5F1;
}

.banner-text-sub-title {
    font-size: 16px;
    position: relative;
    margin-top: 20px;
}

.banner-text-sub-title::after {
    background-color: var(--color-background);
    top: -10px;
    content: '';
    display: block;
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0);
    width: 150px;
    margin-bottom: 10px;
}

.page-banner {
    text-align: center;
}

.about-us .question-header {
    background-image: url('../images/question-icon.svg');
    min-height: 15px;
    min-width: 15px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 10px 0;
}

.question-wrapper {
    border-top: solid 1px var(--color-border);
    cursor: pointer;
}

.question-wrapper:hover {
    border-top: solid 1px var(--color-primary);
}


.testimonials-wrapper .testimonial {
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    padding: 20px;
}

.testimonial-image {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    float: left;
    padding: 8px;
}

.testimonial-text {
    font-size: 18px;
}

.testimonial-client-from {
    font-size: 14px;
}

.testimonial-image img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (min-width: 1025px) {
    .testimonials-wrapper {
        width: 100%;
        column-count: 3;
    }

    .testimonials-wrapper .testimonial {
        margin-bottom: 10px;
        display: inline-block;
    }

    .splide.testimonials-slide {
        visibility: visible;
    }
}

.coaches-table td {
    padding: 10px;
}

.coach-qa {
    max-width: 800px;
    margin-top: 30px;
}

.coach-qa-question {
    font-weight: bold;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.coach-qa-answer {
    color: var(--color-secondary);
    margin-bottom: 30px;
}

.coach-image {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 7/8;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    max-width: 280px;
}

.coach-image:hover {
    filter: grayscale(0%);
}


.transformation-table img {
    width: 280px;
    height: 280px;
}

.transformation-table {
    border-spacing: 32px;
}

.featured-posts {
    display: flex;
    gap: 0 32px;
    padding: 40px 0;
}

.featured-posts-left {
    flex: 1 1 50%;
}

.featured-posts-right {
    flex: 1 1 50%;
}

.featured-posts-left img {
    aspect-ratio: 5/4;
}

.featured-posts-right img {
    aspect-ratio: 3/2;
}

.featured-posts-right .wp-block-post {
    display: flex;
    gap: 0 32px;
}

.featured-posts-right .small-featured-image {
    flex-basis: 30%;
}

.featured-posts-right .small-featured-title {
    flex-basis: 70%;
}

.posts-list .featured-posts-right .wp-block-post-title {
    margin-top: 0px;
}

.featured-posts-right .wp-block-post {
    padding-bottom: 12px;
}

.featured-posts-right .wp-block-post:not(:first-child) {
    padding-top: 12px;
    border-top: 1px solid rgba(199, 176, 169, 0.5);
}

.posts-list img {
    border-radius: 12px;
}

.posts-list .wp-block-post-title {
    font-size: 24px;
    color: var(--color-secondary);
    font-weight: bold;
    margin-top: 16px;
}

.posts-list .wp-block-post-excerpt {
    margin-top: 8px;
}

.posts-list .wp-block-post-date {
    margin-top: 24px;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .featured-posts {
        flex-direction: column;
    }
}

.posts-3-col img {
    aspect-ratio: 16/9;
}

.post-single .wp-block-post-date {
    font-size: 14px;
    color: var(--color-primary);
    text-align: center;
}

.post-single .wp-block-post-date::before {
    content: 'NGÀY ĐĂNG:';
    font-size: 14px;
    color: var(--color-primary);
}

.post-single .post-content {
    max-width: 800px;
    margin: 60px auto;
}

.post-single .wp-block-post-title {
    max-width: 500px;
    text-align: center;
}

.post-single .wp-block-post-excerpt {
    margin: 48px 0;
}

.post-single .wp-block-post-featured-image {
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(199, 176, 169, 0.5);
}

.post-single .wp-block-post-content {
    margin-top: 48px;
}

.more-posts .wp-block-post-featured-image {
    border-bottom: none;
    padding-bottom: 0;
}

.more-posts .wp-block-post-title {
    text-align: left;
    ;
}

.more-posts .wp-block-post-excerpt {
    margin: 10px 0;
}

.more-posts .wp-block-post-date {
    text-align: left;
    margin-top: 0;
}

.more-posts .wp-block-post-date::before {
    content: '';
}

.contact-us-page {
    background-image: url('../images/contact-us-banner.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    justify-items: center;
    padding: 150px 0 60px 0;
}

.contact-us-form {
    display: inline-block;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 0 5px #e4dbd7;
    min-width: 55vw;
    justify-items: center;
    margin: 0 20px;
}

.contact-us-form .title {
    color: var(--color-secondary);
    font-weight: bold;
    ;
}

.contact-us-form form {
    margin-top: 32px;
}

.contact-us-form .wpcf7 {
    width: 100%;
}

.our-value-wrapper .our-value-title {
    margin: 20px 0 16px 0;
}

.our-value-wrapper p {
    margin-bottom: 16px;
}

.opportunity-sub-title {
    display: flex;
    text-align: center;
}

.opportunity-sub-title>* {
    flex: 1 1 33%;
}