/* Global */
:root {
    --primary: #15803d;
    --secondary: #14532d;
    --third: #22c55e;
    --light: #eeeded;
    --dark: #1f1f1f;
    --danger: #b80404;
}

.mb-6rem {
    margin-bottom: 6rem !important;
}

.my-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.bg-gray {
    background-color: var(--light);
}

.cursor-pointer {
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

a.dropdown-item:active {
    background-color: var(--primary) !important;
    color: var(--light) !important;
}

a.nav-link:hover {
    color: var(--third) !important;
}

.font-small-1x {
    font-size: 0.9rem;
}

.color-dark {
    color: var(--dark) !important;
}

/* topbar */
.navigation-wrapper {
    background-color: white !important;
    top: 0 !important;
    transition: none !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

.top-bar {
    height: 40px;
    border-bottom: 1px solid rgba(56, 51, 51, 0.06);
}

.navbar .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-nav {
    font-size: 1rem;
    font-weight: 500;
}

.navbar-nav a {
    color: #333 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
}

.navbar-nav a:hover {
    color: var(--primary) !important;
}

.navbar-brand {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500 !important;
    color: #333 !important;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link.active {
    font-weight: bold !important;
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border: none;
}

.btn-primary:hover {
    background-color: #004494;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.color-primary {
    color: var(--primary) !important;
}

.color-danger {
    color: var(--danger) !important;
}

.navbar li a {
    font-weight: 500;
}

.dropdown-menu {
    background-color: var(--light);
    animation: 0.5s slideup;
}

#homeSlider .swiper-slide {
    cursor: grab;
}

#homeSlider.slider-wrapper img {
    height: 530px;
    width: 100%;
    object-fit: cover;
}

.slider-wrapper {
    margin-top: 0;
    animation: none !important;
    -webkit-animation: none !important;
    transition: none !important;
}

/* Disable WOW animations for hero slider */
#homeSlider.slider-wrapper,
#homeSlider.slider-wrapper *,
#homeSlider .swiper-slide,
#homeSlider .swiper-slide * {
    animation: none !important;
    -webkit-animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    -webkit-transform: none !important;
    transition: none !important;
    -webkit-transition: none !important;
}

@media (max-width: 991.98px) {
    .slider-wrapper {
        margin-top: -120px;
    }

    #homeSlider .swiper-button-next,
    #homeSlider .swiper-button-prev {
        display: none !important;
    }
}

.about-wrapper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.about-wrapper .fa {
    color: var(--primary) !important;
}

.btn-product-categories button.active {
    background-color: var(--primary);
    border: none;
}

.btn-product-categories .btn-outline-primary:active {
    background-color: var(--primary);
}

.product-container a.product-title {
    color: var(--dark);
    text-decoration: none;
}

.product-container a.text-body {
    text-decoration: none;
}

a.product-item {
    color: #1f1f1f;
    text-decoration: none;
}

a.product-item:hover {
    display: block;
    cursor: pointer;
    border: 1px solid var(--primary);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    color: #1f1f1f;
    margin: -1px;
}

.product-item img {
    transition: 0.5s;
}

