.svc-section {
    background-image: url('../img/ser-bg.png'), url('../img/ser-bg-01.png'), url('../img/bg01.jpg');
    background-position: right -30px top 90px, bottom -50px left -60px, center;
    background-repeat: no-repeat,no-repeat, repeat;
    background-size: 15%,25%, cover;
    padding: 5rem 0;
}

.svc-header {
    text-align: center;
    margin-bottom: 3rem;
}

.svc-en-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #7DAB64;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.svc-en-tag::before,
.svc-en-tag::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #7DAB64;
}

.svc-title {
    font-size: 26px;
    font-weight: 900;
    color: #1c2b1c;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.svc-subtitle {
    font-size: 21px;
    color: #588341;
    font-weight: 500;
    letter-spacing: 2px;
}


.svc-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-top: 20px;
}

.svc-card-link:hover {
    color: inherit;
}


.svc-card {
    background: rgba(255,255,255,0.7);
    border-radius: 20px;
    padding: 16px 18px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgb(191 218 176);
    position: relative;
    overflow: hidden;
}


.svc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a8a3a;
    transition: width 0.35s ease;
}

.svc-card-link:hover .svc-card {
    transform: translateY(-10px);
    border-color: rgb(107 158 79);
    background-color: #fffef7;
}

.svc-card-link:hover .svc-card::after {
    width: 100%;
}


.svc-icon-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 80px;
    margin: 0 auto 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}


.svc-card-link:hover .svc-icon-wrap {
    transform: scale(1.08);
}

.svc-icon-wrap img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}


.svc-card-link:hover .svc-icon-wrap img {
    transform: scale(1.05);
}

.svc-icon-placeholder {
    color: #a0b898;
}

.svc-card-link:hover .svc-icon-placeholder {
    color: #4a8a3a;
    background: #e9f8e4;
    border-radius: 50%;
}

.svc-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #588341;
    text-align: center;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.svc-card-desc {
    font-size: 16px;
    color: #6a7a6a;
    line-height: 185%;
    text-align: center;
    letter-spacing: 1px;
}

/* ── RWD ── */
@media (max-width: 768px) {
    .svc-section {
        padding: 3.5rem 0 3rem;
    }
}

@media (max-width: 576px) {
    .svc-icon-wrap {
        max-width: 64px;
    }
}