.header-language-switch{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(41, 52, 66, 0.06);
}

.header-language-switch a{
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-color);
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.header-language-switch a.is-active,
.header-language-switch a:hover{
    background: var(--accent-color);
    color: #fff;
}

.v2-kicker{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.section-spacer{
    padding: 90px 0;
}

.v2-highlight-list{
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.v2-highlight-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--primary-color);
    font-weight: 600;
}

.v2-highlight-icon{
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 2px;
}

.service-item{
    background: #fff;
    border: 1px solid rgba(41, 52, 66, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(21, 38, 56, 0.06);
    height: calc(100% - 24px);
    margin-bottom: 24px;
}

.service-body h3{
    font-size: 24px;
    margin-bottom: 12px;
}

.service-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-weight: 700;
}

.service-btn::after{
    content: '→';
}

.v2-contact-strip{
    background: linear-gradient(145deg, #f4f8fc 0%, #ffffff 100%);
}

.v2-page-header{
    padding: 80px 0 20px;
}

.v2-page-header .page-header-box{
    max-width: 760px;
}

.v2-page-header .page-header-box p{
    margin-top: 18px;
    margin-bottom: 0;
}

.category-hero{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #152638;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 50px;
}

.category-hero::before{
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2px, transparent 2px, transparent 100%),
        linear-gradient(315deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 2px, transparent 2px, transparent 100%);
    background-size: 180px 180px;
    opacity: 0.22;
    mix-blend-mode: soft-light;
    z-index: 0;
}

.category-hero::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -120px;
    width: min(1100px, 92vw);
    height: 240px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 34%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
    z-index: 0;
}

.category-hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 13, 22, 0.18) 0%, rgba(7, 13, 22, 0.38) 38%, rgba(7, 13, 22, 0.78) 100%),
        radial-gradient(circle at center, rgba(7, 13, 22, 0.08) 0%, rgba(7, 13, 22, 0.26) 52%, rgba(7, 13, 22, 0.72) 100%);
    z-index: 0;
}

