// FORNAS
/* Hero */
.hero {
    position: relative;
    padding: 80px 0 40px;
    color: #000; /* teks hitam lebih terang */
    text-align: center;
    background: rgba(255, 255, 255, 0.55); /* overlay putih semi transparan */
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(3px) brightness(1.1); /* lebih cerah */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6); /* shadow putih tipis */
    color: #05227f; /* biru tua biar elegan */
}

.hero .btn-register {
    background: #ff4b2b; /* oranye-merah lebih terang */
    border: 0;
    color: #fff;
    padding: 10px 26px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(255, 75, 43, 0.3);
}

.count-heading {
    color: #ff4b2b;
    font-weight: 700;
    font-size: 14px;
    margin: 28px 0 18px;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.4);
}

/* Cards */
.count-cards {
    margin-top: 10px;
}

.count-card {
    background: rgba(255, 255, 255, 0.85); /* terang */
    border-radius: 12px;
    padding: 28px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #05227f;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.count-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    text-shadow: none; /* bersih */
    color: #05227f;
}

.count-label {
    margin-top: 8px;
    color: #333; /* abu tua biar kontras */
    font-weight: 700;
    font-size: 13px;
}

/* Smaller screens tweak */
@media (max-width: 575px) {
    .count-number {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 18px;
    }

    .count-heading {
        font-size: 16px;
    }

    .count-card {
        padding: 18px 12px;
        min-height: 120px;
    }
}

//END FORNAS
