.section-services {
    padding: 90px 0;
    background: #020617;
}

/* title */
.section-title h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

.section-title p {
    color: #94a3b8;
    max-width: 520px;
    margin: 0 auto;
}

/* badge */
.section-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(230,255,42,.15);
    color: #E6FF2A;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(230,255,42,.6);
}

/* card */
.service-card {
    height: 100%;
    padding: 32px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(230,255,42,.25);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 45px rgba(230,255,42,.25);
}

/* glow line */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(230,255,42,.12),
        transparent
    );
    opacity: 0;
    transition: opacity .35s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* icon */
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(230,255,42,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E6FF2A;
    font-size: 26px;
    margin-bottom: 20px;
}

/* text */
.service-card h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 18px;
}

/* link */
.service-card a {
    font-size: 14px;
    font-weight: 600;
    color: #E6FF2A;
    text-decoration: none;
}

.service-card a:hover {
    opacity: .85;
}

/* icon wrapper tetap */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #cbd5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(230,255,42,.5);
}

/* gambar logo */
.service-icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(230,255,42,.4));
}

/* hover glow */
.service-card:hover .service-icon {
    background: rgba(230,255,42,.25);
    box-shadow: 0 0 25px rgba(230,255,42,.6);
}

/* highlight nasional */
.service-highlight {
    height: 100%;
    padding: 32px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(
        135deg,
        rgba(230,255,42,.18),
        rgba(255,255,255,.03)
    );
    border: 1px solid rgba(230,255,42,.5);
    transition: all .35s ease;
}

.service-highlight:hover {
    box-shadow: 0 0 45px rgba(230,255,42,.35);
    transform: translateY(-4px);
}

.service-highlight img {
    width: 72px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(230,255,42,.6));
}

/* content */
.highlight-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.highlight-content p {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 10px;
}

/* link */
.highlight-content a {
    font-size: 14px;
    font-weight: 700;
    color: #020617;
    background: #E6FF2A;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
}

.highlight-content a:hover {
    opacity: .85;
}
