/* BADGE */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: #e3f2fd;
    color: #0d47a1;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* BUTTON */
.btn {
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-primary {
    background: #0d47a1;
    color: #fff;
}

.btn-outline {
    border: 2px solid #0d47a1;
    color: #0d47a1;
}

.large {
    font-size: 18px;
}

.hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 46px);
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
}


/* FEATURES */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    font-weight: 500;
}

/* FLOATING WA */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    z-index: 999;
}

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

/* WILAYAH LAYANAN */
.subtitle {
    margin-top: 8px;
    color: #555;
    font-size: 16px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.city-grid span {
    display: inline-block;
    padding: 12px 16px;
    background: #f5f7fa;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

.city-grid span:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.city-grid a {
    color: #0d47a1;
    text-decoration: none;
    font-weight: 600;
}



/* DESKRIPSI LAYANAN */
.service-desc {
    max-width: 820px;
    margin: 20px auto 0;
    font-size: 16px;
    color: #444;
}

.service-points {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.service-points div {
    background: #fff;
    padding: 26px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-points div:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .1);
}

.service-points strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #0d47a1;
}

.service-points p {
    font-size: 14px;
    color: #555;
}

/* HIGHLIGHT 1–3 JAM */
.highlight-time {
    position: relative;
    color: #0d47a1;
    font-weight: 700;
    padding: 0 6px;
}

.highlight-time::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 8px;
    background: rgba(13, 71, 161, 0.25);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: highlightFill 1s ease forwards;
}

/* link */
a {
    text-decoration: none;
    /* Menghilangkan garis bawah */
    color: inherit;
    /* Mengambil warna teks sesuai elemen parent */
}

/* ANIMASI */
@keyframes highlightFill {
    to {
        transform: scaleX(1);
    }
}