/* ============================
           Harga Section
           ============================ */
.harga {
    position: relative;
    padding: 8rem 1.5rem;
    background: url('https://images.unsplash.com/photo-1625231334162-3f6ed15c93d8') center center / cover fixed;
    text-align: center;
    color: var(--white);
}

.harga::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.8) 100%);
}

.harga-box {
    background: rgba(26, 26, 26, 0.9);
    color: var(--off-white);
    border-radius: 20px;
    margin-top: 1rem;
    padding: 3rem;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    min-width: 350px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--gold-primary);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    animation-duration: 1s;
}

.harga-box:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.harga-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}

.harga-box .emas {
    color: var(--gold-primary);
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.harga-box .perak {
    color: var(--off-white);
    font-size: 1.6rem;
}

.harga-note {
    font-size: 0.9rem;
    color: var(--gold-light);
    margin-top: 1rem;
    font-style: italic;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .harga {
        padding: 4rem 1rem;
    }

    .harga-box {
        padding: 2rem 1.5rem;
        min-width: unset;
        width: 100%;
        max-width: 400px;
    }

    .harga-box h4 {
        font-size: 1.2rem;
        margin: 0.8rem 0;
    }

    .harga-box .emas {
        font-size: 1.4rem;
    }

    .harga-box .perak {
        font-size: 1.3rem;
    }

    .harga-note {
        font-size: 0.8rem;
    }
}