.lokasi {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.kontak-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    gap: 60px; 
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}
.kontak-wrapper.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

.kontak-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px; 
}

.kontak-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #b3885d;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease-out;
    margin-bottom: 20px;
}
.kontak-info h2.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Info Grid */
.info-grid {
    display: flex;
    gap: 50px; 
    flex-wrap: wrap;
}

.info-item {
    width: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.info-item img {
    width: 40px;
    margin-bottom: 5px;
}

.info-item h3 {
    margin: 2px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.info-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #fff; 
    line-height: 1.3;
    word-wrap: break-word;
}

.info-item:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.info-item:active,
.info-item.click-effect {
    animation: clickAnim 0.3s ease;
}

@keyframes clickAnim {
    0% { transform: scale(1); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
    50% { transform: scale(0.95); box-shadow: 0 3px 10px rgba(0,0,0,0.3); }
    100% { transform: scale(1); box-shadow: 0 6px 18px rgba(0,0,0,0.2); }
}

.kontak-image {
    flex: 0.9;              /* mengecilkan porsi map sedikit */
    max-width: 520px;       /* dari 600px → 520px */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out 0.2s;
}

.kontak-image iframe {
    width: 100%;
    height: 380px;          /* dari 450px → 380px supaya terlihat lebih kecil */
    border: 0;
    border-radius: 20px;
}

.kontak-image.visible { 
    opacity: 1; 
    transform: translateX(0); 
}

@media (max-width: 991px) {
    .kontak-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .kontak-info {
        align-items: center;
    }

    .info-grid {
        justify-content: center;
        gap: 25px; 
    }

    .kontak-image {
        max-width: 100%;
        margin-top: 20px;
        border-radius: 20px; 
    }
}