.product-item img {
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item small a:hover {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.contact-us-container a.rounded-pill {
    background-color: white;
    color: var(--primary) !important;
    font-weight: bold;
    border: none;
}

.contact-us-container a.rounded-pill:hover {
    box-shadow: 0px 0px 55px rgba(0, 0, 0, 0.5);
}

.contact-us-container a.rounded-pill>i {
    transform: translateX(20%);
    transition: 0.5s;
}

.contact-us-container a.rounded-pill:hover>i {
    transform: translateX(70%);
    transition: 0.5s;
}

/* Post container box styling */
.post-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.post-container:hover {
    box-shadow: 0 4px 16px rgba(0, 191, 255, 0.15);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.post-container .post-img img {
    height: 232px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
    border-radius: 8px;
}

.post-container .post-img img.default-img {
    border: 1px solid #e4e3e3;
}

a.text-link {
    text-decoration: none;
    color: inherit;
}

.color-third {
    color: var(--third) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

.testimony-item .swiper-slide {
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.3) !important;
    height: 450px;
    overflow: hidden;
}

.testimony-item .swiper-slide .testimony-image {
    text-align: center;
}

.testimony-item .swiper-slide img {
    width: 100px !important;
    height: 100px;
    object-fit: fill;
    object-position: center;
    z-index: 99 !important;
    position: relative;
}

.testimony-wave {
    padding: 0;
    margin: 0;
    left: 0;
    bottom: 0;
    width: 400px;
}

.testimony-author {
    font-weight: 500;
}

.testomny-socmed i {
    font-size: 1.6rem;
}

.testomny-socmed {
    margin-bottom: 20px;
}

.testimony-wording {
    height: 140px;
    overflow: hidden;
    margin-bottom: 35px;
    padding-left: 25px;
    padding-right: 25px;
}

.footer {
    color: var(--light);
}

.btn-square {
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.btn-back-to-top {
    right: 30px;
    bottom: 20px;
    border: 2px solid white;
}

.btn-back-to-top:hover {
    border-color: #212529;
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.dropdown>.dropdown-toggle:active {
    /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

.footer-list a:hover {
    color: #c7c8c9;
}

.swiper-pagination-bullet-lodeh:hover {
    cursor: pointer;
}

.swiper-pagination-bullet-lodeh {
    padding: 5px 30px;
    border-radius: 50px;
    color: gray;
}

.swiper-pagination-bullet-active {
    color: white;
}

.timeline-heading {
    margin-bottom: 17px;
}

.swiper-timeline .swiper-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: wrap;
    bottom: 0;
}

.our-clients-wrapper .border-bottom {
    width: 80%;
}

.contact-form-wrapper form label {
    font-weight: 500;
}

.map-wrapper {
    margin-top: 8rem !important;
}

.contact-information-wrapper .card {
    border-radius: 5px 72px;
}

.contact-information-wrapper .col-12 .card {
    overflow: auto;
}

.follow-us-wrapper {
    margin-top: 8rem;
    margin-bottom: 10rem;
}

.contact-information-wrapper {
    margin: 9rem 0;
}

.product-cat-newest a:hover img {
    transform: scale(1.1);
    transition: 0.5s;
}

.pagination a,
.product-cat-newest a p,
.product-category-wrapper a p,
.product-category-wrapper .pagination a {
    color: var(--primary);
    font-weight: bold;
    letter-spacing: 0.02rem;
}

.pagination a,
.product-category-wrapper .pagination a {
    font-weight: normal;
}

.product-detail {
    margin-top: 8rem;
    margin-bottom: 5rem;
}

.product-image-swiper {
    width: 100%;
    height: 100%;
}

#productImageDetail {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
}

.product-image-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.product-image-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

#productImageDetail {
    height: 80%;
    width: 100%;
}

#productImageDetail img {
    height: 28rem;
    object-fit: cover;
    object-position: center;
}

#productImageGallery {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

#productImageGallery img {
    height: 5rem;
}

#productImageGallery .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

#productImageGallery .swiper-slide-thumb-active {
    opacity: 1;
}

.share-to-socmed .socmed i {
    font-size: 1.1rem;
}

.share-to-socmed .socmed i:hover {
    color: var(--light) !important;
}

.product-images {
    margin-bottom: 3rem;
}

.comment-name img {
    width: 45px;
}

.page-link.active,
.active>.page-link {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light) !important;
}

.page-category-events .post-container .post-img img {
    height: inherit;
}

.event-detail-wrapper {
    margin-top: 130px;
    margin-bottom: 4rem !important;
}

.event-detail-image-swiper {
    width: 100%;
}

#eventImageDetail {
    --swiper-navigation-color: #fff;
    --swiper-pagination-color: #fff;
    width: 100%;
    margin-bottom: 10px;
}

