/* Banner chips */
.solution-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0 0;
}
.solution-chips .chip {
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.faq-list{
    display: block;
    width: 100%;
    margin: 0 auto 0;
    padding: 0 0 0;
}
.faq-list ul{
    width: 100%;
}
.faq-list li{
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    padding: 25px 25px 25px 40px;
    background-color: #F7F7F7;
    border-radius: 10px;
}
.faq-list li:hover{
    background-color: #F1F1F1;
}
.faq-list li:last-child{
    margin-bottom: 0;
}
.faq-list li .title{
    display: block;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    padding-right: 30px;
    position: relative;
    color: #333;
    font-family: 'Poppins-Medium';
    cursor: pointer;
}
.faq-list li .title:before {
    content: "";
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    background: url('../img/icon-down.svg') no-repeat center center;
    background-size: auto 8px;
    transform: translate(-50%,-50%) rotate(0);
    transition: transform .2s ease-out;
    position: absolute;
    top: 12px;
    right: -10px;
    cursor: pointer;
    border-radius: 50%;
}
.faq-list li.show .title:before {
    filter: invert(100%);
    transform: translate(-50%,-50%) rotate(180deg);
}
.faq-list li .text{
    display: none;
    padding-top: 15px;
    color: #666;
    font-size: 15px;
    overflow: hidden;
    line-height: 1.6;
    transition: transform .2s ease-out;
    position: relative;
}
.faq-list li .text .more{
    position: absolute;
    bottom: -2px;
    right: 0;
    font-size: 14px;
}
.faq-list li .text .more a{
    color: #1E4A8F;
}
.faq-list li .text .more a:hover{
    color: #B81C25;
}
.faq-list li.show{
    background: linear-gradient(90deg, #0B3889 0%, #0E50C8 100%);
}
.faq-list li.show .text{
    display: block;
    color: #FFF;
}
.faq-list li.show .title{
    color: #FFF;
}



.serving-list{
    display: block;
    width: 100%;
    padding-bottom: 30px;
    overflow: hidden;
}
.serving-list ul{
    display: flex;
    justify-content: space-between;
}
.serving-list li{
    display: block;
    width: calc(25% - 20px);
    height: auto;
    position: relative;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}
.serving-list .pic {
    display: flex;
    margin: 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1.04;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #0000001A;
    justify-content: center;
    align-content: center;
}
.serving-list .pic img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s;
}
.serving-list li:hover .pic img{
    transform: scale(1.05);
}
.serving-list .text {
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    color: #FFF;
    width: 100%;
    height: 100%;
    padding: 20px 20px 20px;
    background-color: #00000033;
    z-index: 10;
    flex-direction: column;
    justify-content: flex-end;
}
.serving-list .text strong{
    font-size: 18px;
    line-height: 1.25;
    min-height: 25px;
    font-family: 'Poppins-SemiBold';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.serving-list .text .desc{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

/* Solutions box */
.solutions-box {
    padding: 20px 0 85px;
}
.solutions-box .h2title {
    text-align: left;
    padding-bottom: 50px;
}
.solutions-box .h2title .title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #333;
    font-family: 'Poppins-Medium';
}
.solutions-box .h2title .subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 900px;
}

/* Solution cards */
.solution-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 24px;
    margin-top: 20px;
}
.solution-card {
    display: flex;
    flex-direction: column;
    background: #f7f7f7;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.solution-card:nth-child(5) {
    grid-column: 1 / -1;
    flex-direction: row;
}
.solution-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}
.solution-card .card-image {
    flex: 0 0 auto;
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.solution-card:nth-child(5) .card-image {
    flex: 0 0 50%;
    width: 50%;
    height: auto;
}
.solution-card .card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.35s ease;
}
.solution-card:hover .card-image img {
    transform: scale(1.05);
}
.solution-card .card-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
}
.solution-card:nth-child(5) .card-content {
    padding: 28px 32px;
}
.solution-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #333;
    font-family: 'Poppins-SemiBold';
}
.solution-card:nth-child(5) h3 {
    font-size: 22px;
}
.solution-card > .card-content > p {
    margin: 0 0 14px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}
