.layanan-page {
    padding: 60px 32px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    padding: 50px;
}
.layanan-hero {
    background-color: var(--navy, #171B2E);
    border-radius: 24px;
    padding: 50px 60px;
    color: #ffffff;
    margin-bottom: 50px;
}
.badge-layanan {
    background-color: var(--gold, #5B4CE0);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}
.layanan-hero h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}
.layanan-hero p {
    font-size: 14px;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 800px;
}
.layanan-section-title {
    margin-bottom: 25px;
}
.layanan-section-title.m-t-40 {
    margin-top: 45px;
}
.layanan-section-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin-bottom: 10px;
}
.layanan-section-title .gold-line {
    width: 80px;
    height: 5px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold, #5B4CE0) 0%, color-mix(in srgb, var(--gold, #5B4CE0) 55%, white) 100%);
}
.layanan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.layanan-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.layanan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(25, 44, 77, 0.08);
}
.layanan-icon {
    width: 50px;
    height: 50px;
    background-color: #EDF3FE;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.layanan-icon i {
    font-size: 20px;
    color: var(--navy, #171B2E);
}
.layanan-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin-bottom: 12px;
}
.layanan-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
.btn-layanan {
    color: var(--gold, #5B4CE0);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}
.btn-layanan:hover {
    gap: 12px;
    color: var(--navy, #171B2E);
}
@media (max-width: 992px) {
    .layanan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .layanan-hero {
        padding: 40px 30px;
    }
    .layanan-hero h1 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .layanan-grid {
        grid-template-columns: 1fr;
    }
    .layanan-section-title h2 {
        font-size: 20px;
    }
}