.event-detail-image-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.event-detail-image-swiper .swiper-slide img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

.event-detail-image-swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#eventImageGallery {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

#eventImageGallery .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

#eventImageGallery .swiper-slide-thumb-active {
    opacity: 1;
}

.others-event .post-img img {
    height: 200px;
}

.post-detail-wrapper {
    margin-top: 6rem !important;
    margin-bottom: 4rem !important;
}

.post-detail-wrapper .post-img img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.related-post-item {
    transition: all 0.3s ease;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.related-post a:hover .related-post-item {
    box-shadow: 0 4px 12px rgba(0, 91, 197, 0.15) !important;
    transform: translateY(-2px);
    border-color: var(--primary) !important;
}

.related-post-number .badge {
    background-color: var(--primary) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.related-post a:hover .related-post-number .badge {
    background-color: #004494 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.related-post-item img {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.related-post a:hover .related-post-item img {
    transform: scale(1.08);
    border-color: var(--primary);
}

.related-post-content h6 {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #2c3e50;
    transition: color 0.3s ease;
    margin-bottom: 0.25rem;
}

.related-post a:hover .related-post-content h6 {
    color: var(--primary);
}

.related-post-content small {
    color: #6c757d;
    font-size: 0.75rem;
}

/* Blog Post List */
.blog-post-item {
    transition: all 0.3s ease;
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.blog-post-item:hover {
    box-shadow: 0 6px 16px rgba(0, 91, 197, 0.2) !important;
    transform: translateY(-3px);
    border-color: var(--primary) !important;
}

.blog-post-number .badge {
    background-color: var(--primary) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.blog-post-item:hover .blog-post-number .badge {
    background-color: #004494 !important;
    transform: scale(1.15);
    transition: all 0.3s ease;
}

.blog-post-content h5 {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.blog-post-item:hover .blog-post-content h5 {
    color: var(--primary);
}

.blog-post-thumb img {
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.blog-post-item:hover .blog-post-thumb img {
    transform: scale(1.05);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .blog-post-number .badge {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }

    .blog-post-thumb img {
        width: 70px !important;
        height: 70px !important;
    }

    .blog-post-content h5 {
        font-size: 1rem;
    }
}

.sitemap-wrapper,
.privacy-policy-wrapper,
.search-wrapper {
    margin-top: 8rem;
    margin-bottom: 6rem;
}

.sitemap-wrapper .color-primary:hover {
    color: var(--third) !important;
}

.notfound-wrapper {
    margin-top: 8rem;
}

.notfound-wrapper h2 {
    font-size: 2.5rem;
}

.notfound-wrapper p {
    font-size: 1.8rem;
}

.notfound-wrapper img {
    border-radius: 0;
}

.faq-wrapper {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.accordion-button {
    color: var(--primary);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    color: var(--light);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.career-shadow {
    box-shadow: 0 0.15rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.career-heading {
    color: var(--primary);
    font-size: 2.2rem;
}

.career-detail-wrapper {
    margin-top: 6rem;
    margin-bottom: 5rem;
}

.career-detail-wrapper h4 {
    margin-top: 1rem;
}

.career-detail-wrapper ol {
    padding-left: 1.7rem !important;
}

.form-alert {
    width: 270px;
    left: auto;
    right: 100px;
}

.event-pagination .pagination,
.news-pagination .pagination,
.search-pagination .pagination,
.pagination {
    justify-content: center;
}

.event-pagination .pagination a,
.news-pagination .pagination a,
.search-pagination .pagination a {
    color: var(--primary);
}

.post-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.banner-wrapper-page {
    margin-bottom: 3rem !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
}

.product-img img,
.products-wrapper img {
    object-fit: cover;
}

.page-search {
    margin-top: 7rem !important;
}

.website_logo {
    width: 40px;
}

.tags-container {
    margin-top: 5rem !important;
}

#nav-description p img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    border: 1px solid black;
    padding: 10px;
}

table th p,
table td p {
    margin-top: 0;
    margin-bottom: 0;
}

th {
    background-color: #f4f4f4;
    text-align: center;
}

tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.about-wrapper {
    margin-bottom: 5rem !important;
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
}

.product-cat-newest img {
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.page-search .post-container img {
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.mobile-banner {
    margin-top: 4rem;
}

/* Media Query */
@media (min-width: 768px) {
    .testimony-item .swiper-slide img {
        width: 220px !important;
        height: 220px;
    }

    .testimony-wording {
        margin-bottom: 15px !important;
    }

    .testimony-item .swiper-slide {
        height: 620px;
    }

    .about-wrapper {
        margin-top: 8rem !important;
        margin-bottom: 5rem !important;
    }
}

@media (min-width: 992px) {
    #homeSlider.swiper {
        width: 100%;
        height: 550px;
    }

    #homeSlider.slider-wrapper img {
        height: 550px;
        object-fit: cover;
    }

    #homeSlider.slider-wrapper {
        margin-top: 0;
    }

    .testimony-item .swiper-slide {
        height: 540px;
    }

    .banner-wrapper {
        margin-top: 100px;
        margin-bottom: 6rem !important;
    }

    .banner-wrapper img {
        width: 100%;
        height: 550px;
        object-fit: cover;
        object-position: center;
    }

    .timeline-heading {
        margin-bottom: -50px;
    }

    .our-clients-wrapper .border-bottom {
        width: 50%;
    }

    .product-detail {
        margin-top: 12rem;
        margin-bottom: 8rem;
    }

    .product-images {
        margin-bottom: 0;
    }

    .event-detail-wrapper {
        margin-top: 175px;
    }

    .post-detail-wrapper {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }

    .post-detail-wrapper .post-img img {
        height: 400px;
    }

    .post-detail-wrapper {
        margin-bottom: 6rem !important;
    }

    .sitemap-wrapper,
    .privacy-policy-wrapper,
    .search-wrapper,
    .notfound-wrapper {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }

    .notfound-wrapper img {
        border-radius: 0.375rem;
    }

    .faq-wrapper {
        margin-top: 5rem;
        margin-bottom: 8rem;
    }

    .career-detail-wrapper {
        margin-top: 10rem;
    }

    #product-comments-width {
        width: 75%;
    }

    .banner-wrapper-page {
        margin-bottom: 4rem !important;
    }

    .page-search {
        margin-top: 10rem !important;
    }

    .tags-container {
        margin-top: 8rem !important;
    }

    .testimony-wording {
        margin-bottom: 35px !important;
    }
}

@media (min-width: 1200px) {
    .testimony-item .swiper-slide img {
        width: 150px !important;
        height: 150px;
    }

    .testimony-wording {
        margin-bottom: 45px !important;
    }
}

@media (min-width: 1440px) {
    #homeSlider.slider-wrapper img {
        height: 600px;
    }

    #homeSlider.swiper {
        height: 600px;
    }

    .testimony-item .swiper-slide img {
        width: 180px !important;
        height: 180px;
    }

    .testimony-wording {
        margin-bottom: 15px !important;
    }
}

/* Sidebar Popular Posts */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.widget-header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.widget-icon {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}

.widget-icon i {
    color: white !important;
}

.popular-post-item {
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    background: white;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.popular-post-item:hover {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 91, 197, 0.15);
    transform: translateY(-2px);
}

.number-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
}

.post-thumbnail img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.popular-post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-title a {
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary) !important;
}

/* Enhanced box styling for popular posts */
.popular-posts-list {
    margin-top: 15px;
}

.popular-post-item:last-child {
    margin-bottom: 0;
}

.popular-post-item .post-number {
    flex-shrink: 0;
}

.popular-post-item .post-thumbnail {
    flex-shrink: 0;
}

.popular-post-item .post-content {
    min-width: 0;
}

/* Enhanced post styling for box layout */
.post-container .post-info {
    margin-bottom: 15px;
}

.post-container .post-title {
    margin-bottom: 15px;
}

.post-container .post-title h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.post-container .post-content {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.post-container .post-content p {
    margin-bottom: 0;
}

/* Categories Widget Styles */
.categories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.category-item:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 91, 197, 0.15);
}

.category-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: var(--primary);
}