.solution-card .product-links {
    margin: 14px 0;
    padding: 0 0 0 20px;
    list-style: disc;
}
.solution-card .product-links li {
    margin-bottom: 8px;
    color: #666;
}
.solution-card .product-links a {
    color: #0E50C8;
    text-decoration: none;
    font-size: 15px;
}
.solution-card .product-links a:hover {
    text-decoration: underline;
}
.solution-card .card-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 14px;
}
.solution-card .btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e6e6e6;
}
.solution-card .btn-primary {
    background: #0E50C8;
    border-color: #0E50C8;
    color: #fff;
}
.solution-card .btn-primary:hover {
    background: #0B3889;
    border-color: #0B3889;
}
.solution-card .btn-secondary {
    background: #fff;
    border-color: #e6e6e6;
    color: #333;
}
.solution-card .btn-secondary:hover {
    background: #f7f7f7;
}
.solution-card .card-meta {
    font-size: 13px;
    color: #999;
    margin: 0;
    font-style: italic;
}

/* Facility type section */
.facility-type-section {
    padding: 20px 0 85px;
}
.facility-type-section .h2title {
    text-align: left;
    padding-bottom: 50px;
}
.facility-type-section .h2title .title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #333;
    font-family: 'Poppins-Medium';
}
.facility-type-section .h2title .subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 900px;
}
.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.facility-col {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
}
.facility-col:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #0E50C8;
}
.facility-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0E50C8 0%, #0B3889 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.facility-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}
.facility-col h3 {
    margin: 0 0 12px;
    font-size: 20px;
    color: #333;
    font-family: 'Poppins-SemiBold';
}
.facility-col .facility-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 16px;
}
.facility-col ul {
    margin: 0 0 20px;
    padding: 0 0 0 20px;
    list-style: none;
}
.facility-col li {
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    position: relative;
    padding-left: 0;
}
.facility-col li:before {
    content: "✓";
    color: #0E50C8;
    font-weight: bold;
    margin-right: 8px;
}
.facility-cta {
    margin-top: auto;
}
.facility-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0E50C8;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.facility-link:hover {
    gap: 10px;
    color: #0B3889;
}
.facility-link .arrow {
    font-style: normal;
    transition: transform 0.3s ease;
}
.facility-link:hover .arrow {
    transform: translateX(4px);
}