.category-hero-content{
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.category-hero-kicker{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 18px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.category-hero-content h1{
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 700;
    line-height: 0.98;
    text-wrap: balance;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 36px rgba(0, 0, 0, 0.34);
}

.category-hero-content p{
    margin: 26px auto 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 19px;
    line-height: 1.9;
    text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.category-hero-content p::after{
    content: '';
    display: block;
    width: 96px;
    height: 4px;
    margin: 26px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, #ffffff 50%, rgba(255, 255, 255, 0.18) 100%);
}

.v2-contact-card,
.v2-form-card{
    background: #fff;
    border: 1px solid rgba(41, 52, 66, 0.08);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(21, 38, 56, 0.06);
    height: 100%;
}

.v2-contact-card h3,
.v2-form-card h3{
    font-size: 28px;
    margin-bottom: 18px;
}

.v2-contact-list{
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.v2-contact-item{
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.v2-contact-item i{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(215, 18, 29, 0.1);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-contact-item strong{
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.v2-icon-box{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(215, 18, 29, 0.08);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.v2-icon-box i{
    font-size: 24px;
}

.cta-box-item .v2-icon-box{
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.cta-box-item .v2-icon-box i{
    font-size: 20px;
}

.v2-form-card .form-control{
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid rgba(41, 52, 66, 0.14);
    padding: 14px 18px;
    color: var(--primary-color);
}

.v2-form-card textarea.form-control{
    min-height: 180px;
}

@media only screen and (max-width: 991px){
    .section-spacer{
        padding: 70px 0;
    }

    .header-btn{
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .category-hero{
        min-height: 460px;
        padding: 92px 0 84px;
    }

    .category-hero-kicker{
        margin-bottom: 16px;
        padding: 9px 16px;
        letter-spacing: 0.18em;
    }

    .category-hero-content h1{
        font-size: clamp(34px, 10vw, 54px);
    }

    .category-hero-content p{
        font-size: 15px;
        line-height: 1.75;
        margin-top: 18px;
    }

    .category-hero-content p::after{
        margin-top: 22px;
    }
}

.service-card-v2{
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-radius: 30px;
    overflow: hidden;
   

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-v2::before{
    display: none;
}

.service-card-v2:hover{
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(19, 36, 53, 0.12);
}

.service-card-v2-media{
    margin-bottom: 18px;
}

.service-card-v2-image{

    background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
    border: 1px solid rgba(41, 52, 66, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.service-card-v2-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none !important;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.service-card-v2:hover .service-card-v2-image img{
    transform: scale(1.03);
}

.service-card-v2-body{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    min-height: 180px;
}

.service-card-v2 .service-body h3{
    margin: 0;
    font-size: 23px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: none;
}

.service-card-v2-footer{
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(41, 52, 66, 0.08);
}

.service-card-v2 .read-more-btn a{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-right: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card-v2 .read-more-btn a::after{
    position: static;
    width: 34px;
    height: 34px;
    transform: none;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card-v2 .read-more-btn a:hover{
    color: var(--accent-color);
}

.service-card-v2 .read-more-btn a:hover::after{
    transform: rotate(45deg);
    background-color: var(--primary-color);
}

.service-card-v2:hover .service-body h3,
.service-card-v2:hover .read-more-btn a{
    color: var(--primary-color);
}

.service-card-v2:hover .read-more-btn a:hover{
    color: var(--accent-color);
}

.category-product-card{
    padding: 14px;
    background: #fff;
}

.category-product-card .service-card-v2-media{
    margin-bottom: 10px;
}

.category-product-card .service-card-v2-image{
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: #fff;
    border: none;
    padding: 0;
}

.category-product-card .service-card-v2-image img{
    object-fit: cover;
}

.category-product-card .service-card-v2-body{
    gap: 0;
    margin-bottom: 8px;
    min-height: auto;
}

.category-product-card .service-body h3{
    font-size: 14px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
}

.category-product-card .service-card-v2-footer{
    padding-top: 8px;
	text-align:right;
}

.category-product-card .read-more-btn a{
    font-size: 14px;
}

.home-products-head-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.home-products-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 12px 24px rgba(19, 36, 53, 0.16);
}

.home-products-link:hover{
    color: #fff;
    background: var(--accent-color);
    transform: translateY(-2px);
}

.service-lightbox{
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 26, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    padding: 24px;
}

.service-lightbox.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-lightbox-dialog{
    position: relative;
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-lightbox-dialog img{
    display: block;
    max-width: 100%;
    max-height: calc(86vh - 32px);
    object-fit: contain;
    border-radius: 16px;
}

.service-lightbox-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(12, 18, 26, 0.72);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

body.service-lightbox-open{
    overflow: hidden;
}

.faq-accordion.how-work-accordion .accordion-item .accordion-button{
    padding: 5px 35px 5px 0;
}

.faq-accordion.how-work-accordion .accordion-item .accordion-body{
    padding: 10px 35px 0 0;
}

@media only screen and (max-width: 991px){
    .faq-accordion.how-work-accordion .accordion-item .accordion-button{
        padding: 5px 30px 5px 0;
    }

    .faq-accordion.how-work-accordion .accordion-item .accordion-body{
        padding: 10px 30px 0 0;
    }
}

@media only screen and (max-width: 991px){
    .service-card-v2-body{
        min-height: auto;
    }

    .service-card-v2 .service-body h3{
        font-size: 21px;
        -webkit-line-clamp: 3;
    }

    .category-product-card .service-body h3{
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .home-products-head-row{
        align-items: flex-start;
    }
}

.corporate-detail-card,
.corporate-sidebar-card{
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(14, 26, 45, 0.08);
}

.corporate-detail-image img{
    width: 100%;
    display: block;
    border-radius: 28px 28px 0 0;
}

.corporate-detail-content{
    padding: 34px;
    color: #4f5f73;
    line-height: 1.9;
}

.corporate-detail-content h2,
.corporate-detail-content h3,
.corporate-detail-content h4{
    color: #1f2f46;
    margin-bottom: 14px;
}

.corporate-sidebar-card{
    padding: 28px;
    position: sticky;
    top: 120px;
}

.corporate-sidebar-card h3{
    margin-bottom: 18px;
    color: #1f2f46;
}

.corporate-sidebar-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.corporate-sidebar-list a{
    display: block;
    padding: 14px 18px;
    border-radius: 16px;
    color: #314156;
    background: #f5f8fc;
    transition: all 0.25s ease;
}

.corporate-sidebar-list a:hover,
.corporate-sidebar-list a.is-active{
    color: #fff;
    background: #d7121d;
}

.page-gallery-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.page-gallery-card{
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(14, 26, 45, 0.08);
}

.page-gallery-card-image img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.page-gallery-card-body{
    padding: 24px;
}

.page-gallery-card-body h3{
    color: #1f2f46;
    margin-bottom: 12px;
    font-size: 24px;
}

.page-gallery-card-content{
    color: #4f5f73;
    line-height: 1.8;
    margin-bottom: 18px;
}

@media only screen and (max-width: 991px){
    .corporate-detail-content{
        padding: 24px;
    }

    .corporate-sidebar-card{
        position: static;
    }

    .page-gallery-grid{
        grid-template-columns: 1fr;
    }
}