.category-count {
    display: inline-block;
    background: #6c757d;
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.category-item:hover .category-count {
    background: var(--primary);
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 20px 0;
    z-index: 9999;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-form {
    position: relative;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 10px;
}

.search-input {
    flex: 1;
    background: white;
    border: none;
    border-radius: 25px;
    padding: 12px 50px 12px 20px;
    font-size: 16px;
    color: #333;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 91, 197, 0.3);
}

.search-submit-btn {
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.search-submit-btn:hover {
    background: #004494;
}

.search-close-btn {
    background: transparent;
    border: none;
    color: #95a5a6;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.search-close-btn:hover {
    color: white;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-search-toggle {
    transition: transform 0.2s ease;
}

.btn-search-toggle:hover {
    transform: scale(1.1);
}

/* Compact Search Styles */
.search-form-inline {
    display: flex;
    align-items: center;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.search-input-wrapper-compact {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input-compact {
    width: 200px;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 40px 6px 12px;
    font-size: 14px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
}

.search-input-compact:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 91, 197, 0.1);
}

.search-submit-btn-compact {
    position: absolute;
    right: 5px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 12px;
}

.search-submit-btn-compact:hover {
    background: #004494;
}

.search-close-btn-compact {
    position: absolute;
    right: 40px;
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 14px;
    padding: 0;
}

.search-close-btn-compact:hover {
    color: var(--primary);
}

/* Responsive adjustments for search */
@media (max-width: 991px) {
    .search-form-inline {
        order: 3;
        width: 100%;
        margin-top: 10px;
        padding: 0 15px;
        display: none !important;
    }

    .search-form-inline.active {
        display: flex !important;
    }

    .search-input-compact {
        width: 100%;
    }

    .btn-search-toggle {
        order: 3;
    }
}

/* Keyframes */
@keyframes slideup {
    from {
        transform: translateY(10%);
    }

    to {
        transform: translateY(0);
    }
}

/* ===================================================================
   NEW DESIGN - HEADER & HERO STYLES
   =================================================================== */

/* Animations */
@keyframes newFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes newFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes newFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== NEW HEADER ===== */
.new-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a56a8 0%, #2b6dc5 50%, #4d8fd6 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-header.scrolled {
    background: linear-gradient(135deg, #1a56a8 0%, #2b6dc5 50%, #4d8fd6 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.new-header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.new-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.new-logo-img {
    height: 40px;
    width: auto;
}

/* White logo: shown on desktop (blue header), hidden on mobile */
.new-logo-white {
    display: block;
}

/* Fallback: invert regular logo to white if no white logo uploaded */
.new-logo-invert {
    filter: brightness(0) invert(1);
}

/* Colored logo: hidden on desktop, shown on mobile (white header) */
.new-logo-color {
    display: none;
}

.new-logo-text {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
}

/* Navigation Links */
.new-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.new-nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 9999px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.new-nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.new-nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Dropdown */
.new-nav-dropdown {
    position: relative;
}

.new-nav-dropdown .new-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.new-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.new-nav-dropdown:hover .new-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.new-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #374151;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.new-dropdown-item:hover {
    background: #eff6ff;
    color: #2563eb;
}

/* CTA Button in Nav */
.new-btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    color: #1d4ed8 !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease !important;
    text-decoration: none;
    margin-left: 12px;
    white-space: nowrap;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.new-btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    background: #eff6ff !important;
    color: #1d4ed8 !important;
}

/* Mobile Menu Button */
.new-mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    background: none;
    border: none;
}

.new-mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.new-mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.new-mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.new-mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Nav Overlay */
.new-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
}

