/* .service-list-wrapper {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-inline: auto !important;
    position: relative !important;
    padding: 20px 0;
}

.service-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.service-item {
    background: #E5E7F0;
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    border: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-list-wrapper[data-shadow="none"] .service-item {
    box-shadow: none;
}

.service-list-wrapper[data-shadow="light"] .service-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-list-wrapper[data-shadow="normal"] .service-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-list-wrapper[data-shadow="strong"] .service-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-item {
    position: relative;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #69B5F8, #2B2EEE);
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 35%;
    background-image: var(--service-hover-bg-image, none);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item:hover::after {
    opacity: 0.3;
}

.service-thumbnail {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.service-thumbnail img {
    padding: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-thumbnail img {
    transform: scale(1.03);
}

.service-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
    font-size: 64px;
}

.service-thumbnail-placeholder .dashicons {
    width: 64px;
    height: 64px;
    font-size: 64px;
}

.service-number {
    font-size: 64px;
    font-weight: 700;
    color: #043284;
    text-align: left;
    padding: 0px 10px 10px 10px;
    line-height: 1;
    font-family: 'UTM Daxline';
    letter-spacing: -1px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.service-item:hover .service-number {
    color: #FFFFFF;
}

.service-content {
    width: 100%;
    padding: 0px 10px 10px 10px;
    text-align: left;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #043284;
    transition: all 0.3s ease;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 2px solid #043284;
    position: relative;
    font-family: 'UTM Daxline';
}

.service-item:hover .service-title {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

.service-subtitle {
    font-size: 24px;
    color: #043284;
    margin: 15px 0 0 0;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'UTM Daxline';
    transition: color 0.3s ease;
    height: 120px;
}

.service-item:hover .service-subtitle {
    color: #FFFFFF;
}

.service-list-wrapper.service-grid-1 .service-item {
    flex: 0 0 auto !important;
    max-width: 500px !important;
    width: 100% !important;
}


.service-list-wrapper.service-grid-2 .service-item-link {
    flex: 0 0 calc(50% - 15px) !important;
    max-width: calc(50% - 15px) !important;
}
.service-list-wrapper.service-grid-3 .service-item-link {
    flex: 0 0 calc(33.333% - 20px) !important;
    max-width: calc(33.333% - 20px) !important;
}
.service-list-wrapper.service-grid-4 .service-item-link {
    flex: 0 0 calc(25% - 23px) !important;
    max-width: calc(25% - 23px) !important;
}


@media (max-width: 1200px) {
    .service-list-wrapper.service-grid-4 .service-item-link {
        flex: 0 0 calc(33.333% - 20px) !important;
        max-width: calc(33.333% - 20px) !important;
    }

    .service-number {
        font-size: 56px;
        min-height: 70px;
    }

    .service-subtitle {
        font-size: 22px;
        min-height: 110px;
    }
}

@media (max-width: 1024px) {
    .service-list-wrapper {
        gap: 15px !important;
        padding: 15px 0;
    }

    .service-list-wrapper.service-grid-4 .service-item-link,
    .service-list-wrapper.service-grid-3 .service-item-link {
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
    }

    .service-number {
        font-size: 52px;
        padding: 0px 10px 8px 10px;
        min-height: 65px;
    }

    .service-title {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .service-subtitle {
        font-size: 20px;
        min-height: 100px;
    }

    .service-content {
        padding: 0 20px 25px;
    }
}

@media (max-width: 768px) {
    .service-list-wrapper {
        gap: 15px !important;
        padding: 10px 0;
    }

    .service-list-wrapper.service-grid-2 .service-item-link,
    .service-list-wrapper.service-grid-3 .service-item-link,
    .service-list-wrapper.service-grid-4 .service-item-link {
        flex: 0 0 100% !important;
        max-width: 500px !important;
    }

    .service-thumbnail {
        height: 200px;
    }

    .service-number {
        font-size: 48px;
        padding: 0px 15px 8px 15px;
        min-height: 60px;
    }

    .service-title {
        font-size: 18px;
        padding-bottom: 6px;
    }

    .service-subtitle {
        font-size: 18px;
        min-height: auto;
        margin: 10px 0 0 0;
    }

    .service-content {
        padding: 0 15px 20px;
    }

    .service-item::after {
        width: 100%;
        height: 30%;
    }
}

@media (max-width: 480px) {
    .service-list-wrapper {
        padding: 10px 0;
    }

    .service-thumbnail {
        height: 180px;
    }

    .service-number {
        font-size: 42px;
        padding: 0px 12px 6px 12px;
        min-height: 55px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .service-content {
        padding: 0 12px 15px;
    }
} */

