.footer {
    position: relative;
    margin-top: 6rem;
    width: 100%;
    padding: 4rem 8rem;
    text-align: center;
    background: url("{{ asset('frontend/src/assets/images/cover.jpg') }}") center/cover no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Layer transparan di atas gambar */
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer h2 {
    font-size: var(--fontSize-heading-base);
    font-family: var(--sacramento);
    font-weight: 400;
    margin-top: 1rem;
}

.footer h4 {
    font-size: 1.6rem;
    font-family: var(--arabic);
    font-weight: 400;
}

.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #fff;
    margin-top: 1rem;
    padding-top: 0.6rem;
}

.footer-bottom p {
    font-size: 0.6rem;
}

.footer-bottom p span {
    font-weight: bold;
}

.footer-bottom a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
}