.new-nav-overlay.active {
    display: block;
}

/* Hide old navigation */
.navigation-wrapper {
    display: none !important;
}

/* ===== NEW HERO SECTION ===== */
.new-hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(160deg, #ffffff 0%, #e8f0fe 40%, #c5d9f7 70%, #a8c4f0 100%);
    overflow: hidden;
    padding-top: 72px;
    padding-bottom: 60px;
}

.new-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    height: 200px;
    background: #fff;
    border-radius: 50% 50% 0 0 / 100%;
}

.new-hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.new-hero-content {
    flex: 1;
    max-width: 550px;
    padding-top: 0;
}

.new-hero h1 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.new-hero-subtitle {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.new-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* New Buttons */
.new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

.new-btn-primary {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
}

.new-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.45);
    background: #1d4ed8;
    color: #fff;
}

.new-btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #bfdbfe;
}

.new-btn-outline:hover {
    background: #eff6ff;
    border-color: #60a5fa;
    transform: translateY(-2px);
    color: #2563eb;
}

/* Hero Image */
.new-hero-image {
    flex: 1.2;
    max-width: 650px;
}

.new-hero-image img {
    width: 110%;
    max-width: none;
    animation: newFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .new-hero h1 {
        font-size: 2.2rem;
    }

    .new-hero-container {
        gap: 24px;
    }

    .new-hero-image {
        max-width: 380px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Mobile: white navbar (matching design reference) */
    .new-header {
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
    }

    .new-header.scrolled {
        background: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    /* Swap logos: hide white, show colored */
    .new-logo-white {
        display: none;
    }

    .new-logo-color {
        display: block;
    }

    .new-mobile-menu-btn {
        display: flex;
    }

    .new-mobile-menu-btn span {
        background: #2563eb;
    }

    .new-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 4px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        align-items: stretch;
    }

    .new-nav-links.active {
        right: 0;
    }

    .new-nav-links .new-nav-link {
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 1rem;
        color: #374151;
    }

    .new-nav-links .new-nav-link:hover {
        color: #2563eb;
        background: #eff6ff;
    }

    .new-nav-links .new-nav-link.active {
        color: #1d4ed8;
        background: #eff6ff;
    }

    .new-btn-nav-cta {
        margin-left: 0;
        margin-top: 16px;
        background: #2563eb !important;
        color: #fff !important;
        text-align: center;
        width: 100%;
        padding: 14px 24px !important;
    }

    .new-btn-nav-cta:hover {
        background: #1d4ed8 !important;
        color: #fff !important;
    }

    /* Dropdown on mobile */
    .new-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        background: transparent;
    }

    .new-dropdown-item {
        padding: 10px 16px;
        color: #6b7280;
    }

    .new-hero {
        min-height: auto;
        padding: 100px 0 30px;
    }

    .new-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .new-hero-content {
        max-width: 100%;
    }

    .new-hero h1 {
        font-size: 2rem;
    }

    .new-hero-buttons {
        justify-content: center;
    }

    .new-hero-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .new-hero-image img {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .new-hero h1 {
        font-size: 1.7rem;
    }

    .new-hero-subtitle {
        font-size: 1rem;
    }

    .new-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .new-logo-text {
        font-size: 1rem;
    }
}

/* Print */
@media print {
    .new-header {
        display: none !important;
    }

    .new-hero {
        padding-top: 0;
        min-height: auto;
    }
}

/* ===== NEW SERVICE HIGHLIGHT CARDS ===== */
.new-services-highlight {
    position: relative;
    z-index: 2;
    margin-top: -80px;
    padding-bottom: 40px;
}

.new-services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.new-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.new-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.new-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #bfdbfe;
}