/* ================================
   SERVICE LIST WRAPPER
================================ */
.service-list-wrapper {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-inline: auto !important;
    position: relative !important;
    padding: 20px 0;
}

/* ================================
   SERVICE ITEM LINK
================================ */
.service-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ================================
   SERVICE ITEM CARD
================================ */
.service-item {
    background: #E5E7F0;
    border-radius: 16px;
    padding: 0;
    border: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

/* Shadow variants */
.service-list-wrapper[data-shadow="none"] .service-item {
    box-shadow: none;
}

.service-list-wrapper[data-shadow="light"] .service-item {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-list-wrapper[data-shadow="normal"] .service-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.service-list-wrapper[data-shadow="strong"] .service-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Hover effect */
.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    background: linear-gradient(to right, #69B5F8, #2B2EEE);
}

/* Hover background image */
.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 100%;
    height: 35%;
    background-image: var(--service-hover-bg-image, none);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item:hover::after {
    opacity: 0.3;
}

/* ================================
   THUMBNAIL
================================ */
.service-thumbnail {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.service-thumbnail img {
    padding: 7px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-thumbnail img {
    transform: scale(1.03);
}

.service-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.2);
    font-size: 64px;
}

/* ================================
   NUMBER
================================ */
.service-number {
    font-size: 64px;
    font-weight: 700;
    color: #043284;
    padding: 0 10px 10px;
    line-height: 1;
    font-family: 'UTM Daxline';
    letter-spacing: -1px;
    min-height: 80px;
    display: flex;
    align-items: center;
}

.service-item:hover .service-number {
    color: #FFFFFF;
}

/* ================================
   CONTENT
================================ */
.service-content {
    width: 100%;
    padding: 0 10px 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

/* Title */
.service-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #043284;
    line-height: 1.4;
    padding-bottom: 15px;
    border-bottom: 2px solid #043284;
    font-family: 'UTM Daxline';
    transition: all 0.3s ease;
}

.service-item:hover .service-title {
    color: #FFFFFF;
    border-bottom-color: #FFFFFF;
}

/* ================================
   SUBTITLE (KEY PART)
================================ */
.service-subtitle {
    font-size: 24px;
    color: #043284;
    margin: 0px !important;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'UTM Daxline';
    transition: color 0.3s ease;
}

.service-item:hover .service-subtitle {
    color: #FFFFFF;
}

/* ================================
   GRID WIDTHS (FLEX VERSION)
================================ */
.service-list-wrapper.service-grid-1 .service-item-link {
    flex: 0 0 100%;
    max-width: 500px;
}

.service-list-wrapper.service-grid-2 .service-item-link {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.service-list-wrapper.service-grid-3 .service-item-link {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.service-list-wrapper.service-grid-4 .service-item-link {
    flex: 0 0 calc(25% - 23px);
    max-width: calc(25% - 23px);
}

/* ================================
   RESPONSIVE
================================ */

/* <=1200px */
@media (max-width: 1200px) {
    .service-list-wrapper.service-grid-4 .service-item-link {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }

    .service-subtitle {
        font-size: 22px;
        min-height: 110px;
    }
}

/* <=1024px */
@media (max-width: 1024px) {

    .service-list-wrapper.service-grid-3 .service-item-link,
    .service-list-wrapper.service-grid-4 .service-item-link {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .service-title {
        font-size: 22px;
    }

    .service-subtitle {
        font-size: 20px;
        min-height: 100px;
    }
}

/* <=768px (Mobile) */
@media (max-width: 768px) {
    .service-list-wrapper {
        padding: 10px 0;
    }

    .service-list-wrapper.service-grid-2 .service-item-link,
    .service-list-wrapper.service-grid-3 .service-item-link,
    .service-list-wrapper.service-grid-4 .service-item-link {
        flex: 0 0 100%;
        max-width: 500px;
    }

    .service-thumbnail {
        height: 200px;
    }

    .service-subtitle {
        font-size: 18px;
        min-height: auto;
        margin-top: 10px;
    }
}

/* <=480px */
@media (max-width: 480px) {
    .service-title {
        font-size: 16px;
    }

    .service-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
}