.site-footer {
    box-shadow: 5px 5px 10px var(--brand-gold);
    display: none; 
    background-color: var(--brand-dark);
    color: var(--brand-cream);
    padding: 3rem 1.5rem 1.5rem;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column.brand p {
    font-size: 0.9rem;
    color: var(--brand-light-text);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--brand-light);
}

.footer-column h3 {
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
    color: var(--brand-light);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.3rem;
}

.footer-links .store{
    font-size: 1rem;
}

.locs{
    list-style-type: circle;

}

.footer-column address {
    font-style: normal;
    color: var(--brand-light-text);
    line-height: 1.7;
    font-size: 0.75rem;
    margin-bottom: 5px;
}

.footer-links li a {
    color: var(--brand-light-text);
    transition: color 0.3s ease;
}

.footer-map-link {
    color: var(--brand-gold);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.75rem;
    transition: color 0.3s ease;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 10px;
}

.footer-socials a {
    color: var(--brand-light-text);
}

.footer-socials a svg {
    width: 45px;
    height: 45px;
}
.footer-socials a img {
    width: 45px;
    height: 45px;
    transition: filter 0.3s ease;
}

.site-footer .copyright {
    font-size: 0.875rem;
    opacity: 0.7;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--brand-light);
    border-top: 1px solid var(--brand-cream);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    z-index: 100;
    justify-content: space-around;
    padding: 0.5rem 0;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    color: var(--brand-light-text);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem;
    transition: color 0.3s ease;
    flex: 1;
    text-align: center;
}

.bottom-nav a svg {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
}

.footer-info {
    font-size: 0.9rem;
    color: var(--brand-gold);
    margin-top: 3px;
}


.modal-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #039be5; /* Warna biru sesuai permintaan */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto; /* 0 auto untuk center, 1.5rem margin bawah */
    box-shadow: 0 4px 10px rgba(3, 155, 229, 0.4);
}

.modal-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.demo-notice-trigger {
    position: fixed;
    bottom: 1rem;
    left: 1rem; 
    z-index: 1000;
    background-color: var(--brand-gold);
    color: var(--brand-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.demo-notice-trigger.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: var(--brand-light);
    color: var(--brand-text);
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.modal-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}

.modal-content p {
    color: var(--brand-light-text);
    line-height: 1.7;
}

.modal-content .developer-credit {
    margin-top: 1rem;        
    font-weight: 700;        
    color: var(--brand-text); 
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--brand-light-text);
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.modal-overlay.is-hidden {
    opacity: 0;
    pointer-events: none; 
}

.modal-overlay.is-hidden .modal-content {
    transform: scale(0.95);
}


@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0; 
    }
    
    .bottom-nav {
        display: none; 
    }

    .site-footer {
        display: block; 
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .demo-notice-trigger {
        bottom: 80px; 
    }
}