.new-service-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-service-card-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 50%;
}

.new-service-card-icon i {
    font-size: 1.8rem;
}

.new-service-card-content h3 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.new-service-card-content p {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .new-services-highlight {
        margin-top: -60px;
    }

    .new-services-grid {
        gap: 16px;
    }

    .new-service-card {
        padding: 20px 16px;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .new-services-highlight {
        margin-top: -30px;
        padding-bottom: 20px;
    }

    .new-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .new-service-card {
        padding: 20px;
    }

    .new-service-card-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .new-service-card-icon img {
        width: 52px;
        height: 52px;
    }
}

/* ===== NEW PRICING SECTION ===== */
.new-pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #e8f2ff 50%, #f8fbff 100%);
}

.new-pricing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.new-pricing-header {
    text-align: center;
    margin-bottom: 56px;
}

.new-pricing-label {
    display: inline-block;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.new-pricing-title {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.2;
}

.new-pricing-title span {
    color: #2563eb;
}

.new-pricing-subtitle {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.new-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* Card */
.new-pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.new-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #bfdbfe;
}

.new-pricing-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.new-pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.new-pricing-card.featured::before {
    opacity: 1;
}

.new-pricing-card.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

/* Badge */
.new-pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2563eb;
    color: #fff;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}

/* Icon */
.new-pricing-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.new-pricing-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* Card Content */
.new-pricing-card h3 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    text-align: center;
}