/* Why Yuda section */
.why-yuda-section {
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.why-col {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 28px;
}
.why-col h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #333;
    font-family: 'Poppins-SemiBold';
}
.why-col p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Products entry section */
.products-entry-section {
    background: #fff;
    padding: 20px 0 85px;
}
.products-entry-section .h2title {
    text-align: left;
    padding-bottom: 50px;
}
.products-entry-section .h2title .title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #333;
    font-family: 'Poppins-Medium';
}
.products-entry-section .h2title .subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 900px;
}
.product-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.category-card {
    background: #f9f9f9;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 24px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.category-card:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #0E50C8;
}
.category-icon {
    width: 48px;
    height: 48px;
    background: #f0f5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
}
.category-card:hover .category-icon {
    background: linear-gradient(135deg, #0E50C8 0%, #0B3889 100%);
    border-color: #0E50C8;
}
.category-icon img {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(17%) sepia(71%) saturate(1847%) hue-rotate(203deg) brightness(94%) contrast(98%);
}
.category-card:hover .category-icon img {
    filter: brightness(0) invert(1);
}
.category-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #333;
    font-family: 'Poppins-SemiBold';
    transition: color 0.3s ease;
}
.category-card:hover h3 {
    color: #0E50C8;
}
.category-card p {
    margin: 0;
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}
.category-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    color: #ccc;
    transition: all 0.3s ease;
}
.category-card:hover .category-arrow {
    color: #0E50C8;
    transform: translateX(4px);
}
.category-card-all {
    background: linear-gradient(135deg, #0E50C8 0%, #0B3889 100%);
    border-color: #0E50C8;
}
.category-card-all h3,
.category-card-all p {
    color: #fff;
}
.category-card-all .category-icon {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.3);
}
.category-card-all .category-icon img {
    filter: brightness(0) invert(1);
}
.category-card-all .category-arrow {
    color: rgba(255,255,255,0.6);
}
.category-card-all:hover {
    background: linear-gradient(135deg, #0B3889 0%, #082a5e 100%);
    transform: translateY(-3px) scale(1.02);
}
.category-card-all:hover .category-arrow {
    color: #fff;
}

/* Final CTA section */
.final-cta-section {
    text-align: center;
}
.cta-content h2 {
    font-size: 32px;
    margin: 0 0 16px;
    color: #333;
    font-family: 'Poppins-Medium';
}
.cta-content .cta-desc {
    max-width: 800px;
    margin: 0 auto 24px;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-buttons .btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cta-buttons .btn-primary {
    background: #0E50C8;
    border: 1px solid #0E50C8;
    color: #fff;
}
.cta-buttons .btn-primary:hover {
    background: #0B3889;
    border-color: #0B3889;
}
.cta-buttons .btn-secondary {
    background: #fff;
    border: 1px solid #e6e6e6;
    color: #333;
}
.cta-buttons .btn-secondary:hover {
    background: #f7f7f7;
}
.contact-box{
    display: flex;
    height: 500px;
    background: url(../img/bg-solutions-contact.jpg) no-repeat center;
    background-size: cover;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}
.contact-box .text {
    display: flex;
    padding-left: 7%;
    width: 60%;
    height: 100%;
    color: #FFF;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
}
.contact-box .text .title{
    font-size: 40px;
    line-height: 1.25;
    font-family: 'Poppins-medium';
}
.contact-box .text .desc{
    padding-top: 15px;
    font-size: 16px;
}
.contact-box .text .phone{
    font-size: 32px;
    margin-top: 35px;
    font-family: 'Poppins-semibold';
}
.contact-box .text .phone a{
    color: #fff;
}
.contact-box .text .btn{
    display: block;
    margin-top: 30px;
}
.contact-box .text .btn-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.contact-box .text .btn-group .btn {
    margin-top: 0;
}
.contact-box .text .btn a{
    display: flex;
    justify-content: space-between;
    width: 270px;
    padding: 0 30px;
    color: #003281;
    font-weight: bold;
    background-color: #FFF;
}
.contact-box .text .btn a i{
    display: block;
    width: 26px;
    height: 26px;
    background: url(../img/icon-whatsapp.png) no-repeat left center;
    background-size: 100% 100%;
}
.contact-box .text .btn a:hover{
    background-color: #e6edf9;
}
.contact-box .pic{
    position: absolute;
    right: 50px;
    bottom: 45px;
    width: 691px;
    height: 584px;
}
.contact-box .pic img{
    display: block;
    max-width: 100%;
    max-height: 100%;
}
/*PC v1*/
@media only screen and (min-width:1024px) and (max-width:1900px){


}

/*Mobile v1*/
@media only screen and (max-width:767px){
/* Banner chips */
.solution-chips {
    gap: 8px;
    margin: 20px 0 0;
}
.solution-chips .chip {
    padding: 6px 12px;
    font-size: 12px;
}

/* Serving list */
.serving-list ul {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.serving-list li {
    width: 100%;
    margin-bottom: 15px;
}

/* Solutions box */
.solutions-box {
    padding: 30px 5%;
}
.solutions-box .h2title {
    padding-bottom: 25px;
}
.solutions-box .h2title .title {
    font-size: 24px;
    margin: 0 0 10px;
}
.solutions-box .h2title .subtitle {
    font-size: 14px;
}

/* Solution cards */
.solution-cards {
    grid-template-columns: 1fr;
    gap: 20px;
}
.solution-card {
    flex-direction: column;
}
.solution-card:nth-child(5) {
    grid-column: 1;
    flex-direction: column;
}
.solution-card .card-image {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
}
.solution-card:nth-child(5) .card-image {
    flex: 0 0 auto;
    width: 100%;
    height: 220px;
}
.solution-card .card-content {
    padding: 20px;
}
.solution-card:nth-child(5) .card-content {
    padding: 20px;
}
.solution-card h3 {
    font-size: 18px;
    margin: 0 0 10px;
}
.solution-card:nth-child(5) h3 {
    font-size: 18px;
}
.solution-card > .card-content > p {
    font-size: 14px;
    margin: 0 0 12px;
}
.solution-card .product-links {
    margin: 12px 0;
    padding: 0 0 0 18px;
}
.solution-card .product-links li {
    margin-bottom: 6px;
}
.solution-card .product-links a {
    font-size: 14px;
}
.solution-card .card-cta {
    gap: 10px;
    margin: 16px 0 12px;
}
.solution-card .btn {
    padding: 10px 16px;
    font-size: 13px;
}
.solution-card .card-meta {
    font-size: 12px;
}

/* Facility type section */
.facility-type-section {
    padding: 30px 5%;
}
.facility-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}
.facility-col {
    padding: 24px 20px;
}
.facility-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
}
.facility-icon img {
    width: 32px;
    height: 32px;
}
.facility-col h3 {
    font-size: 18px;
    margin: 0 0 10px;
}
.facility-col .facility-desc {
    font-size: 13px;
    margin: 0 0 12px;
}
.facility-col li {
    font-size: 13px;
    margin-bottom: 6px;
}
.facility-link {
    font-size: 13px;
}

/* Why Yuda section */
.why-yuda-section {
    padding: 30px 5%;
}
.why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
}
.why-col {
    padding: 20px;
}
.why-col h3 {
    font-size: 16px;
    margin: 0 0 10px;
}
.why-col p {
    font-size: 13px;
}

/* Products entry section */
.products-entry-section {
    padding: 30px 5%;
}
.product-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
}
.category-card {
    padding: 20px 18px;
}
.category-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}
.category-icon img {
    width: 24px;
    height: 24px;
}
.category-card h3 {
    font-size: 15px;
    margin: 0 0 6px;
}
.category-card p {
    font-size: 12px;
}
.category-arrow {
    bottom: 18px;
    right: 18px;
    font-size: 18px;
}

/* FAQ list */
.faq-list li {
    height: auto;
    padding: 20px 20px 20px 20px;
}
.faq-list li .title {
    font-size: 16px;
    line-height: 1.6;
    padding-right: 25px;
}
.faq-list li .text {
    padding-top: 15px;
    font-size: 14px;
}

/* Final CTA section */
.final-cta-section {
    padding: 30px 5%;
}
.cta-content h2 {
    font-size: 24px;
    margin: 0 0 12px;
}
.cta-content .cta-desc {
    font-size: 14px;
    margin: 0 auto 20px;
}
.cta-buttons {
    gap: 12px;
}
.cta-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
}

/* Contact box */
.contact-box {
    display: flex;
    height: auto;
    justify-content: flex-start;
    margin-top: 0;
    padding: 30px 5%;
    flex-direction: column;
}
.contact-box .text {
    display: flex;
    padding-left: 0;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
}
.contact-box .text .title {
    font-size: 26px;
}
.contact-box .text .desc {
    font-size: 15px;
}
.contact-box .text .phone {
    font-size: 20px;
}
.contact-box .text .btn-group {
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.contact-box .text .btn a {
    width: 100%;
}
.contact-box .pic {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    margin-top: 50px;
}
}


