.service-home-page {
    color: #0f172a;
    background: #fff;
    font-family: "Noto Sans TC", sans-serif;
    letter-spacing: .02em;
    overflow-x: hidden;
}

.service-home-page h1,
.service-home-page h2,
.service-home-page h3,
.service-home-page h4 {
    font-family: "Outfit", "Noto Sans TC", sans-serif;
    font-weight: 800;
}

.service-catalog {
    padding: 150px 0 6rem;
    background: #fff;
}

.service-home-page .tracking-wider {
    letter-spacing: .15em;
}

.service-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-catalog-card {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 390px;
    flex-direction: column;
    align-items: center;
    padding: 60px 40px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 32px;
    color: #212529;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .02);
    text-align: center;
    text-decoration: none;
    transition: all .5s cubic-bezier(.165, .84, .44, 1);
}

.service-catalog-card::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #007d41 0%, transparent 100%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s;
}

.service-catalog-card:hover,
.service-catalog-card:focus-visible {
    border-color: rgba(0, 125, 65, .2);
    color: #212529;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .1);
    transform: translateY(-15px);
}

.service-catalog-card:hover::before,
.service-catalog-card:focus-visible::before {
    opacity: .03;
}

.service-catalog-icon {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100px;
    height: 100px;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
    border-radius: 50%;
    background: #fff;
    transition: all .4s ease;
}

.service-catalog-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .5s cubic-bezier(.175, .885, .32, 1.275);
}

.service-catalog-card:hover .service-catalog-icon {
    border-color: #e0e0e0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
    transform: scale(1.05);
}

.service-catalog-card:hover .service-catalog-icon img {
    transform: scale(1.1);
}

.service-catalog-card h2 {
    position: relative;
    z-index: 1;
    margin-bottom: .5rem;
    font-size: 1.5rem;
}

.service-catalog-card p {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    color: #6c757d;
    font-size: .875rem;
}

.service-catalog-card span {
    position: relative;
    z-index: 1;
    margin-top: auto;
    color: #198754;
    font-size: .875rem;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .service-catalog {
        padding-top: 125px;
    }

    .service-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .service-catalog {
        padding-bottom: 4rem;
    }

    .service-catalog-grid {
        grid-template-columns: 1fr;
    }

    .service-catalog-card {
        min-height: 0;
    }
}