.new-pricing-description {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.5;
    text-align: center;
}

/* Price */
.new-pricing-price {
    margin-bottom: 24px;
}

.new-price-label {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.new-price-value {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1d4ed8;
    margin-top: 4px;
}

.new-price-unit {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 400;
}

/* Features */
.new-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.new-pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #4b5563;
}

.new-pricing-features li .check {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Button */
.new-pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid #bfdbfe;
    color: #2563eb;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.new-pricing-btn:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #1d4ed8;
}

/* Featured Button */
.new-pricing-btn.featured {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.new-pricing-btn.featured:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .new-pricing-section {
        padding: 60px 0;
    }

    .new-pricing-grid {
        gap: 16px;
    }

    .new-pricing-card {
        padding: 28px 20px;
    }

    .new-pricing-title {
        font-size: 2rem;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .new-pricing-section {
        padding: 48px 0;
    }

    .new-pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .new-pricing-card.featured {
        transform: none;
        order: -1;
    }

    .new-pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .new-pricing-title {
        font-size: 1.7rem;
    }

    .new-pricing-header {
        margin-bottom: 36px;
    }
}

/* ===== NEW WHY US / KEUNGGULAN SECTION ===== */
.new-whyus-section {
    padding: 80px 0;
    background: #f3f4f6;
}

.new-whyus-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.new-whyus-header {
    text-align: center;
    margin-bottom: 56px;
}

.new-whyus-label {
    display: inline-block;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 6px 20px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    margin-bottom: 16px;
}

.new-whyus-title {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.2;
}

.new-whyus-title span {
    color: #2563eb;
    font-style: italic;
}

.new-whyus-subtitle {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Grid */
.new-whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card */
.new-whyus-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.new-whyus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}

/* Icon */
.new-whyus-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.new-whyus-icon i {
    font-size: 1.3rem;
    color: #fff;
}

/* Card Content */
.new-whyus-card h3 {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.new-whyus-card p {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .new-whyus-section {
        padding: 60px 0;
    }

    .new-whyus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .new-whyus-title {
        font-size: 2rem;
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .new-whyus-section {
        padding: 48px 0;
    }

    .new-whyus-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .new-whyus-title {
        font-size: 1.7rem;
    }

    .new-whyus-header {
        margin-bottom: 36px;
    }

    .new-whyus-card {
        padding: 24px 20px;
    }
}

/* ===== GENERIC SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 6px 20px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-title span {
    color: #2563eb;
    font-style: italic;
}

.section-subtitle {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== TESTIMONIALS (GRID) ===== */
.testimonials {
    background: #fff;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card-item {
    background: #fdfdfd;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #f59e0b;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
    margin-top: 0;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 48px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-header {
        margin-bottom: 36px;
    }
}